Updated: 30 June 2013
mkdir ~/build
| var request = require("request"); | |
| var BIT_LY_ACCESS_TOKEN = "YOUR_APP_ACCESS_TOKEN" /* See: https://bitly.com/a/oauth_apps# */ | |
| , BIT_LY_SHORTEN_URL = "https://api-ssl.bitly.com/v3/shorten"; | |
| var shareUrl = "http://www.google.com/"; | |
| var options = { "qs": { "access_token": BIT_LY_ACCESS_TOKEN, "longUrl": shareUrl }, "json": true }; | |
| request.get( BIT_LY_SHORTEN_URL, options, |
| var isDocument = (function(){ | |
| var cts = [ "application/msword", "application/vnd.ms-excel", "application/vnd.ms-excel.addin.macroEnabled.12", "application/vnd.ms-excel.sheet.binary.macroEnabled.12", "application/vnd.ms-excel.sheet.macroEnabled.12", "application/vnd.ms-excel.template.macroEnabled.12", "application/vnd.ms-powerpoint", "application/vnd.ms-powerpoint.addin.macroEnabled.12", "application/vnd.ms-powerpoint.presentation.macroEnabled.1", "application/vnd.ms-powerpoint.slideshow.macroEnabled.12", "application/vnd.ms-powerpoint.template.macroEnabled.12", "application/vnd.ms-word.template.macroEnabled.12", "application/vnd.oasis.opendocument.chart", "application/vnd.oasis.opendocument.database", "application/vnd.oasis.opendocument.formula", "application/vnd.oasis.opendocument.graphics", "application/vnd.oasis.opendocument.graphics-template", "application/vnd.oasis.opendocument.image", "application/vnd.oasis.opendocument.presentation", "application/vnd.oasis.opendocument.presentation-template", "applic |
| exports.config = { | |
| // The address of a running selenium server. | |
| seleniumAddress: 'http://localhost:4444/wd/hub', | |
| // Capabilities to be passed to the webdriver instance. | |
| capabilities: { | |
| // 'browserName': 'internet explorer', - special installation needed | |
| // 'version':'10', | |
| 'browserName': 'chrome', | |
| //'browserName': 'firefox' |
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
| #!/bin/bash | |
| # Variables | |
| IP=$(ifconfig | grep 192 | awk '/inet addr/{print substr($2,6)}') | |
| echo "*" | |
| echo "* CREATING PRIVATE BOWER ENVIRONMENT" | |
| echo "*" | |
| echo "* Docker UI: http://$IP:9000" | |
| echo "* Bower UI: http://$IP:5678" | |
| echo "* GitLab UI: http://$IP:10080" |
| #!/bin/bash | |
| # Variables | |
| IP=$(ifconfig | grep 192 | awk '/inet addr/{print substr($2,6)}') | |
| echo "*" | |
| echo "* CREATING PRIVATE SENTRY ENVIRONMENT" | |
| echo "*" | |
| echo "* Docker UI: http://$IP:9000" | |
| echo "* Senry UI: http://$IP:80" | |
| echo "*" |
| # Get curl | |
| sudo apt-get install curl | |
| # Install docker | |
| curl -sSL https://get.docker.com/ | sh | |
| # Add current user to docker group | |
| sudo usermod -aG docker $USER | |
| # Need to logout and back in again |