Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

For those of us who are familiar with Damian Conway's Perl Best Practices, it may be the case that you're applying it somewhat selectively. Which of the Best Practices do you elect not to follow, if any, and for what reasons? Or do you always apply as many of the best practices as possible?

For example, the following Best Practices I've chosen to sometimes ignore, though I'm not sure I should have:

  • Always use named args when passing more than 3 arguments
  • Using POD boilerplates
  • Never use low-precedence logical operators (except for fallback conditions)

Which of the Best Practices do you feel it's safe to ignore or apply sparingly?

share|improve this question

closed as not constructive by Bart, Filburt, Bill the Lizard Nov 25 '12 at 15:09

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

9 Answers

up vote 60 down vote accepted

Remember that Damian says in his first chapter that his "rules" aren't really hard-and-fast rules. Everyone seems to forget to read that chapter. See my interview with Damian for The Perl Review, where he talks about that more. He says:

Far more importantly than "laying down the law", I hope this book "opens up the discussion" and allows programmers at any point in their personal and group evolution to find reliable and maintainable ways of coding.

The idea is that you stay away from things that will confuse people or that confuse you. You understand why there are rules rather than just following rules.

Sadly, it sometimes doesn't turn out that way. When I go through code reviews with some of our clients, they can explain that m/hello/xsm follows the best practice in the book, even though they don't really understand that none of those regex flags do anything in that case. Doing things you don't comprehend isn't in the spirit of best practices.

Some of Damian's style rules are just to keep people from wasting time arguing about them. At some point you have to get on with the job of coding and not everyone can win the braces or indention argument.

So, take what Damian says as a start. Understand the point of the rule then adjust for your situation.

share|improve this answer

In case somebody hasn't got the point of PBP: it's not there to religiously recommend some coding practices and to "forbid" others. It's mostly there to make you think about coding practices, and to give you some food for thought.

That said; there's a nice wiki page about the pbp module recommendations, because some of them are quite out of date. It's not complete, but full of common sense.

Also some of the regex recommendations can lead to slowdowns on older perl versions.

share|improve this answer
Thanks. moritz. I certainly don't regard PBP as dogma, but I was also curious whether there was anyone who really liked and used all of the practices. – Adam Bellaire Sep 29 '08 at 12:33
1  
Sad thing is, there are quite some programmers and even companies that take it as a dogma, and once in a while there's somebody complaining about it on perlmonks or IRC. – moritz Sep 29 '08 at 12:39

I wanted to like inside-out objects. Really, I did. Alas, they're just not as usable as the old-style "build a hash you can dump with Data::Dumper if you need to."

I think Damian's entirely full of crap about putting the docs at the end, rather than interleaved throughout the code. One of POD's brilliant advantages is that it so easily lets you keep code and docs together in a meaningful way. Putting docs at the end of the file is effectively putting them in an other file altogether.

Those are the two that stick in my head as "No way, no how." It's funny, 'cause I'm on the back of the book saying something like "This is a book that you can adopt as coding standards for your department," but really it was deliberate overstatement. :-)

share|improve this answer
9  
'entirely full of crap' would be best written as 'wrong'. – Adriano Varoli Piazza Nov 25 '08 at 12:44
1  
Sure ! :) but I totaly agree with Andy about the docs – sebthebert Nov 25 '08 at 19:38
Clearly, "best" is subjective, Moranar. – Andy Lester Nov 25 '08 at 23:11
2  
I find POD mixed with code to be distracting. If I'm viewing the source code that's all I want to see. This is particularly distracting when you're not viewing the source in a medium that offers syntax highlighting. – ddoxey Nov 24 '12 at 19:02

brian's post on Damian's disclaimer is important to note. As Damian says in the book, it's mainly about making choices on coding style, and here are some suggestions.

In that sense, it's not about what we don't use; it's more about what makes sense for your purposes.

That said, I use mostly the positive suggestions: naming variables, line continuations, etc. I have decided not to go with a number of the negative suggestions. I:

  • Still use unless
  • Still use predicate clauses, both if and unless
  • Continue to use Tie, although I fully understand the need to fence off the magic into "Expert Only" modules. And so I use that suggestion instead of a total rejection of tie-ing.

Overall, that something is confusing for non-perl programmers doesn't figure into my priorities. If I didn't want perl-magic, I'd probably use a more verbose language. However, I would avoid using ties where performance is more an issue than indirection.

share|improve this answer

Use PBP has a basis for a style guide, not as a style guide!

Keep an eye on PBP wiki and then its a matter of amending or adding Perl::Critic rules to to meet your in-house style.

share|improve this answer

I continue to use BSD-style braces.

share|improve this answer
1  
The bracing style is something where Damian himself writes that there is no huge advantage one way or the other, and that the most important thing is to be consistent within one project, while the particular style itself matters only very little. – moritz Sep 29 '08 at 12:17

I can't get used to the three-arg form of the open call. I just can't get it into my muscle memory when I'm typing for some reason.

share|improve this answer
6  
You should, it really makes things more secure. It's one of the things that actually matter not only in terms of maintainability, but also in term of functionality. – moritz Sep 29 '08 at 16:01
1  
Try using Test::Perl::Critic. The InputOutput::ProhibitTwoArgOpen policy can help enforce this. – Chris Dolan Sep 30 '08 at 5:58
2  
Oh, I definitely should- but just try telling my fingers that. I yell and yell, but they don't listen. It's like they don't have ears or something. :) – Tim Howland Oct 1 '08 at 21:35
4  
Amazing! I breathed a huge sigh of relief when I discovered that 3-arg open() call -- no more having to mess around with the filename just to make sure it isn't interpreted in some magic way (yes, I've seen filenames that begin with '>'.) – j_random_hacker Jan 9 '09 at 10:20
  • Bracing style.
  • 78 column lines
  • Never place 2 statements on the same line.
share|improve this answer

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.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.