The Netherlands is nowhere near Kiev

Date Arrow  April 27, 2008

Not to mention that Singapore is slightly southern where it should be, or that Houston is a bit too close to Monterrey, but I’m too picky there.

Found in one of those companies doing website monitoring 24×7, which shall remain nameless. In terms of maps (and geographical knowledge in general) I’ve seen much worse, if you [...]

Tagged   HumourComments  Add Your Comment 

Steve Yegge on Apple APIs

Date Arrow  April 26, 2008

A comment at the bottom of his own lengthy but otherwise interesting article:

One more important point: I’m surprised that some people seem to think I’m implying some programming studliness from my little 3-day excursion. Not so: any first-year college student or intern, or heck, self-taught dude in his basement, could have done exactly what I [...]

Tagged   Apple · Blogs · OpinionComments  Add Your Comment 

wp-super-cache problem? Easy fix

Date Arrow  April 23, 2008

I’ve just installed the excellent wp-super-cache plugin to accelerate things a bit in this blog; today somebody sent one of my pages to reddit and I’ve had more users than usual! - by the way, thanks for coming! :)
Update: I admit, it also has a bit to do with the reading of today’s entry in [...]

Tagged   How to? · Open SourceComments  Add Your Comment (3)

Installing PostgreSQL 8.3 on Leopard

Date Arrow  April 23, 2008

This is the documented path to my discovery of PostgreSQL 8.3, which I’ve never used before. Now that MySQL’s community is getting hammered to death by Sun, and thanks to all the good things I’ve heard about it over the years (including enhanced performance on multicore systems and greater scalability), I really wanted to install [...]

Tagged   Django · How to? · Open Source · Ruby on RailsComments  Add Your Comment (3)

Extracting e-mails from a vCard file with Python

Date Arrow  April 23, 2008

Let’s say that you have a vCard file. You can export it from your Mac OS X AddressBook.app, or from any other similar application. Now you need to extract some information from it, namely the e-mails, for spamming your friends with some boring news. Typical.
Enter vobject. This Python library is part of the Chandler effort [...]

Tagged   How to?Comments  Add Your Comment (2)

Quick spec from your Python tests

Date Arrow  April 17, 2008

Using Python’s own unittest package, here’s a small script that can iterate over your test suite to output a small, quick, nice list of the tests in your application:

import unittest

loader = unittest.TestLoader()
tests = loader.loadTestsFromName(’path.to.your.tests.package’)
for test in tests._tests:
print test._tests[0].__class__.__name__.replace(”Test”, “”)
for method in test._tests:
[...]

Tagged   Django · How to? · QualityComments  Add Your Comment (2)

Google Earth: Buenos Aires

Date Arrow  April 17, 2008

Chiste de Rep en la tapa de Pagina/12 de hoy:

Tagged   Argentina · HumourComments  Add Your Comment 

Starts Wars

Date Arrow  April 15, 2008

Seen in Dark Roasted Blend:

Tagged   Act Now · HumourComments  Add Your Comment 

ACOR SOS racisme: il n’y a pas de fumée sans feu.

Date Arrow  April 8, 2008

(reçu par e-mail)
Chère sympathisante, cher sympathisant,
Le 1er juin 2008, l’initiative UDC “pour des naturalisations démocratiques” sera soumise au vote. Son titre semble anodin et faire appel au bon sens. Y aurait-il quelqu’un pour souhaiter des naturalisations antidémocratiques? Rappelez-vous pourtant: le tribunal fédéral a annulé les “naturalisations démocratiques” qu’avait inventées la commune d’Emmen.
Naturaliser à la tête [...]

Tagged   Act Now · SwitzerlandComments  Add Your Comment 

How to build ohcount on Leopard

Date Arrow  April 7, 2008

If you do not know ohcount, you should; the guys at ohloh.net have GPL’d one of their core components, namely the one that allows you to perform source code line counts in your own projects. Neat and useful!
However, the current ohcount distribution (which you can download from this link) does not build out-of-the-box in Leopard. [...]

Tagged   Apple · How to? · Open SourceComments  Add Your Comment (1)