March 28th, 2007

I was playing round the other night can came up with this SQL to solve a popular tongue twister:

SELECT
COUNT(woodpile.is_chucked)
FROM
woodpile,
woodchuck
WHERE
woodchuck.can_chuck = 1
AND
woodpile.is_chucked = 1

Here is another one:

SELECT COUNT(pepper.picked) FROM pepper WHERE pepper.picked_by = ‘Peter Piper’

A couple more with the tongue twisters:

Which wristwatches are Swiss wristwatches?

SELECT watch.* FROM watch WHERE watch.make = ‘Swiss’

Which witch wished which wicked wish?

SELECT witch.name FROM witch WHERE witch.wish_type = ‘wicked’ AND witch.type = ‘wicked’

Who washed Washington’s white woolen underwear
when Washington’s washer woman went west?

SELECT
washer.name
FROM
washer
WHERE
washer.gender = ‘female’
AND
washer.went != ‘west’
AND
washer.washed = ‘underwear’
AND
washer.fabric = ‘wool’
AND
washer.washed_for = ‘Washington’
May 13th, 2006

Introducing SurvivaBall from Haliburton?

SurvivaBall

“For those of us who typically find corporate America’s response to global warming painfully flaccid, economically self-destructive, and morally reprehensible, Halliburton’s most recent contribution to climate change preparedness comes like a puff of fresh air.” – from Treehugger.

Even better is the instruction card:

SurvivaBall Card

Pretty funny joke.

January 5th, 2006

Ever wanted to know all the english words you could spell with chemical symbols? Well luckly you can no get the list of 56k of them. (via Cynical-C Blog)

January 4th, 2006

I’ve really enjoyed the last couple Dilbert comics where Scott Adams starts drawing himself into the comic. But I could have sworn it was the fourth wall that is broken, not the third. Or, is this some cleaver reference to it being a comic strip?

Dilbert and the 3rd Wall

October 27th, 2005

Firstly there is Who Represents?, a database for agencies to the rich and famous: http://www.whorepresents.com/

Second is the Experts Exchange, a knowledge base where programmers can exchange advice and views: http://www.expertsexchange.com

Looking for a pen? Look no further than Pen Island: http://www.penisland.net

Need a therapist? Try: http://www.therapistfinder.com

And there is an Italian Power company: http://www.powergenitalia.com

Finally we have the Mole Station Native Nursery, based in New South Wales: http://www.molestationnursery.com

(Shamelessly stolen from WebHostingTalk, but I guess was stolen from a b3ta newsletter a while ago.)