Tagged Questions

0
votes
1answer
15 views

Sherlocks payment -> Premature end of script headers: request

I use a stupid cgb-bin payment script called Sherlocks Payment (is used in France) and I always get "Premature end of script headers: request", the filename is "request". The hosting has Plesk and …
0
votes
1answer
29 views

Perl Script Output Capture Problem using C#

Hello: I was following one of the thread to run perl scripts from my c# program. My c# code is like this: private void RunScript(ArrayList selectedScriptFileList) { foreach (var …
3
votes
5answers
167 views

What does this obfuscated Perl code do?

What does this do? …
2
votes
1answer
22 views

Is there any way I can use Moose::Exporter from within a Moose object?

I'm looking for a way to set up some helper methods from within a parent Moose class, rather than a standalone utility class. If it is possible, it would be a more transparent way of adding Moose …
3
votes
3answers
70 views

Passing functions to map in perl

So I have an array and a simple function that trims white spaces: my @ar=("bla ", "ha 1") sub trim { my $a=shift; $a =~ s/\s+$//; $a} Now, I want to apply this to an array with the map function. …
1
vote
1answer
37 views

Recording mp3 files with perl

Is there any perl module for recording mp3 files specially on Win32? If yes could someone provide an example .
1
vote
3answers
82 views

How can I get all files in a directory, but not in subdirectories, in Perl?

How can I find all the files that match a certain criteria (-M, modification age in days) in a list of directories, but not in their subdirectories? I wanted to use File::Find, but looks like it …
3
votes
4answers
71 views

What concerns should I have when installing additional Perl modules on a server?

I would like to ask my system administrator to install various Perl modules such as Moose and Data::Alias. The system is Red Hat Enterprise Linux 5, running Perl 5.8.8. The only problem that I can …
4
votes
13answers
265 views

Should I learn Perl as a web developer? [closed]

Possible Duplicates: Should I learn Perl, and why? When should I use Perl CGI instead of PHP (or vice versa)? I'm currently working as a web developer and have knowledge of HTML, CSS, PHP, …
0
votes
1answer
80 views

Perl - passing arguments to a subroutine as hash key-value pairs problem

I have to pass two references as arguments to a subroutine (buildRanges) as hash key-value pairs as show below Example: @array = (“0A0”, “005”, “001”, “004”, “0BC”, “004”, “002”, “001”); @ranges = …
-1
votes
1answer
62 views

Is it possible to create a chained-comparison subroutine for Perl 5.x? [closed]

Possible Duplicate: How can I evaluate chained expressions from a string, in Perl? And if so, how?
4
votes
5answers
97 views

How can I evaluate chained expressions from a string, in Perl?

I'm not really sure what to call these type of expressions, so an example would be easier... Is there a way in Perl to evaluate expressions like a < b <= c? I have a configuration file that …
0
votes
2answers
80 views

How do I find all lib directories under a Windows path?

I am getting the result "File not found " when I run the script: use File::Basename; my @dirs = grep { fileparse($_) =~ /^[L|l]ib/ } split /\n/, dir e:\\/ad/b/s; print @dirs; This is my …
0
votes
3answers
66 views

How can I re-establish a network connection in a Perl script?

Hi, I have a Perl code which goes to particular website and extracts the required data from it. I face a problem if I lose my connection: the script stops functioning. How could I make the Perl script …
5
votes
4answers
93 views

Can someone point me to good articles on intermediate-level Perl syntax and idioms?

As a non-English native, I used to make a lot of English grammatical and idiomatic mistakes. For example, I would write "I will can climb Mt Everest." instead of "I will be able to climb Mt Everest" …

1 2 3 4 5 206 next
15 30 50 per page