Archive for March, 2009

Converting Avi files to Mp4 for Nokia 5800

I’ve come to following Ruby script for converting an avi to mp4, Nokia 5800 ready. Subtitles included and 2 pass (which means high quality results).

More »

Adding all new files recursively to Subversion

Sometimes you want to add a lot of new files to a subversion repository. An smart solution can be found on this post: svn status | grep "^?" | awk ‘{print $2}’ | xargs svn add That will add the new files to the repository in just one command, not looping around for each file. [...]

More »

Piston and git

As many Rails developers I have some projects that I haven’t migrated to git yet. Those are still under Subversion and I manage its plugins with Piston. But what happen when you want to import a plugin hosted on a git repository? That the gem “piston” doesn’t work. The trick is that the last version [...]

More »