Tag Archives: code

Backbone.statefulEvents, Part 1 — how we built our first Backbone plugin

This is an essay describing how (and why) I build my first Backbone.js plugin. It’s mainly written for readers who want to write extensions themselves, but can’t figure out how to get started—this post mainly describes the design process of the plugin. My next post will be about the implementation. Quick note: you need to [...]

Backups

I bought a 500Gb external hard drive recently—and for some time had been using flyback to backup my home folder there. I used to take a weekly backup, but after time, I stopped being so regular. It has been months now since I last took a backup, so I decided to start afresh. This time, [...]

SVN one liner

Useful one-liner that removes all Thumbs.db files from your SVN: svn rm `find . -name Thumbs.db | xargs`