Search Results

1
vote
2answers
576 views

Why doesn’t this jQuery.post work with Perl CGI?

I'm trying to figure out why I'm not seeing params with $.post("/url/", {wtf: 2}). I'm using this perl: use strict; use CGI; my $cgi = new CGI; print $cgi->header("text/ …
2
votes

When are Schwartzian Transforms useful?

I know this is technically already answered rather completely, but I had a couple relevant side notes. First, I usually prefer cmpthese() to timethese() because it tells you which is better …
2
votes

Why can’t Perl’s PAR find the loadable object for Socket.pm?

The advantage of installing an actual perl on your HPUX is that your cygwin app can then run on the hpux perl. PAR packages aren't normally going to work between any two platforms. In my mind, it …
4
votes

What do you keep in your Perl toolbox?

POE WWW::Mechanize …
2
votes

Why do you not use CPAN modules?

the target machine doesn't necessarily have the needed module This can be valid in some environments. One of my friends works at a huge mega conglomerate spanni …
4
votes

How can I catch changes to %ENV?

This is doable. I think there's probably a performance penalty for doing the below, and I'm sure I didn't cover all the possible cases, but this should definitely get you started. …
0
votes

How can I get a character at a given index in Perl?

Corollary to the other substr() answers is that you can use it to set values at an index also. It supports this as lvalue or with extra arguments. It's also very similar to splice, which …
1
vote

Does ‘use lib’ work for UNC paths?

I know I ran into trouble trying to use mapped drives and unc paths from apache because the apache user was not allowed to use network drives. That was difficult to figure out -- but it's possible …
1
vote

Transparently Handling GZip Encoded content with WWW::Mechanize

It looks to me like you can replace it by using the $res->content( $bytes ) member. By the way, I found this stuff by looking at the source of LWP::UserAgent, then HTTP::Response, then …
5
votes

How can I drop privileges in Perl?

You don't really need a module, although the one linked by Benji York looks pretty nice. It's a simple matter of setting the UID via $< and $>. See perlvar for further information on th …
5
votes

How can I use a C++ class from Perl?

I would normally choose XS, like tsee, but there is also Inline::C (or …