PHP

Git PHP lint pre-commit hook

This post describes a small tweak to make to php lint checking via a git pre-commit hook. Using git hooks to check syntax errors – Tim Akinbo’s Blog

Habari Project impressions

I have to admit that i jumped over to using Habari for my blog mainly based on how well designed and obejct oriented the underlying API seemed from the documentation. Coming from looking at Drupal code all day, which is painfully NOT Object Oriented, yes with capitals, the code is more readable and, so far, …

Habari Project impressions Read More »

Useful SVN one-liner

Add it to your aliases, this one liner adds all unrecognized files in the current directory (preceded by ? in svn status) to a svn project. svn st | grep ‘^?’ | cut -d ‘ ‘ -f 7 | xargs svn add