Re: host perl script

2004-08-15 Thread babulGogoi
better if u test the script locally, in ur pc.. then upload to the server for real usage.. unless there is an emergency, better to avoide server usage thru ssh or work on live scripts. - Original Message - From: Franklin <[EMAIL PROTECTED]> Date: Mon, 16 Aug 2004 10:15:13 +0800 Subject: h

host perl script

2004-08-15 Thread Franklin
Hello:   I want to host my website and perl script. And I have inquired it with www.lunarpages.com and www.ipowerweb.com. In both providers' 7.95/month plan, I only can execute my perl script by webpage or cron jobs. Only in ipowerweb's virtual server plan, I can execute perl script by typing

Re: how to encrypt my perl script

2004-08-15 Thread Franklin
I have choosed one hosting service provider I think it is reliable:www.ipowerweb.com. But I want to double ensure my intelligence property. It is that simple.   ---Original Message---   From: Perl Beginners Date: Monday, August 16, 2004 00:13:42 To: Perl Beginners Subject: Re: how to

Re: "doesn't contain" expression

2004-08-15 Thread Jenda Krynicky
From: "Jenda Krynicky" <[EMAIL PROTECTED]> > From: [EMAIL PROTECTED] > > How can I compose a pattern for strings which _don't_ contain > > "stuff"? > > > > My code contains $x =~ $pattern; I can't change this. Now I must > > define my $pattern to determine whether $x _doesn't_ contain > > "stuff".

Re: "doesn't contain" expression

2004-08-15 Thread Jenda Krynicky
From: [EMAIL PROTECTED] > How can I compose a pattern for strings which _don't_ contain "stuff"? > > My code contains $x =~ $pattern; I can't change this. Now I must > define my $pattern to determine whether $x _doesn't_ contain "stuff". > > I've been over perlrequick and perlretut, but all examp

How to "chmod go-w $name" in perl?

2004-08-15 Thread Steven Shoemaker
Hi, What am I doing wrong? And yes I know that there is a module for chmod but it is not loaded on this server that I need to run this on. use strict; use File::Find (); *name = *File::Find::name; File::Find::find({\&FixMode}, '.'); exit; sub FixMode { my ($dev,$ino,$mode,$nlink,$uid,$gid);

Re: "doesn't contain" expression

2004-08-15 Thread Gunnar Hjalmarsson
[EMAIL PROTECTED] wrote: How can I compose a pattern for strings which _don't_ contain "stuff"? My code contains $x =~ $pattern; I can't change this. Now I must define my $pattern to determine whether $x _doesn't_ contain "stuff". I've been over perlrequick and perlretut, but all examples of "doesn

"doesn't contain" expression

2004-08-15 Thread ms419
How can I compose a pattern for strings which _don't_ contain "stuff"? My code contains $x =~ $pattern; I can't change this. Now I must define my $pattern to determine whether $x _doesn't_ contain "stuff". I've been over perlrequick and perlretut, but all examples of "doesn't contain" use a nega

Re: Pattern Variable & Regexp Operators

2004-08-15 Thread ms419
On Aug 13, 2004, at 9:16 PM, John W. Krahn wrote: [EMAIL PROTECTED] wrote: Can someone please tell me, why my $pattern = /stuff/; That is short for: my $pattern = $_ =~ m/stuff/; Which assigns 1 to $pattern if the match succeeded or '' if it failed. $x =~ $pattern; Which means that this is either:

Re: Counting characters in a thread

2004-08-15 Thread Zeus Odin
The fastest would probably be: $text = '' if $text =~ tr/%// > 10; -ZO <[EMAIL PROTECTED]> wrote ... > How would I empty $string if it contained more than ten % characters? In > other words -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: how to encrypt my perl script

2004-08-15 Thread Daniel Staal
--As of Saturday, August 14, 2004 6:56 PM +0800, Franklin is alleged to have said: I would run a perl script in my website which is hosted in one hosting service provider. Is there any means that I can use to encrypt my script so that it can't be viewed by others illegally? --As for the rest, it

Re: Strange result from LWP::UserAgent, how to extract ?!

2004-08-15 Thread Bee
Thanks a lot, all are giving the answers that I want, thanks !!! - Original Message - From: "Gunnar Hjalmarsson" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, August 15, 2004 12:34 AM Subject: Re: Strange result from LWP::UserAgent, how to extract ?! > Bee wrote: > > I have