| Thread | Last Post | Replies |
|
| usage of do {} | 30 Jun 2005 18:45 GMT | 8 |
Hello everyone, Here and there on the web I encounter claims that the do {} operator is depreciated. However I find it convenient to do things like: eval { some stuff } or do { some multiline error handling };
|
| xml::simple, $hash ? | 30 Jun 2005 15:51 GMT | 1 |
I have a hash that I am trying to populate for XML::Simple $fullXmlHash{$agentBookingSearch."BookRef_".$xmlData{'bookref'}} = \%xmlData; This work perfectly and I get the info as so
|
| fork() and returning hash / strings to the parent | 30 Jun 2005 15:44 GMT | 2 |
I have some subroutines that return information. Since the each subroutine takes a snapshot of data on networked servers that should be compared, I want the subroutines to execute in the shortest time possible - I'd like to get all the subroutines running at the same
|
| Interactive with other program | 30 Jun 2005 15:33 GMT | 1 |
I want to write a perl script that interactive with other program or script. when I run the jacl script which askes me to input some parameters interactively, just like this, when I issue wsadmin -f trade.jacl, then I have to answer some questions
|
| date range.... | 30 Jun 2005 14:57 GMT | 4 |
People of the Perl, I have a need to develop some logic to automatically pick up a publc key for my gpg keyring. I will use cURL ( client for URL lookups ) language for the actual download , but the catch is the expiration time of our key
|
| What does *{"$callpkg\::$_"} = \&{"$pkg\::$_"} mean and how do I fix it? | 30 Jun 2005 14:23 GMT | 3 |
I have the following line of code: my $id = async { &PopulateIndustryCompanyJobs($sIndustryName, $nThread); $qCompleted->enqueue($sIndustryName); } It causes this error:
|
| Parsing Data | 30 Jun 2005 00:01 GMT | 2 |
I am working on a project to roll data from an existing monitoring product, which does not have good reporting, to RRDTOOL. Here is what I have so far; -------------Sample Input--------------------------
|
| Decoding Regular Expression | 29 Jun 2005 21:29 GMT | 2 |
I am having trouble understanding this regular expression. Any help on this is greatly appreciated. open FILE, "xyz"; while (<FILE>)
|
| perl message passing module | 29 Jun 2005 17:15 GMT | 3 |
Hi List, Am looking for some messaging module, using which I can pass message between, perl programs. Looked at search CPAN, and found ebXML. Any comments on ebXML, or any other messaging
|
| Run a subroutine, then replace subroutine and run again | 28 Jun 2005 20:25 GMT | 5 |
Sorry, but I have two subroutines with the same name which is fine because I have not had a need to use the hashes which these two similar subroutines created. How do I run the subroutine and generate my set of hashes, then replace the sub with the other and run again, but into ...
|
| Better place for OOPerl questions? | 28 Jun 2005 18:20 GMT | 5 |
Noting that this list is more oriented towards beginner questions/general inquiry, but not having found a perl.org list more geared towards advanced and/or OOPerl questions, I'm wondering: A> whether starting a perl.org oop list makes any sense?
|
| Wrapper Script | 28 Jun 2005 16:34 GMT | 2 |
(I'm mailing this after posting through Google Groups. I didn't see it get posted, so I'm sending email instead. I hope this doesn't double post. If it does, I'm sorry.) Hi Perl folks,
|
| Emptying Arrays | 28 Jun 2005 16:29 GMT | 2 |
Perlers, I'm working on a script that iterates over a log file looking for known hosts so that their messages can be grouped in a summary report. However, when I run the script, the array I create includes entries for
|
| reg exp help | 28 Jun 2005 16:21 GMT | 5 |
Can anyone help me with this match: #!/usr/bin/perl use strict; use warnings;
|
| perl and gnuplot | 28 Jun 2005 15:04 GMT | 6 |
I am attempting to write a perl script to allow users to plot functions using gnuplot through a web page. It seems to work fine unless the function has any additions in it. For example, "x+1" plots as just "x" and "x**2+x" won't plot at all, in fact nothing with "+x" will plot.
|