BTW, for any Greasemonkey users out there, the following script will display the hidden comments below the comic.

Sean


// ==UserScript==
// @name           xkcdimagetitles
// @namespace      http://ertw.com
// @include        http://xkcd.com/*
// @description  Displays the image title
// ==/UserScript==

images = document.evaluate(
        '//img[@title]',
        document,
        null,
        XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,
        null);
for (var i = 0; i < images.snapshotLength; i++) {
        img = images.snapshotItem(i);
      foo = document.createElement('div');
      foo.innerHTML=img.getAttribute("title");
        img.parentNode.insertBefore(foo, img.nextSibling);
}

On Feb 2, 2008 10:30 PM, Montana Quiring <montanaq@gmail.com> wrote:
Hello,

This kind of settles the whole emacs vs. vi debate:
http://xkcd.com/378/

-Montana
_______________________________________________
Roundtable mailing list
Roundtable@muug.mb.ca
http://www.muug.mb.ca/mailman/listinfo/roundtable




--
Sean Walberg <sean@ertw.com>    http://ertw.com/