I’m not exactly sure what this is yet, but the transparent png trick is pretty dang cool. Make sure you resize your browser window once the page is loaded, then watch the vines.
http://silverbackapp.com/
Neat-o Transparent PNG Trick
A Rake Task for Faker
Need to insert some fake data in your development database? Grab the Faker gem and drop this into lib/tasks/fake_data.rb. Customize it for your model(s) and execute with rake db:development:fake_data.
namespace :db do
namespace :development do
desc "Create records in the development database."
task :fake_data => :environment do
[...]
