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
class Runner(threading.Thread): | |
def __init__(self, in_queue, out_queue): | |
super(Runner, self).__init__() | |
self.in_queue = in_queue | |
self.out_queue = out_queue | |
self._keep_running = True | |
def run(self): | |
while self._keep_running or not self.in_queue.empty(): |
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
{ | |
"stack": { | |
"capabilities": [], | |
"creation_time": "2014-02-19T16:04:56Z", | |
"description": "AWS CloudFormation Sample Template WordPress_Single_Instance: WordPress is web software you can use to create a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data.", | |
"disable_rollback": true, | |
"id": "None", | |
"links": [ | |
{ | |
"href": "http://10.0.2.15:8004/v1/2e327e5e7fa94b25a44be66fd9d1ec4d/stacks/foobar1/None", |
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
DATE="2013-10-28 00:00:00" | |
METRIC=:total_loc | |
TEAM=[ | |
'Team Member #1', | |
'Team Member #2', | |
'Team Member #3', | |
# ... | |
] | |
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
var test = [1,2,3,4,5]; | |
var tr = d3.select(".cm-workflow").selectAll("p") | |
.data(test) | |
.enter().append("p").attr('text', function(d) { return d }); | |
var test = [5,4,3,2,1]; | |
var tr = d3.select(".cm-workflow").selectAll("p") | |
.data(test) |
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
# Testing deployment/router.py # get_deployments | |
def test_filter_by_name(self): | |
self.mox.StubOutWithMock(bottle.request.query, "get") | |
self.mox.StubOutWithMock(bottle.request.query, "getall") | |
self.mox.StubOutWithMock(self.manager, "get_deployments") | |
# FIXME: I just want to get the test to pass first | |
bottle.request.query.get('show_deleted').AndReturn('') | |
bottle.request.query.getall('statuses').AndReturn([]) |
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
describe('#method_name', function() { | |
beforeEach(function() { | |
// Set up | |
}); | |
it('should do something', function() { | |
expect('pending').toBe('complete'); | |
}); | |
// more tests... |
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
# | |
# Function that stops the daemon/service | |
# | |
do_stop() | |
{ | |
if [ ! -e $PIDFILE ]; then | |
return 2 | |
fi | |
pid=`cat $PIDFILE` | |
children=$(ps axo pid,ppid | awk "{ if ( \$2 == $pid ) { print \$1 }}") |
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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
Vagrant.configure("2") do |config| | |
config.vm.box = "precise64" | |
config.vm.box_url = "http://files.vagrantup.com/precise64.box" | |
config.vm.provision :shell, :path => "bootstrap.sh" | |
config.vm.network :forwarded_port, guest: 80, host: 8080 | |
config.vm.provider :virtualbox do |vb| | |
vb.customize ["modifyvm", :id, "--memory", "4096"] |
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
#!/usr/bin/ruby | |
require 'mail' | |
GMAIL_USERNAME = "username" | |
GMAIL_PASSWORD = "password" | |
options = { :address => "smtp.gmail.com", | |
:port => 587, | |
:domain => 'gmail.com', |
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 | |
tokens="tokens.txt" | |
values="values.txt" | |
textfile="sample.txt" | |
paste $tokens $values | while read token value | |
do | |
sed -i -e "s/$token/$value/g" $textfile | |
done |