Sirius Cybernetics Corporation now make pizza
I had a frozen pizza today, Goodfellas Delicia. And much to my surprise their slogan is the same as the
AJAXy Scriptaculous goodness
Filed under: Computers, Galaxia, Games, Javascript, MPOGs, Programming, Ruby on Rails, Technology, Web Programming
Scriptaculous is a Javascript library used for doing AJAX stuff and certain visual effects. It’s very well written, has excellent cross browser support and best of all there are cool functions in Ruby on Rails for using it.
One of the coolest features is drag and drop. I’ve already implemented it in Galaxia Ruby for adding ships to fleets :)
Saddam Hussein to sue George Bush and Tony Blair
In an interesting twist,
Some of the points seem valid, some are rather silly. To read more detail, check out the Washington Post.
Tree structures in Ruby on Rails
Filed under: Galaxia, Games, MPOGs, Programming, Ruby on Rails, Technology, Web Programming
This is becoming a trend – another built-in feature of
You can use
Using “type” in Ruby on Rails
Filed under: Galaxia, Games, MPOGs, Programming, Ruby on Rails, Technology, Web Programming
By default Rails applies special meaning to certain fields in a database table. One of these fields is “type”. The type fields is used by Rails to create a “single table inheritance model”. This sounds fairly complicated and is best explained with an example:
Imagine a forum system. A forum will have threads and replies. Threads and replies are different and have different functionality, but certainly share a lot of characteristics. So you might create a class message with two sub classes: replies and threads.
In Rails you can store all these in one messages table with a type field set to either reply” or thread. When you load a message it will actually create either a reply or thread object (in stead of a message object). When you create a new object it stores it in the messages table with the correct type.
This is ideal for Galaxia. In fact it’s the model I used all along – I just had to write the functionality myself.


