Monday, June 30, 2008
Sunday, June 29, 2008
RailsInside.com
A Rails-specific version of RubyInside.com
Saturday, June 28, 2008
Friday, June 27, 2008
Untitled
Porsche engine running the Nordschleife VIRTUALLY!
Thursday, June 26, 2008
Wednesday, June 25, 2008
Flensed
API-compatible micro-swf Flash replacement for popular JS frameworks.
Note: You’ll need version 9.0.124 or later to use Flensed. I was on 115.
Tuesday, June 24, 2008
Untitled
uninitialized constant RubiGen
Sunday, June 22, 2008
Saturday, June 21, 2008
Friday, June 20, 2008
Untitled
Thursday, June 19, 2008
Untitled
Size-changing lamp. This should be in the Ikea catalog by next week.
Wednesday, June 18, 2008
Tuesday, June 17, 2008
Monday, June 16, 2008
Sunday, June 15, 2008
mod_rails (aka Passenger)
Note to self: Passenger Install
If Passenger balks on install, you might have to set some variables:
export APXS2=/usr/local/apache2/bin/apxs
export APR_CONFIG=/usr/local/apache2/bin/apr-1-config
Friday, June 13, 2008
Untitled
MagLev
Thursday, June 12, 2008
Wednesday, June 11, 2008
Untitled
Babelizer
“…type in a phrase, choose a language, and the Babelizer uses the Altavista translation web site to translate between English and your chosen language until the result no longer mutates.”
Not to be confused with the old work-horse software Debabelizer.
Textmate Tips: New Project File
Social Media for CMOs
It’s unlikely that many, if any CMOs read this tiny little tumblelog, but if you’re a tech, and you need to explain social media again, and again, check out this post from Alisa Leonard.
Untitled
Floppy drive playing the Star Wars Imperial March theme.
Tuesday, June 10, 2008
The Wide Finder Project
How much wood could a woodchuck chuck if a woodchuck could chuck wood?
Untitled
What Not To Do: A Bit More Dire
via The Daily WTF
Seth Godin, Twitter, and the beginnings of an identity crisis
Since I’m obsessed with Twitter, here’s a conversation with @alavelle and @sethgodin. Well, not really. Read to find out more.
Monday, June 9, 2008
Apple WWDC - June 2008
60-ish minutes into the ‘08 Apple WWDC, and I’m totally bored. Will update if something exciting occurs.
2:05-ish. Steve is back on stage. Bulk delete and move. Finally!
3G and GPS as expected. Black and white models. 16gb is $299, 8gb is $199. Yawn.
Sunday, June 8, 2008
Saturday, June 7, 2008
Note to self: Don't use table in remote_form_for
I haven’t dug into the Rails source code yet to find out why, but when using remote_form_for, don’t use tables for layout; the request will fail with an authenticity error. Yeah, yeah, I know, why am I using a table instead of a div/css? Why? Simply because it was a quick & easy hack, that’s why.
And no, I haven’t learned my lesson.
Friday, June 6, 2008
Uncountable Names in RESTful Routes
While trying to create a “home” route in my Rails app, I encountered an ‘ActionController::RoutingError: home_url failed to generate from {:controller=>”home”, :action=>”show”} - you may have ambiguous routes, or you may…blah…blah…blah’
It turns out that if your route is uncountable, Rails will call a member URL (hence ‘show’) instead of the collection URL (i.e., ‘index’).
Trevor at ‘Something Learned’ had the solution:
# routes.rb
map.resources :home, :singular => :home_instance
Thanks Trevor!
Thursday, June 5, 2008
EasyRGB
Formulas for converting from one color space to another. Awesome.
Wednesday, June 4, 2008
Untitled
Railsconf in 36 minutes.
Tuesday, June 3, 2008
Monday, June 2, 2008
Writing an Interface Style Guide
From the folks at A List Apart.
Rails 2.1
Meant to post it this morning. Includes:
- Time zone
- Dirty Caching
- Gem dependencies
- Named Scope
- UTC-based Migrations
- Better Caching??