[31145] in Perl-Users-Digest
Perl-Users Digest, Issue: 2390 Volume: 11
daemon@ATHENA.MIT.EDU (Perl-Users Digest)
Mon May 4 16:09:50 2009
Date: Mon, 4 May 2009 13:09:09 -0700 (PDT)
From: Perl-Users Digest <Perl-Users-Request@ruby.OCE.ORST.EDU>
To: Perl-Users@ruby.OCE.ORST.EDU (Perl-Users Digest)
Perl-Users Digest Mon, 4 May 2009 Volume: 11 Number: 2390
Today's topics:
Help with Net::ftp not downloading <edMbj@aes-intl.com>
Re: Help with Net::ftp not downloading <glex_no-spam@qwest-spam-no.invalid>
Re: Help with Net::ftp not downloading <benkasminbullock@gmail.com>
Re: Help with Net::ftp not downloading <peter@makholm.net>
Re: Perl is too slow - A statement (aka ? the Platypus)
Re: Perl is too slow - A statement (aka ? the Platypus)
Re: Perl is too slow - A statement (aka ? the Platypus)
Re: Perl is too slow - A statement <nat.k@gm.ml>
Re: Perl is too slow - A statement <jurgenex@hotmail.com>
Re: Perl is too slow - A statement <nat.k@gm.ml>
Perl OLE Excel 2003 Problem with freezepane, <g4774g@gmail.com>
Re: Test post, no longer available? <rabbits77@my-deja.com>
Re: Test post, no longer available? <nat.k@gm.ml>
Re: Unbelievable, Easy News trashes arbitrary message b <nat.k@gm.ml>
Re: Unbelievable, Easy News trashes arbitrary message b <spamtrap@dot-app.org>
Re: Unbelievable, Easy News trashes arbitrary message b <nat.k@gm.ml>
Re: Unbelievable, Easy News trashes arbitrary message b <spamtrap@dot-app.org>
Re: Unbelievable, Easy News trashes arbitrary message b <nat.k@gm.ml>
Re: Unbelievable, Easy News trashes arbitrary message b <rabbits77@my-deja.com>
Digest Administrivia (Last modified: 6 Apr 01) (Perl-Users-Digest Admin)
----------------------------------------------------------------------
Date: Mon, 04 May 2009 09:38:12 -0700
From: Ed Jay <edMbj@aes-intl.com>
Subject: Help with Net::ftp not downloading
Message-Id: <0u5uv4tm2lcqqss1l4fjpe9mn748e8kkh1@4ax.com>
I'm still a novice at Perl. I'm trying to develop a simple script to
download a set of files from my server to my local drive. Although I'm not
getting any error messages, the script isn't performing. Help, please!
(BTW, using this script I have been able to change and delete file names
on the server, so I know I'm properly logged in.)
My script:
use CGI ':standard';
use CGI::Carp qw(fatalsToBrowser);
my $query = new CGI;
use Net::FTP;
my $home = 'myDomain';
my $directory="public_html/uploads";
my $fileTest = "Test.IRI";
my $localDir = 'F:/_Downloads';
print "Content-type: text/html\n\n";
$ftp=Net::FTP->new($host,Timeout=>240,Debug =>1,Passive=>1) or $error=1;
push @ERRORS, "Can't ftp to $host: $!\n" if $error;
if ($error) {push @ERRORS, "Can't connect to $host: $!\n";myerrors();}
print "Connected<br>\n";
$ftp->login("myusername","mypassword") or $error=1;
if ($error) {push @ERRORS, "Can't login to $host: $!\n";myerrors();}
$ftp->cwd($directory) or $error=1;
if ($error) {push @ERRORS, "Can't cd $!\n";myerrors();}
print "Successfully logged in to folder<br><br>\n";
chdir($localDir);
$ftp->binary();
$ftp->pasv ();
$ftp->get($fileTest) or $error=1;
if ($error) {push @ERRORS, "Can't get file $!\n";myerrors();}
print "Successfully downloaded $fileTest<br><br>\n";
@files=$ftp->ls() or $error=1;
if ($error) {push @ERRORS, "Can't get file list $!\n";myerrorsors();}
foreach(@files) {print "$_<br>\n";}
print "<br>\n";
$ftp->quit;
exit 0;
sub myerrorsors {$ftp->quit;print "Error: \n";print @ERRORS;exit 0;}
Thanks in advance for your direction,
--
Ed Jay (remove 'M' to reply by email)
Win the War Against Breast Cancer.
Knowing the facts could save your life.
http://www.breastthermography.info
------------------------------
Date: Mon, 04 May 2009 12:02:09 -0500
From: "J. Gleixner" <glex_no-spam@qwest-spam-no.invalid>
Subject: Re: Help with Net::ftp not downloading
Message-Id: <49ff1f91$0$87077$815e3792@news.qwest.net>
Ed Jay wrote:
> I'm still a novice at Perl. I'm trying to develop a simple script to
> download a set of files from my server to my local drive. Although I'm not
> getting any error messages, the script isn't performing. Help, please!
>
> (BTW, using this script I have been able to change and delete file names
> on the server, so I know I'm properly logged in.)
>
> My script:
>
> use CGI ':standard';
> use CGI::Carp qw(fatalsToBrowser);
You know what that does, right?
> my $query = new CGI;
When you use :standard, you don't need to do that.
> use Net::FTP;
use strict;
>
> my $home = 'myDomain';
> my $directory="public_html/uploads";
> my $fileTest = "Test.IRI";
You may use single quotes there, to be consistent.
> my $localDir = 'F:/_Downloads';
>
> print "Content-type: text/html\n\n";
You're not 'print'ing any HTML.
>
> $ftp=Net::FTP->new($host,Timeout=>240,Debug =>1,Passive=>1) or $error=1;
Why are you not using
my $ftp = ..
there?
> push @ERRORS, "Can't ftp to $host: $!\n" if $error;
According to the documentation, $@ is what you want to use, not $!.
$ftp = Net::FTP->new("some.host.name", Debug => 0)
or die "Cannot connect to some.host.name: $@";
> if ($error) {push @ERRORS, "Can't connect to $host: $!\n";myerrors();}
> print "Connected<br>\n";
>
> $ftp->login("myusername","mypassword") or $error=1;
> if ($error) {push @ERRORS, "Can't login to $host: $!\n";myerrors();}
Again, according to documentation, use the 'message' method:
$ftp->login("anonymous",'-anonymous@')
or die "Cannot login ", $ftp->message;
>
> $ftp->cwd($directory) or $error=1;
> if ($error) {push @ERRORS, "Can't cd $!\n";myerrors();}
> print "Successfully logged in to folder<br><br>\n";
Use 'message' method there, and in the rest of the program.
>
> chdir($localDir);
What if that fails?
>
> $ftp->binary();
>
> $ftp->pasv ();
>
> $ftp->get($fileTest) or $error=1;
> if ($error) {push @ERRORS, "Can't get file $!\n";myerrors();}
> print "Successfully downloaded $fileTest<br><br>\n";
>
> @files=$ftp->ls() or $error=1;
> if ($error) {push @ERRORS, "Can't get file list $!\n";myerrorsors();}
>
> foreach(@files) {print "$_<br>\n";}
>
> print "<br>\n";
> $ftp->quit;
> exit 0;
That exit isn't needed.
>
> sub myerrorsors {$ftp->quit;print "Error: \n";print @ERRORS;exit 0;}
>
> Thanks in advance for your direction,
>
Hopefully, after using the correct methods to display errors, and/or
using the Debug parameter, it'll help. Also, first get it working
without running as a CGI.
------------------------------
Date: 04 May 2009 17:05:50 GMT
From: Ben Bullock <benkasminbullock@gmail.com>
Subject: Re: Help with Net::ftp not downloading
Message-Id: <49ff206e$0$729$c5fe31e7@read01.usenet4all.se>
On Mon, 04 May 2009 09:38:12 -0700, Ed Jay wrote:
> I'm still a novice at Perl. I'm trying to develop a simple script to
> download a set of files from my server to my local drive. Although I'm
not
> getting any error messages, the script isn't performing. Help, please!
Perl will give you error messages if you ask it to, lots of them. Add the
following lines to the top of your script, after the #! line:
use warnings;
use strict;
------------------------------
Date: Mon, 04 May 2009 20:22:56 +0200
From: Peter Makholm <peter@makholm.net>
Subject: Re: Help with Net::ftp not downloading
Message-Id: <878wlc918f.fsf@vps1.hacking.dk>
Ed Jay <edMbj@aes-intl.com> writes:
> I'm still a novice at Perl. I'm trying to develop a simple script to
> download a set of files from my server to my local drive. Although I'm not
> getting any error messages, the script isn't performing. Help, please!
>
> (BTW, using this script I have been able to change and delete file names
> on the server, so I know I'm properly logged in.)
Step 1 is to investigate if you got a Perl problem or a non-Perl
problem. Can you download files with another ftp client using the same
active/passive setting?
//Makholm
------------------------------
Date: 04 May 2009 15:46:57 GMT
From: "David Formosa (aka ? the Platypus)" <dformosa@usyd.edu.au>
Subject: Re: Perl is too slow - A statement
Message-Id: <slrngvu3eu.l51.dformosa@localhost.localdomain>
On Sun, 03 May 2009 22:37:30 -0700, Nathan Keel <nat.k@gm.ml> wrote:
> David Formosa (aka ? the Platypus) wrote:
>
>> On Wed, 29 Apr 2009 20:33:23 -0700, Nathan Keel <nat.k@gm.ml> wrote:
>> [...]
>>
>>> What happens when you find that the language isn't fast enough?
>>
>> Lanauges are not fast or slow enough. Applications arn't fast
>> enought.
>
> I don't know what "Lanauges" are, so I'll take your word for it.
Real classy a spelling flame. Like I haven't seen one of thouse before.
http://quollified.com/~platypus/index.html
------------------------------
Date: 04 May 2009 15:51:57 GMT
From: "David Formosa (aka ? the Platypus)" <dformosa@usyd.edu.au>
Subject: Re: Perl is too slow - A statement
Message-Id: <slrngvu3oa.l51.dformosa@localhost.localdomain>
On Wed, 29 Apr 2009 13:51:50 -0700, sln@netherlands.com
<sln@netherlands.com> wrote:
[...]
> That is total bullshit. Nobody uses C in large comercial
> applications.
Oh so the layer two tunning deamon I was working on was what?
[...]
> nobody uses C for new development, not even for embedded/real-time
> stuff.
My house mate programs his micros in C I guess he doesn't exist.
> Perl is not used in comercial applications.
Damn that provisioning system doesn't exist at all.
------------------------------
Date: 04 May 2009 16:44:31 GMT
From: "David Formosa (aka ? the Platypus)" <dformosa@usyd.edu.au>
Subject: Re: Perl is too slow - A statement
Message-Id: <slrngvu6qt.l51.dformosa@localhost.localdomain>
On Wed, 29 Apr 2009 13:40:40 -0700, Nathan Keel <nat.k@gm.ml> wrote:
[...]
> That's only true to a point. Many things have changed since the 60s and
> 70s. Indeed, we have a lot less to worry about as developers, but
> that's no excuse to be lazy or stubborn about the topic.
No but writing code to be fast, before one knows if the code isn't fast
enough leads to no end of problems.
------------------------------
Date: Mon, 04 May 2009 09:45:55 -0700
From: Nathan Keel <nat.k@gm.ml>
Subject: Re: Perl is too slow - A statement
Message-Id: <7ZELl.2271$CN5.63@newsfe23.iad>
David Formosa (aka ? the Platypus) wrote:
> On Sun, 03 May 2009 22:37:30 -0700, Nathan Keel <nat.k@gm.ml> wrote:
>> David Formosa (aka ? the Platypus) wrote:
>>
>>> On Wed, 29 Apr 2009 20:33:23 -0700, Nathan Keel <nat.k@gm.ml> wrote:
>>> [...]
>>>
>>>> What happens when you find that the language isn't fast enough?
>>>
>>> Lanauges are not fast or slow enough. Applications arn't fast
>>> enought.
>>
>> I don't know what "Lanauges" are, so I'll take your word for it.
>
> Real classy a spelling flame. Like I haven't seen one of thouse
> before.
>
> http://quollified.com/~platypus/index.html
I resorted to picking on the typos because the response you made didn't
make sense, even when the spelling was corrected. I didn't take the
reply seriously, it looked like you were just posting nonsense for the
sake of it, so I poked fun. If you were genuine, then please elaborate
and accept my apologies for my assumption.
------------------------------
Date: Mon, 04 May 2009 09:52:22 -0700
From: Jürgen Exner <jurgenex@hotmail.com>
Subject: Re: Perl is too slow - A statement
Message-Id: <ru6uv4dau3enkkuqs1bbcgbfjp580874ea@4ax.com>
"David Formosa (aka ? the Platypus)" <dformosa@usyd.edu.au> wrote:
>On Wed, 29 Apr 2009 13:51:50 -0700, sln@netherlands.com
>> Perl is not used in comercial applications.
>
>Damn that provisioning system doesn't exist at all.
You know robic0 aka sln and the BS he is writing. Where I worked before
to a major part the build system was Perl-driven. And we are not talking
about some obscure tiny dot-com but a very major software company and
several products that are the most widely used SW products on this
planet. Sorry, can't get more specific because of NDA.
jue
------------------------------
Date: Mon, 04 May 2009 09:59:32 -0700
From: Nathan Keel <nat.k@gm.ml>
Subject: Re: Perl is too slow - A statement
Message-Id: <V9FLl.16466$uD3.13497@newsfe20.iad>
David Formosa (aka ? the Platypus) wrote:
> On Wed, 29 Apr 2009 13:40:40 -0700, Nathan Keel <nat.k@gm.ml> wrote:
> [...]
>> That's only true to a point. Many things have changed since the 60s
>> and
>> 70s. Indeed, we have a lot less to worry about as developers, but
>> that's no excuse to be lazy or stubborn about the topic.
>
> No but writing code to be fast, before one knows if the code isn't
> fast enough leads to no end of problems.
I suppose that depends on a few variables. It depends if the energy and
time in writing code known to be the fastest, in whatever language is
most appropriate, if it'll really take that much longer. Hopefully,
the developer(s) will be aware and have that experience to not guess or
just do rough code that they work off of, if it's not already fast
code. I suppose I always code to make the most efficient and faster
running code, no matter what, regardless of the scale of the project.
I do agree that I might not always code in the faster language at first
and sometimes I regret that when it's necessary to benefit from it,
instead of upgrading systems.
But, as we all know and as I had agreed, a system upgrade might be
needed regardless. Decisions can be made at design time and as the
initial code is being written. No one will ever fault you for writing
code that's too good, so unless it takes an unreasonable amount of time
to do it right the first time, one should be able to make the decision
before they start and with the design stages, if some languages are
better suited. For the record, I code most of my programs in Perl and
not C, so keep that in mind when you read what I said. I must not be
explaining myself well.
------------------------------
Date: Mon, 4 May 2009 12:45:26 -0700 (PDT)
From: Graig <g4774g@gmail.com>
Subject: Perl OLE Excel 2003 Problem with freezepane,
Message-Id: <116f3dba-0e20-4a1e-b700-3b404d9ab40b@k9g2000pra.googlegroups.com>
On Windows XP, perl 5.10, Excel 2003, Win32 OLE.
No problems with perl creating an Excel spreadsheet, everything seems
to work quite well. The two problem that still remains is:
1) I am trying to freeze pane at row 2:
my $freeze_panes = $gExcel->ActiveSheet->Range("2:2")->Select;
#$gSheet->Cells(2,2)->Select();
$gExcel->ActiveSheet->{FreezePanes} = $TRUE;
I've tried it a couple of ways. After I create and save the excel file
with perl, I can open this new file and I see I am somewhat close, in
that row 2 is highlighted, but the freeze pane has not taken affect.
2) The second problem is that I want to detect if when starting my
script, is Excel already running? What can happen is that the user
abnormally terminates, and leaves a copy of Excel in memory. The only
way to detect this is using MS Task Manager, and kill the excel
process. I'd like my perl script to see if excel is running when it
first comes up, so that I can prompt the user to close excel...
Graig
------------------------------
Date: Mon, 04 May 2009 13:17:47 -0400
From: rabbits77 <rabbits77@my-deja.com>
Subject: Re: Test post, no longer available?
Message-Id: <f2e77$49ff2344$c650990a$11576@news.eurofeeds.com>
sln@netherlands.com wrote:
> On Sun, 03 May 2009 12:50:43 -0700, sln@netherlands.com wrote:
>
>> This is a test before I cancel my subscription to easy news.
If you are just looking for text only usenet groups access try one of
few excellent free providers like nntp.aioe.org .
------------------------------
Date: Mon, 04 May 2009 10:20:51 -0700
From: Nathan Keel <nat.k@gm.ml>
Subject: Re: Test post, no longer available?
Message-Id: <TtFLl.21192$ew.1422@newsfe24.iad>
rabbits77 wrote:
> sln@netherlands.com wrote:
>> On Sun, 03 May 2009 12:50:43 -0700, sln@netherlands.com wrote:
>>
>>> This is a test before I cancel my subscription to easy news.
> If you are just looking for text only usenet groups access try one of
> few excellent free providers like nntp.aioe.org .
Please don't give this creep any advise about news servers. I think
they've shown they are abusive enough that the group would benefit if
they would just go away and never come back.
------------------------------
Date: Mon, 04 May 2009 10:23:49 -0700
From: Nathan Keel <nat.k@gm.ml>
Subject: Re: Unbelievable, Easy News trashes arbitrary message bodies from Perl groups
Message-Id: <JwFLl.21276$ew.10546@newsfe24.iad>
rabbits77 wrote:
> sln@netherlands.com wrote:
>> On Sun, 03 May 2009 18:58:00 -0700, Nathan Keel <nat.k@gm.ml> wrote:
>>
>>> sln@netherlands.com wrote:
>>>
>>>> On Sun, 03 May 2009 15:04:48 -0700, Nathan Keel <nat.k@gm.ml>
>>>> wrote:
>>>>
>>>>> sln@netherlands.com wrote:
>>>>>
>>>>>> I forgot to tell you. The message headers are on your server. The
>>>>>> body of the message is no longer available. Is that something
>>>>>> new, sort of latent body distribution in the Usenet arena? Maybe
>>>>>> comes 30 minutes later?
>>>>>>
>>>>> Let me ask you, why in the world do you think all of the views of
>>>>> this group care about your whining and complaints about your nntp
>>>>> provider? Go away.
>>>> Hey, FUCK OFF ASSHOLE. GOT THAT SCUMBAG
>>>> ??????????????????????????????????????
>>>>
>>>> -sln
>>> X-Complaints-To: abuse@easynews.com
>>
>> I am cancelling EasyNews for thier rotten service.
>>
>> On top of that, I am going to find you scumbag and knock you down and
>> kick the shit out of you !! Look for it
> This exchange between "sln" and "Nathan Keel" has me laughing very
> hard right
> now! Two perl coders kicking the shit out of each other over some
> stupid usenet bullshit is something I would pay money to see!
The guy is just an idiot and a low life. He's managed to piss off most
members on this group and a lot of people have blocked his messages
from being seen in their news readers. He made the threats, not me.
He's just an abusive ass clown and you can't take him seriously. And,
believe me, this guy threatening to "kick the shit out of me" is really
not a worry. Not that I don't secretly wish for the day that some
usenet troll actually got enough nerve to track me down and show up at
my home or work, because that would be something I'd also pay money to
see. No threats here, just a great outlet for some online frustration,
so I secretly hope it happens. I'll be sure to video tape it if it
does, but he's just a trash talking, abusive usenet troll.
------------------------------
Date: Mon, 04 May 2009 13:36:58 -0400
From: Sherm Pendley <spamtrap@dot-app.org>
Subject: Re: Unbelievable, Easy News trashes arbitrary message bodies from Perl groups
Message-Id: <m1bpq87osl.fsf@dot-app.org>
Nathan Keel <nat.k@gm.ml> writes:
> The guy is just an idiot and a low life. He's managed to piss off most
> members on this group
I hate to break it to you Nathan, but you're doing that too. Feeding a
troll is no better than being one.
sherm--
--
My blog: http://shermspace.blogspot.com
Cocoa programming in Perl: http://camelbones.sourceforge.net
------------------------------
Date: Mon, 04 May 2009 10:41:53 -0700
From: Nathan Keel <nat.k@gm.ml>
Subject: Re: Unbelievable, Easy News trashes arbitrary message bodies from Perl groups
Message-Id: <BNFLl.27103$vj3.3717@newsfe01.iad>
Sherm Pendley wrote:
> Nathan Keel <nat.k@gm.ml> writes:
>
>> The guy is just an idiot and a low life. He's managed to piss off
>> most members on this group
>
> I hate to break it to you Nathan, but you're doing that too. Feeding a
> troll is no better than being one.
>
> sherm--
>
I don't agree that there's always two to blame (at least not equally),
but that's just my view. The guy really stepped up his abuse the last
day and I've also filtered him out. At this point, I just let the
other poster know what was going on. Of course, it serves no purpose,
but just playing the silence game isn't going to make a different with
this particular troll. Damned if you do, damned if you don't, so I
have blocked him.
------------------------------
Date: Mon, 04 May 2009 14:02:48 -0400
From: Sherm Pendley <spamtrap@dot-app.org>
Subject: Re: Unbelievable, Easy News trashes arbitrary message bodies from Perl groups
Message-Id: <m1k54whhkn.fsf@dot-app.org>
Nathan Keel <nat.k@gm.ml> writes:
> Sherm Pendley wrote:
>
>> Nathan Keel <nat.k@gm.ml> writes:
>>
>>> The guy is just an idiot and a low life. He's managed to piss off
>>> most members on this group
>>
>> I hate to break it to you Nathan, but you're doing that too. Feeding a
>> troll is no better than being one.
>
> I don't agree that there's always two to blame
Okay, you can join sln in my killfile then. Been nice knowing you.
*plonk*
sherm--
--
My blog: http://shermspace.blogspot.com
Cocoa programming in Perl: http://camelbones.sourceforge.net
------------------------------
Date: Mon, 04 May 2009 11:09:02 -0700
From: Nathan Keel <nat.k@gm.ml>
Subject: Re: Unbelievable, Easy News trashes arbitrary message bodies from Perl groups
Message-Id: <3bGLl.22831$BX.19194@newsfe18.iad>
Sherm Pendley wrote:
> Nathan Keel <nat.k@gm.ml> writes:
>
>> Sherm Pendley wrote:
>>
>>> Nathan Keel <nat.k@gm.ml> writes:
>>>
>>>> The guy is just an idiot and a low life. He's managed to piss off
>>>> most members on this group
>>>
>>> I hate to break it to you Nathan, but you're doing that too. Feeding
>>> a troll is no better than being one.
>>
>> I don't agree that there's always two to blame
>
> Okay, you can join sln in my killfile then. Been nice knowing you.
>
> *plonk*
>
> sherm--
>
And there is the perfect example of what I mean. People bitch about you
replying to other people, adding to the problem, and are just as
guilty, but feel the need to "killfile" you because you actually say
that thought outloud about not thinking the two are exactly equal.
Thus, you've called me a troll and killed filed me, for calling sln a
troll and killfiling him. Somehow, you doing exactly what I did makes
you the better person? Give me a break. The same rules apply to you,
and you needn't lose your head about it and act like you "need" to
killfile me as if I'm some problem, unless that's your way of saying
you have a problem. Guess what, I don't put up with your arrogant crap
anymore than I do his. If people replying to you is such a big threat
or problem, maybe you should find some other place to go besides
usenet.
------------------------------
Date: Mon, 04 May 2009 13:13:32 -0400
From: rabbits77 <rabbits77@my-deja.com>
Subject: Re: Unbelievable, Easy News trashes arbitrary message bodies from Perl groups
Message-Id: <cd980$49ff223c$c650990a$8869@news.eurofeeds.com>
sln@netherlands.com wrote:
> On Sun, 03 May 2009 18:58:00 -0700, Nathan Keel <nat.k@gm.ml> wrote:
>
>> sln@netherlands.com wrote:
>>
>>> On Sun, 03 May 2009 15:04:48 -0700, Nathan Keel <nat.k@gm.ml> wrote:
>>>
>>>> sln@netherlands.com wrote:
>>>>
>>>>> I forgot to tell you. The message headers are on your server. The
>>>>> body of the message is no longer available. Is that something new,
>>>>> sort of latent body distribution in the Usenet arena? Maybe comes 30
>>>>> minutes later?
>>>>>
>>>> Let me ask you, why in the world do you think all of the views of this
>>>> group care about your whining and complaints about your nntp provider?
>>>> Go away.
>>> Hey, FUCK OFF ASSHOLE. GOT THAT SCUMBAG
>>> ??????????????????????????????????????
>>>
>>> -sln
>> X-Complaints-To: abuse@easynews.com
>
> I am cancelling EasyNews for thier rotten service.
>
> On top of that, I am going to find you scumbag and knock you down and kick the shit out of you !!
> Look for it
This exchange between "sln" and "Nathan Keel" has me laughing very hard
right
now! Two perl coders kicking the shit out of each other over some stupid
usenet bullshit is something I would pay money to see!
------------------------------
Date: 6 Apr 2001 21:33:47 GMT (Last modified)
From: Perl-Users-Request@ruby.oce.orst.edu (Perl-Users-Digest Admin)
Subject: Digest Administrivia (Last modified: 6 Apr 01)
Message-Id: <null>
Administrivia:
#The Perl-Users Digest is a retransmission of the USENET newsgroup
#comp.lang.perl.misc. For subscription or unsubscription requests, send
#the single line:
#
# subscribe perl-users
#or:
# unsubscribe perl-users
#
#to almanac@ruby.oce.orst.edu.
NOTE: due to the current flood of worm email banging on ruby, the smtp
server on ruby has been shut off until further notice.
To submit articles to comp.lang.perl.announce, send your article to
clpa@perl.com.
#To request back copies (available for a week or so), send your request
#to almanac@ruby.oce.orst.edu with the command "send perl-users x.y",
#where x is the volume number and y is the issue number.
#For other requests pertaining to the digest, send mail to
#perl-users-request@ruby.oce.orst.edu. Do not waste your time or mine
#sending perl questions to the -request address, I don't have time to
#answer them even if I did know the answer.
------------------------------
End of Perl-Users Digest V11 Issue 2390
***************************************