Linode and The 10 Dollar Plan 2014-06-17
Jesse Shawl17 Jun 2014
Linode and The 10 Dollar Plan Linode has recently expanded their hosting offering to include a $10 a month plan.
jesse.shadded August 2026
Jesse Shawl17 Jun 2014
Linode and The 10 Dollar Plan Linode has recently expanded their hosting offering to include a $10 a month plan.
Jesse Shawl12 Jun 2014
sudo npm install -g is an antipattern Earlier this week, I began working on my first npm package. I've published it, but only to understand how packages are distributed via npmjs.org.
Jesse Shawl27 May 2014
Clean up pull requests with git merge --squash Sometimes, I will receive a pull request to one of my repositories that has commits that affect several files.
Jesse Shawl24 May 2014
Persistent git log with git loglive I recently watched a talk by Tim Berglund on advanced git - http://vimeo.com/49444883 wherein he demos some git plumbing commands with a git log that keeps...
Jesse Shawl23 May 2014
A Better Git Log The standard git log is pretty useless: It tells me nothing about my current branch and/or how it differs from its upstream counterpart.
Jesse Shawl23 May 2014
Clean up Commits with git cherry-pick -n Sometimes I binge code for like 3+ hours and work on several unrelated things.
Jesse Shawl23 May 2014
Repo Stats from the command line Did you know?! You can see github-style commit stats from the command line.
Jesse Shawl21 May 2014
Warning! push.default is not set Have you seen this before when running git push with no remote or branch name specified?
Jesse Shawl12 Dec 2013
Practical Applications of Pseudo Elements and Classes A note about browser support: There's some pretty crazy stuff going on in this post.
Jesse Shawl3 Dec 2013
When to Rebase I've come to appreciate that scary git command - git rebase. I've found two incredible uses for it: - Updating feature branches with progress made on master.