2
votes
3answers
2k views
Validate server certificate with LWP?
How can I get LWP to verify that the certificate of the server I'm connecting to is signed by a trusted authority and issued to the c …
2
votes
Which framework should I use to write modules?
I also recommend Module::Build and Module::Starter (with the TT2 plugin).
…
12
votes
How can you get Perl to stop when referencing an undef value?
use warnings FATAL => 'uninitialized';
use Carp ();
$SIG{__DIE__} = \&Carp::confess;
The first line makes the warning fatal. The next two cause a stack trace when …
3
votes
Is there an equivalent to Java’s Robot class (java.awt.Robot) for Perl?
For X (Linux/Unix), there's X11::GUITest.
For Windows, there's …
1
vote
Make git-svn work on Slackware 12.1
Base class package "Module::Build" is empty.
(Perhaps you need to 'use' the module which defines that package first.)
at inc/My/SVN/Builder.pm line 5
BEGIN failed--compilation aborted …
8
votes
Is there any way to use a “constant” as hash key in Perl?
Your problem is that => is a magic comma that automatically quotes the word in front of it. So what you wrote is equivalent to ('X', 'X').
The simplest way is to just use a comma:
…
17
votes
How to find the amount of physical memory occupied by a hash in Perl?
Devel::Size is the answer to your question. (Note that Devel::Size will temporarily allocate a significant amount of memory …
2
votes
Any good collection module in perl?
I would normally use an @array or a %hash.
What features are you looking for that aren't provided by those?
…
5
votes
EWOULDBLOCK equivalent errno under Windows Perl
For the Windows-specific error code, you want to use $^E. In this case, it's 33: "The process cannot access the file because another process has locked a portion of the file" (E …
2
votes
How can I find the version of an installed Perl module?
I wrote a small script to report that: perlver.
This is a simple little tool that
tells you what versi …
12
votes
What’s the point of Perl’s map?
It's also handy for making lookup hashes:
my %is_boolean = map { $_ => 1 } qw(true false);
is equivalent to
my %is_boolean = ( true => 1, fal …
1
vote
Compressing HTTP request with LWP, Apache, and mod_deflate
I don't think you can change the Content-Length like that. It would confuse Apache, because mod_deflate wouldn't know how much compressed data to read. What about having the client add an X-Uncom …
18
votes
What features of Perl 6 are you the most excited about?
Parameter lists.
Perl 5's parameter handling is one of its weakest points. You can do some nice things, but it's a lot of work.
Perl 6 will allow named parameters, default values, …
6
votes
How do I interpolate variables to call a Perl function from a module?
Assuming the function is not a class method, try this:
#!/usr/bin/perl
use strict;
use warnings;
my ( $package, $function ) = @ARGV;
eval "use $package (); ${package}::$function() …
2
votes
C++ to Perl/Tk
Since Perl is going to be providing the GUI, I'd embed the C++ code into Perl. Assuming that there's going to be a significant amount of C++ code, I'd put that into a library. The traditional way …
