Skip to content

Instantly share code, notes, and snippets.

View brianedgerton's full-sized avatar

Brian Edgerton brianedgerton

View GitHub Profile
body, .slide-master-content-alt {
background-color: #ad0000;
background-image: linear-gradient(to bottom right, #870000 0%, #ad0000 100%);
font-family: "Gill Sans Light", "Gill Sans MT", Tahoma, Geneva, sans-serif;
}
h1 {
background: none;
color: #f1c471;
text-shadow: -2px -2px 5px #333;
font-family: "nevisBold", arial, sans-serif;
@brianedgerton
brianedgerton / zip.js
Last active December 21, 2015 12:49
Proof of concept code for making a bridge for easily using spawned child processes.
var _ = require( "lodash" ),
spawn = require( "child_process" ).spawn;
var createSpawnBridge = function( config ) {
var cmd = config.cmd,
defaultArgs = config.defaultArgs || [];
//stdio = config.stdio || 'inherit';
return function( options ) {
@brianedgerton
brianedgerton / markup.html
Created July 15, 2013 03:23
Trying out the api
<h1>Here is some markup</h1>
@brianedgerton
brianedgerton / install_guest_additions
Created July 12, 2013 20:13
Install VirtualBox Guest Additions on Ubuntu 12.04
# Before running, mount the Guest Additions iso
apt-get install -y build-essential
mount /dev/sr0 /media/cdrom
/media/cdrom/VBoxLinuxAdditions.run
usermod -aG vboxsf `whoami`