[28176] in Perl-Users-Digest
Perl-Users Digest, Issue: 9540 Volume: 10
daemon@ATHENA.MIT.EDU (Perl-Users Digest)
Mon Jul 31 11:05:59 2006
Date: Mon, 31 Jul 2006 08:05:07 -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, 31 Jul 2006 Volume: 10 Number: 9540
Today's topics:
Re: Beginner: read in lines array1 and after keyword ar <someone@example.com>
Re: Beginner: read in lines array1 and after keyword ar <bik.mido@tiscalinet.it>
Re: Beginner: read in lines array1 and after keyword ar anno4000@radom.zrz.tu-berlin.de
Re: Beginner: read in lines array1 and after keyword ar <bik.mido@tiscalinet.it>
continous update (print) <daleif@RTFSIGNATUREimf.au.dk>
Re: continous update (print) <aukjan@gmail.com>
Re: continous update (print) <bik.mido@tiscalinet.it>
Re: continous update (print) <daleif@RTFSIGNATUREimf.au.dk>
Re: continous update (print) <aukjan@gmail.com>
Java::Import module <thedwig@gmail.com>
Re: Java::Import module <sisyphus1@nomail.afraid.org>
new CPAN modules on Mon Jul 31 2006 (Randal Schwartz)
perl editor <syr@bigpond.net.au>
Re: perl editor <josef.moellers@fujitsu-siemens.com>
Re: perl editor <bik.mido@tiscalinet.it>
Re: perl editor <syr@bigpond.net.au>
Re: why perl over more "powerful" stuff liek lisp haske axel@white-eagle.invalid.uk
Re: why perl over more "powerful" stuff liek lisp haske <peace.is.our.profession@gmx.de>
Digest Administrivia (Last modified: 6 Apr 01) (Perl-Users-Digest Admin)
----------------------------------------------------------------------
Date: Mon, 31 Jul 2006 04:07:57 GMT
From: "John W. Krahn" <someone@example.com>
Subject: Re: Beginner: read in lines array1 and after keyword array2
Message-Id: <xmfzg.176850$S61.48574@edtnps90>
Ben Morrow wrote:
>
> Michele's code is basically a way of working around the fact that you
> can't say
>
> push( (foo ? @foo : @bar), $_ );
>
> in Perl5 as the ?: operator won't accept arrays.
The ?: operator works just file with scalars/arrays/hashes/lists. That won't
work because push() only works with arrays as the first argument and not
scalars/hashes/lists.
John
--
use Perl;
program
fulfillment
------------------------------
Date: 31 Jul 2006 09:50:39 +0200
From: Michele Dondi <bik.mido@tiscalinet.it>
Subject: Re: Beginner: read in lines array1 and after keyword array2
Message-Id: <5fdrc2pnvtu0huvtcpr2o31ve0g75kfecq@4ax.com>
On Mon, 31 Jul 2006 01:39:39 +0100, Ben Morrow
<benmorrow@tiscali.co.uk> wrote:
>Michele's code is basically a way of working around the fact that you
>can't say
>
> push( (foo ? @foo : @bar), $_ );
>
>in Perl5 as the ?: operator won't accept arrays.
It *does* accept arrays, but it flattens them into lists, and push()
wants an actual array, not a list. Just a minor pick...
Michele
--
{$_=pack'B8'x25,unpack'A8'x32,$a^=sub{pop^pop}->(map substr
(($a||=join'',map--$|x$_,(unpack'w',unpack'u','G^<R<Y]*YB='
.'KYU;*EVH[.FHF2W+#"\Z*5TI/ER<Z`S(G.DZZ9OX0Z')=~/./g)x2,$_,
256),7,249);s/[^\w,]/ /g;$ \=/^J/?$/:"\r";print,redo}#JAPH,
------------------------------
Date: 31 Jul 2006 08:01:05 GMT
From: anno4000@radom.zrz.tu-berlin.de
Subject: Re: Beginner: read in lines array1 and after keyword array2
Message-Id: <4j5rm1F6d0joU1@news.dfncis.de>
Michele Dondi <bik.mido@tiscalinet.it> wrote in comp.lang.perl.misc:
> On 30 Jul 2006 14:07:06 +0200, Michele Dondi <bik.mido@tiscalinet.it>
> wrote:
>
> > my (@lines1, @lines2);
> > while (<DATA>)
> > {
> > last if /keyword/;
> > push @lines1, $_;
> > }
> > @lines2=<DATA>;
> >
> >The situation will be slightly more complex if you also want to put
> >the "keyword" line either in @lines1 or @lines2.
>
> Oh, and one funky (IMHO) solution which will put the keyword line into
> @lines1 (one can pop() it afterwards):
>
> push @{ 1../keyword/ ? \@lines1 : \@lines2 }, $_ while <>;
Slightly less funky:
$/ = "keyword\n";
my @lines1 = split /\n/, <DATA>;
my @lines2 = split /\n/, <DATA>;
Anno
------------------------------
Date: 31 Jul 2006 10:26:05 +0200
From: Michele Dondi <bik.mido@tiscalinet.it>
Subject: Re: Beginner: read in lines array1 and after keyword array2
Message-Id: <d9frc25an3uf2umhpcb1rda5p1k02frchs@4ax.com>
On Sun, 30 Jul 2006 21:13:50 +0200, Marek Stepanek <mstep@t-online.de>
wrote:
>such code alone :-( Great lesson! I have a supplemental question to the
>list, which is not on topic under this subject, but perhaps I may dare to do
>this as a beginner ...
You're very polite and I think most people wouldn't have any problem
with your request. But even though other ones are now partecipating to
this thread, chances are that someone may think this part of the
thread having become some sort of private conversation among us. So if
your other question logically fits better in a separate thread, then
start a new one. In this precise moment I'm at a hospital and I don't
have time to look further into your post. I'll give another peek into
it later, if time and therapies permit!
Michele
--
{$_=pack'B8'x25,unpack'A8'x32,$a^=sub{pop^pop}->(map substr
(($a||=join'',map--$|x$_,(unpack'w',unpack'u','G^<R<Y]*YB='
.'KYU;*EVH[.FHF2W+#"\Z*5TI/ER<Z`S(G.DZZ9OX0Z')=~/./g)x2,$_,
256),7,249);s/[^\w,]/ /g;$ \=/^J/?$/:"\r";print,redo}#JAPH,
------------------------------
Date: Mon, 31 Jul 2006 13:33:10 +0200
From: Lars Madsen <daleif@RTFSIGNATUREimf.au.dk>
Subject: continous update (print)
Message-Id: <eakppn$ns2$1@news.net.uni-c.dk>
if one e.g . wants to write a countdown one can do this as
$|=1;
...
# some loop
printf "% 4d\r", $count;
where \r then makes sure that we reprint on them same line over and over again.
But what if you want to do this with several lines at once?
I have a data structure with, say, 10 special entries that changes every second,
I would like to have a continous overview if these numbers in the same fashion
as above.
How would one do that?
--
/daleif (remove RTFSIGNATURE from email address)
------------------------------
Date: Mon, 31 Jul 2006 13:49:05 +0200
From: Aukjan van Belkum <aukjan@gmail.com>
Subject: Re: continous update (print)
Message-Id: <bd989$44cdee05$c2abfc64$7598@news1.tudelft.nl>
Lars Madsen wrote:
>
> if one e.g . wants to write a countdown one can do this as
>
> $|=1;
> ...
> # some loop
> printf "% 4d\r", $count;
>
> where \r then makes sure that we reprint on them same line over and over
> again.
>
> But what if you want to do this with several lines at once?
>
> I have a data structure with, say, 10 special entries that changes every
> second, I would like to have a continous overview if these numbers in
> the same fashion as above.
>
> How would one do that?
>
>
A simple solution is to clear the screen before printing:
my $clear = qx(clear);
while ( 1 ){
print $clear;
printf "%s\n",'some text';
}
Aukjan.
------------------------------
Date: 31 Jul 2006 15:15:27 +0200
From: Michele Dondi <bik.mido@tiscalinet.it>
Subject: Re: continous update (print)
Message-Id: <if0sc292veoikf3dg427e1hb1udmoaa23p@4ax.com>
On Mon, 31 Jul 2006 13:33:10 +0200, Lars Madsen
<daleif@RTFSIGNATUREimf.au.dk> wrote:
>I have a data structure with, say, 10 special entries that changes every second,
>I would like to have a continous overview if these numbers in the same fashion
>as above.
>
>How would one do that?
It may seem an overkill just for this task, but Term::ANSIScreen is
your friend. Or else you may determine the few ANSI sequences you
really need and hardcode them.
Michele
--
{$_=pack'B8'x25,unpack'A8'x32,$a^=sub{pop^pop}->(map substr
(($a||=join'',map--$|x$_,(unpack'w',unpack'u','G^<R<Y]*YB='
.'KYU;*EVH[.FHF2W+#"\Z*5TI/ER<Z`S(G.DZZ9OX0Z')=~/./g)x2,$_,
256),7,249);s/[^\w,]/ /g;$ \=/^J/?$/:"\r";print,redo}#JAPH,
------------------------------
Date: Mon, 31 Jul 2006 15:52:08 +0200
From: Lars Madsen <daleif@RTFSIGNATUREimf.au.dk>
Subject: Re: continous update (print)
Message-Id: <eal1u8$pcs$1@news.net.uni-c.dk>
> A simple solution is to clear the screen before printing:
>
> my $clear = qx(clear);
>
> while ( 1 ){
> print $clear;
> printf "%s\n",'some text';
> }
>
well yes, besides the fact that the screen flickers a bit, clearing the screen
seems to work.
--
/daleif (remove RTFSIGNATURE from email address)
------------------------------
Date: Mon, 31 Jul 2006 16:19:00 +0200
From: Aukjan van Belkum <aukjan@gmail.com>
Subject: Re: continous update (print)
Message-Id: <e08b2$44ce1128$c2abfc64$29657@news1.tudelft.nl>
Lars Madsen wrote:
>
>> A simple solution is to clear the screen before printing:
>>
>> my $clear = qx(clear);
>>
>> while ( 1 ){
>> print $clear;
>> printf "%s\n",'some text';
>> }
>>
>
> well yes, besides the fact that the screen flickers a bit, clearing the
> screen seems to work.
>
>
Yes it does ... i didn't say it was pretty ... just simple ;-)
Aukjan.
------------------------------
Date: 31 Jul 2006 00:29:13 -0700
From: "thedwig@gmail.com" <thedwig@gmail.com>
Subject: Java::Import module
Message-Id: <1154330953.772579.76600@h48g2000cwc.googlegroups.com>
http://search.cpan.org/~rusekd/Java-Import-0.03/lib/Java/Import.pm
i cannot make thie perl module. help...
[root@Hedwig Java-Import-0.03]# perl Makefile.PL
# running Build.PL
/usr/bin/perl Build.PL
Deleting _build
Creating custom builder _build/lib/MyModuleBuilder.pm in _build/lib
Checking whether your kit is complete...
Looks good
Warning: this distribution contains XS files, but Module::Build is not
configured with C_support at
/usr/lib/perl5/site_perl/5.8.6/Module/Build/Base.pm line 1128.
Checking prerequisites...
- ERROR: GCJ::Cni is not installed
ERRORS/WARNINGS FOUND IN PREREQUISITES. You may wish to install the
versions
of the modules indicated above before proceeding with this installation
Deleting Build
Removed previous script 'Build'
Creating new 'Build' script for 'Java-Import' version '0.03'
[root@Hedwig Java-Import-0.03]# make
/usr/bin/perl Build --makefile_env_macros 1
gcj -C src/ArgumentArray.java src/ArrayWrapper.java
src/ObjectWrapper.java
gcjh src/ArgumentArray
gcjh src/ArrayWrapper
gcjh src/ObjectWrapper
gcj -fjni -c src/ArgumentArray.java src/ArrayWrapper.java
src/ObjectWrapper.java -I src -o src/java.o
Module::Build is not configured with C_support at
/usr/lib/perl5/site_perl/5.8.6/Module/Build/Base.pm line 3734.
make: *** [all] error 2
make: *** [all] error 2
make: *** [all] error 2
make: *** [all] error 2
make: *** [all] error 2
make: *** [all] error 2
------------------------------
Date: Mon, 31 Jul 2006 20:13:58 +1000
From: "Sisyphus" <sisyphus1@nomail.afraid.org>
Subject: Re: Java::Import module
Message-Id: <44cdd8d4$0$25589$afc38c87@news.optusnet.com.au>
<thedwig@gmail.com> wrote in message
.
.
>
> Warning: this distribution contains XS files, but Module::Build is not
> configured with C_support at
> /usr/lib/perl5/site_perl/5.8.6/Module/Build/Base.pm line 1128.
I think you'll need Module::Build to be configured *with* C_support if you
want to use Module::Build to build modules that contain XS files.
I have read that installing ExtUtils::ParseXS will enable the C_support. I
don't know if that's correct - there may be others here who *do* know for
sure.
If it *is* correct, you might also need to install ExtUtils::ParseXS
*before* you install Module::Build.
> Checking prerequisites...
> - ERROR: GCJ::Cni is not installed
>
You'll also want to install this module before building and installing
Java::Import.
So, in the absence of better, more definitive advice, try installing
(afresh) the following modules in the following order:
ExtUtils::ParseXS
Module::Build
GCJ::Cni
Java::Import
One other thing puzzles me. When we build using Module::Build aren't we
suppposed to run:
perl Build.PL
perl Build
perl Build test
perl Build install
And yet you have run:
perl Makefile.PL
make
I guess that, in this case, both approaches are valid .... but that's
something else I don't know for sure......
Cheers,
Rob
------------------------------
Date: Mon, 31 Jul 2006 04:42:06 GMT
From: merlyn@stonehenge.com (Randal Schwartz)
Subject: new CPAN modules on Mon Jul 31 2006
Message-Id: <J393q6.11MA@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.
Algorithm-C3-0.02
http://search.cpan.org/~blblack/Algorithm-C3-0.02/
A module for merging hierarchies using the C3 algorithm
----
Bio-MCPrimers-2.2
http://search.cpan.org/~slenk/Bio-MCPrimers-2.2/
----
CFPlus-0.1
http://search.cpan.org/~mlehmann/CFPlus-0.1/
undocumented utility garbage for our crossfire client
----
CPAN-WWW-Testers-0.30
http://search.cpan.org/~lbrocard/CPAN-WWW-Testers-0.30/
Present CPAN Testers data
----
Catalyst-Plugin-Session-Store-DBIC-0.04
http://search.cpan.org/~danieltwc/Catalyst-Plugin-Session-Store-DBIC-0.04/
Store your sessions via DBIx::Class
----
Catalyst-View-JSON-0.10
http://search.cpan.org/~miyagawa/Catalyst-View-JSON-0.10/
JSON view for your data
----
Crossfire-0.8
http://search.cpan.org/~mlehmann/Crossfire-0.8/
Crossfire maphandling
----
Data-Float-0.000
http://search.cpan.org/~zefram/Data-Float-0.000/
details of the floating point data type
----
FFmpeg-Command-0.01
http://search.cpan.org/~mizzy/FFmpeg-Command-0.01/
A wrapper class for ffmpeg command line utility.
----
File-Next-0.01
http://search.cpan.org/~petdance/File-Next-0.01/
File-finding iterator
----
File-UserConfig-0.04
http://search.cpan.org/~adamk/File-UserConfig-0.04/
Get a user's existing config directory, or copy in defaults
----
Filesys-Virtual-0.06
http://search.cpan.org/~xantus/Filesys-Virtual-0.06/
Perl extension to provide a framework for a virtual filesystem
----
Filesys-Virtual-Plain-0.09
http://search.cpan.org/~xantus/Filesys-Virtual-Plain-0.09/
A Plain virtual filesystem
----
Filesys-Virtual-Plain-0.10
http://search.cpan.org/~xantus/Filesys-Virtual-Plain-0.10/
A Plain virtual filesystem
----
Games-Nintendo-Mario-0.200
http://search.cpan.org/~rjbs/Games-Nintendo-Mario-0.200/
a class for jumping Italian plumbers
----
Graphics-Libplot-2.2.2
http://search.cpan.org/~jlapeyre/Graphics-Libplot-2.2.2/
Perl extension for libplot plotting library
----
HTML-ParagraphSplit-0.03
http://search.cpan.org/~hanenkamp/HTML-ParagraphSplit-0.03/
Change text containing HTML into a formatted HTML fragment
----
Module-Build-0.2805
http://search.cpan.org/~kwilliams/Module-Build-0.2805/
Build and install Perl modules
----
POE-Component-Client-Telnet-0.06
http://search.cpan.org/~xantus/POE-Component-Client-Telnet-0.06/
A POE component that provides non-blocking access to Net::Telnet and other subclasses of Net::Telnet.
----
POE-Component-Player-Xmms-0.03
http://search.cpan.org/~xantus/POE-Component-Player-Xmms-0.03/
a wrapper for the Xmms player
----
Parse-Win32Registry-0.21
http://search.cpan.org/~jmacfarla/Parse-Win32Registry-0.21/
Parse Windows Registry Files
----
TAPx-Parser-0.12
http://search.cpan.org/~ovid/TAPx-Parser-0.12/
Parse TAP output
----
Test-MockTime-0.03
http://search.cpan.org/~ddick/Test-MockTime-0.03/
Replaces actual time with simulated time
----
Tie-JCR-0.01
http://search.cpan.org/~hanenkamp/Tie-JCR-0.01/
A tied hash interface for Java::JCR::Node
----
URI-ParseSearchString
http://search.cpan.org/~sden/URI-ParseSearchString/
parse Apache refferer logs and extract search engine query strings.
----
WebService-CIA-0.02
http://search.cpan.org/~imalpass/WebService-CIA-0.02/
information from the CIA World Factbook.
----
XML-All-0.01
http://search.cpan.org/~audreyt/XML-All-0.01/
Overloaded XML objects
----
version-0.662
http://search.cpan.org/~jpeacock/version-0.662/
Perl extension for Version Objects
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: Mon, 31 Jul 2006 13:15:08 GMT
From: "syracuse" <syr@bigpond.net.au>
Subject: perl editor
Message-Id: <wnnzg.4219$rP1.2599@news-server.bigpond.net.au>
Hi
anyone knows what is a good free editor to use for perl ?
Thanks
Syracuse
------------------------------
Date: Mon, 31 Jul 2006 15:26:11 +0200
From: Josef Moellers <josef.moellers@fujitsu-siemens.com>
Subject: Re: perl editor
Message-Id: <eal0kq$f1r$1@nntp.fujitsu-siemens.com>
syracuse wrote:
> Hi
> anyone knows what is a good free editor to use for perl ?
> Thanks
> Syracuse=20
vi?
--=20
Josef M=F6llers (Pinguinpfleger bei FSC)
If failure had no penalty success would not be a prize
-- T. Pratchett
------------------------------
Date: 31 Jul 2006 15:43:39 +0200
From: Michele Dondi <bik.mido@tiscalinet.it>
Subject: Re: perl editor
Message-Id: <n22sc2hp2mmsc2vn5tjc1uq8tfo08e9j4f@4ax.com>
On Mon, 31 Jul 2006 13:15:08 GMT, "syracuse" <syr@bigpond.net.au>
wrote:
>anyone knows what is a good free editor to use for perl ?
You're not twistedsomenumberwhichidontremember in disguise, are you?
;-)
http://www.tex.ac.uk/cgi-bin/texfaq2html?label=editors
Michele
--
{$_=pack'B8'x25,unpack'A8'x32,$a^=sub{pop^pop}->(map substr
(($a||=join'',map--$|x$_,(unpack'w',unpack'u','G^<R<Y]*YB='
.'KYU;*EVH[.FHF2W+#"\Z*5TI/ER<Z`S(G.DZZ9OX0Z')=~/./g)x2,$_,
256),7,249);s/[^\w,]/ /g;$ \=/^J/?$/:"\r";print,redo}#JAPH,
------------------------------
Date: Mon, 31 Jul 2006 14:48:14 GMT
From: "syracuse" <syr@bigpond.net.au>
Subject: Re: perl editor
Message-Id: <OKozg.4255$rP1.2054@news-server.bigpond.net.au>
thanks, just trying to learn, I'm comfortable with vi, but thought a nicely
coloured editor could help with the syntax ...
Syr.
"Michele Dondi" <bik.mido@tiscalinet.it> wrote in message
news:n22sc2hp2mmsc2vn5tjc1uq8tfo08e9j4f@4ax.com...
> On Mon, 31 Jul 2006 13:15:08 GMT, "syracuse" <syr@bigpond.net.au>
> wrote:
>
>>anyone knows what is a good free editor to use for perl ?
>
> You're not twistedsomenumberwhichidontremember in disguise, are you?
> ;-)
>
> http://www.tex.ac.uk/cgi-bin/texfaq2html?label=editors
>
>
> Michele
> --
> {$_=pack'B8'x25,unpack'A8'x32,$a^=sub{pop^pop}->(map substr
> (($a||=join'',map--$|x$_,(unpack'w',unpack'u','G^<R<Y]*YB='
> .'KYU;*EVH[.FHF2W+#"\Z*5TI/ER<Z`S(G.DZZ9OX0Z')=~/./g)x2,$_,
> 256),7,249);s/[^\w,]/ /g;$ \=/^J/?$/:"\r";print,redo}#JAPH,
------------------------------
Date: Mon, 31 Jul 2006 04:36:45 GMT
From: axel@white-eagle.invalid.uk
Subject: Re: why perl over more "powerful" stuff liek lisp haskell smalltalk ruby lua tcl?
Message-Id: <xNfzg.7882$5K2.6555@fed1read03>
gavino <bootiack@yahoo.com> wrote:
> I am amazed as I read online how many people say perl a an archaic
> tool.
> If perl is used right is it
> 1 not spagetti?
> 2 debugible?
> 3 fast?
> 4 easy to come back to after 6months and know whats going on?
Points 1, 2, and 4 depend mainly on the programmer not the language
(although some older languages made point 1 difficult to avoid).
As for point 3... how long is a piece of string? Or when does Moore's
Law finally come to an end? If Quantum Computing ever makes its way
past the pages of Scientific American, no doubt for some applications
it will make Perl look like a snail being compared to a photon. But
for other applications it will give no speed advantage in processing.
Interestingly, for tax purposes, it might quickly provide the best
ways of avoiding, a quite legal activity in contrast to evading,
tax very easily and quickly. But the same does not apply for running
through a payroll.
Although writing programmes for such a beast will take at least a
magnitude longer... it will make the lost art of assembly programming
a doddle.
In the end point 3 comes down to: where do you measure speed?
Experienced Perlers can know switch off and do something more useful
such as having a beer: Let us imagine someone attempting to write
in C a procedure to handle linked lists of strings. The end result
should run faster than something coded in Perl... but the programming
times between the two languages will be very different... plus the
debugging and testing... in C a careful watch needs to be kept on all
the pointers floating around waiting to be given the chance to
create a core dump or worse... the idea of using references in Perl
for such a thing does not arise (unless some complicated data
structures are involved).
But then, as they say, horses for courses.
Axel
------------------------------
Date: Mon, 31 Jul 2006 14:30:16 +0200
From: Mirco Wahab <peace.is.our.profession@gmx.de>
Subject: Re: why perl over more "powerful" stuff liek lisp haskell smalltalk ruby lua tcl?
Message-Id: <eaktcf$msr$1@mlucom4.urz.uni-halle.de>
Thus spoke John Bokma (on 2006-07-30 21:07):
> omg!1111oneone, lolz ur so right I for one liek PERL!!!1111
Lisp and Ruby have much cooler Cyborg names than Perl:
(http://cyborg.namedecoder.com)
RUBY: Robotic Unit Built for Yelling
LISP: Lifeform Intended for Sabotage and Peacekeeping
...
PERL: Positronic Electronic Repair Lifeform
Electronic Repair? Is this the Meaning of 'glue language'?
Regards
Mirco
(http://cyborg.namedecoder.com/index.php?acronym=PERL&design=governor3k3)
------------------------------
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 V10 Issue 9540
***************************************