I read the TPJ from march this weekend and it carried a good collection of articles this time. The article about fractal images and music was very amusing. The articles about high performance computing in Perl (Moshe Bar) and how to minimize structural code (Simon Cozens) are really very interesting. It is a pity that the magazine is not any bigger, the articles are of a good standard, but are all way too short...
An advertisement in the new TPJ pointed to a collection of 101 articles about Perl. You could buy them for 10$. The articles come from various sources (TPJ, web review, web techniques, ...). I bought the article series, but I've to say it is a bit a disappointement ... although the articles are very good and are worth a place in your Perl-doc collection. The point is that only the text of the articles is included, no images at all ...
Johan
One note though: the current version on CPAN doesn't work with 5.6.0 for some reason. I grabbed the latest from CVS (per Simon's tip) and it all worked beautifully. The error was from "@$foo_aref" =~ tr/;//
and said something about can't modify a string. The fix is just to create the string in a separate line:
my $str = "@$foo"; $str =~ tr/;//;