Taken from https://stackoverflow.com/a/7756455
$0.exportStyles()
Taken from https://stackoverflow.com/a/7756455
$0.exportStyles()
| for i in $(seq -f "%03g" 1 100) | |
| do | |
| wget http://example.com/assets/pics/myawesomestuff${i}.jpg | |
| done |
| #!/bin/bash | |
| if ! brew ls --versions imagemagick > /dev/null; then | |
| # The package is not installed | |
| echo "Installing imagemagick…" | |
| brew install imagemagick | |
| fi | |
| echo "Resizing to @2x…" | |
| mogrify -path . -resize "160x30>" ../originals/*.png |
wget https://storage.googleapis.com/golang/go1.7.linux-armv6l.tar.gz
tar -C /usr/local -xzf go1.7.linux-armv6l.tar.gz
export PATH=$PATH:/usr/local/go/bin