[31144] in Perl-Users-Digest
Perl-Users Digest, Issue: 2389 Volume: 11
daemon@ATHENA.MIT.EDU (Perl-Users Digest)
Mon May 4 09:10:15 2009
Date: Mon, 4 May 2009 06:09:08 -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: 2389
Today's topics:
error message Deep recursion on subroutine <nan1004au@gmail.com>
Re: error message Deep recursion on subroutine <hjp-usenet2@hjp.at>
Re: learn about computer <nat.k@gm.ml>
Re: learn about computer sln@netherlands.com
new CPAN modules on Mon May 4 2009 (Randal Schwartz)
Re: Perl 5.10: Safety of experimental features? <nat.k@gm.ml>
Re: Perl 5.10: Safety of experimental features? sln@netherlands.com
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 sln@netherlands.com
Re: Unbelievable, Easy News trashes arbitrary message b <nat.k@gm.ml>
Re: Unbelievable, Easy News trashes arbitrary message b sln@netherlands.com
Digest Administrivia (Last modified: 6 Apr 01) (Perl-Users-Digest Admin)
----------------------------------------------------------------------
Date: Sun, 3 May 2009 20:18:00 -0700 (PDT)
From: NamSa <nan1004au@gmail.com>
Subject: error message Deep recursion on subroutine
Message-Id: <07cca1f8-0d86-4a46-908c-d5767d796151@w31g2000prd.googlegroups.com>
my code printing error message this <data> 6 line it's TIME function.
TIME function is recursive computations .
Deep recursion on subroutine "main::Value" at toy.pl line 104, <DATA>
line 6.
Deep recursion on subroutine "main::Fun" at toy.pl line 40, <DATA>
line 6.
Deep recursion on subroutine "main::Fun" at toy.pl line 40, <DATA>
line 6.
Deep recursion on subroutine "main::Subst" at toy.pl line 62, <DATA>
line 6.
my code Lisp-Like TOY Language
base function 2 function it's MINUS and IF. another function make is
base IF or MINUS
use strict;
use warnings;
my @fun_list = ("MINUS","IF");
my %fun_hash = (
MINUS => 'Minus',
IF=> 'If',
AA=> '(x y)(IF x y)',
BB=> '(x y)(MINUS x y)',
ADD=> '(x y)(MINUS x (MINUS 0 y))',
EQUAL=> '(v2 v3)(MINUS (MINUS 1 (IF ( MINUS v2 v3) 1)) (IF (MINUS
v3 v2) 1))',
"IF/THEN/ELSE"=> '(v7 v8 v9)(ADD (IF v7 v8) (IF (MINUS 1 v7) v9))'
);
#main
while (<DATA>){
print Value($_) ;
}
sub Value{
my $exp=$_[0];
my $result;
while($exp !~ /^-?\d+/){
if (my @array = $exp =~ /\(\s*((?:(?!\s+\))[^()])+)\s*\)/xg){
for (@array){
$result = Fun($_);
$exp =~ s/\(\s*$_\s*\)/$result/;
}
}
}
return $exp;
}
sub Fun{
my $exp = $_[0];
my @arg = split / /,$exp;
for my $key (keys %fun_hash){
if( $exp =~ /^$key/){
if($key eq "MINUS"){
return Minus($arg[1],$arg[2]);
}elsif($key eq "IF"){
return If($arg[1],$arg[2]);
}else{
return Subst($key,$exp);
}
}
}
}
sub Minus{
my $x = $_[0];
my $y = $_[1];
return $x-$y;
}
sub If{
my $x = $_[0];
my $y = $_[1];
if($x <= 0){
return 0;
}else{
return $y;
}
}
sub Subst{
my $key = $_[0];
my $exp = $_[1];
my $i=0;
my @arg = split / /,$exp;
my $fun = $fun_hash{$key};
my @ar = $fun=~ /\(\s*((?:(?!\s+\))[^()])+)\s*\)/xg;
my @arg2 = split / /,$ar[0];
my $arg_size = @arg2;
$fun =~ s/\(\s*$ar[0]\s*\)//g;
for (@arg2){
$fun =~ s/$_/$arg[$i+1]/g;
$i++;
}
return Value($fun);
}
__DATA__
(AA 0 5 )
(BB 0 5 )
(ADD 5 5 )
(EQUAL 6 5 )
(IF/THEN/ELSE 1 2 5)
------------------------------
Date: Mon, 4 May 2009 12:25:43 +0200
From: "Peter J. Holzer" <hjp-usenet2@hjp.at>
Subject: Re: error message Deep recursion on subroutine
Message-Id: <slrngvtglb.viq.hjp-usenet2@hrunkner.hjp.at>
On 2009-05-04 03:18, NamSa <nan1004au@gmail.com> wrote:
> my code printing error message this <data> 6 line it's TIME function.
> TIME function is recursive computations .
> Deep recursion on subroutine "main::Value" at toy.pl line 104, <DATA>
> line 6.
This is not an error message, just a warning. You can turn it off with
"no warnings 'recursion';". See perldoc warn, perldoc perllexwarn and
perldoc perldiag for details.
hp
------------------------------
Date: Sun, 03 May 2009 18:55:25 -0700
From: Nathan Keel <nat.k@gm.ml>
Subject: Re: learn about computer
Message-Id: <hWrLl.28993$HZ1.2975@newsfe15.iad>
sln@netherlands.com wrote:
> On Sun, 03 May 2009 15:00:51 -0700, Nathan Keel <nat.k@gm.ml> wrote:
>
>>sln@netherlands.com wrote:
>>
>>> On Sat, 2 May 2009 22:20:31 -0700 (PDT), "daniswati007@gmail.com"
>>> <daniswati007@gmail.com> wrote:
>>>
>>>>free computer using tips for more visit www......tk
>>>
>>> Can you send me about 10,000 units please.
>>>
>>> -sln@netherlands.com
>>
>>Try and figure out how to not quote a spammer's URL when you reply to
>>the spam (for some reason).
>
> FUCK OFF .. JACK OFF!!
>
> -sln
Apparently your short comings are my short comings? Pa-lease! I
thought I had filtered your posts, but you're blocked now dimwit.
------------------------------
Date: Sun, 03 May 2009 21:15:29 -0700
From: sln@netherlands.com
Subject: Re: learn about computer
Message-Id: <ptqsv491hq3tmm45hs4vqk4isf2p95l296@4ax.com>
On Sun, 03 May 2009 18:55:25 -0700, Nathan Keel <nat.k@gm.ml> wrote:
>sln@netherlands.com wrote:
>
>> On Sun, 03 May 2009 15:00:51 -0700, Nathan Keel <nat.k@gm.ml> wrote:
>>
>>>sln@netherlands.com wrote:
>>>
>>>> On Sat, 2 May 2009 22:20:31 -0700 (PDT), "daniswati007@gmail.com"
>>>> <daniswati007@gmail.com> wrote:
>>>>
>>>>>free computer using tips for more visit www......tk
>>>>
>>>> Can you send me about 10,000 units please.
>>>>
>>>> -sln@netherlands.com
>>>
>>>Try and figure out how to not quote a spammer's URL when you reply to
>>>the spam (for some reason).
>>
>> FUCK OFF .. JACK OFF!!
>>
>> -sln
>
>Apparently your short comings are my short comings? Pa-lease! I
>thought I had filtered your posts, but you're blocked now dimwit.
My fist is a heart beat away from your face
-sln
------------------------------
Date: Mon, 4 May 2009 04:42:31 GMT
From: merlyn@stonehenge.com (Randal Schwartz)
Subject: new CPAN modules on Mon May 4 2009
Message-Id: <KJ3rqv.1tJE@zorch.sf-bay.org>
The following modules have recently been added to or updated in the
Comprehensive Perl Archive Network (CPAN). You can install them using the
instructions in the 'perlmodinstall' page included with your Perl
distribution.
ALPM-0.01
http://search.cpan.org/~juster/ALPM-0.01/
Perl OO version of libalpm, Archlinux's packaging system
----
App-MrShell-2.0000
http://search.cpan.org/~jettero/App-MrShell-2.0000/
do everything the mrsh commandline tool can do and more
----
Bundle-Compress-Zlib-2.018
http://search.cpan.org/~pmqs/Bundle-Compress-Zlib-2.018/
Install Compress::Zlib and dependencies
----
Bundle-IO-Compress-Bzip2-2.018
http://search.cpan.org/~pmqs/Bundle-IO-Compress-Bzip2-2.018/
Install IO::Compress::Bzip2 and dependencies
----
Cache-Memcached-1.25
http://search.cpan.org/~bradfitz/Cache-Memcached-1.25/
client library for memcached (memory cache daemon)
----
Catalyst-Controller-WrapCGI-0.0035
http://search.cpan.org/~rkitover/Catalyst-Controller-WrapCGI-0.0035/
Run CGIs in Catalyst
----
ClearPress-333
http://search.cpan.org/~rpettett/ClearPress-333/
Simple, fresh & fruity MVC framework - http://clearpress.net/
----
Compress-Raw-Bzip2-2.018
http://search.cpan.org/~pmqs/Compress-Raw-Bzip2-2.018/
Low-Level Interface to bzip2 compression library
----
Compress-Raw-Zlib-2.018
http://search.cpan.org/~pmqs/Compress-Raw-Zlib-2.018/
Low-Level Interface to zlib compression library
----
Dist-Zilla-Plugin-ReadmeFromPod-0.01
http://search.cpan.org/~fayland/Dist-Zilla-Plugin-ReadmeFromPod-0.01/
Automatically convert POD to a README for Dist::Zilla
----
Fedora-App-ReviewTool-0.10
http://search.cpan.org/~rsrchboy/Fedora-App-ReviewTool-0.10/
Application class for ReviewTool
----
File-AtomicWrite-0.91
http://search.cpan.org/~jmates/File-AtomicWrite-0.91/
writes files atomically via rename()
----
File-Rsync-Mirror-Recent-0.0.7
http://search.cpan.org/~andk/File-Rsync-Mirror-Recent-0.0.7/
mirroring via rsync made efficient
----
Finance-QuoteDB-0.12
http://search.cpan.org/~ecocode/Finance-QuoteDB-0.12/
User database tools based on Finance::Quote
----
Finance-QuoteDB-0.13
http://search.cpan.org/~ecocode/Finance-QuoteDB-0.13/
User database tools based on Finance::Quote
----
Git-SVNReplay-1.0211
http://search.cpan.org/~jettero/Git-SVNReplay-1.0211/
replay git commits into a throwaway svn repo
----
Gtk2-Ex-Entry-Pango-0.06_01
http://search.cpan.org/~potyl/Gtk2-Ex-Entry-Pango-0.06_01/
Gtk2 Entry that accepts Pango markup.
----
Gtk2-Ex-Entry-Pango-0.06_02
http://search.cpan.org/~potyl/Gtk2-Ex-Entry-Pango-0.06_02/
Gtk2 Entry that accepts Pango markup.
----
HTML-Calendar-Monthly-0.01
http://search.cpan.org/~jv/HTML-Calendar-Monthly-0.01/
A very simple HTML calendar
----
HTML-Perlinfo-1.61
http://search.cpan.org/~accardo/HTML-Perlinfo-1.61/
Display a lot of Perl information in HTML format
----
HTML-Template-Convert-TT-0.03
http://search.cpan.org/~mbait/HTML-Template-Convert-TT-0.03/
----
IO-Compress-2.018
http://search.cpan.org/~pmqs/IO-Compress-2.018/
----
IO-Compress-Lzf-2.018
http://search.cpan.org/~pmqs/IO-Compress-Lzf-2.018/
Write lzf files/buffers
----
IO-Compress-Lzop-2.018
http://search.cpan.org/~pmqs/IO-Compress-Lzop-2.018/
Write lzop files/buffers
----
JSON-Streaming-Writer-0.01
http://search.cpan.org/~mart/JSON-Streaming-Writer-0.01/
Generate JSON output in a streaming manner
----
JiftyX-Fixtures-0.01
http://search.cpan.org/~shelling/JiftyX-Fixtures-0.01/
Insert fixtures into your Jifty application database
----
JiftyX-Fixtures-0.02
http://search.cpan.org/~shelling/JiftyX-Fixtures-0.02/
Insert fixtures into your Jifty application database
----
Lingua-Any-Numbers-0.30
http://search.cpan.org/~burak/Lingua-Any-Numbers-0.30/
Converts numbers into (any available language) string.
----
Mac-PropertyList-1.31_01
http://search.cpan.org/~bdfoy/Mac-PropertyList-1.31_01/
work with Mac plists at a low level
----
Module-Install-ReadmeFromPod-0.02
http://search.cpan.org/~bingos/Module-Install-ReadmeFromPod-0.02/
A Module::Install extension to automatically convert POD to a README
----
Module-Install-ReadmeFromPod-0.04
http://search.cpan.org/~bingos/Module-Install-ReadmeFromPod-0.04/
A Module::Install extension to automatically convert POD to a README
----
Monotone-AutomateStdio-0.04
http://search.cpan.org/~aecooper/Monotone-AutomateStdio-0.04/
Perl interface to Monotone via automate stdio
----
Moose-0.77
http://search.cpan.org/~drolsky/Moose-0.77/
A postmodern object system for Perl 5
----
MySQL-Sandbox-2.0.99e
http://search.cpan.org/~gmax/MySQL-Sandbox-2.0.99e/
Quickly installs MySQL side server, either standalone or in groups
----
MySQL-Sandbox-2.0.99f
http://search.cpan.org/~gmax/MySQL-Sandbox-2.0.99f/
Quickly installs MySQL side server, either standalone or in groups
----
Net-Bonjour-0.96
http://search.cpan.org/~chlige/Net-Bonjour-0.96/
Module for DNS service discovery (Apple's Bonjour)
----
Net-IMAP-Server-1.17
http://search.cpan.org/~alexmv/Net-IMAP-Server-1.17/
A single-threaded multiplexing IMAP server implementation, using Net::Server::Coro.
----
Number-Format-1.71
http://search.cpan.org/~wrw/Number-Format-1.71/
Perl extension for formatting numbers
----
Object-Previous-1.1007
http://search.cpan.org/~jettero/Object-Previous-1.1007/
find the instance of the object that called your function
----
OpenResty-0.5.6
http://search.cpan.org/~agent/OpenResty-0.5.6/
General-purpose web service platform for web applications
----
OpenResty-0.5.7
http://search.cpan.org/~agent/OpenResty-0.5.7/
General-purpose web service platform for web applications
----
Perl6-Perldoc-To-Ansi-0.01
http://search.cpan.org/~hinrik/Perl6-Perldoc-To-Ansi-0.01/
ANSI-colored text renderer for Perl6::Perldoc
----
SSH-Batch-0.020
http://search.cpan.org/~agent/SSH-Batch-0.020/
Cluster operations based on parallel SSH, set and interval arithmetic
----
SSH-Batch-0.021
http://search.cpan.org/~agent/SSH-Batch-0.021/
Cluster operations based on parallel SSH, set and interval arithmetic
----
Sledge-Plugin-DebugLeakChecker-0.01
http://search.cpan.org/~matsumoto/Sledge-Plugin-DebugLeakChecker-0.01/
Show the memory leak situation of perl modules for Sledge
----
Socket-Class-2.20
http://search.cpan.org/~chrmue/Socket-Class-2.20/
A class to communicate with sockets
----
Statistics-Descriptive-2.7
http://search.cpan.org/~shlomif/Statistics-Descriptive-2.7/
Module of basic descriptive statistical functions.
----
Term-GentooFunctions-1.3505
http://search.cpan.org/~jettero/Term-GentooFunctions-1.3505/
provides gentoo's einfo, ewarn, eerror, ebegin and eend.
----
URI-ParseSearchString-3.0
http://search.cpan.org/~sden/URI-ParseSearchString-3.0/
parse search engine referrer URLs and extract keywords used
----
WWW-Contact-0.23
http://search.cpan.org/~fayland/WWW-Contact-0.23/
Get contacts/addressbook from Web
----
WWW-Search-News-1.079
http://search.cpan.org/~mthurn/WWW-Search-News-1.079/
WWW::Search backend for news searches
----
WWW-Tumblr-4
http://search.cpan.org/~damog/WWW-Tumblr-4/
Perl interface for the Tumblr API
----
Xtract-0.09
http://search.cpan.org/~adamk/Xtract-0.09/
Take any data source and deliver it to the world
----
grok-0.01
http://search.cpan.org/~hinrik/grok-0.01/
----
grok-0.02
http://search.cpan.org/~hinrik/grok-0.02/
Perl 6 documentation reader
----
indirect-0.12
http://search.cpan.org/~vpit/indirect-0.12/
Lexically warn about using the indirect object syntax.
If you're an author of one of these modules, please submit a detailed
announcement to comp.lang.perl.announce, and we'll pass it along.
This message was generated by a Perl program described in my Linux
Magazine column, which can be found on-line (along with more than
200 other freely available past column articles) at
http://www.stonehenge.com/merlyn/LinuxMag/col82.html
print "Just another Perl hacker," # the original
--
Randal L. Schwartz - Stonehenge Consulting Services, Inc. - +1 503 777 0095
<merlyn@stonehenge.com> <URL:http://www.stonehenge.com/merlyn/>
Smalltalk/Perl/Unix consulting, Technical writing, Comedy, etc. etc.
See http://methodsandmessages.vox.com/ for Smalltalk and Seaside discussion
------------------------------
Date: Sun, 03 May 2009 18:56:31 -0700
From: Nathan Keel <nat.k@gm.ml>
Subject: Re: Perl 5.10: Safety of experimental features?
Message-Id: <jXrLl.29008$HZ1.26128@newsfe15.iad>
sln@netherlands.com wrote:
> On Sun, 03 May 2009 15:02:06 -0700, Nathan Keel <nat.k@gm.ml> wrote:
>
>>sln@netherlands.com wrote:
>>
>>> On Sun, 03 May 2009 13:11:32 -0700, sln@netherlands.com wrote:
>>>
>>>>On Sun, 03 May 2009 13:09:16 -0700, sln@netherlands.com wrote:
>>>>
>>>>>And again test for not available.
>>>>>1 More time and EasyNews gets cancled.
>>>>>
>>>>>-sln
>>>>I'm going to assume you had a brain fart for now EasyNews.
>>>>One more incident and your history.
>>>>
>>>>-sln
>>> I'm cancelling. I don't need to pay you.
>>>
>>> -sln
>>
>>Who the hell are you talking to?
>
> FUCK OFF ASSWIPE BEFORE I KICK THE MOTHER FUCKIN SHIT OUT OF YOU
>
> -sln
You're a class act all the way. A bad as on the Internet. That's soooo
early 90s. :-)
*plonk*
------------------------------
Date: Sun, 03 May 2009 20:23:42 -0700
From: sln@netherlands.com
Subject: Re: Perl 5.10: Safety of experimental features?
Message-Id: <rrnsv419mlaokd98p8vhucc6lgktspb9ga@4ax.com>
On Sun, 03 May 2009 18:56:31 -0700, Nathan Keel <nat.k@gm.ml> wrote:
>sln@netherlands.com wrote:
>
>> On Sun, 03 May 2009 15:02:06 -0700, Nathan Keel <nat.k@gm.ml> wrote:
>>
>>>sln@netherlands.com wrote:
>>>
>>>> On Sun, 03 May 2009 13:11:32 -0700, sln@netherlands.com wrote:
>>>>
>>>>>On Sun, 03 May 2009 13:09:16 -0700, sln@netherlands.com wrote:
>>>>>
>>>>>>And again test for not available.
>>>>>>1 More time and EasyNews gets cancled.
>>>>>>
>>>>>>-sln
>>>>>I'm going to assume you had a brain fart for now EasyNews.
>>>>>One more incident and your history.
>>>>>
>>>>>-sln
>>>> I'm cancelling. I don't need to pay you.
>>>>
>>>> -sln
>>>
>>>Who the hell are you talking to?
>>
>> FUCK OFF ASSWIPE BEFORE I KICK THE MOTHER FUCKIN SHIT OUT OF YOU
>>
>> -sln
>
>You're a class act all the way. A bad as on the Internet. That's soooo
>early 90s. :-)
>
>*plonk*
Yeah, but I am going to kick the mother fuckin shit out of you
-sln
------------------------------
Date: 04 May 2009 04:41:56 GMT
From: "David Formosa (aka ? the Platypus)" <dformosa@usyd.edu.au>
Subject: Re: Perl is too slow - A statement
Message-Id: <slrngvssg1.l51.dformosa@localhost.localdomain>
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.
------------------------------
Date: Sun, 03 May 2009 22:37:30 -0700
From: Nathan Keel <nat.k@gm.ml>
Subject: Re: Perl is too slow - A statement
Message-Id: <wavLl.12843$bi7.12151@newsfe07.iad>
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.
I am not familiar with the quantifier "arn't", so I'll take your word
for it.
I don't know what the word "enought" means, so I'll take your word for
it and say this nonsense has gone on long enough.
Regardless, some applications can be coded in different languages to run
faster or not, though it usually comes down to how good of a coder the
developer is, so it's all relevant to too many variables.
At some point, you might need to upgrade systems, and sometimes other or
better designs and in other languages can also offer a remedy, it's
impossible to say in a general term (in my opinion, but I care about my
code).
------------------------------
Date: Sun, 03 May 2009 22:56:34 -0700
From: sln@netherlands.com
Subject: Re: Perl is too slow - A statement
Message-Id: <8r0tv412nt952ughisvr6otlbkq10rs1fn@4ax.com>
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.
>
>I am not familiar with the quantifier "arn't", so I'll take your word
>for it.
>
>I don't know what the word "enought" means, so I'll take your word for
>it and say this nonsense has gone on long enough.
>
>Regardless, some applications can be coded in different languages to run
>faster or not, though it usually comes down to how good of a coder the
>developer is, so it's all relevant to too many variables.
>
>At some point, you might need to upgrade systems, and sometimes other or
>better designs and in other languages can also offer a remedy, it's
>impossible to say in a general term (in my opinion, but I care about my
>code).
Shut the fuck up you dick head mother fucker jackof asshole !!!
-sln
------------------------------
Date: Sun, 03 May 2009 18:58:00 -0700
From: Nathan Keel <nat.k@gm.ml>
Subject: Re: Unbelievable, Easy News trashes arbitrary message bodies from Perl groups
Message-Id: <IYrLl.29029$HZ1.22551@newsfe15.iad>
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
------------------------------
Date: Sun, 03 May 2009 20:28:40 -0700
From: sln@netherlands.com
Subject: Re: Unbelievable, Easy News trashes arbitrary message bodies from Perl groups
Message-Id: <13osv49lgg887kuujn5oc8d48alkhsemei@4ax.com>
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
-sln
------------------------------
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 2389
***************************************