Kom maar op

2009_1222_eerst_beelden_kom_maar_op_editorialFollows the inevitable post for our Dutch audience: “my” channel Z@PP has recently shot a video based on their pay off KOM MAAR OP. It’s with all the presenters and performed by Monique Smit. The lyrics are a bit thin but the fun doing it more than makes up for it. The clip will be broadcast on Z@PP from 27 December, but you can watch the making of here.

Simulating JSON PUT in Rails

I am currently working on a JSON API for a game that is to be launched in February. The game developer and I have decided on it to communicatie between flash and the database for a simple reason: built in in both Rails in Flash. There is one interesting thing though. Flex has no idea what a PUT request is and Rails, in recent versions, won’t let you override with a _method parameter.
Continue reading

Presenters in Ruby on Rails

Ruby on Rails is all about Model View Controller (MVC). This is a web development technique to separate database, html and code. This is a smart idea since these three fields require very different things. Usually this separation works well. Sometimes though I need a fourth distinction. And I use a Presenter.

Update: .autospec file added
Continue reading