Archive for May 24th, 2008

First Time playing Go Kart

Saturday, May 24th, 2008

Today my company organize an event "Go Kart Championship 2008" for his staff only. 60 players was join the event and we were split to 6 team(blue team, gray team, yellow team, red team, orange team and green team). All this color are represent all flag color of kart flag ...

Mac OS X 10.5 (leopard) setup for Rails

Saturday, May 24th, 2008

1.    Install Xcode 3.0 or newer 2.    Make the following entries exist in /etc/profile export RC_ARCHS=i386 export DYLD_LIBRARY_PATH=”/usr/local/oracle/instantclient” export SQLPATH=”/usr/local/oracle/instantclient” export PATH=”/usr/local/oracle/instantclient:$PATH” 3.    Create folders sudo mkdir -p /usr/local/src sudo chgrp admin /usr/local/src sudo chmod -R 775 /usr/local/src cd /usr/local/src 4.    Get Ruby (note: check what the current stable version is) curl -O ftp://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.6-p111.tar.gz tar xzvf ruby-1.8.6-p111.tar.gz cd ruby-1.8.6-p111 ./configure --enable-shared --enable-pthread CFLAGS=-D_XOPEN_SOURCE=1 make sudo make install cd ...