Skip to content

Instantly share code, notes, and snippets.

View andersab's full-sized avatar

Brad Anderson andersab

  • Crescent Springs, KY
View GitHub Profile
@andersab
andersab / tmux-cheatsheet.markdown
Created December 29, 2018 14:18 — forked from MohamedAlaa/tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
@andersab
andersab / Makefile
Created December 1, 2017 11:55
Golang Makefile
.PHONY: build doc fmt lint run test vendor_clean vendor_get vendor_update vet
# Prepend our _vendor directory to the system GOPATH
# so that import path resolution will prioritize
# our third party snapshots.
GOPATH := ${PWD}/_vendor:${GOPATH}
export GOPATH
default: build