Skip to content

Instantly share code, notes, and snippets.

View mkeemon's full-sized avatar

Matthew Keemon mkeemon

View GitHub Profile

Keybase proof

I hereby claim:

  • I am mkeemon on github.
  • I am mkeemon (https://keybase.io/mkeemon) on keybase.
  • I have a public key ASDUse0abqsAELcOFUKAxv7QeX_7BSanBWypvbevIy3lywo

To claim this, I am signing this object:

@mkeemon
mkeemon / 0_reuse_code.js
Last active August 29, 2015 14:14
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@mkeemon
mkeemon / server.js
Created April 18, 2014 17:46
server.js Ember + CLI (Brunch)
var connect = require('connect');
var rewrite = require('connect-modrewrite');
var path = require('path');
var http = require('http');
var public_dir = path.join(__dirname, 'public');
var app = connect()
.use(rewrite(['^([^.]+)$ /index.html']))
.use(connect.static(public_dir));