Re: [Perl-unix-users] Anyone knows of any ways to protect the Perl open source code?

2001-09-04 Thread Tim Hammerquist
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

[Perl-unix-users] Anyone knows of any ways to protect the Perl open source code?

2001-09-04 Thread SuccessInMind
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

Re: [Perl-unix-users] Freeing Up Memory

2001-09-04 Thread Tim Hammerquist
[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

Re: [Perl-unix-users] Net::FTP hanging

2001-09-04 Thread $Bill Luebkert
[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

RE: [Perl-unix-users] Freeing Up Memory

2001-09-04 Thread Peter Eisengrein
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

Re: [Perl-unix-users] LWP::UserAgent - I cannot get a response

2001-09-04 Thread Gia Mccue
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 <

[Perl-unix-users] Net::FTP hanging

2001-09-04 Thread Chuck . Hirstius
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

[Perl-unix-users] Freeing Up Memory

2001-09-04 Thread jna
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