There is an alternative search engine to CPAN for which a CPAN-weekly mailing list has been setup. We are beta-testing it right now.

You can email the maintainer of the website and beta-test along with us!

Alternatively, here is a "perl" script which you can put in your cron and get a weekly text/plain email of cpan.org/RECENT.html. I quoted Perl above because I am leveraging both mail and lynx and external technologies instead of writing a Pure perl script.

#!/usr/bin/perl $ENV{TERM}='vt100'; $recent_file='/tmp/RECENT.txt'; $email_file='/tmp/ARRIVALS.txt'; $email_recipient_list='princepawn@yahoo.com'; system "lynx -dump http://www.cpan.org/RECENT.html > $recent_file"; open T, $recent_file; while (<T>) { /(authors.*readme$)/ && push @readme, $1; } `echo "" > $email_file`; for $readme (sort @readme) { my $url = "http://www.cpan.org/$readme"; warn $url; system "lynx -dump $url > X"; system "echo $url >>$email_file"; system "head -5 X >>$email_file"; system "echo >>$email_file; echo >>$email_file"; } `cat $email_file | mail $email_recipient_list`;

In reply to Re: CPAN Recent, Savior by princepawn
in thread CPAN Recent, Savior by koolade

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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, details, 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, summary, 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.