#!/usr/bin/perl
use LWP::Simple;
$| = 1;
$url = "http://setiathome.ssl.berkeley.edu/cgi-bin/cg
+i?cmd=user_stats&email=";
$email = "INSERT DEFAULT EMAIL HERE";
$res_okay = 1;
$email = $ARGV[0] if(defined $ARGV[0]);
$email =~ s/@/%40/g;
@html=get("$url$email");
foreach (@html) {
$_=~s/\cM//g;
$_=~s/<(br|p)>/\n\n/ig;
$_=~s/<(?:[^>'"]*|(['"]).*?\1)*>//gs
}
foreach (@html) {
chomp($_);
m/(.*@.*)/;
$user = "$1";
m/returned: (.*)/;
$received = "$1";
m/this rank: (\d*)/;
$peers = "$1";
m/rank out of (\d*).*is: (\d*)/;
$rank = "$2/$1";
m/ (\d*)\n(\d* hr \d* min)\n(\d* hr \d* min \d*?\.\d*)/;
$results = "$1";
$cputime = "$2";
$avgworktime = "$3";
m/(\d*?\.\d*%)/;
$morework = $1;
$res_okay = 0 if(/No user with that name was found/);
}
if($res_okay) {
print "Seti stats ($user)\n";
print " Results: $results\n";
print " Tot CPU Time: $cputime\n";
print "Avg Work Time: $avgworktime\n";
print " Last Result: $received\n";
print " Rank: $rank (Peers $peers)\n";
print " \% Position: $morework\n";
} else {
print "No details for : $email\n";
}
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|