Beefy Boxes and Bandwidth Generously Provided by pair Networks Cowboy Neal with Hat
Don't ask to ask, just ask
 
PerlMonks  

Re: improving the aesthetics of perl code

by jdtoronto (Prior)
on Sep 13, 2006 at 14:14 UTC ( [id://572793]=note: print w/replies, xml ) Need Help??

This is an archived low-energy page for bots and other anonmyous visitors. Please sign up if you are a human and want to interact.


in reply to improving the aesthetics of perl code

Gee, it's actually not the worst Perl code I have seen by any stretch of the imagination. A couple of points:

  • the else is easier to see if it is not cuddled:
    rather than this: } else { use this: } else {
    which then gives the braces the same relative position fo the if and the else.
  • Carefully consider NOT using the unless it can be quite counter-intutitive when reading code.
  • Code is easier to read and flows more logically (IMHO) if you use block conditionals, for example:
    This: unless ( scalar(@downhosts) == 0 ) { print p, "There $verbage[2] ", scalar(@downhosts), " $verbage[3] +unreachable\n", br; } rather than: unless ( scalar(@downhosts) == 0 ) { print p, "There $verbage[2] ", sc +alar(@downhosts), " $verbage[3] unreachable\n", br }
    I see others have pointed out some different approaches to dealing with filehandles and the like. Only other suggestion I would make is to use CGI more effectively by not printing HTML directly - always use CGI/

    And finally, use perltidy. I have it in the toolbox in my Komodo so I can run it over my code any time. It actually mkes it easier to spot problems when I can see thngs like the indentation level go wrong! It also gives me a consistency of style I am too lazy to get any other way.

    jdtoronto

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://572793]
help
Sections?
Information?
Find Nodes?
Leftovers?
    Notices?
    hippoepoptai's answer Re: how do I set a cookie and redirect was blessed by hippo!
    erzuuliAnonymous Monks are no longer allowed to use Super Search, due to an excessive use of this resource by robots.