Thanks Eric I will check some out & I have been reading one site another member shared.. My husband does allot of those himself but none on perl though he has...
Hi PerlMonks, I have a simple test file under t/. I want to display the summary after running all the tests. For some reason, the summary is displayed before...
... Rog> Hi PerlMonks, Rog> I have a simple test file under t/. I want to display the summary after running all the tests. For some reason, the summary...
hmm....that's weird. I see the attachment in the sent mail. Anyhow I'm attaching the file again. Thanks, Roger ________________________________ From: timothy...
hmm....that's weird. I see the attachment in the sent mail. Anyhow I'm attaching the file again. Thanks, Roger ________________________________ From: timothy...
... [...] ... It looks like your attachment is being stripped. Try using Pastebin (http://pastebin.com/) or a similar service to share large blocks of code....
... Hey Roger and all, Charles is right - attachments are stripped from e-mails before they're sent to the e-mail list. Hope this helps. Cheers, Jeremy Naylor...
Hi all, Is me again. Can anyone help me to solve a simple question below I still can not do it correctly. for this (4.94588dB,-90.8129? I wan to save the...
On Sat, 21 Apr 2012 10:09:33 -0000 ... I think I recall you mentioning this before, but not giving much detail. This should work: /,(.+)\?/ DB<1> x...
27323
Joe Pepersack
joe@...
Apr 21, 2012 5:56 pm
What database are you running? Stored procedures, and the methods for extending them with non-SQL languages, are all platform specific. Performance may be a...
... Here I got a big problem regarding to this.I found that my searching will not stop if it does not match any word in the file or text.I attach my example at...
... Hi, I got a question. If the word I wan to search is not find in a text or sentense. I found that the search will go on without stopping. Is there any idea...
27327
Brian F. Yulga
byulga@...
Apr 22, 2012 3:43 pm
... Stop there. $go is unnecessary and is tripping you up. Start those lines over with: open ( my $logfile, '<', $funcfile ) or die "Can't open source file ...
Resending the message..... ________________________________ From: Roger <rfbits@...> To: "perl-beginner@yahoogroups.com" <perl-beginner@yahoogroups.com> ...
Hi All Any idea where I can download the perl module date::manip 5.8.8, and any associated install/compile instructions for HP-UX 11.31? Thanks Tariq [Non-text...
27335
Shawn H Corey
shawnhcorey@...
May 10, 2012 12:13 pm
... Welcome to the group. Try: $ sudo cpan Date::Manip -- Just my 0.00000002 million dollars worth, Shawn Programming is as much about organization and...
Thanks Shawn I have got this far: Sorry, we have to rerun the configuration dialog for CPAN.pm due to some missing parameters... The following questions are...
27337
Shawn H Corey
shawnhcorey@...
May 10, 2012 1:30 pm
... Normally, I choose the default values. The configure adapts itself to your OS, so they should work. For more information, see `perldoc cpan`. -- Just my...
SHawn Ive got this far: If you're accessing the net via proxies, you can specify them in the CPAN configuration or via environment variables. The variable in ...
... Tariq> Could not fetch MIRRORED.BY If you can't fetch that, you're likely not seeing the internet from your box. Fix that first. If you have to use a...
In Graham Barr's Net::SMTP for example he uses the following syntax: ${*$obj}{'net_smtp_host'} = $host; in his sub new and other places. Could someone please...
27341
Shawn H Corey
shawnhcorey@...
May 16, 2012 12:49 pm
... This is unusual syntax. The following is equivalent to the above: ${*{$obj}}{'net_smtp_host'} = $host; But I have no idea what it does. :( -- Just my...
... Ken> In Graham Barr's Net::SMTP for example he uses the following syntax: Ken> ${*$obj}{'net_smtp_host'} = $host; Ken> in his sub new and other places. ...
... ${*{$obj}}{'net_smtp_host'} = $host; My guess is $obj is the 'name' the *{$obj} gets you to the typeglob (all the Perl variable types using the word in ...