Skip to content

Instantly share code, notes, and snippets.

View spiermar's full-sized avatar

Martin Spier spiermar

View GitHub Profile
@spiermar
spiermar / tmux-cheatsheet.markdown
Created February 3, 2016 22:06 — forked from MohamedAlaa/tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
@spiermar
spiermar / ignore.js
Last active August 29, 2015 14:11 — forked from tj/ignore.js
function ignore(paths, fn) {
return function(req, res, next) {
if (~paths.indexOf(req.url)) {
next();
} else {
fn(req, res, next);
}
}
}