humor: what's your editor?
Hello, This kind of settles the whole emacs vs. vi debate: http://xkcd.com/378/ -Montana
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/
OK, I must be retarded... Gone through the docs a million times, can't find anything about how the size/number of characters per post is controlled. Hoping someone here can point me in the right direction...
participants (3)
-
Montana Quiring -
Raymond J. Henry -
Sean Walberg