May 07 2012
Apr 27 2012

Using Vundle for VIM

VIM | comments

During the Geekcamp in SG last year, there was a presentation on VIM . One of the attendees thought it would be cool if developers could just do "bundle install" to install VIM plugins.

It's great to know there's vundle now which allows us to install plugins using ":BundleInstall."

Continue reading »
Apr 26 2012

How to Install Ruby 1.8.7 via RVM on OS X Lion

Ruby Rails Lion | comments

Not sure if I'm the only one experiencing this but installing Ruby 1.8.7 using these commands don't work:

              rvm install 1.8.7
              
              or 
              
              CC=/usr/bin/gcc-4.2 rvm install 1.8.7
              

This worked for me:

Continue reading »
Apr 25 2012

Fix Packages With Expired Signatures To Update Xcode

Xcode Apple | comments

Failed to update a Mac earlier so I encountered some issues regarding XCode update.

              cat /var/log/install.log
              
              shows
              
              The package "DeveloperTools.pkg" is untrusted. 
              

This blog post was very helpful but to make your life easy, try this:

Continue reading »
Mar 26 2012

How to use VIM to search and replace text accross multiple files

VIM, Ruby | comments

Recently found out my apps aren't working due to FactoryGirl changes. I've honestly felt more comfortable using Textmate until I tried its find and replace feature. It totally works but it is so slow.

Continue reading »