This file contains 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/env sh | |
# Env vars CLOUDFLARE_API_TOKEN is required in any case | |
# Script require cURL an jq | |
CLOUDFLARE_API_URL=${CLOUDFLARE_API_URL:-"https://api.cloudflare.com/client/v4/"} | |
request() { | |
curl -sX${1} \ |
This file contains 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/env sh | |
# Env vars OVH_API_APP_KEY is required in any case | |
# Env vars OVH_API_APP_SECRET and OVH_API_CONSUMER_KEY are required for setup and teardown | |
OVH_API_URL=${OVH_API_URL:-"https://api.ovh.com/1.0"} | |
ovhTS() { | |
curl -s "${OVH_API_URL}/auth/time" |
This file contains 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
Bil$ HOMEBREW_MAKE_JOBS=1 brew install -v node 2>&1 | |
==> Downloading https://downloads.sf.net/project/machomebrew/Bottles/node-0.10.26.mavericks.bottle.tar.gz | |
Already downloaded: /Library/Caches/Homebrew/node-0.10.26.mavericks.bottle.tar.gz | |
==> Verifying node-0.10.26.mavericks.bottle.tar.gz checksum | |
==> Pouring node-0.10.26.mavericks.bottle.tar.gz | |
tar xf /Library/Caches/Homebrew/node-0.10.26.mavericks.bottle.tar.gz | |
==> Caveats | |
Bash completion has been installed to: | |
/usr/local/etc/bash_completion.d | |
==> Finishing up |