-
zsh alias to make and apply patch with git diff
I keep having to look up [patching with git diff](http://tamsler.blogspot.com/2009/02/patching-with-git-diff.html) to remember the syntax whenever I want to create and apply a patch file. Solution? Create an alias for it. It only uses one file, /tmp/patchfile, so don’t try to manage multiple patches with this (maybe I’ll make more intelligent/sophisticated someday. In my .zlogin, I…
-
Call up JIRA tasks from zsh using .oh-my-zsh
Using the JIRA oh-my-zsh plugin to jump to an issue number in the browser.
-
When Bad Things Happen to Good Web Clients (aka Why Did You Send Me a HTTP 400 Error?)
I initially thought that I hadn’t gotten much out of REST API Design Rulebook, mainly because the prescriptions mentioned in the book don’t overlap well with common practice in Rails (or what Rails easily supports). However, one thing that I developed greater appreciation for was proper use of HTTP status codes. Namely, that HTTP 4xx…