May 2010
3 posts
Video JS | HTML5 Video Player →
HTML5 video player, fallback support for IE, Opera, works with iPhone and supports, h.264, ogg and webm
Duplicate line in xCode with Ctrl+D, finally. →
More details on all the commands to make your own.
http://www.erasetotheleft.com/post/mac-os-x-key-bindings/
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 {} \;