Skip to content

Instantly share code, notes, and snippets.

View jhoff's full-sized avatar

Jordan Hoff jhoff

  • Givebutter
  • Fort Collins, CO
View GitHub Profile
@jhoff
jhoff / jshint-install.sh
Created December 10, 2012 18:22 — forked from dclowd9901/jshint-install.sh
jshint-install
#!/bin/sh
USERNAME=$(id -un)
if [ $(uname) = 'Darwin' ]; then
SUBL_PATH=/Users/$USERNAME/Library/Application\ Support/Sublime\ Text\ 2/Packages
else
SUBL_PATH=/home/$USERNAME/.config/sublime-text-2/Packages
fi
@jhoff
jhoff / mallet.lua
Created October 17, 2012 20:33 — forked from NimbusBP1729/weaponParentChild.lua
weapon parent/child hierarchy
--This is a snippet of a Mallet file
local Weapon = require 'weapon'
function Mallet.new(node, collider)
local mallet = Weapon.new(node, collider)
setmetatable(mallet, Mallet)
-- setup your mallet specific code