Skip to content

Instantly share code, notes, and snippets.

View sethlilly's full-sized avatar

Seth Lilly sethlilly

View GitHub Profile
@sethlilly
sethlilly / env.sh
Created July 18, 2013 14:56
Installs curl, git, npm and node on a freshly-created Vagrant VM. Uses TJ Holowaychuk's n to install and manage node versions.
#!/bin/bash
# Set up the environment after installing the Vagrant machine
# Basic utilities
sudo apt-get install curl -y
sudo apt-get install git -y
# Node
sudo apt-get install npm -y
@sethlilly
sethlilly / shortcut.txt
Created July 10, 2013 14:59
Open Chrome in Incognito on OS X
"/Applications/Google Chrome.app/Contents/MacOS/Google Chrome" --incognito --flag-switches-begin --sync-keystore-encryption --flag-switches-end
@sethlilly
sethlilly / font-boosting.css
Created June 27, 2013 21:12
Disable font boosting in Chrome for Android
/* Disable font boosting in Chrome for Android */
body * {
max-height: 1000000em;
}
@sethlilly
sethlilly / test.js
Last active December 19, 2015 01:59
Test Gist for embedding in blog posts
/* This is a test file.
** Create a cheese object, let the odor waft through the air,
** then decide whether to eat it.
*/
var cheddar = new Cheese();
var aroma = cheddar.waft();
// Unless it's *really* nasty, eat it.