Just started using JSCoverage for testing code coverage in Javascript. It’s super simple to implement—I even got it working with RequireJS (just had to make sure it was using relative URLs).
Category Archives: Link
While researching the various event binding methods that jQuery has available I stumbled upon When You Should Use jQuery’s Live and Delegate Methods.
The syntax for delegate() is simpler than live() and it offers a potential performance boost when you know the context of future objects that will be rendered to the page.
Rom Manager Installation, Start to finish (Tutorial) is one of the best guides I’ve found for installing a new ROM on your Droid X.
I can never find this when I need it. Here is how to find files containing specific text while excluding specific directories in Linux:
grep -R "whatever you like" *| grep -v ".svn/*"
Via linux — Exclude .svn directories from grep — Stack Overflow.
There’s a movement on the web to own your content, rather than handing it off to third parties to do with it as they please. I subscribe to this ideology and believe that if you have the means, you should to. Read more on No More Sharecropping!
Oh, so that’s How to revert (roll back) to a previous revision with Subversion. It’s so obvious that one would want to do a reverse merge rather than just reverting.
I’m archiving the steps here for reference, plus I wanted to add a couple of fixes to the syntax for Subversion 1.6.11. Make sure to check out the post for further information.
svn merge --dry-run -r 73:68 file.js svn merge -r 73:68 file.js svn commit -m "Reverted to revision 68."
10 Things you didn’t know about Firebug really does have a lot of things I didn’t know about Firebug. I’ve always wanted to know how to add conditions to break points in the debugger. Now I know.
Prototypal Inheritance is a timeless article by Douglas Crockford, who is incredibly smart. Hat tip to James Burke for pointing me in this direction.
It’s always good to see big companies pushing the browser-scape forward. Thanks Google
I’ve been chomping at the bit to start in on performance optimizations for the new product at Bulbstorm, but this article has got me into a complete frenzy!