Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re: Stupid mistakes I repeatedly make

by dragonchild (Archbishop)
on Mar 30, 2005 at 20:50 UTC ( [id://443604]=note: print w/replies, xml ) Need Help??


in reply to Stupid mistakes I repeatedly make

The biggest mistake I make is when I'm prototyping something, I usually forget to put
use strict; use warnings;
at the top. Since over half my prototypes get rm'ed, this usually isn't a problem. But, when a prototype morphs into a real project, I'm not using strict. (!!!) I once had to retrofit 20+ modules in the same project with this "fix".

Being right, does not endow the right to be rude; politeness costs nothing.
Being unknowing, is not the same as being stupid.
Expressing a contrary opinion, whether to the individual or the group, is more often a sign of deeper thought than of cantankerous belligerence.
Do not mistake your goals as the only goals; your opinion as the only opinion; your confidence as correctness. Saying you know better is not the same as explaining you know better.

Replies are listed 'Best First'.
Re^2: Stupid mistakes I repeatedly make
by bcole23 (Scribe) on Apr 02, 2005 at 23:16 UTC
    That's the worst.. which is why I do things like:
    use strict; use warnings; print "hello world!\n";

    IOW, even very short programs. (note that is a poor example as I'd just command line it.. but you get my point) This is the first lesson that I learned and I learned it well. The next 3 years was learning to RTFM.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (5)
As of 2024-04-19 12:43 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found