Search Results

10
votes

Is Perl worth it?

What are your boss reasons for using Perl? You don't mention any, but I suppose he came up with a couple. As for your concerns, there are a couple of IDEs available, EPIC was already menti …
7
votes

Do you prefer “if (var)” or “if (var != 0)”?

In Perl if (defined $var and $var ne '') and if( $var) are NOT equivalent. Try it with $var=0. Conversely if you test on $var!=0 all strings that …
2
votes

What do you keep in your Perl toolbox?

I use DBIx::Simple instead of plain DBI, the interface is, well, simpler and more regular. Also, of course, XML::Twig for XML processing. Then Getopt::Std for (simple) options, and YAML::Syck for t …