Archive for the 'work' Category

Ruby on Rails in Leopard in 5 minutes

So I just discovered that Leopard comes with a version of Ruby on Rails (RoR) pre-installed. The only problem is its a bit dated but there is a command-line one-liner to update it all no sweat with RubyGem (the Ruby package manager):
Continue reading ‘Ruby on Rails in Leopard in 5 minutes’

dojo.beer() - Berlin

Dojo.beer(), Berlin
Pictured (from left): Tobias aka klipstein (München), Norman aka matsuri (Berlin), Victoria & Nikolai aka nonken (Amsterdam) and Wolfram aka mccain (München) [note: aka’s are IRC names
Yesterday I meet some Dojo developers in Berlin for the dojo.beer() which was announced on the Dojo website last week. It was a sunny day and we hit one of Berlins many beaches next to the Spree.
Continue reading ‘dojo.beer() - Berlin’

Drupal, the swiss army knife of CMS’es

I just completed another site called ‘Picture Your Rights‘ for the Dutch NGO Loesje whose international HQ is now in Berlin. Its a Photo & Slogan completion about Human Rights and anyone can upload a picture or post a slogan. There will be 4 rounds each with a different theme.
Continue reading ‘Drupal, the swiss army knife of CMS’es’

Managing scattered online Social Life on multiple Social Networking sites

I’ve been kicking the idea of a central way to manage accounts on many social networking apps for a while now. I think it starts to go beyond just managing social-network accounts because what your really doing is managing identity.

Some are saying that 2008 is the time for this sort of “killer app”. Google have also started to chip away at the problem offering a way to update your status in many places at once.
Continue reading ‘Managing scattered online Social Life on multiple Social Networking sites’

Strategy learning game

I like Strategy games. I get quite addicted quite easily and so I tend to keep wellll away form them. I recently got the itch again, like an ex-smoker and started to look into playing the old ones on my mac via VMWare.

The first thing I found was Master of Orion II, which I played for a night and realised that its actually quite a mundane game, but never the less you find yourself there for hours hitting the “Next turn” button to see if anything you have planned to build has finished, and how much cash you have. Its all virtual and the moment you step away your over it but once your in, your hooked.

I was thinking that this type of addiction would be very handy if you could apply it to more productive tasks like learning. So I’m trying to figure out what the key things are that make strategy games addictive.
Continue reading ‘Strategy learning game’

handy Javascript debugging function

Actually taken from the JS v1.4 Guide and modified to be a little more useful:

function showme(obj, obj_name) {
   var result = ""
   var null_list = "";
   obj_name = (obj_name != '')? obj_name: 'obj';
   for (var i in obj) {
		if(obj[i] != null && obj[i] != '')
			result += obj_name + "." + i + " = " + obj[i] + "\n";
		else
			null_list += i + ", ";
   }
   return result + "\n NULL propertys: \n" + null_list;
}

Pass it an object you want to see the properties of and it will show them to you. Like so:

alert(showme(item[i]));

RSS explained!

This is a great little video that explains what RSS is about. I’m always looking for these sorts of things to help people with the “tricky” stuff about the web.

(by the way you can subscribe to this site if you like :)

The significance of AJaX

The name AJaX comes from one article written in January of 2005which was the first to use the acronym AJaX. In it is mentioned the technology (i..e the one function ‘XMLHttpRequest’) had been around for some time and is probably the only significant contribution that Microsoft has made to the internet’s development to date.
Continue reading ‘The significance of AJaX’

You/me/we/them are the web

I great screencast about where the Internet/Web/Super-Information-Highway is going and where its come from.

Webby Awards judging criteria

The Webbys were just on and Erika was a jduge and attended the ceremony. If you want win a webby award you have to try and scrore high the following:
Continue reading ‘Webby Awards judging criteria’