HTTP verbs and Rails

At the meeting yesterday evening, Jesper whipped out the largest PostIt I ever saw, and made an agenda for the next meeting. I said I was interested in talking a bit about Rails’ new direction wrt HTTP verbs: it seems [Casper Fabricius](http://casperfabricius.com/blog/) and the web has most of the information at hand: so enjoy [Casper’s …

Live report from the meetup (like a true geek)

**Update:** spelling, adding details, names, URLs. Sitting at the Copenhagen meetup, like some kind of backchannel geek. Typing. (There were five wireless networks around me, so I didn’t need the password to the bar where we sit. Quite a nice location, a quiet, loungy upstairs. I guess this post will be updated more than once. …

Ruby on Rails meetup in Copenhagen

At Reboot, I was at a Ruby on Rails session called “Railways”, hosted by Jarkko Laine. A pleasant talky session which had the ostensible goal of introducing newcomers to old hands, to generate conversation. Danish Railser [Jesper](http://justaddwater.dk/2006/06/06/reboot8-roundup/) summed it up, and he and [Jakob Skjerning](http://mentalized.net/) (“aka Mentalized”, as the Danes will say, not believing you’ll …

Ruby: Local Club to Join

This WednesdayTuesday, 23th of May 2006, is the second [meeting of SSRUG](http://www.rails.se/rails/show/SSRUG+Meeting+2). A _Clubb_ for you to join, and meet with other Ruby enthusiasts in the ‘hood. Time: 1900 hours. Place: see the above wiki link. Lennart (of _Lund Agile Languages User Group_ fame) will be there, and we’ll try and get as many heads …

RubyGems: gem_server

So, you are using some modules for Ruby, in the shape of [gems](http://rubyforge.org/projects/rubygems/) (read [the book](http://docs.rubygems.org/)!). You need to read the gem’s docs. Instead of Googling, fire up a local pure-Ruby webserver ([Webrick](http://www.webrick.org/)), on a custom port, and view the beautiful RDoc pages there, in their web-native shape! Invoke the thing like this: gem_server Then …

Read a book (Beyond Java, by that kayaker)

This weekend I had some wonderful spare time, and I spent some of it reading [Beyond Java](http://www.oreilly.com/catalog/beyondjava/), a book about the Next Language. (Spoiler: It is [Ruby](http://www.ruby-lang.org/en/), or some cool continuations-based project – read: [Seaside](http://seaside.st/) with Smalltalk. But you knew that.) The book is chock-full of kayaking metaphors, which got so irritating they became funny. …

Ruby meetup: A new wiki

Albert set up an Instiki [wiki for the upcoming Ruby meetings](http://meetup.delamednoll.se/): and you can also sign up there, to add more glitz to the meeting. And then that got old, and “peterj” started a [Rails.se](http://www.rails.se) wiki, with the same kind of wiki software. We promptly moved our SSRUG, SkÃ¥ne-Sjælland Ruby User Group, to that wiki. …

DHH handles trollish comments well

Yeah, [Ruby on Rails is 1.0](http://weblog.rubyonrails.org/articles/2005/12/13/rails-1-0-party-like-its-one-oh-oh) Someone comments on the project’s website running PHP: > How’s this deployment of PHP based “RoR website” related to believing in your own technology, I ask? And the project lead answers: > We’re running PHP, Python, Perl, and Ruby on this machine. Picking and choosing for whatever task is …

ActiveRecord outside of Rails: handy DB-tool

The popular web framework Ruby on Rails has a core part called ActiveRecord. That is the ORM, the object-relational mapper, which lets you use your database records “as objects” in your code. With Rails, ActiveRecord is very powerful, but it’s not that bad on its own either. Here is an example of using it as …