Skip to content

Instantly share code, notes, and snippets.

@ryanmark
ryanmark / embed_helper.js
Created September 19, 2019 17:29
Little helper module for building embeddable iframes that work with pym.js and AMP
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({

Keybase proof

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:

@ryanmark
ryanmark / download.rb
Created December 6, 2018 20:12
ruby download with progress
# WIP
def download(src, dest)
uri = URI.parse(src)
yield "Download #{src} to #{dest}"
mutex = Mutex.new
size = 0
downloaded = 0
@ryanmark
ryanmark / test-phantom.js
Last active June 16, 2016 13:21
Phantom js doesn't seem to handle em-based media queries properly when zoomed
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 = {
@ryanmark
ryanmark / ami-clean.sh
Last active August 8, 2019 06:35 — forked from jdowning/ami-clean.sh
Script to clean up Ubuntu EC2 instance before packaging as an AMI
#!/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"
}
@ryanmark
ryanmark / wtf.py
Created July 10, 2015 20:44
Why does this script throw an UnboundLocalError?
#!/usr/bin/env python
foo = 0
bar = {'foo': 0}
def wtf():
# Totally fine
bar['foo'] += 1
@ryanmark
ryanmark / devserver.sh
Last active August 29, 2015 14:16
This tiny script allows you to run many things in the background, then shuts them all down when you hit ctrl-c
#!/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
@ryanmark
ryanmark / README.md
Last active September 2, 2015 13:43
Import issues from markdown formatted text into github issues

Generate Github Issues

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

@ryanmark
ryanmark / fixmic
Created January 5, 2015 15:36
Fix your Mac OS X microphone
sudo kill -9 `ps ax|grep 'coreaudio[a-z]' |awk '{print $1}'`
@ryanmark
ryanmark / setup-vox-middleman.sh
Last active August 9, 2016 22:11
Setup or update the voxmedia middleman rig
#!/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