[30179] in Perl-Users-Digest
Perl-Users Digest, Issue: 1422 Volume: 11
daemon@ATHENA.MIT.EDU (Perl-Users Digest)
Sat Apr 5 03:09:41 2008
Date: Sat, 5 Apr 2008 00:09:05 -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 Sat, 5 Apr 2008 Volume: 11 Number: 1422
Today's topics:
Re: $var = { } <syscjm@sumire.gwu.edu>
Re: Creating a 'load simulator' by calling Perl Program sheinrich@my-deja.com
Re: Is substr only way of getting nth character of stri sheinrich@my-deja.com
Re: Is substr only way of getting nth character of stri <tadmc@seesig.invalid>
new CPAN modules on Sat Apr 5 2008 (Randal Schwartz)
perl should be improved and perl6 <jm@nospam.fr>
Re: perl should be improved and perl6 <uri@stemsystems.com>
Perlqt and QT-Designer <dsxxxxx@yahoo.com>
Re: separating substitutions from an embedded perl in a <someone@example.com>
Re: separating substitutions from an embedded perl in a tazommers@yahoo.com
Re: separating substitutions from an embedded perl in a <ben@morrow.me.uk>
Re: WHEN IS SOMEBODY GONNA FIX PERL?????? <robsku@NO-SPAM-REMOVE-THIS.fiveam.org>
Re: WHEN IS SOMEBODY GONNA FIX PERL?????? <thanatos@tartaros>
Re: WHEN IS SOMEBODY GONNA FIX PERL?????? <syscjm@sumire.gwu.edu>
Digest Administrivia (Last modified: 6 Apr 01) (Perl-Users-Digest Admin)
----------------------------------------------------------------------
Date: Fri, 04 Apr 2008 14:03:36 -0500
From: Chris Mattern <syscjm@sumire.gwu.edu>
Subject: Re: $var = { }
Message-Id: <slrnfvcus5.sj7.syscjm@sumire.gwu.edu>
On 2008-04-03, ankugoe7@gmail.com <ankugoe7@gmail.com> wrote:
> What does this means
>
> $var = { }
It means $var gets assigned a reference to an anonymous, empty hash.
--
Christopher Mattern
NOTICE
Thank you for noticing this new notice
Your noticing it has been noted
And will be reported to the authorities
------------------------------
Date: Fri, 4 Apr 2008 11:30:39 -0700 (PDT)
From: sheinrich@my-deja.com
Subject: Re: Creating a 'load simulator' by calling Perl Programs - or Forking?
Message-Id: <283a6d99-a10c-488c-84f7-a18ecf1a1a25@z24g2000prf.googlegroups.com>
On Apr 4, 6:19 pm, "J. Gleixner" <glex_no-s...@qwest-spam-no.invalid>
wrote:
> sheinr...@my-deja.com wrote:
>
> [...]
>
> Hu.. sounds pretty much like Parallel::ForkManager.
That might well be.
PreforkAgent came into being after I'd 'inherited' a customized
loadtesting script to which more and more functionality was to add. So
I was looking for a means of abstraction. Only after that was
finished, did I peak into the Parallel namespace.
Yet I didn't bother to explore how much of my work, which I had
enjoyed, has been gratuitous.
:-)
steffen
------------------------------
Date: Fri, 4 Apr 2008 12:25:15 -0700 (PDT)
From: sheinrich@my-deja.com
Subject: Re: Is substr only way of getting nth character of string?
Message-Id: <4488ac3e-0b6b-40a7-b1f8-4d49acf4051e@d2g2000pra.googlegroups.com>
On Mar 21, 1:55 am, "Robbie Hatley"
<see.my.signat...@for.my.email.address> wrote:
> New version:
>
> #permute.perl
> use strict;
> use warnings;
> sub rand_int
> {
> my ($min, $max) = @_;
> return int ( $min + rand ( $max - $min + 0.999 ) ) ;}
>
> srand;
> my @Charset = map chr, 9, 32..126;
> my @TempCharset = @Charset;
> my @PermCharset;
> while (@TempCharset > 0)
> {
> my $RandomInt = rand_int(0, @TempCharset - 1);
> my $RandomChar = $TempCharset[$RandomInt];
> push @PermCharset, $RandomChar;
> splice @TempCharset, $RandomInt, 1;}
>
> print @PermCharset, "\n";
>
Better late than never.
This one is my favourite shuffling algo. It's called a 'fisher yates
shuffle' and perl allows to swivel elements in-place:
use strict;
use warnings;
my @array = 1..100;
for (my $i = @array; $i; ) {
my $j = int rand $i--;
next if $i == $j;
@array[$i,$j] = @array[$j,$i];
}
print "@array\n";
Give it a shot,
steffen
------------------------------
Date: Fri, 04 Apr 2008 23:15:41 GMT
From: Tad J McClellan <tadmc@seesig.invalid>
Subject: Re: Is substr only way of getting nth character of string?
Message-Id: <slrnfvdfr6.urf.tadmc@tadmc30.sbcglobal.net>
sheinrich@my-deja.com <sheinrich@my-deja.com> wrote:
> This one is my favourite shuffling algo. It's called a 'fisher yates
> shuffle'
That algorithm is given in the answer to this Frequently Asked Question:
perldoc -q shuffle
--
Tad McClellan
email: perl -le "print scalar reverse qq/moc.noitatibaher\100cmdat/"
------------------------------
Date: Sat, 5 Apr 2008 04:42:18 GMT
From: merlyn@stonehenge.com (Randal Schwartz)
Subject: new CPAN modules on Sat Apr 5 2008
Message-Id: <Jyu52I.1vxu@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.
Alien-MeCab-0.97000
http://search.cpan.org/~dmaki/Alien-MeCab-0.97000/
Wrapper For Installing MeCab 0.97
----
Audio-FindChunks-0.04
http://search.cpan.org/~ilyaz/Audio-FindChunks-0.04/
breaks audio files into sound/silence parts.
----
AutoXS-0.03
http://search.cpan.org/~smueller/AutoXS-0.03/
Speed up your code after compile time
----
B-Utils-0.05_07
http://search.cpan.org/~smueller/B-Utils-0.05_07/
Helper functions for op tree manipulation
----
Catalyst-Controller-SOAP-0.6
http://search.cpan.org/~druoso/Catalyst-Controller-SOAP-0.6/
Catalyst SOAP Controller
----
Catalyst-Controller-SOAP-0.7
http://search.cpan.org/~druoso/Catalyst-Controller-SOAP-0.7/
Catalyst SOAP Controller
----
Catalyst-Engine-HTTP-Prefork-0.01
http://search.cpan.org/~agrundma/Catalyst-Engine-HTTP-Prefork-0.01/
High-performance pre-forking Catalyst engine
----
Catalyst-Model-SOAP-0.0.5
http://search.cpan.org/~druoso/Catalyst-Model-SOAP-0.0.5/
Map a WSDL to a catalyst model class.
----
Catalyst-Plugin-Log-Colorful-0.12
http://search.cpan.org/~tomyhero/Catalyst-Plugin-Log-Colorful-0.12/
Catalyst Plugin for Colorful Log
----
Catalyst-Plugin-StackTrace-0.08
http://search.cpan.org/~mramberg/Catalyst-Plugin-StackTrace-0.08/
Display a stack trace on the debug screen
----
Class-Component-0.14
http://search.cpan.org/~yappo/Class-Component-0.14/
pluggable component framework
----
Config-Model-0.621
http://search.cpan.org/~ddumont/Config-Model-0.621/
Framework to create configuration validation tools and editors
----
Config-Model-Itself-0.201
http://search.cpan.org/~ddumont/Config-Model-Itself-0.201/
Model editor for Config::Model
----
Config-Model-TkUI-0.104
http://search.cpan.org/~ddumont/Config-Model-TkUI-0.104/
Tk GUI to edit config data through Config::Model
----
Coro-4.46
http://search.cpan.org/~mlehmann/Coro-4.46/
coroutine process abstraction
----
DateTime-Format-Flexible-0.05
http://search.cpan.org/~thinc/DateTime-Format-Flexible-0.05/
DateTime::Format::Flexible - Flexibly parse strings and turn them into DateTime objects.
----
Finance-Bank-LaPoste-4.00
http://search.cpan.org/~pixel/Finance-Bank-LaPoste-4.00/
Check your "La Poste" accounts from Perl
----
Finance-Bank-LloydsTSB-1.33
http://search.cpan.org/~aspiers/Finance-Bank-LloydsTSB-1.33/
Check your bank accounts from Perl
----
Games-SGF-0.05
http://search.cpan.org/~whitcode/Games-SGF-0.05/
A general SGF parser
----
Getopt-Long-Descriptive-0.073
http://search.cpan.org/~hdp/Getopt-Long-Descriptive-0.073/
Getopt::Long with usage text
----
HTTP-HeaderParser-XS-0.20
http://search.cpan.org/~marksmith/HTTP-HeaderParser-XS-0.20/
an XS extension for processing HTTP headers.
----
HTTP-MobileAttribute-0.03
http://search.cpan.org/~tokuhirom/HTTP-MobileAttribute-0.03/
Yet Another HTTP::MobileAgent
----
HTTP-MobileAttribute-0.04
http://search.cpan.org/~tokuhirom/HTTP-MobileAttribute-0.04/
Yet Another HTTP::MobileAgent
----
IPC-MorseSignals-0.15
http://search.cpan.org/~vpit/IPC-MorseSignals-0.15/
Communicate between processes with Morse signals.
----
Math-Complex-1.54
http://search.cpan.org/~jhi/Math-Complex-1.54/
complex numbers and associated mathematical functions
----
Net-Kotonoha-0.06
http://search.cpan.org/~mattn/Net-Kotonoha-0.06/
A perl interface to kotonoha.cc
----
OpenResty-0.1.10
http://search.cpan.org/~agent/OpenResty-0.1.10/
General-purpose web service platform for web applications
----
POE-Component-Client-SOCKS-0.08
http://search.cpan.org/~bingos/POE-Component-Client-SOCKS-0.08/
SOCKS enable any POE Component
----
POE-Component-IRC-Plugin-FTP-EasyUpload-0.001
http://search.cpan.org/~zoffix/POE-Component-IRC-Plugin-FTP-EasyUpload-0.001/
provide files to IRC users via FTP
----
POE-Component-IRC-Plugin-POE-Knee-1.04
http://search.cpan.org/~bingos/POE-Component-IRC-Plugin-POE-Knee-1.04/
A POE::Component::IRC plugin that runs Acme::POE::Knee races.
----
POE-Component-IRC-Plugin-RSS-Headlines-1.04
http://search.cpan.org/~bingos/POE-Component-IRC-Plugin-RSS-Headlines-1.04/
A POE::Component::IRC plugin that provides RSS headline retrieval.
----
POE-Component-IRC-Plugin-URI-Find-1.04
http://search.cpan.org/~bingos/POE-Component-IRC-Plugin-URI-Find-1.04/
A POE::Component::IRC plugin that finds URIs in channel traffic.
----
POE-Component-Proxy-SOCKS-0.06
http://search.cpan.org/~bingos/POE-Component-Proxy-SOCKS-0.06/
A POE based SOCKS 4 proxy server.
----
Parallel-Prefork-0.01
http://search.cpan.org/~kazuho/Parallel-Prefork-0.01/
A simple prefork server framework
----
Parse-RPN-2.39
http://search.cpan.org/~fdulau/Parse-RPN-2.39/
----
SQL-Tokenizer-0.10
http://search.cpan.org/~izut/SQL-Tokenizer-0.10/
A simple SQL tokenizer.
----
SVN-Dumpfilter-0.21
http://search.cpan.org/~mscharrer/SVN-Dumpfilter-0.21/
Perl extension to filter Subversion dumpfiles
----
Sys-Statistics-Linux-0.33
http://search.cpan.org/~bloonix/Sys-Statistics-Linux-0.33/
Front-end module to collect system statistics
----
Template-Perlish-1.0
http://search.cpan.org/~polettix/Template-Perlish-1.0/
Yet Another Templating system for Perl
----
Test-DBIx-Class-Schema-0.01000
http://search.cpan.org/~chisel/Test-DBIx-Class-Schema-0.01000/
DBIx::Class schema sanity checking tests
----
Test-DBIx-Class-Schema-0.01001
http://search.cpan.org/~chisel/Test-DBIx-Class-Schema-0.01001/
DBIx::Class schema sanity checking tests
----
Test-DBIx-Class-Schema-0.01002
http://search.cpan.org/~chisel/Test-DBIx-Class-Schema-0.01002/
DBIx::Class schema sanity checking tests
----
Test-Run-0.0115
http://search.cpan.org/~shlomif/Test-Run-0.0115/
a new and improved test harness for TAP scripts.
----
Test-Run-Plugin-AlternateInterpreters-0.0105
http://search.cpan.org/~shlomif/Test-Run-Plugin-AlternateInterpreters-0.0105/
Define different interpreters for different test scripts with Test::Run.
----
Test-Run-Plugin-TrimDisplayedFilenames-0.01
http://search.cpan.org/~shlomif/Test-Run-Plugin-TrimDisplayedFilenames-0.01/
trim the first components of the displayed filename to deal with excessively long ones.
----
Text-Similarity-0.05
http://search.cpan.org/~tpederse/Text-Similarity-0.05/
Measure the pair-wise similarity of documents and strings.
----
WWW-Comic-Plugin-CyanideAndHappiness-0.01
http://search.cpan.org/~bigpresh/WWW-Comic-Plugin-CyanideAndHappiness-0.01/
WWW::Comic plugin to fetch C+H
----
WWW-Comic-Plugin-XKCD-0.01
http://search.cpan.org/~bigpresh/WWW-Comic-Plugin-XKCD-0.01/
WWW::Comic plugin to fetch XKCD comic
----
WWW-OpenResty-0.05
http://search.cpan.org/~agent/WWW-OpenResty-0.05/
Client-side library for OpenResty servers
----
WebService-Simple-0.03
http://search.cpan.org/~yusukebe/WebService-Simple-0.03/
Simple interface to Web Services APIs
----
ZipTie-Client-1.0
http://search.cpan.org/~lbayer/ZipTie-Client-1.0/
Webservice client for the ZipTie server
----
perltugues-0.10
http://search.cpan.org/~fco/perltugues-0.10/
pragma para programar usando portugues estruturado
----
perltugues-0.4
http://search.cpan.org/~fco/perltugues-0.4/
pragma para programar usando portugues estruturado
----
perltugues-0.5
http://search.cpan.org/~fco/perltugues-0.5/
pragma para programar usando portugues estruturado
----
perltugues-0.6
http://search.cpan.org/~fco/perltugues-0.6/
pragma para programar usando portugues estruturado
----
perltugues-0.7
http://search.cpan.org/~fco/perltugues-0.7/
pragma para programar usando portugues estruturado
----
perltugues-0.8
http://search.cpan.org/~fco/perltugues-0.8/
pragma para programar usando portugues estruturado
----
perltugues-0.9
http://search.cpan.org/~fco/perltugues-0.9/
pragma para programar usando portugues estruturado
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/>
Perl/Unix/security consulting, Technical writing, Comedy, etc. etc.
See PerlTraining.Stonehenge.com for onsite and open-enrollment Perl training!
------------------------------
Date: Fri, 04 Apr 2008 23:08:31 +0200
From: jm <jm@nospam.fr>
Subject: perl should be improved and perl6
Message-Id: <47f698d1$0$21147$7a628cd7@news.club-internet.fr>
perl provides good things and bad ones.
In the good thing, such as:
* it is adapted for text processing
* it is poorly typed
* it is enough powerful with unicode
* provide arrays and hash and reference (and objects)
* transparently manage any kind of numbers.
* is C interfacable
* has basic network and IPC possibilities
* pack/unpack
In the bad things, such as:
* bytes/unicode confusion
* stack overflow within bad regular expression
* memory consumption (might be an issue when energy will be more expensive?)
* insufficient typing
* some portability issue, notably with function «system».
* some $@% issues.
* pack limitation: cannot just modify one byte.
perl6 looks like a cleanup of perl, but I am wondering:
how will memory be handled in perl6?
how will bytes be handled in perl6?
why perl6 encourages complex regex (as x become standard)?
how will perl6 address portability issues?
how will perl6 address IPC issues?
------------------------------
Date: Fri, 04 Apr 2008 21:46:35 GMT
From: Uri Guttman <uri@stemsystems.com>
Subject: Re: perl should be improved and perl6
Message-Id: <x71w5lxphi.fsf@mail.sysarch.com>
>>>>> "j" == jm <jm@nospam.fr> writes:
j> perl provides good things and bad ones.
j> In the good thing, such as:
j> * it is adapted for text processing
j> * it is poorly typed
me thinks you don't understand typing well. perl actually has stronger
typing than many langs. it just types on the variable type (scalar vs
array vs hash) instead of the data type.
j> * it is enough powerful with unicode
j> * provide arrays and hash and reference (and objects)
j> * transparently manage any kind of numbers.
j> * is C interfacable
j> * has basic network and IPC possibilities
basic??? cpan has modules for almost every protocol out there and IPC
support is all done too. you don't know perl well if you say this is basic.
j> * pack/unpack
that is a major part of perl? it is used but not that often by most
coders.
j> In the bad things, such as:
j> * bytes/unicode confusion
j> * stack overflow within bad regular expression
huh?? then don't write bad regexes. most likely if it blows up in perl
it will do worse in other langs.
j> * memory consumption (might be an issue when energy will be more expensive?)
what?? you are smoking very strange stuff. ram is cheap and always
getting cheaper. cpu speed is the power hog.
j> * insufficient typing
again, you don't know what you are talking about.
j> * some portability issue, notably with function «system».
proof of the last comment. system is the way to call external
programs. how could that POSSIBLY BE PORTABLE if the external programs
vary from box to box?
j> * some $@% issues.
no, you have some issues.
j> * pack limitation: cannot just modify one byte.
huh??? pack doesn't modify anything. pack converts a list of values to a
single buffer string. and the C format can pack a single byte.
j> perl6 looks like a cleanup of perl, but I am wondering:
j> how will memory be handled in perl6?
just find with true gc.
j> how will bytes be handled in perl6?
with stone tablets.
j> why perl6 encourages complex regex (as x become standard)?
wtf are you babbling about? perl6 has grammars and rules which blow away
all current regex engines. you need to read up on them. in fact you can
use a bunch of it in perl5 now with cpan modules.
j> how will perl6 address portability issues?
what issues?
j> how will perl6 address IPC issues?
again, what issues? there are no IPC issues, other than your
delusions. perl has fine IPC.
uri
--
Uri Guttman ------ uri@stemsystems.com -------- http://www.sysarch.com --
----- Perl Code Review , Architecture, Development, Training, Support ------
--------- Free Perl Training --- http://perlhunter.com/college.html ---------
--------- Gourmet Hot Cocoa Mix ---- http://bestfriendscocoa.com ---------
------------------------------
Date: Fri, 04 Apr 2008 21:38:51 -0500
From: ds456 <dsxxxxx@yahoo.com>
Subject: Perlqt and QT-Designer
Message-Id: <0NSdnRrmFuOme2vanZ2dnUVZ_qGknZ2d@oco.net>
I am trying to get PerlQT working on Debian Etch, which isn't in the
package tree. QT-Designer is, so it installs with no problem. PerlQT has
to be installed from source and it also works. That is, I can write a
perl script with QT bindings and the program runs fine.
But I can't get PerlQT noticed as a plugin by QT-Designer. When I start
QTD it should have project options for perl, but so far it only has the
usual C++ stuff.
Any QT experts on here?
Thanks
DS
------------------------------
Date: Fri, 04 Apr 2008 18:19:54 GMT
From: "John W. Krahn" <someone@example.com>
Subject: Re: separating substitutions from an embedded perl in a ksh script
Message-Id: <ejuJj.15918$pb5.12596@edtnps89>
David Harmon wrote:
> On Fri, 4 Apr 2008 07:27:32 -0700 (PDT) in comp.lang.perl.misc,
> tazommers@yahoo.com wrote,
>> CMD="perl -p -i -n -e "'"s/^5(.{68})$EFF_DATE/5\$1|$REP_DATE/g"'"
>> $FILE"
>> eval $CMD
>>
>> I don't want that "|" character, but I need something to separate the
>> $1 for the perl group and the $REP_DATE from the ksh. The $REP_DATE
>> gets replaced in ksh with the string 080407 for instance, so how does
>> one separate the $1 group from the string 080407?
>
> Does writing $1 as ${1} do it?
>
> But you are essentially replacing $1 with itself! That seems
> gratuitous to me. The stuff before $EFF_DATE is just context and
> should not participate in the replacement operation. Why not an
> expression something more like:
>
> s/(?<=^5.{68})$EFF_DATE/$REP_DATE/
Another way to do it:
/^5/ && substr( $_, 69 ) =~ s/^$EFF_DATE/$REP_DATE/
> The /g should not be necessary, you only want one replacement per
> line anyway.
>
> I can't figure you would need both the -p and -n switches.
From perlrun.pod under the '-p' entry: "A -p overrides a -n switch." so
the -n switch in the OP's example is superfuous.
John
--
Perl isn't a toolbox, but a small machine shop where you
can special-order certain sorts of tools at low cost and
in short order. -- Larry Wall
------------------------------
Date: Fri, 4 Apr 2008 12:15:35 -0700 (PDT)
From: tazommers@yahoo.com
Subject: Re: separating substitutions from an embedded perl in a ksh script
Message-Id: <801944f1-21a0-4ad7-b73d-78da9b13fd7a@24g2000hsh.googlegroups.com>
> > I can't figure you would need both the -p and -n switches.
>
> =A0From perlrun.pod under the '-p' entry: "A -p overrides a -n switch." so=
> the -n switch in the OP's example is superfuous.
Heh, I didn't even look at what the switches meant... am editing
someone else's code and trying to improve on effeciency... it's a slow
script
------------------------------
Date: Fri, 4 Apr 2008 20:23:05 +0100
From: Ben Morrow <ben@morrow.me.uk>
Subject: Re: separating substitutions from an embedded perl in a ksh script
Message-Id: <ppbic5-2a9.ln1@osiris.mauzo.dyndns.org>
Quoth tazommers@yahoo.com:
> > > I can't figure you would need both the -p and -n switches.
> >
> > From perlrun.pod under the '-p' entry: "A -p overrides a -n switch." so
> > the -n switch in the OP's example is superfuous.
>
> Heh, I didn't even look at what the switches meant... am editing
> someone else's code and trying to improve on effeciency... it's a slow
> script
If you can somehow arrange to run perl once, instead of lots of times,
you'll likely make it a good bit faster (assuming this perl invocation
is the bottleneck). Rewriting entirely in Perl is of course one way to
achieve this :).
Ben
------------------------------
Date: Fri, 04 Apr 2008 23:53:38 +0300
From: Sir Robin <robsku@NO-SPAM-REMOVE-THIS.fiveam.org>
Subject: Re: WHEN IS SOMEBODY GONNA FIX PERL??????
Message-Id: <u85dv31s4klcspfin1kv5quplkumv3qiqv@4ax.com>
On Tue, 01 Apr 2008 18:18:42 GMT, Rich Grise <rich@example.net> wrote:
>On Tue, 01 Apr 2008 18:43:37 +0200, O_TEXT wrote:
>> Lawrence Statton a écrit :
>>> Jürgen Exner <jurgenex@hotmail.com> writes:
>>>
>>>> your.absolute.god@gmail.com wrote:
>>>>> WHEN IS SOMEBODY GONNA FIX PERL??????
>>>
>>> You do realize that today is 1 April in the United states?
>>
>> It is first April too is some other countries.
>
>Yes, but do they "celebrate" "April Fools' Day"?
Certainly - I know at least here in Finland we do.
>Thanks,
>Rich
--
***/--- Sir Robin (aka Jani Saksa) Bi-Sex and proud of it! ---\***
**/ email: robsku@fiveam.NO-SPAM.org, <*> Reg. Linux user #290577 \**
*| Me, Drugs, DooM, Photos, Writings... http://soul.fiveam.org/robsku |*
**\--- GSM/SMS: +358 44 927 3992 ---/**
"Kun nuorille opetetaan, että kannabis on yhtä vaarallista kuin heroiini,
niin tokihan he oppivat, että heroiini on yhtä vaaratonta kuin kannabis."
------------------------------
Date: Fri, 04 Apr 2008 23:13:37 +0200
From: Thanatos <thanatos@tartaros>
Subject: Re: WHEN IS SOMEBODY GONNA FIX PERL??????
Message-Id: <47f69a01$0$27748$e4fe514c@dreader19.news.xs4all.nl>
The sentient life form your.absolute.god@gmail.com posted the following:
> WHEN IS SOMEBODY GONNA FIX PERL??????
I think it will be easier to fix YOU!
------------------------------
Date: Fri, 04 Apr 2008 17:36:58 -0500
From: Chris Mattern <syscjm@sumire.gwu.edu>
Subject: Re: WHEN IS SOMEBODY GONNA FIX PERL??????
Message-Id: <slrnfvdbc7.sj7.syscjm@sumire.gwu.edu>
On 2008-04-04, Thanatos <thanatos@tartaros> wrote:
> The sentient life form your.absolute.god@gmail.com posted the following:
>
>> WHEN IS SOMEBODY GONNA FIX PERL??????
>
> I think it will be easier to fix YOU!
In Soviet Russia, Perl fixes you!
--
Christopher Mattern
NOTICE
Thank you for noticing this new notice
Your noticing it has been noted
And will be reported to the authorities
------------------------------
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 1422
***************************************