Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re: Re: There's Only One Way To Do It

by jdporter (Paladin)
on Apr 07, 2004 at 15:53 UTC ( [id://343314]=note: print w/replies, xml ) Need Help??


in reply to Re: There's Only One Way To Do It
in thread There's Only One Way To Do It

I hear ya. I once worked on a project where I inherited some perl code from someone whose knowledge of arrays was limited to the following:
  • Iteration: for $line ( @lines )
  • Read from file: @lines = <FILE>;
  • Write to file: print FILE @lines;
His code was rife with hacks like
# add the new item to the list: open TMP, "> $tmp"; print TMP @items; print TMP $new_item; close TMP; open TMP, "< $tmp"; @items = <TMP>; close TMP;
It baffles and amazes me that someone could know how to read and write arrays to file, but not have learned about the push operator! Also disgusting was the fact that this person didn't know enough to put that snippet in a subroutine. He C&P'd it (and every other hack he ever devised) rampantly throughout his code.

jdporter
The 6th Rule of Perl Club is -- There is no Rule #6.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://343314]
help
Chatterbox?
and the web crawler heard nothing...

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

    No recent polls found