(Part 2) Top products from r/perl

Jump to the top 20

We found 4 product mentions on r/perl. We ranked the 24 resulting products by number of redditors who mentioned them. Here are the products ranked 21-40. You can also go back to the previous section.

Next page

Top comments that mention products on r/perl:

u/leshylabs · 9 pointsr/perl

Modern Perl is good, but I sometimes recommend the Perl Cookbook to beginners, because its format is a little easier for new people to get started with. In general these days, Modern Perl may be the best up to date guide, with good advice on how Perl should be used, but I'm not convinced it is the easiest to learn from for a beginner, especially in cases where they are already somewhat familiar but just trying to figure out how to get things done.

Perl Cookbook:
http://www.amazon.com/Perl-Cookbook-Second-Edition-Christiansen/dp/0596003137/

Yeah, it hasn't been updated since 2003, but it is a really well done cookbook-style book, where each chapter has an introduction to the topic at hand, followed by "recipes" on how to do all the common types of things.

Which is better for you might be personal preference, so here are some links to help you decide which one would be more useful for your style:

Modern Perl Online Edition:
http://modernperlbooks.com/books/modern_perl_2014/

Perl Cookbook (older first edition):
http://docstore.mik.ua/orelly/perl/cookbook/


Also, Perl has fantastic documentation. Use perldoc to access it. For example:

  • Show the main page for documentation. This provides an index of other special pages on various topics. Most of them are well written and have good examples and tutorials.
    > perldoc perl

  • Show the docs for a module
    > perldoc Module::Blah

  • Show the docs for a function
    > perldoc -f function
u/davorg · 5 pointsr/perl

> I purchased 3 books - Perl for Beginners, Perl by example, Learning Perl (6th edition)

I can't find a book called Perl for Beginners. If you mean Beginning Perl then that's a highly recommended book.

Learning Perl is also very good.

The two books above are written by acknowledged Perl experts.

Perl By Example appears to be written by someone who knows very little about Perl. I really can't recommend it. Sorry you wasted your money.