Skip to content

Instantly share code, notes, and snippets.

View cjwilburn's full-sized avatar
👩‍🚀
planet earth is blue/and there's nothing i can do

Courtney Wilburn cjwilburn

👩‍🚀
planet earth is blue/and there's nothing i can do
View GitHub Profile
@cjwilburn
cjwilburn / philly-asian-food.md
Last active February 9, 2016 14:39
Short List of Our Favorite Asian Restaurants
@cjwilburn
cjwilburn / git-cookie
Last active August 29, 2015 14:24
gives you a git cookie -- in your .gitconfig
@cjwilburn
cjwilburn / responsive-screens.js
Last active August 29, 2015 14:26 — forked from ryanmark/responsive-screens.js
Easy responsive screenshots with Phantom.js
/*
* Take a set of full height screenshots for a range of screensizes.
* phantomjs responsive-screens.js http://www.cnn.com/ png
*
* This will create a directory tree in your current directory which
* mirrors the URL. All files will be named with the current time.
* You can run this on a cron to build an archive of screenshots.
**/
var page = new WebPage(),
@cjwilburn
cjwilburn / remove-docker.sh
Created September 3, 2015 18:24
remove docker containers
#! /bin/bash
# from http://stackoverflow.com/questions/17236796/how-to-remove-old-docker-containers
docker rm `docker ps --no-trunc -aq`
// <syntaxhighlight lang="JavaScript">
// JSHint options
/* jshint -W004, -W100, newcap: false, browser: true, jquery: true, sub: true, bitwise: true, curly: true, evil: true, forin: true, freeze: true, globalstrict: true, immed: true, latedef: true, loopfunc: true, quotmark: single, strict: true, undef: true */
/* global GM_getValue, GM_setValue, GM_xmlhttpRequest, console */
// turn on ECMAScript 5 strict mode
'use strict';
// define global object
@cjwilburn
cjwilburn / mincedBeef.md
Created February 23, 2016 18:57
Stir-fried Minced Beef With Chiles And Basil

Stir-fried Minced Beef with Chiles and Basil Adapted from Matthew-Amster Burton and Thai Street Food, by David Thompson

In Thailand, the eggs would be fried in the wok, either before or after cooking the rest of the dish. But Matthew claims that he always breaks the yolk when he does it that way, and he’s ten times better at stir-frying than I am, so I cook the eggs separately, in a skillet.

As for the chiles, the number that you use is up to you. I used five chiles the first time I made this, and it was pleasantly fiery. The

@cjwilburn
cjwilburn / config.yaml
Created March 19, 2016 12:31 — forked from coilysiren/config.yaml
Unfollows: (a) people who dont follow you back (b) people you haven't talked to publically (c) people who haven't posted in 3 months
---
# start working from % of your most recent follows
# ex: for 1000 follows, 5 = ignore the last 50 accounts you followed
offset: 5
# what you use at https://twitter.com/login
# DONT LET THIS GET POSTED PUBLICLY
username: "XXXXXXXXX"
password: "XXXXXXXXX"
@cjwilburn
cjwilburn / compat_l5.php
Created April 8, 2016 13:24 — forked from vluzrmos/compat_l5.php
Lumen L5 compatibility helpers. That file should be added on root path of your project... and added to your composer.json
<?php
if(!function_exists('config_path'))
{
/**
* Return the path to config files
* @param null $path
* @return string
*/
function config_path($path=null)
@cjwilburn
cjwilburn / phillypizza.json
Created August 6, 2016 16:13
A JSON file of nearly all the pizza restaurants in Philadelphia. In case, you know, you wanted to base an app on this, or something...
{
"kml": {
"-xmlns": "http://www.opengis.net/kml/2.2",
"-xmlns:gx": "http://www.google.com/kml/ext/2.2",
"-xmlns:kml": "http://www.opengis.net/kml/2.2",
"-xmlns:atom": "http://www.w3.org/2005/Atom",
"Folder": [{
"-id": "results",
"name": "philadelphia pizza",
"Placemark": [{
FROM ubuntu:14.04
MAINTAINER Yaodong Zhao
RUN apt-get install -y build-essential libssl-dev git nginx postgresql postgresql-contrib
RUN git clone https://github.com/sstephenson/rbenv.git .rbenv
RUN git clone https://github.com/sstephenson/ruby-build.git ~/.rbenv/plugins/ruby-build
ENV PATH ~/.rbenv/bin:~/.rbenv/bin:$PATH