tail -f dev_life.log
Ruby @ Codecademy
Ruby course is here now!
Cloud SQL from Google
Web Programming with Ruby on Rails
Dotcloud, Sinatra and problem with mysql2 gem
If you’re trying to use “mysql2” gem with your Sinatra app and connection can’t be established, use “mysql” gem instead (in your Gemfile). Don’t know why, but Passenger doesn’t work properly with “mysql2” and shows me:
Please install the mysql adapter: `gem install activerecord-mysql-adapter` (mysql is not part of the bundle. Add it to Gemfile.)
AppFog - PaaS for Hackers
Today AppFog announced their pricing. A think it’s worth a look, because unlimited apps within 2GB RAM and a 1GB database limit sounds very good.
The easiest way to run PostgreSQL on the Mac
Moqups - HTML5-based mockups tool
Pretty fast, simple and free tool for interactive wireframes.
Style guides for Google-originated open-source projects
How to set UITableView background for iPad
If you’ve got a problem with setting UITableView background for you iPad with Interface Builder, just put these lines of code at ViewDidLoad method:
[myTableView setBackgroundView:nil];
[myTableView setBackgroundView:[[[UIView alloc] init] autorelease]];
I know it’s some kind of weird case, but works very well.
(Source: stackoverflow.com)