2
votes
3answers
58 views
Cyclic immutable structure?
This could seem like an obviously hopeless case, but is there a trick to create a cyclic graph of immutable objects in Perl? Something like this:
package Node;
use Moose;
has [qw/ …
2
votes
2answers
24 views
Moose: Expiring cached results of calculations when attribute values change?
In our classes we have a pattern where we create an attribute to represent a
calculated value. For obvious reasons we want to cache the calculated value
and then invalidate the ca …
1
vote
1answer
36 views
How to run Perl test suite automatically
Hello! Is there a tool that would watch file changes in a directory tree of a Perl application and re-run the test suite every time I save changes to some module? Something akin to …
1
vote
4answers
72 views
writing perl server
Hi
I am having some script that runs on some server and i want it now to send messages to my pc .
I want to send tcp or udp massages to some port .
What is the best way to do s …
1
vote
5answers
93 views
Want to read one block in the whole file
I have one file where the contents looks like:
pch
rch
channel
cap
nch
kappa
.
.
.
kary
ban
....
Now I want to read my file from nch to kary and copying those lines only in some …
1
vote
1answer
16 views
Controling proccess input within another process by using Perl
I have a Win32 Gui proccess is there any way to control the GUI proccess input within another process (application built in perl ) the user have a scanning system i want to identif …
0
votes
6answers
55 views
perl (or anything else) - adding characters at beginning and end of line but NOT at empty lines
I would like to use this:
perl -pi -e 's/^(.*)$/\"$1\",/g' /path/to/your/file
for adding " at beginning of line and ", at end of each line in text file. The problem is that some …
3
votes
1answer
36 views
Detecting if a program is running within a PAR archive
I'm working on a large Perl application which gets bundled with PAR, along with a bunch of support files.
When the app is running within PAR, I can use PAR::read_file to get at th …
1
vote
4answers
85 views
What is ActivePerl doing when it “relocates” files during installation?
Given some unix program which I've compiled, what might I need to do to relocate it to a different directory and have it continue running correctly.
I'm thinking of Perl, but woul …
-2
votes
6answers
76 views
How to select rows using arrays in Perl-DBI module?
I am required to pull out rows corresponding to column name. The rows being pulled out correspond to address in array @values. Following is my code:
use strict;
use DBI;
open (FH …
1
vote
6answers
160 views
Effective Interpreted Programming Language for File/Image manipulation
I need to make a script to read images from a directory, rename them, resize them to a MAX_HEIGHT, MAX_WIDTH, put a watermark logo and save them in JPG.
I was thinking on doing th …
2
votes
4answers
115 views
Listing all function prototypes used in a given C file [closed]
Possible Duplicate:
Extracting C / C++ function prototypes
I have some C code and I want to list all function prototypes used in it.
For example,
int a();
b (void a , vo …
13
votes
3answers
168 views
Resources for getting started on “modern” Perl
After having heard about new parts of the Perl ecosystem, such as Moose, DeclareX, and Catalyst, I thought that it'd be nice to take a look at Perl. Unfortunately, all of the intr …
-6
votes
4answers
101 views
How can I extract content from an HTML file using Java or Perl? [closed]
Possible Duplicates:
Can you provide an example of parsing HTML with your favorite parser?
RegEx match open tags except XHTML self-contained tags
Possible duplicate of:
…
2
votes
5answers
178 views
Why can’t I use the map function to create a good hash from a simple data file in Perl?
The post is updated. Please kindly jump to the Solution part, if you've already read the posted question. Thanks!
Here's the minimized code to exhibit my problem:
The input data …
