Here is a quick and dirty little app that will query http://perladvent.org for
the module of the day and install it via CPAN. You must have the proper
permissions on your system to actually install the module. Better late then never.
:)
use strict;
use warnings;
use CPAN;
use Time::Piece;
use LWP::Simple;
use Data::Dumper;
use HTML::TokeParser::Simple;
use Lingua::EN::Numbers::Ordinate;
use constant YEAR => 2003;
my $time = localtime;
unless ($time->year == YEAR && $time->mon == 12 && $time->mday < 25) {
die "today does not have module\n";
}
my $day = ordinate($time->mday);
my $html = get("http://perladvent.org/@{[YEAR]}/$day");
my $p = HTML::TokeParser::Simple->new(\$html);
while (my $t = $p->get_token) {
if ($t->is_start_tag('div')) {
my $attr = $t->return_attr;
if (defined $attr->{class} && $attr->{class} eq 'moduletitle') {
$t = $p->get_token;
CPAN::Shell->install($t->as_is);
}
}
}
UPDATE:
Podmaster++ >:)
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
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
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
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.
|
|