4
votes
How do I setup a local CPAN mirror?
CPAN::Mini is fine. By default it keeps only the latest version of a distribution, not every version as CPAN does.
You can also install CPAN::Mini::Webserver, which provides you with a web …
1
vote
Useful Perl modules
It always depends on what you do. If you want to connect to a database, DBI is essential. For web stuff HTML::Entities can be very useful. For client side applications it's LWP::UserAgent or LWP::S …
6
votes
What constitutes effective Perl training for non-Perl developers?
The most important thing you can show them is how to access the documentation, and how to find it (perldoc perltoc, perldoc -q $keyword, perldoc -f $function …
14
votes
What are some code coverage tools for Perl?
Yes, Devel::Cover is the way to go.
If you develop a module, and use Module::Build to manage the installation, you even have a testcover target:
perl Build.PL
…
