-
Flow charts… made easy
-
Cool… I had no idea this existed
December, 2008
16
Dec 08
links for 2008-12-16
-
Asshats are trying to steal your money
-
This is a farewell kiss you dog!
15
Dec 08
Keeping database.yml dry
That would be dry as in Don’t Repeat Yourself
defaults: &defaults adapter: mysql encoding: utf8 username: root password: root #Wherever mysqld.sock is located socket: /opt/local/var/run/mysql5/mysqld.sock development: database: blog_development <<: *defaults test: database: blog_test <<: *defaults production: database: blog_production <<: *defaults