Bad nights sleep

Laurel was having some whacky dreams last night, which didn’t help me sleep much at all.
Someone screaming “Why dont you just grow the fuck up” in your ear at 3.15am is not a pleasant way to be jolted awake. She assures me it wasnt me in the dream she was yelling at. To paraphrase Mr T “I pity the fool who it was”.

Its all absurd

After a big discussion with Laurel last night, we came to the conclusion that its absurd. What is absurd? you ask, the answer is, EVERYTHING IS ABSURD.
I could start listing examples, but Id be here this time next year and only have scratched the surface. Everyday we bump into more and more absurd situations.

So with the ephihany that the world is simply retarded and is never going to make sense, it makes you appreciate the small things that actually do make sense a lot more.

Playing with Planet

Today while I was bored and hiding inside to get away from the crappy weather, I decided to have a play with planet. Ive screwed something up as it should be serving the page as utf-8 but it doesnt seem to be. Other than that its working well. I’ve put it behind some auth until I check with the people whose blogs I have on it that they dont mind. Until then its just for my use.

First ruby script

Well technically not my first, but the first ive written from scratch. Its just a simple hello world example. Im going to try to extend it to do more now.
Heres what it currently looks like.

#!/usr/bin/ruby
# first cut of a ruby script
require ‘cgi’

# create a cgi object of type html 4
cgi = CGI.new(“html4”)
cgi.out {
cgi.html {
cgi.body {
cgi.h1 { “Hello Ruby!” }
}
}
}

And here is what it does.