Undogfooding

2009-07-08, , , Comments

David Jones perfectly captures the look and feel of Sir Tony Hoare’s presentation at Europython 2009

Tony Hoare is clearly old skool. His slides had the calm and aged patina of the OHP era, and I thought they were all the better for that. If you have a message, then that message can be conveyed without all the flash and shine that PowerPoint tempts you with (although, being a Microsoft man, of course his slides were in PowerPoint).

My first turtle sketch

Note the parenthetical comment: Tony Hoare works for Microsoft and he uses Microsoft software, an activity developers refer to as “eating your own dogfood”. Also eating dogfood at Europython, Gregor Lingl employed his very own turtle to guide the audience through a nifty presentation belying the reptile’s slow-and-steady reputation. I’ve always enjoyed sketching code using the Python interpreter, and sketching pictures with a turtle feels very pythonic.

My first turtle sketch
Python 3.1
>>> from turtle import *
>>> shape('turtle')
>>> circle(100)
>>> fillcolour('red')
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
NameError: name 'fillcolour' is not defined
>>> fillcolor('red')
>>> begin_fill(); circle(100); end_fill()
>>> def grey(pc): c = pc/100; fillcolor(c, c, c)
... 
>>> clear()
>>> def doit(r): begin_fill(); grey(r); circle(r); end_fill()
... 
>>> for r in range(100): doit(r)
... 
^C^C
Traceback (most recent call last):
...
>>> clear()
>>> for r in range(100, 0, -5): doit(r)
...
>>> fillcolor('white')
>>> forward(150)

Gregor Lingl’s session at Europython wasn’t the only one delivered using software developed by the presenter. What would be the opposite of eating your own dogfood, I wondered? Abusing someone else’s software, perhaps.

After one too many bad presentations at a meeting in January 2000, I decided to see if I could do something about it. — Peter Norvig

I’m fairly sure Peter Norvig had no part in PowerPoint’s development. In a hilarious satire he skewers the popular presentation tool with its own Autocontent Wizard.

Gettysburg PPT, slide 1

Back on the subject of overhead projectors, I saw one put to good use by another eminent old-skooler, Donald Knuth, at the recent Mathematics and Fiction workshop in Oxford. Asked by passport control at London Heathrow if he’d be visiting Oxford on a business trip or a pleasure trip, Knuth had answered: no, he’d come on a ego trip.

Knuth was in Oxford to talk to his fans about about Surreal Numbers, a book he wrote in just a couple of weeks in 1973 while taking a break from working on The Art of Computer Programming in a hotel in Oslo, and which may well be the only example of a mathematical theory first published in fictional form.

Surreal Numbers book cover

For the workshop Knuth had gone back to his files and found his working notes, the original hotel brochure, photos, hand-written reviews by Pólya and others, though he couldn’t locate the paper napkin on which John Horton Conway had sketched the axioms underpinning the number system a few months before1 — Knuth had copied this source material onto acetates which he then sorted and shuffled on the OHP according to the direction his reminiscences and questions from the audience took him.

Unlike Tony Hoare, Donald Knuth wasn’t making a formal presentation, but I was struck by some advantages offered by the OHP. For one, the process of getting slides displayed seemed foolproof — at Europython we had the usual catalogue of computer/screen interface glitches (unwanted dialog boxes popping up, batteries dying, screensavers kicking in, missing Mac display dongles, delays while rebooting Ubuntu, alignment issues). The OHP also facilitated a dynamic presentation style: Knuth accessed his slides at random, composing screens from more than one slide on the fly, and pointing to areas of interest directly using a finger. He didn’t modify his slides during the session by writing on them, but that would also have been possible.

In a supreme example of dogfood consumption, a couple of years after publishing Surreal Numbers Knuth took a rather longer break from TAOCP to work on TeX, a typesetting system whose results match the beauty of his writing.

§

… You get surreal numbers by playing games. I used to feel guilty in Cambridge that I spent all day playing games, while I was supposed to be doing mathematics. Then, when I discovered surreal numbers, I realized that playing games IS mathematics. — John Horton Conway


1 In fact, he’d lost the napkin before his stay in the hotel in Oslo, which explains the difference between the axioms used in Surreal Numbers and the ones originally suggested by John Horton Conway.