Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

RE: Post Election Day Perl

by Adam (Vicar)
on Nov 09, 2000 at 03:48 UTC ( [id://40653]=note: print w/replies, xml ) Need Help??


in reply to Post Election Day Perl

Only the electoral votes matter. Here is my offering:
perl -Mstrict -MLWP::Simple -we "$_=get('http://www.cnn.com');($a)=/Go +re\D*(2\d\d)<\/span>/m;($b)=/Bush\D*(2\d\d)<\/span/m;print+($a>270?'G +ore Wins':$b>270?'Bush Wins':'Undecided'),$/;"
That's all one line. If your browser added a plus sign, remove it. The only one in my code is print+($a
Oh, and I already have a T-Shirt, but I really want a Mug!

Oh, to have this send you the result as an e-mail just append this to the end (on Linux, or wherever 'mail' is available)

| mail -s 'Election Results' adam@perlmonks.org

Update: After some thought I realized that you would only want to be e-mailed when the results were in. So how about:

perl -Mstrict -MLWP::Simple -we "{$_=get('http://www.cnn.com');($a)=/G +ore\D*(2\d\d)<\/spa/m;($b)=/Bush\D*(2\d\d)<\/spa/m;$@=($a>270?'Gore W +ins':$b>270?'Bush Wins':0);die `echo $@ | mail -s Results adam@perlmo +nks.org`,$@,$/ if $@; sleep 600; redo}"

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://40653]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others musing on the Monastery: (2)
As of 2024-04-24 16:24 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found