This changes everything (10/4/2005)
12 years after I first used mosiac, it suddenly hit home how the web has changed everything. What an incredible equalizer the web is !
I wanted to get Hepatitis A shots for my son, who is 20 months old. My pediatrician said he cannot administer this since he is less than two years old, per [...]
rails with mysql: uninitialized constant MysqlCompat::MysqlRes
if you get this error on snow leopard, check to see which version of mysql is installed.
%> file `which mysql` <– notice the backticks
The correct response is below
/usr/local/mysql/bin/mysql: Mach-O 64-bit executable x86_64
If you have 32 bit mysql installed, uninstall it (be sure to back up your databases first) and then install the 64 bit db. [...]
Upgrading rails from 2.0.2 to 2.3.5
Edit config/environment.rb. Change the rails version from 2.0.2 to 2.3.5
run rake rails:update
Edit config/environments/development.rb. Remove the line
config.action_view.cache_template_extensions = false
thats it