When I started my current position as an AIX administrator - I was in awe at the amount of Perl code we had running on our systems - I though "Cool", I can do this. After rewriting several hundred scripts - its no longer cool. I tried explaining to people I work with why
#!/usr/bin/perl -w
use strict;
is a good idea - they still don't get it, they say their code works fine. Case in point - we have a cgi script that allows us to control our printers - I took one look at it, added
#!/usr/bin/perl -T
use strict;
use warnings;
use diagnostics;
Needless to say, the script(s) failed miserably, I rewrote the several thousand line long flub and they complain, because it doesn't look the same, and if I leave who will maintain my code? I find myself writing a lot of what I consider decent code to conform to the poor performance and bad interface standards that the people I work with are used to - In turn I penned the node
perl programming for a living.
I thank the Gods everyday for perlmonks, it provides some clarity to the fog.
Ted
--
"That which we persist in doing becomes easier, not that the task itself has become easier, but that our ability to perform it has improved."
--Ralph Waldo Emerson
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.