Musings about Coding, Business and other Geek Stuff Live and Direct from somewhere on the planet
December 16, 2004
Rails 0.9 released

David and co have just released the latest version of Ruby on Rails.

Apparently there is some work to do when upgrading an application which you can check out here, only I can’t reach it from my PC. Well I hope I’ll be able to read it in the morning.

To upgrade the actual rails on your machine do a:

gem update rails

from your commandline, assuming you have Gem installed.

Lots of interesting new features that I will comment on when I try them.

Update The owner of hieraki.org has problems with his dns, but I have the all magic IP address to put in your hosts file if you want to read the update documentation.

69.90.10.37     rails.hieraki.org

Put this in /etc/hosts under *nix (including Mac is my guess) and c:\windows\system32\drivers\etc\hosts under Windows.

Posted by pelleb at 06:59 PM
December 14, 2004
Great review of Solaris 10

While I was never a Solaris fan before, Solaris 10 has really caught my attention. My favorite new feature being Solaris Containers . Jem Matzan has a great relatively in depth review where he coveres many of the great new features.

One thing is that he says the latest release doesn’t support AMD64 in 64 bit mode. I believe the very latest one does.

Download a copy yourself it’s free

Posted by pelleb at 02:40 PM
December 13, 2004
Rails on Ruby - a welcome antidote to Websphere

Websphere Mordor

At my day job I have the great displeasure of working with Websphere which has to be one of the most anal app servers I have had the (dis)pleasure to work with.

What can I say. The joys of scripting in jython with wsadmin and imagining the drunken night playing with babushka dolls which must have inspired the wonders of it’s logical simple admin interface.

Enter Frodo on Rails

Ok, it is powerful, but talk about feeling in a Kafkaesque world at times. Then enters Ruby on Rails as the swift and elegant hero ready to take on the world. Boy am I having fun. I hope to release my first project built in it in January if my day job allows it.

Like everyone else I watched the video and thought cool. Then I downloaded it and ended up putting it off as I need to work with Java for both my own projects and my current day job. When the frustrations of Websphere and friends got the most of me I decided I needed a breath of fresh air to kickstart my new projects.

Ruby is cool. Ruby on Rails is cool. It really just works. Of course it fills me with silly national pride to know that it is a Danish invention as well. David the developer/evangelist is a great example of the new generation globalist geek entrepreneurs that I hope will help inspire other bright sparks here.

My idea for ActiveUser

Ruby consists of some nice modules with an Active theme going on:

  • ActiveRecord is the easy to use ORM library (The M in MVC)
  • ActionPack The Controller and View part of the MVC
  • ActiveMailer Something as innovative useful as a simple mailing framework.

I found lots of discussion about various variations of the same login concepts. So I was thinking we should take the Dont Repeat Yourself concept and create an ActiveUser package, meant to be integrated into ActionPack. I am working on that right now and hope to have something to show shortly (work allowing).

Posted by pelleb at 03:54 PM