in reply to Re^2: Perl forum ambassadors?
in thread Perl forum ambassadors?
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 -w use strict;
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.#!/usr/bin/perl -T use strict; use warnings; use diagnostics;
|
|---|