This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This script is an enhancement of Debjit Saha's helpful original. | |
# https://gist.github.com/dkd903/8ba3f51313c1781cc571 | |
# This script works with Fedora 25 and prints a prettier error when no file | |
# is provided. | |
#!/bin/sh | |
SHORTCUT="[Desktop Entry] | |
Name=Sublime Text 3 | |
Comment=Edit text files | |
Exec=/usr/local/sublime_text_3/sublime_text |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/sh | |
docker pull jenkins/jenkins && \ | |
docker run -d --name myjenkins \ | |
-p 8083:8083 \ | |
-p 50000:50000 \ | |
-v /etc/timezone:/etc/timezone \ | |
-v /var/jenkins_home/:/var/jenkins_home/ \ | |
-v /var/lib/jenkins/cert:/var/lib/jenkins/cert \ | |
-v /var/lib/jenkins/pk:/var/lib/jenkins/pk \ | |
--env JENKINS_OPTS="--httpPort=-1 --httpsPort=8083 --httpsCertificate=/var/lib/jenkins/cert --httpsPrivateKey=/var/lib/jenkins/pk" \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/sh | |
docker pull jenkins/jenkins && \ | |
docker run -d --name myjenkins \ | |
-p 8083:8083 \ | |
-p 50000:50000 \ | |
-v /etc/timezone:/etc/timezone \ | |
-v /var/jenkins_home/:/var/jenkins_home/ \ | |
-v /var/lib/jenkins/cert:/var/lib/jenkins/cert \ | |
-v /var/lib/jenkins/pk:/var/lib/jenkins/pk \ | |
--env JENKINS_OPTS="--httpPort=-1 --httpsPort=8083 --httpsCertificate=/var/lib/jenkins/cert --httpsPrivateKey=/var/lib/jenkins/pk" \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Desktop Entry] | |
Version=1.0 | |
Terminal=false | |
Type=Application | |
Name=Postman | |
Exec=/opt/Postman/Postman | |
Icon=/opt/Postman/resources/app/assets/icon.png | |
Categories=Network;Development | |
Keywords=rest;api; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Desktop Entry] | |
Version=1.0 | |
Terminal=false | |
Type=Application | |
Name=Ethereum Wallet | |
Exec=/opt/etherium_wallet/ethereumwallet | |
Icon=/opt/etherium_wallet/icon.png | |
Categories=GNOME;Network; | |
Keywords=ethereum;wallet;blockchain;ether;eth; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Desktop Entry] | |
Version=1.0 | |
Terminal=false | |
Type=Application | |
Name=Apache Directory Studio | |
Exec=/opt/ApacheDirectoryStudio/ApacheDirectoryStudio | |
Icon=/opt/ApacheDirectoryStudio/features/org.apache.directory.studio.nls.feature_2.0.0.v20170904-M13/studio.png | |
Categories=Network;Development | |
Keywords=ldap; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Desktop Entry] | |
Version=1.0 | |
Terminal=false | |
Type=Application | |
Name=KeeWeb | |
Exec=/opt/keeweb/KeeWeb | |
Icon=/opt/keeweb/128x128.png | |
Categories=Utility | |
Keywords=password;kee;keepass;key |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
npm config delete http-proxy; npm config delete https-proxy |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set nu | |
set mouse=a | |
set guioptions+=a | |
set clipboard=unnamedplu |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
declare module ORACLE_SERVICE_CLOUD { | |
var extension_loader: IExtensionLoader; | |
var extensionLoadPromise: IExtensionPromise<any>; | |
interface IExtensionLoader extends IExtensionDisposable { | |
load(appId: string, version?: string, userScriptList?: string[]): IExtensionPromise<IExtensionProvider>; | |
} | |
interface IExtensionDisposable { | |
dispose: () => void; |
OlderNewer