http://www.perlmonks.org?node_id=117959

Perhaps I wrote this cause it put me in such good company, but.....

This script that will generate a list of monks who have more XP than everyone who signed up after them. For instance George_Sherston makes the list because no one whose homenodeid is higher than 103111 has more than 1282 XP. In otherwords, he's managed to stay ahead of all the newer monks.

Although this is quite silly it does show the power of HTML::TableExtract.

#!/usr/bin/perl -wT use strict; use LWP::Simple; use HTML::TableExtract; my $maxmonks = 2000; my $monksperpage = 50; my $tinymicros = 'http://tinymicros.com/pm/index.php?goto=MonkStats& +start='; my $te = new HTML::TableExtract( headers => ['Rank','Node ID','Name','Experie +nce'], ); my $offset = 0; while ($offset < $maxmonks) { my $html = get("$tinymicros$offset"); $te->parse($html); $offset+=$monksperpage; } print "NodeID Name Experience\n"; my $maxid = 0; for my $ts ($te->table_states) { for my $row ($ts->rows) { my ($rank,$nodeid,$name,$xp) = @$row; if ($nodeid > $maxid) { printf("%6d %-14s %7d\n",$nodeid,$name,$xp); $maxid = $nodeid; } } }

Here is the current list:
NodeIDNameExperience
979vroom1003990
26179tilly19313
33117footpad9673
53423Masem7054
80749tachyon5423
83485blakem3784
85580dragonchild3694
90987MZSanford1386
103111George_Sherston1282
104919perrin1038
108447demerphq833
116014pjf458
117078Incognito33
117190Elliott29
117408monk_e_magic29
117731guidomortonski16

-Blake