I hereby claim:
- I am ryanmark on github.
- I am ryanmark (https://keybase.io/ryanmark) on keybase.
- I have a public key ASCNxKeQujzWBWLLKDBvadJX8YSSitIX9dJzVelg6xBGRgo
To claim this, I am signing this object:
| const pym = require('pym.js') | |
| const pymChild = window && window.pymChild ? window.pymChild : new pym.Child() | |
| if ( window && !window.pymChild ) window.pymChild = pymChild | |
| function sendHeight() { | |
| // Tell pym and AMP to update the height | |
| pymChild.sendHeight() | |
| if ( window && window.parent ) | |
| window.parent.postMessage({ |
I hereby claim:
To claim this, I am signing this object:
| # WIP | |
| def download(src, dest) | |
| uri = URI.parse(src) | |
| yield "Download #{src} to #{dest}" | |
| mutex = Mutex.new | |
| size = 0 | |
| downloaded = 0 |
| var WebPage = require('webpage'), | |
| System = require('system'); | |
| var address = System.args[1]; | |
| var zoom = System.args[2]; | |
| var width = 700; | |
| var page = WebPage.create(); | |
| page.viewportSize = { |
| #!/bin/bash | |
| # This script cleans up your EC2 instance before baking a new AMI. | |
| # Run the following command in a root shell: | |
| # | |
| # bash <(curl -s https://gist.github.com/ryanmark/e8319855354ec157cdaa/raw/ami-clean.sh) | |
| function print_green { | |
| echo -e "\e[32m${1}\e[0m" | |
| } |
| #!/usr/bin/env python | |
| foo = 0 | |
| bar = {'foo': 0} | |
| def wtf(): | |
| # Totally fine | |
| bar['foo'] += 1 |
| #!/bin/bash | |
| # This tiny script allows you to run many things in the background, then shuts them all down | |
| # when you hit ctrl-c. Put your commands below, and be sure to include the & at the end of the | |
| # line to make the command run in the background. | |
| # Your commands here | |
| # EX: compass watch & | |
| # Kill all subprocesses when the user does ctrl-c |
This script will read a markdown-formatted text file and generate milestones and issues in a Github project.
The script will go line by line, looking for lines that start with #, - or *. Lines that
start with # will create a new milestone. All bulleted items after a header will be created as
issues and assigned to the last milestone.
Milestones will be automatically assigned due-dates. Starting with the closest Friday at 1:30pm
| sudo kill -9 `ps ax|grep 'coreaudio[a-z]' |awk '{print $1}'` |
| #!/bin/bash | |
| echo "#!/bin/bash" >/usr/local/bin/setup-vox-middleman | |
| echo 'exec bash -c "$(curl -fsSL https://raw.githubusercontent.com/voxmedia/setup-vox-rig/master/setup-vox-middleman.sh)"' >>/usr/local/bin/setup-vox-middleman | |
| chmod +x /usr/local/bin/setup-vox-middleman | |
| exec /usr/local/bin/setup-vox-middleman |