I hereby claim:
- I am leejsinclair on github.
- I am l33t8l (https://keybase.io/l33t8l) on keybase.
- I have a public key ASCNC7rE2D0d0xJggt3KHTLZiihfB-W-AVPQt-Z-XiZKhwo
To claim this, I am signing this object:
| #!/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 |
| #!/bin/bash | |
| # Variables | |
| IP=$(ifconfig | grep 192 | awk '/inet addr/{print substr($2,6)}') | |
| echo "*" | |
| echo "* CREATING PRIVATE SENTRY ENVIRONMENT" | |
| echo "*" | |
| echo "* Couchbase UI: http://$IP:8091" | |
| mkdir -p ~/couchbase |
| 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' |
I hereby claim:
To claim this, I am signing this object:
| ### Keybase proof | |
| I hereby claim: | |
| * I am leejsinclair on github. | |
| * I am l33t8l (https://keybase.io/l33t8l) on keybase. | |
| * I have a public key ASCNC7rE2D0d0xJggt3KHTLZiihfB-W-AVPQt-Z-XiZKhwo | |
| To claim this, I am signing this object: |
| 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, |
| #!/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" |