chakwong.com
‘Tis the holiday season
Dec 1st
Many of us fail to realize how fortunate we are until we’re placed in a pretty bad situation, which is all natural since we’re just “being” human. So I guess it’s a natural tendency to bitch and moan over the smallest inconvenience in our petty lives until the hammer of judgement falls in-between our legs and take away whatever we so dearly cherish. I’ve link an article I believe is one of the nicest things any person can do for another person. It all boils down to looking out for one another and events like the one described in the article shouldn’t just happen during a holiday, but every single day! A world will be a much better place if that simple mentality is firmly placed in our character.
http://www.tonic.com/article/wrong-number-brings-thanksgiving-miracle/
Take care!
How to install Ruby 1.9.1, RubyGems 1.3.5, Rails 2.3.4 and SQLite3 on Windows 7 x64
Nov 20th
After reading for days on the pros/cons on the vast amount of web frameworks that are freely given to us by the generous open source community (kudos) has lead me to choose Ruby on Rails to convert my next idea into a reality.
This guide is an extension to what the wonderful folks at OCSBlog.com have already shared with the world in installing Ruby 1.9.1, so I’m not going to reinvent the wheel by repeating what they’ve already explained.
- Follow OCSBlog.com word for word concerning the installation of Ruby 1.9.1 (http://www.ocsblog.com/2009/09/installing-ruby-1-9-1-for-windows/)
- Download ftp://ftp.gnupg.org/gcrypt/binary/libiconv-1.9.1.dll.zip and extract the content of that file into a temporary folder.
- Open that temporary folder and copy/paste iconv.dll into C:\Ruby\bin
- Download RubyGems 1.3.5 from http://rubyforge.org/frs/?group_id=126 and extract the content of that file into a temporary folder.
- Open a command prompt with “Run as Administrator” and go into that temporary folder where you had extracted RubyGems 1.3.5 into.
- Type the following command ruby setup.rb
- Go do a couple of jumping jacks.
- Type the command gem install rails to install Rails 2.3.4
- Some more jumping jacks…
- Type the command gem install sqlite3-ruby to install SQLite3
Time to test out your hard work!
- Create an empty folder where you would like your project to reside
- Open a command prompt and type rails path/to/your/new/application/folder
- Type cd path/to/your/new/application/folder
- Type ruby script/server
- Open your web browser and type in http://localhost:3000
- Now let your imagination run loose!
Thanks and I hope you find this guide useful.
