Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
Hi moron,

That's a very entertaining question!  The reason it took me a while to answer is was that I couldn't remember the overriding mistake that I make, out of the many that I make all the time.  I knew there was something, but I just couldn't put my finger on it.

Then I remembered ... the hands-down winner for me is putting semi-colons after values in a declared hash, instead of commas.

That is, I like to write long data structures in this format:

my $p_employee = { 'alice' => { 'salary' => 75000, 'hired' => 1176649545, 'manager' => 'bob', }, 'bob' => { 'salary' => 82000, 'hired' => 1145113545, 'manager' => 'carol', }, 'carol' => { 'salary' => 96000, 'hired' => 1145113545, 'manager' => 'thomas', }, };

But invariably I end up putting semi-colons at the end of one or more lines -- for example:

my $p_employee = { 'alice' => { 'salary' => 75000, 'hired' => 1176649545, 'manager' => 'bob', }; 'bob' => { 'salary' => 82000, 'hired' => 1145113545, 'manager' => 'carol', }; 'carol' => { 'salary' => 96000, 'hired' => 1145113545, 'manager' => 'thomas', }, };

It also seems to happen with a frequency in direct proportion to the complexity of the data structure.  I'm pretty sure this has bitten me more than any other single class of error.


s''(q.S:$/9=(T1';s;(..)(..);$..=substr+crypt($1,$2),2,3;eg;print$..$/

In reply to Re: My habitual errors by liverpole
in thread My habitual errors by Moron

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (2)
As of 2024-04-26 07:49 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found