This file contains hidden or 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
Show.create( | |
title: “Breaking Style Rules”, | |
description: “A through-the-ages take on dressing for yourself” , | |
clips: [ | |
Clip.create( | |
url: “https://www.youtube.com/watch?v=2ObB-qRkbfc”, | |
title: "Rookie Style”, | |
description: “Packing for New York Fashion Week with Tavi Gevinson” | |
), |
This file contains hidden or 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
<? | |
/* | |
PHP is UNIX - Simple preforking echo server in PHP | |
************************************************** | |
The code here is related to: | |
http://tomayko.com/writings/unicorn-is-unix | |
http://jacobian.org/writing/python-is-unix/ | |
http://plasmasturm.org/log/547/ - perl is unix |
This file contains hidden or 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
#!/bin/bash -xe | |
EBS_DEVICE='/dev/sdh' | |
INSTANCE_ID=$1 | |
AKI=${2:-'aki-5f15f636'} | |
ARI=${3:-'ari-0915f660'} | |
ARCH=${4:-'i386'} | |
SIZE=${5:-10} | |
AZ=${6:-'us-east-1d'} | |
NAME=${7:-"ami-from-$INSTANCE_ID"} |