Tag: rails

  • Featured In Rubyology Podcast #48

    The talk I gave at yesterday’s Phoenix Rails meeting will be featured in Rubyology Podcast #48, courtesy of Chris Matthieu. Thanks for the effort and kind words! The Mugr.com demo portion at the end got cut out unfortunately, but the meat of the technical discussion is available for your listening pleasure. Slides: Keynote PDF Listen…

  • Rails Presentation: attachment_fu, Kropper and Mugr.com face-based services preview.

    I’m giving a brief talk at tonight’s Rails meeting in Chandler at 7:00pm on what we’re doing with attachment_fu and Kropper for upcoming face-based search service mugr.com. I’ll post the slides afterwards for those who can’t make it, but you won’t get to see the รœber-secret developer build unless you come ๐Ÿ™‚ Slides: Keynote PDF

  • Rails attachment_fu/Kropper Scaling Fix: attachment_fu_skip_resize

    I recently integrated Kropper into a custom RoR application for OpenRain affiliate img surf. A fundamental flaw in the upload-save-crop-save process used by Kropper is that attachment_fu automatically scales down the image on first save to :resize_to dimensions. After the subsequent crop–which may result in a significant drop in resolution–the image is scaled back up…

  • Dynamically Generating SSL Certificates with Ruby on Rails

    OpenRain had a couple projects recently need to programmatically generate private keys and SSL certificates in Ruby. To contribute back to the community, we’re releasing several small things today. SSLsicle.com A simple form which does the OpenSSL grunt work and pop outs an SSL certificate ready to use with Apache (or whatever). SSLsicle uses.. eassl_fix…

  • RailsConf 2007 Session Content Download

    Here are all the working RailsConf 2007 presentation slides and additional session materials I could find this morning, packaged in a single .zip file for your convenience. The content is an aggregate of things posted to the wiki, web2expo and a few other places on the web.

  • RailsConf 2007 Photocast

    Me and a couple thousand other Rails users are chillin’ in Portland right now enjoying the wifi. Here’s my photocast of things related to RailsConf and Portland, which I’ll update each night.

  • RailsConf 2007 (USA) Registration Re-Reopened. New Track & Keynote Announced!

    I received this from O’Reilly just a couple minutes ago.. —- BEGIN EMAIL —- RailsConf 2007 May 17-20, 2007 Oregon Convention Center Portland, Oregon http://conferences.oreilly.com/rails A fourth technical track has just been added to the RailsConf schedule. That means a limited amount of space has opened up for those folks who didn’t get a chance…

  • Fixing "wrong number of arguments" Error w/Rails 1.2.3 Upgrade

    If you’ve just upgraded your Rails gem from 1.2.2 to 1.2.3 and are getting the following error on database hits.. wrong number of arguments (1 for 0) /opt/local/lib/ruby/gems/1.8/gems/activerecord-1.15.2/lib/active_record/vendor/mysql.rb:566:in `initialize’ ..note that updating RAILS_GEM_VERSION in environment.rb appears to be required. Running a 1.2.2 application on 1.2.3 (even when 1.2.2 and all dependencies installed) will yield this…