Best practices, in any field, is a gift from experienced practitioners which
offers less experienced practitioners an opportunity to steer clear of common
pitfalls. In the case of Damian's PBP, casually thumbing through the book
appears to leave programmers with the impression that PBP merely dictates
aesthetics to the end of squelching individual creativity and style.
In the wake of that, it pains me to see sysadmins not bothering to use taint
checking, or programmers who don't use strict, because it's inconvenient. In
some cases, it appears that programmers deliberately defy PBP because they want
to prove that their superior talent and experience makes them exempt.
To further my anguish, the arguments against PBP come most vehemently from
those who refuse to read the book.
I would very much like to work on a team where everyone is on the same page
in the sense that no one is introducing bugs that would otherwise be easy to
sidestep if they were just following some of the basic PBP guidelines.
I came from a Java background. Since then in my six years of writing Perl
I have discovered subtle benefits from following PBP which I believe have
truly contributed to my writing superior software than I would have otherwise.
For example:
- narrow line length
- keeping left
- naming conventions
- English module
- automated layout
These ideas, just to name a few, have influenced my style to produce programs
which are easier to maintain, enhance, and debug, not only for myself but for
others on my team.
It's that last point that really drives it home. Programming is a group
activity. Whether it's you and your coworkers, you and your open source project,
or you and your comments on stackoverflow.com, source code is for humans to read
and it's in our best interest to write source code that is accessible to any
skilled practitioner.