Skip to content

Instantly share code, notes, and snippets.

View voodootikigod's full-sized avatar
🚀
Changing the world

Chris Williams voodootikigod

🚀
Changing the world
View GitHub Profile
#!/bin/bash
die () {
echo >&2 "$@"
exit 1
}
[ "$#" -eq 1 ] || die "You must provide the DTR FQDN as an argument, $# provided"
export DTR_HOST=$1
http://fluentconf.com/fluent2014
http://2013.jsconf.us/
http://cssconf.com/
http://events.jquery.org/2013/austin/
http://backboneconf.com/
http://www.ng-conf.org/
http://aneventapart.com/
http://2013.cascadiajs.com/
http://2013.texasjavascript.com/
http://edgeconf.com/2013-nyc/live.html
@voodootikigod
voodootikigod / 2013pumpkin.md
Last active December 21, 2015 19:29
2013's Best Pumpkin Beers by @voodootikigod

2013's Best Pumpkin Beers by @voodootikigod

As many know, I am fiend for the orange gourd known as Pumpkin. Whether in a pie, a latte, or as a flavor of beer - I cannot get enough pumpkin and wait all year for the orange goodness. I also have a fondness for beer, so the matching of the two is a beautiful moment in heaven for me. As such I am on a mission this year to try as many pumpkin ales as possible and rank them as to my preference. Your preference many be different and that is perfectly fine. What I am looking for in my pumpkin ale is a good taste of pumpkin, slight spice, and smooth finish that leaves your palette refreshed and warm. Others prefer hard spice, but for me that feels overpowering and missing the target of pumpkin taste. As appropriate I have left notes for myself, if you have any, fork away and make your own list!

  1. Cisco Pumple Drumkin Spiced Ale
  2. [Southampton Pumpkin Ale](https://untappd.com/b/brooklyn-bre
@voodootikigod
voodootikigod / jsconfus2013-faq.md
Last active December 15, 2015 14:59
JSConf is a unique event experience hand crafted by the Williams family. This year is even more different from any other event and previous years and as such we wanted a place for you to ask questions. Please use this gist to ask questions and we will respond with the answers so that others who may have similar questions can benefit as well.

JSConf US 2013 FAQ

What is the schedule of events

We are constantly finalizing the nature of JSConf, but here on out we will be keeping the posted schedule current, you should check it often. Also we will have the schedule in printed format at the conference so you will have all the information you need right there for you.

@voodootikigod
voodootikigod / wiflea.nut
Created January 24, 2013 20:05
The Squirrel code to create an Electric Imp driven micro wifi analyzer. Presents connected state, signal RSSI value, roundtrip latency, and voltage. Great for remote signal detection and analysis.
// Code below this line is for your node.
// Drive 3.3v LCD Screen using a Sparkfun SerLCD backpack from an Electric IMP
hardware.uart12.configure(9600, 8, PARITY_NONE, 1, NO_RX);
CharactersInLCD <- 16;
ConnectedState <- false;
LastLatency <- 0;
@voodootikigod
voodootikigod / brown.md
Created June 22, 2015 14:48
JSConf US 2015 Track A Transcript for John Brown: (math == art && art == code)

Hello. Oh, there we go. Hi, everybody. I'm going to refresh this real quick. Going to go back to my title slide. This is actually really great, because it's a little bit of glitch art right in the middle of my presentation that's completely unplanned. I love it. So here's the agenda. Here's what we're going to talk about. I also have a lot of cords up here. I'm going to talk to you guys about math, art, and code. And one of those things may not seem like the others, but hopefully by the end of this talk you'll understand where I'm coming from with this weird transitive property equation. If you think about color palettes -- math == art is pretty great. There's a lot of math inside of art and a lot of math made of art.

@voodootikigod
voodootikigod / migrate.js
Created January 3, 2012 22:45
Schema (SQL) and Data (JS) Migrations for node.js (specifically PostgreSQL, but could be MySQL)
#!/usr/bin/env node
// this file is stored in a directory of APP_ROOT/script for me, all things are relative to that
var APP_ROOT = __dirname+"/../";
// this assumes there is a file stored in APP_ROOT called "config.js" with the following structure:
//
// module.exports = {
// "development: {
// "postgresql": "tcp://postgres@localhost/dev-db"
//FightCode can only understand your robot
//if its class is called Robot
var Robot = function(robot) {
};
Robot.prototype.onIdle = function(ev) {
var robot = ev.robot;
robot.rotateCannon(10);
@voodootikigod
voodootikigod / robotjs-vendors.md
Created November 19, 2012 01:15
Shared RobotJS Vendors