Skip to content

Instantly share code, notes, and snippets.

View b3nj4m's full-sized avatar

ben robbins b3nj4m

  • Seattle, WA, USA
View GitHub Profile
//Global Variables
var HEIGHT = 600;
var PADDING = 60;
DATA = {}
function type(d) {
surveys = [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14]
for(var x = 0; x < surveys.length; x++) {
eval("d.Survey" + surveys[x] + " = +d.Survey" + surveys[x])

Keybase proof

I hereby claim:

  • I am b3nj4m on github.
  • I am b3nj4m (https://keybase.io/b3nj4m) on keybase.
  • I have a public key whose fingerprint is D7A5 D326 8341 4A08 BA72 2718 AD8D 23B7 9FA8 50DC

To claim this, I am signing this object:

@b3nj4m
b3nj4m / GlobalGruntfile.js
Last active December 18, 2015 02:19
Local Gruntfile.js which imports a common Gruntfile.js from a component.
//This is a normal Gruntfile with the exception of the deepExtend function added at the end
module.exports = function(grunt) {
var port = grunt.option('port') || 8000;
grunt.initConfig({
//standard grunt config here
});
grunt.loadNpmTasks('grunt-cachepath');