June 2008

You are browsing the archive for June 2008.

Lorem Ipsum Dolor Generator

As a frontend developer there is almost always need of getting some random content to fill in your layouts to test how it works under different text. Having said that, I found a pretty neat short cut in textmate to generated the text for me.
On textmate type lorem and followed by tab and this [...]

Recursively adding files to CVS

Its really odd that cvs (or to my knowledge) doesnt provide commands to recursively add files to the rep. I would the following really cool commands to add them in one go.

  find . -type d -print | grep -v CVS | xargs cvs add
  find . -type f -print | grep -v CVS [...]