tips

Easily Edit Blocks in Drupal

I finally got around developing a little, nifty Drupal module I've been craving for, for a really long while now. The "Edit Block" module adds inline block editing capability to any theme. It's entirely jQuery-based, hence - no dirty intrusive theming hacks are necessary and is compatible with most properly built Drupal themes.

Some nice themes do provide similar capabilities, but most - do not and adding it is no fun, so now there's a module that does it all for you.

Enjoy

Installing GIT on OS-X In 3 Minutes

How to install GIT on OS-X in under 5 minutes:

curl http://kernel.org/pub/software/scm/git/git-1.5.4.4.tar.gz -O
tar xzvf  git-1.5.4.4.tar.gz 
cd git-1.5.4.4
make configure 
./configure --prefix=/usr/local
NO_MSGFMT=yes make prefix=/usr/local all
sudo make install
Syndicate content