Search Results

1
vote

How to get the correct Content-Length for a POST request.

I've run into similar problems before. I assume you're using the length() function to determine the size of the file? If so, it;s likely the data that you're posting is UTF-8 encoded, inste …
6
votes

How do I create graphs in Perl on Windows?

GD and GD::Graph are probably your best bets, you can use them to create images that you can then embed into whatever you need. …
1
vote

How can I start an interactive console for Perl?

You could look into psh here: http://www.focusresearch.com/gregor/sw/psh/ It's a full on shell (you can use it in re …
1
vote

Why learn Perl, Python, Ruby if the company is using C++, C# or Java as the application language?

Personally I work on a Java app, but I couldn't get by without perl for some supporting scripts. I've got scripts to quickly flip what db I'm pointing at, scripts to run build scripts, scr …
2
votes

Perl: why is the if statement slower than “and”?

According to Benchmark, the second is slightly slower. Possibly it has something to do with the condition, but here's results for a very simple case: use Benchmark; timethese(100 …
12
votes

Is there any way to use a “constant” as hash key in Perl?

Another option is to not use the use constant pragma and flip to Readonly as per recommendations in the Perl Best Practices by Damian Conway. I switched a while back after realizing that co …
3
votes

How do I get a list of installed CPAN modules?

Here's a really hacky way to do it in *nix, you'll get some stuff you don't really care about (ie: warnings::register etc), but it should give you a list of every .pm file that's accessible via per …