Monthly Archives: May 2015

Screw to-do lists, create a SUCCESS list It was 1:42am on a Wednesday night, and I still had a looong way to go to finish up an important presentation for the next day. I thought the times of pulling “all-nighters” would be over once I graduated college. But here I… Read More
Writing Handsome Golang Middleware Wiring http.Handlers with Google Go’s standard library is straightforward & clean. http.Handle("/thing", func(w http.ResponseWriter, r *http.Request) { ‌ ‌ w.Write([]byte("got my thing")) }) Chaining handler’s to create “middleware” isn’t quite as lovely. Your route definitions are difficult to read, and underneath the hood each “handler” is… Read More