in reply to Any other good perl books

Great suggestions so far, so I want to throw in one of the most important books for my own personal Perl growth, Learning Perl Objects, References and Modules by Randal Schwartz and Tom Phoenix.

I also can't say enough about what Your Mother said regarding the reading of CPAN distribution test files.

Although much of the time the author will write code in ways that kind of defy the logic of standard practices (ie./eg. I write a lot of my tests to be short to the point that brevity is above all else), it's a fantastic way to identify what the author meant by the use of the software the tests are running against.

You can compare test elements to the code within the actual modules, and to further knowledge, practice by writing additional tests where you feel the original authors may not have thought about certain edge cases. If desired, you could even have the author add these new tests.

Replies are listed 'Best First'.
Re^2: Any other good perl books
by davido (Cardinal) on Sep 11, 2019 at 21:12 UTC

    Learning Perl Objects, References and Modules was the 1st Edition of what is now known as Intermediate Perl. The name change introduced a broader range of topics not covered in the original, while also making the book easier to market.


    Dave

      Intermediate Perl Covers several topics (Especially preparing a module for release) not seen anywhere else in the series and it does include exercises for each chapter. Unfortunately, it falls far short of the quality I have come to expect from O'Riley books. I have discovered two examples which do not work as advertised because of bugs in CPAN modules which they use. These examples could not have been tested (certainly not under windows).
      Bill

      Heh, I honestly don't recall that at all. Thanks for clarifying David!