2
votes
2answers
57 views
Atomic file save on Linux without losing metadata
I'm working on a Perl-based file synchronization tool. It downloads files into a temporary directory (which is guaranteed to be on the same filesystem as the real file) and then m …
1
vote
7answers
116 views
Getting names of directories under given path
I am trying to get the names of all first level directories under given path.
I tried to use File::Find but had problems.
Can someone help me with that?
5
votes
14answers
360 views
How can there be only one way to do it (Perl vs Python) [closed]
I am quite used to Perl and I love Perl. And I have almost no exposure to Python.
I have just read another thread that sort of compares Perl with Python and one recurring theme se …
6
votes
3answers
121 views
Why is a threaded version of this particular Perl script 200 times slower than its non-threaded counterpart?
A presentation by one Mikhael Goikhman from a 2003 Perl conference includes a pair of examples of prime-number-finding scripts. One is threaded, and the other is not. Upon running …
3
votes
5answers
48 views
How can I find the contents of a div using Perl’s HTML modules, if I know a tag inside of it?
Ever since I asked how to parse html with regex and got bashed a bit (rightfully so), I've been studying HTML::TreeBuilder, HTML::Parser, HTML::TokeParser, and HTML::Elements Perl …
2
votes
1answer
67 views
Creating a Cocoa app using C or Perl (NOT Objective-C)
I'm having a hard time understanding how to use Cocoa with either C or Perl.
Background:
I've seen it mentioned in quite a few places that Mac's Cocoa API can be used with C, Perl …
0
votes
4answers
71 views
Perl equivalent of (Postgre)SQL BETWEEN operator?
Is there such a thing? The equivalent of a < expr < b, or in SQL parlance expr BETWEEN a AND b, where expr is evaluated only once? Or is asking for this just getting silly? …
1
vote
3answers
59 views
How do I find the current value of a processes STDOUT in Perl?
I have a POE Perl program forking children.
The children it is forking do logging and interactive telnets into remote devices.
POE uses STDOUT to return output back up to the pare …
1
vote
1answer
56 views
How can I use JSON and Perl (HTML::Mason) to create dynamic web page with AJAX?
Hi everyone,
I'm some kind of lost with the way i have to deal with Javascript, JSON and Perl and most of the examples are in PHP which is not helpfull for me.
I have a page (cal …
1
vote
4answers
107 views
How can I automate a series of tests in Perl?
i, I have to run about a 100 tests on my program and doing it one-by-one is killing my time bad so I am looking to write a script.
I write an individual test like so
./program te …
2
votes
2answers
44 views
How can I tell CPAN::Shell to install all dependencies for a module?
I currently have this on a script:
CPAN::Shell->rematein("notest", "install", "$m");
Where $m is a module name the script installs. However, I want the module to install wit …
2
votes
2answers
59 views
Code documentation style guidelines for Perl?
Does anyone know of a perlstyle-like guideline for how to document Perl code? Like this bit from javadoc guidelines:
"Gets the label of this button. (preferred)" vs.
"Thi …
3
votes
5answers
81 views
Accessing Array Elements of Referenced Array
I am new to Perl. I wrote a snippet to access array elements and print it to the console:
use strict;
use warnings;
my @array1 = ('20020701 00000', 'Sending Mail in Perl', 'Phil …
3
votes
2answers
92 views
Why can’t I have a literal list slice right after a print in Perl?
I see I can do something like this:
print STDOUT (split /\./, 'www.stackoverflow.com')[1];
and "stackoverflow" is printed. However, this:
print +(split /\./, 'www.stackoverflow …
3
votes
2answers
63 views
How can I print the SQL query executed after Perl’s DBI fills in the placeholders?
I'm using Perl's DBI module. I prepare a statement using placeholders, then execute the query.
Is it possible to print out the final query that was executed without manually escap …
