While trying to solve something in SQL this struck me and I found it slightly humorous so I'm posting it here:
alphabet = ('a', 'b', 'c', 'd', 'e')
string = "Hello there, my name is Deepy."
for line in alphabet: print "%s appears %s times" % (line, string.count(line))
result:
a appears 1 times
b appears 0 times
c appears 0 times
d appears 0 times
e appears 6 times
Change the for line to "for line in alphabet: print "%s appears %s times" % (line, string.lower().count(line))" to do case-insensitive matching :-)
Now that the rewrite is in works and the designer sent me parts of the UI we are closer than ever to a public release!
Currently only the UI code is done, but we are working on the rest and if you wish to check out the source then it's available under the tdist project at SourceForge.
But first, enjoy the screeenshot :-)
And sorry for the trees, I made the panorama.

Here's a small release of Pyjton, my SQL-powered logbot.
It obviously requires Twistd, Python and SQLite3.
Those of you who have followed #welcome over at irc.Arloria.net might have noticed a bot named "Pyjton".
I'm closing in on a release for it now, so far it only logs things to a SQLite database but that's going to change as soon as I can find enough time to change to SQLAlchemy.
So far the database is 1.1MB. yay!
After some rough time with several reloads everything is finally working correctly.
Enjoy!
Yarn is now live!
For those of you who have content hosted at Armchairs.be or want it hosted at Armchairs.be, just poke me and I'll set everything up.
Furthermore, if anyone wants to create a theme or happens to have the old logo available then poke me. I kinda need them!