- Bill of Rights
- Grandpa
- fat free lard
- gravity
- Emmys
- Darwin
- H2-WHOA!
- Billy Crystal
- God
- Soloflex
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
bijaz | |
stilgar | |
othyem | |
farok | |
kaitan | |
caladan | |
tabr | |
fedaykin | |
korba | |
tlielax |
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
# r2sync stage-jira /var/lib/jira/ prod-jira /var/lib/jira | |
ssh -R localhost:50000:$1:22 $3 'rsync -e "ssh -p 50000" -vuar $2 localhost:$4' |
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
#!/bin/bash -x | |
WEBAPPS=$(docker ps | grep "philchristensen/insite:latest" | awk '{print $1}') | |
WORKERS=$(docker ps | grep "philchristensen/insite:worker" | awk '{print $1}') | |
BEATER=$(docker ps | grep "philchristensen/insite:beat" | awk '{print $1}') | |
find /opt/insite-web -name '*.pyc' -delete | |
echo "$WEBAPPS" | xargs -I ID docker exec ID pip install -r requirements.txt | |
date > /opt/insite-web/reload |
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
// | |
// DPColorPickerView.m | |
// DMXPerformer | |
// | |
// Created by Phil Christensen on 4/14/13. | |
// Copyright (c) 2013 bubblehouse. All rights reserved. | |
// | |
#import "DPColorPickerView.h" | |
#import "DPColorGrabberView.h" |
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
import random | |
def get_random_name(): | |
index = random.randint(0, len(adjectives) - 1) | |
jndex = random.randint(0, len(names) - 1) | |
return adjectives[index] + ' ' + names[jndex] | |
adjectives = [ | |
"admiring", | |
"adoring", |
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
exec { "accept-oracle-license": | |
command => "/bin/echo oracle-java7-installer shared/accepted-oracle-license-v1-1 select true | /usr/bin/debconf-set-selections", | |
unless => "/usr/bin/debconf-get-selections | /bin/grep shared/accepted-oracle-license-v1-1" | |
}-> | |
apt::ppa { "ppa:webupd8team/java": } | |
ensure_packages(['oracle-java7-installer', 'tomcat7'], { | |
require => Apt::Ppa['ppa:webupd8team/java'] | |
}) |
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
require 'aws-sdk' | |
module Puppet::Parser::Functions | |
newfunction(:xaz_host, :type => :rvalue) do |args| | |
current_az = lookupvar('ec2_placement_availability_zone') | |
asg_prefix, domain = args | |
Aws.config[:credentials] = Aws::Credentials.new( | |
"AKIAJSUKG23H6XC3FE3A", | |
"byQczPLjJwDMCcYjtnKgPS/7NfM1D0XpuEU9scmt" |
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
SSH_ENV="$HOME/.ssh/environment" | |
function start_agent { | |
echo "Initialising new SSH agent..." | |
/usr/bin/ssh-agent | sed 's/^echo/#echo/' > "${SSH_ENV}" | |
echo succeeded | |
chmod 600 "${SSH_ENV}" | |
. "${SSH_ENV}" > /dev/null | |
/usr/bin/ssh-add; | |
} |
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/python | |
""" | |
To use this to mimic the EC2 metadata service entirely, run it like: | |
# where 'eth0' is *some* interface. if i used 'lo:0' i got 5 second or so delays on response. | |
sudo ifconfig eth0:0 169.254.169.254 netmask 255.255.255.255 | |
sudo ./mdserv 169.254.169.254:80 | |
Then: | |
wget -q http://169.254.169.254/latest/meta-data/instance-id -O -; echo | |
curl --silent http://169.254.169.254/latest/meta-data/instance-id ; echo |
NewerOlder