View node-npm-in-docker.sh
# For example, run "npm install" | |
docker run -v "$PWD":/usr/src/app -w /usr/src/app node:4 npm install | |
# This command creates a container (downloading one first if you don't have it locally), runs the command in a current directory and quits the container | |
# Great Success! |
View install-zray.sh
#!/usr/bin/env bash | |
ZRAY_URL="http://repos.zend.com/zend-server/early-access/zray-tech-preview/zray-php-102775-php5.6.15-linux-debian7-amd64.tar.gz" | |
ZRAY_ARCHIVE_NAME="zray.tar.gz" | |
ZRAY_PACKAGE_NAME="zray-php-102775-php5.6.15-linux-debian7-amd64" | |
# download zray | |
curl -o /tmp/${ZRAY_ARCHIVE_NAME} ${ZRAY_URL} | |
# extract zray archive | |
tar xvfz /tmp/${ZRAY_ARCHIVE_NAME} -C /tmp |
View trigger_customer_io_event_with_attachments.py
import base64 | |
import requests | |
from customerio import CustomerIO | |
file_content = requests.get(file_url).content | |
file_base64 = base64.b64encode(file_content) | |
customer_io = CustomerIO(site_id, api_key) | |
customer_io.track( |
View gist:1e6c17dfd5f60cc3e963
// enter this in the "Run Command" field in CodeRunner preferences | |
eval "$(docker-machine env default)" && docker run --rm php:7.0.1-cli php -r "$(sed 's/^<\?php//' $filename)" |
View get-current-spotify-track-properties
tell application "Spotify" | |
get player state | |
get artist of current track | |
get name of current track | |
get duration of current track | |
get popularity of current track | |
get track number of current track | |
get spotify url of current track | |
end tell |