Tag Archives: Perl

Review of Perl Hacks

Perl Hacks chromatic , Damian Conway, Curtis “Ovid” Poe O’Reilly, 2006 When I first saw the title Perl Hacks, I was a little unclear what the book would cover. After all, the Perl Cookbook has recipes that span the spectrum from basic to advanced. What would Perl Hacks supply that wouldn’t be found elsewhere? The… Read More »

Review of Perl Best Practices

Perl Best Practices Damian Conway O’Reilly, 2005 This book is hard to summarize. There is much good advice in this book. Unfortunately, there’s also some advice that I found questionable. Conway covers some of important Perl programming and general programming best practices, including consistent formatting, use of strict and warnings, and the use of version… Read More »

Review of Perl 6 Now

Perl 6 Now: The Core Ideas Illustrated with Perl 5 Scott Waters Apress, 2005 I had mixed feelings about reading this book caused by my current views of Perl 6. Some of what I have heard about Perl 6 is exciting and I really can’t wait. Other things I have heard fill me with dread.… Read More »

More Thoughts on Resource Recovery

In The Semantics of Garbage Collection, I explained why I don’t like the term garbage collection. I also introduced the term resource recovery, and suggested that this change in naming could generate a useful change in viewpoint. Many programmers have been indoctrinated with the belief that garbage collection is the solution to all memory problems,… Read More »

Unit tests that should fail

I was doing a little research on the Java JUnit test framework and ran across the article The Third State of your Binary JUnit Tests. The author points out that in many test sets there are ignored tests as well as the passing and failing tests. As the author says, you may want to ignore… Read More »