Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am aslong on github.
  • I am aslong (https://keybase.io/aslong) on keybase.
  • I have a public key ASBLI6awMhWAeJesOWIQxEltV8GmmLPXmvqW-Slfqt1X2wo

To claim this, I am signing this object:

@aslong
aslong / .slate.js
Created July 6, 2014 09:37
Slate.js
slate.configAll({
"defaultToCurrentScreen" : true,
"secondsBetweenRepeat" : 0.1,
"checkDefaultsOnLoad" : true,
"focusCheckWidthMax" : 3000,
"repeatOnHoldOps": "resize, nudge, move",
"orderScreensLeftToRight" : true
});
var fullscreen, right, left, topLeft, bottomLeft, topRight, bottomRight;
@aslong
aslong / .gitignore
Last active August 29, 2015 14:02
gitignore
.DS_Store
node_modules
@aslong
aslong / Dockerfile
Created June 14, 2014 22:22
NodeJS Dockerfile
FROM node:0.10.28
MAINTAINER Andrew Long <aslong87@gmail.com>
ADD . /usr/src/app
WORKDIR /usr/src/app
RUN npm install -g grunt-cli
# Install npm dependencies
@aslong
aslong / package.json
Created June 14, 2014 22:22
NodeJS Package.json
{
"name": "Chatrbox",
"version": "0.0.1",
"author": "Andrew Long<aslong87@gmail.com>",
"contributors": [
{
"name": "Andrew Long",
"email": "aslong87@gmail.com"
}
],
@aslong
aslong / requireLater.coffee
Created July 19, 2012 22:53
Cyclic Node Require - Handle node require with cyclic references
_ = require('underscore')
###
#
# requireLater - Just like node's require, but handles performing require with cyclic references.
#
# module - the module you are currently calling requireLater from
# filepath - a filepath just like you would give to node's require
# setModuleOn - (optional) the object to set the module.exports on
#