Vanilla 1.1.9 is a product of Lussumo. More Information: Documentation, Community Support.
Comments are annoyingly hard to search considering there have been some real gems. Does the public dump allow for searching for the highest voted comments? If not, I think it might be fun to compile a list by hand, maybe put them on a website somewhere with screenshots.
See also this thread. You can get such a list from the public dumps. I would do it with the following command:
sort -t \" -k 12 -n -r comments.xml | head -n 17
The -t \" -k 12 means "look at the stuff between the 11-th and 12-th quotation mark" (actual quotation marks in comments are encoded as " so this always gets the right field). The -n -r means to sort all the comments numerically rather than lexicographically, and in reverse order, so that the biggest numbers come first. Piping it to head -n 17 means, "just show me the 17 most highly voted comments" ... if you leave this off, you'll end up with a list of all comments sorted by score in descending order.
So much for XML :)
@Mariano: Simple tools for simple jobs. When I want to answer more complicated questions, I bust out the XML parser.
@cmcleman: if you want to whet your appetite, here are the top twenty (broken up because of this forum's character limit):
Whoa! I have a highly voted comment?
1 to 8 of 8