SuccessInMind wrote:
> Beside inserting some cryptic code here and there and sometimes including
> some environement variables to create a domain proprietary script does
> anyone knows of any effective ways to protect our Perl code from unwanted
> eyes?
>
> I have seen a script once where all th
Hi Everyone!
Beside inserting some cryptic code here and there and sometimes including
some environement variables to create a domain proprietary script does
anyone knows of any effective ways to protect our Perl code from unwanted
eyes?
I have seen a script once where all the lines of codes whe
[EMAIL PROTECTED] wrote:
" Hi Perl Hacker! I have a set of scripts in use on my system that i would
" like to start tweaking. They are all hand written and not someone elses
" work. I would like to start reducing the memory it takes to run the scripts.
" I want to start implementing undef declara
[EMAIL PROTECTED] wrote:
>
> I'm running a nightly job to fork off several FTP sessions to retrieve
> files. The job spawns off ~100 FTP "Drones" and hits about 3700 sites
> across our WAN. Twice it has become "hung" when one FTP drone refused to
> die. Looking in the drones log showed it had
That's pretty much it. But in your example, you could also just do a foreach
() instead of reading the entire FILE into @SOMEVAR. That should help
too.
-Pete
> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
> Sent: 04 September 2001 02:13
> To: Erick Nelson; per
That was exactly the problem. The Crypt::SSLeay
solved the problem. Thank you so much.
use Crypt::SSLeay; must be included when trying to
access a https address.
For reference:
http://www.perl.com/CPAN-local/modules/by-module/Crypt/CHAMAS/Crypt-SSLeay-0.29.readme
Gia McCue
--- Edward Moon <
I'm running a nightly job to fork off several FTP sessions to retrieve
files. The job spawns off ~100 FTP "Drones" and hits about 3700 sites
across our WAN. Twice it has become "hung" when one FTP drone refused to
die. Looking in the drones log showed it had just requested an FTP GET
($ftp->get
Hi Perl Hacker! I have a set of scripts in use on my system that i would
like to start tweaking. They are all hand written and not someone elses
work. I would like to start reducing the memory it takes to run the scripts.
I want to start implementing undef declarations in the scripts, is there a