24 May 2010

Video JS | HTML5 Video Player

http://videojs.com/

HTML5 video player, fallback support for IE, Opera, works with iPhone and supports, h.264, ogg and webm

24 May 2010

Duplicate line in xCode with Ctrl+D, finally.

12 May 2010

OSX SVN remove pesky svn files from a folder

In Terminal navigate to the correct folder first.
To see what this command is going to remove run

find . -name .svn

Then when you want to remove these files. Note the traling slash semi colon.

find . -name .svn -exec rm -rf {} \;