[16445] in Perl-Users-Digest
Perl-Users Digest, Issue: 3857 Volume: 9
daemon@ATHENA.MIT.EDU (Perl-Users Digest)
Mon Jul 31 11:10:32 2000
Date: Mon, 31 Jul 2000 08:10:15 -0700 (PDT)
From: Perl-Users Digest <Perl-Users-Request@ruby.OCE.ORST.EDU>
To: Perl-Users@ruby.OCE.ORST.EDU (Perl-Users Digest)
Message-Id: <965056215-v9-i3857@ruby.oce.orst.edu>
Content-Type: text
Perl-Users Digest Mon, 31 Jul 2000 Volume: 9 Number: 3857
Today's topics:
Question on sorting an array <fabascal@gredos.cnb.uam.es>
Re: Question on sorting an array (Marcel Grunauer)
Re: Running other programs in background ericr@yankthechain.com
Re: Searching for errant modules <lorenzo.gordon@lshtm.ac.uk>
Statistics for comp.lang.perl.misc <gbacon@cs.uah.edu>
string -> array? <srh104@york.ac.uk>
Re: string -> array? (Marcel Grunauer)
Re: text file to HTML page (Colin Keith)
Re: text file to html (Colin Keith)
Re: text file to html <flavell@mail.cern.ch>
Re: tricky regexp <aqumsieh@hyperchip.com>
Digest Administrivia (Last modified: 16 Sep 99) (Perl-Users-Digest Admin)
----------------------------------------------------------------------
Date: Mon, 31 Jul 2000 16:23:32 +0200
From: Federico Abascal <fabascal@gredos.cnb.uam.es>
Subject: Question on sorting an array
Message-Id: <39858BE3.9E8DC9E7@gredos.cnb.uam.es>
Hello,
is there anyway to use the sort function in a way that you can know
where the old indexes (positions) go.
I mean, for example:
$arr[0] = 12;
$arr[1] = 2222;
$arr[2] = 0.5;
$arr[3] = 3241;
$arr[4] = 5;
$arr[5] = 122;
I don't want only to sort it, I want to know that the smallest (0.5)
corresponds to the position [2], , so I can go to another array and get
the information corresponding to the element [2]
I hope you could understand my question and help me
Thanks in advance,
Federico
------------------------------
Date: Mon, 31 Jul 2000 14:45:00 GMT
From: marcel@codewerk.com (Marcel Grunauer)
Subject: Re: Question on sorting an array
Message-Id: <slrn8ob4ij.871.marcel@gandalf.local>
On Mon, 31 Jul 2000 16:23:32 +0200, Federico Abascal
<fabascal@gredos.cnb.uam.es> wrote:
>is there anyway to use the sort function in a way that you can know
>where the old indexes (positions) go.
>I mean, for example:
> $arr[0] = 12;
> $arr[1] = 2222;
> $arr[2] = 0.5;
> $arr[3] = 3241;
> $arr[4] = 5;
> $arr[5] = 122;
>I don't want only to sort it, I want to know that the smallest (0.5)
>corresponds to the position [2], , so I can go to another array and get
>the information corresponding to the element [2]
Something like
my @arr = (12, 2222, 0.5, 3241, 5, 122);
my %oldpos;
@oldpos{@arr} = 0..$#arr;
my @sortarr = sort { $a <=> $b } @arr;
print "smallest is $sortarr[0], was at pos $oldpos{$sortarr[0]}\n";
prints
smallest is 0.5, was at pos 2
However, what should happen if there are several elements of equal value
in @arr (e.g., what if the value 0.5 occurs three times)?
--
Marcel
sub AUTOLOAD{($_=$AUTOLOAD)=~s;^.*::;;;y;_; ;;print} Just_Another_Perl_Hacker();
------------------------------
Date: Mon, 31 Jul 2000 13:10:43 GMT
From: ericr@yankthechain.com
Subject: Re: Running other programs in background
Message-Id: <8m3tse$pop$1@nnrp1.deja.com>
In article <8m3edp$fh4$1@nnrp1.deja.com>,
ericr@yankthechain.com wrote:
> In article <5j9aos0sfh35irdb81qlhhdtfcnuhpd3k6@4ax.com>,
> Bart Lateur <bart.lateur@skynet.be> wrote:
> > ericr@yankthechain.com wrote:
> >
> > > my $return = $WinExec->Call("data/mplayer2 data/$sndfile", 0);
> > >
> > >Any ideas? I'm running Windows 98.
> >
> > So am I. Do you even have notepad on your system? I get no visible
> clue
> > that notepad is running. But if I press ctrl-alt-del, there it is,
in
> > the task list.
> >
> > Have you checked the return value? If it's less than 32, an error
> > occurred. Error codes:
> >
> > 0 out of memory
> > 2 file not found
> > 3 path not found
> > 11 not a valid EXE file
> >
> > "data/mplayer2" looks like a strange path to a program. Usually,
> people
> > make sure that the executable is in PATH, and then call it using the
> > bare program name. But, if it opens, that's not the problem. Have
you
> > tried replacing the 0 with a 6?
> >
> > --
> > Bart.
Sorry, I misread your post. I changed the 0 to a 6 and it worked
perfectsly. Much thanks!
Sent via Deja.com http://www.deja.com/
Before you buy.
------------------------------
Date: Mon, 31 Jul 2000 14:49:02 GMT
From: Lorenzo Gordon <lorenzo.gordon@lshtm.ac.uk>
Subject: Re: Searching for errant modules
Message-Id: <8m43kr$udr$1@nnrp1.deja.com>
Hi there,
I tried doing what you suggested, but namke kept stalling during the
compilation period. Have you used it sucessfully in the past?
Also, I found an ActivState precompiled copy of some of the stuff I was
looking for. On an NT workstation, I could successfully install them
with PPMNet.
However, when it cam to the server that they need to run on (which is
running Windows NT Server 4, and Perl 5.x), I got the following error
message:
"Could not locte a PPM binary of 'Net-Daemon.ppd' for this platform"
Net-Daemon was one of the modules i could download onto the workstation,
is there any particular reason that this should be a problem with NT
server?
Any help is much appreciated,
Lorenzo.
In article <8lis3r$32q$1@canopus.cc.umanitoba.ca>,
"Randy Kobes" <randy@theory.uwinnipeg.ca> wrote:
>
> Lorenzo Gordon <lorenzo.gordon@lshtm.ac.uk>
> wrote in message news:8lhpg2$rmh$1@nnrp1.deja.com...
> [ ... ]
> > I was hoping someone could tell me where I might find compiled
modules
> > for Win32 of:
> > PlRPC
> > Net::Daemon
> > DBI::ProxyServer
> > DBD::Proxy
> > Obviously, I have tried the PPM method, but it cannot find them.
> > As I say, I can download the source code, but without the Win32
version
> > of make, I cannot do anything with this code.
>
> DBI::ProxyServer and DBD::Proxy are in the DBI package,
> which you can install via ppm. RPC::PIServer and Net::Daemon
> don't need a C compiler to build, so if you grab nmake from
> ftp://ftp.microsoft.com/softlib/MSLFILES/nmake15.exe,
> you should be able to install these packages by the usual
> perl Makefile.PL
> nmake
> nmake test
> nmake install
> procedure.
>
> best regards,
> randy kobes
>
>
--
Lorenzo Gordon
Software Applications Developer
London School Of Hygiene & Tropical Medicine
Sent via Deja.com http://www.deja.com/
Before you buy.
------------------------------
Date: Mon, 31 Jul 2000 14:41:38 GMT
From: Greg Bacon <gbacon@cs.uah.edu>
Subject: Statistics for comp.lang.perl.misc
Message-Id: <sob412em9ft114@corp.supernews.com>
Following is a summary of articles spanning a 7 day period,
beginning at 24 Jul 2000 15:49:01 GMT and ending at
31 Jul 2000 14:43:24 GMT.
Notes
=====
- A line in the body of a post is considered to be original if it
does *not* match the regular expression /^\s{0,3}(?:>|:|\S+>|\+\+)/.
- All text after the last cut line (/^-- $/) in the body is
considered to be the author's signature.
- The scanner prefers the Reply-To: header over the From: header
in determining the "real" email address and name.
- Original Content Rating (OCR) is the ratio of the original content
volume to the total body volume.
- Find the News-Scan distribution on the CPAN!
<URL:http://www.perl.com/CPAN/modules/by-module/News/>
- Please send all comments to Greg Bacon <gbacon@cs.uah.edu>.
- Copyright (c) 2000 Greg Bacon.
Verbatim copying and redistribution is permitted without royalty;
alteration is not permitted. Redistribution and/or use for any
commercial purpose is prohibited.
Excluded Posters
================
perlfaq-suggestions\@(?:.*\.)?perl\.com
Totals
======
Posters: 530
Articles: 1782 (694 with cutlined signatures)
Threads: 439
Volume generated: 3142.1 kb
- headers: 1432.0 kb (27,646 lines)
- bodies: 1616.1 kb (53,182 lines)
- original: 1020.2 kb (36,660 lines)
- signatures: 92.2 kb (2,226 lines)
Original Content Rating: 0.631
Averages
========
Posts per poster: 3.4
median: 1.0 post
mode: 1 post - 281 posters
s: 7.0 posts
Posts per thread: 4.1
median: 3 posts
mode: 2 posts - 114 threads
s: 5.7 posts
Message size: 1805.5 bytes
- header: 822.9 bytes (15.5 lines)
- body: 928.7 bytes (29.8 lines)
- original: 586.2 bytes (20.6 lines)
- signature: 53.0 bytes (1.2 lines)
Top 10 Posters by Number of Posts
=================================
(kb) (kb) (kb) (kb)
Posts Volume ( hdr/ body/ orig) Address
----- -------------------------- -------
70 115.5 ( 51.2/ 52.5/ 49.3) abigail@foad.org
64 93.2 ( 56.8/ 35.9/ 23.7) Bart Lateur <bart.lateur@skynet.be>
56 101.5 ( 47.0/ 48.8/ 22.6) Jonathan Stowe <gellyfish@gellyfish.com>
47 83.9 ( 31.5/ 47.1/ 24.1) Larry Rosler <lr@hpl.hp.com>
37 64.4 ( 26.4/ 37.9/ 24.0) Logan Shaw <logan@cs.utexas.edu>
35 68.4 ( 31.7/ 36.7/ 12.9) toyboy@toy.eyep.net
34 71.3 ( 26.2/ 45.0/ 35.4) Colin Keith <ckeith@clara.net>
28 46.0 ( 23.9/ 19.7/ 11.6) marcel@codewerk.com
27 62.1 ( 24.0/ 30.1/ 16.8) Uri Guttman <uri@sysarch.com>
25 46.3 ( 15.0/ 28.7/ 23.2) Greg Bacon <gbacon@cs.uah.edu>
These posters accounted for 23.7% of all articles.
Top 10 Posters by Volume
========================
(kb) (kb) (kb) (kb)
Volume ( hdr/ body/ orig) Posts Address
-------------------------- ----- -------
115.5 ( 51.2/ 52.5/ 49.3) 70 abigail@foad.org
101.5 ( 47.0/ 48.8/ 22.6) 56 Jonathan Stowe <gellyfish@gellyfish.com>
93.2 ( 56.8/ 35.9/ 23.7) 64 Bart Lateur <bart.lateur@skynet.be>
83.9 ( 31.5/ 47.1/ 24.1) 47 Larry Rosler <lr@hpl.hp.com>
71.3 ( 26.2/ 45.0/ 35.4) 34 Colin Keith <ckeith@clara.net>
68.4 ( 31.7/ 36.7/ 12.9) 35 toyboy@toy.eyep.net
64.4 ( 26.4/ 37.9/ 24.0) 37 Logan Shaw <logan@cs.utexas.edu>
62.1 ( 24.0/ 30.1/ 16.8) 27 Uri Guttman <uri@sysarch.com>
52.2 ( 17.0/ 32.6/ 24.2) 18 "Godzilla!" <godzilla@stomp.stomp.tokyo>
46.6 ( 18.4/ 27.4/ 12.6) 18 jason <elephant@squirrelgroup.com>
These posters accounted for 24.2% of the total volume.
Top 10 Posters by OCR (minimum of five posts)
==============================================
(kb) (kb)
OCR orig / body Posts Address
----- -------------- ----- -------
1.000 ( 1.0 / 1.0) 5 matt venn <matt@NOSPAMraas.screaming.net>
0.979 ( 22.9 / 23.4) 14 The WebDragon <nospam@nospam.com>
0.958 ( 4.5 / 4.7) 11 Taurean <jaurangNOjaSPAM@crosswinds.net.invalid>
0.940 ( 19.1 / 20.3) 22 BUCK NAKED1 <dennis100@webtv.net>
0.940 ( 49.3 / 52.5) 70 abigail@foad.org
0.874 ( 5.4 / 6.2) 5 andrew-johnson@home.com
0.807 ( 23.2 / 28.7) 25 Greg Bacon <gbacon@cs.uah.edu>
0.792 ( 7.6 / 9.6) 6 David Combs <dkcombs@netcom.com>
0.785 ( 35.4 / 45.0) 34 Colin Keith <ckeith@clara.net>
0.778 ( 2.3 / 2.9) 5 Tom Christiansen <tchrist@perl.com>
Bottom 10 Posters by OCR (minimum of five posts)
=================================================
(kb) (kb)
OCR orig / body Posts Address
----- -------------- ----- -------
0.408 ( 1.3 / 3.2) 9 Tom Briles <sariq@texas.net>
0.395 ( 4.6 / 11.6) 6 Steffen Beyer <sb@engelschall.com>
0.393 ( 4.9 / 12.4) 8 "Coy" <coy@coystoys.com>
0.351 ( 12.9 / 36.7) 35 toyboy@toy.eyep.net
0.347 ( 1.4 / 4.0) 5 Rafael Garcia-Suarez <rgarciasuarez@free.fr>
0.341 ( 1.7 / 5.1) 6 Rodney Engdahl <red_orc@my-deja.com>
0.317 ( 4.3 / 13.7) 8 efflandt@xnet.com
0.317 ( 1.6 / 5.2) 5 Andre van Straaten <andre@UltraShell.Net>
0.276 ( 1.7 / 6.1) 6 Ilja Tabachnik <billy@arnis-bsl.com>
0.249 ( 1.0 / 4.0) 7 H C <carvdawg@patriot.net>
77 posters (14%) had at least five posts.
Top 10 Threads by Number of Posts
=================================
Posts Subject
----- -------
55 newb Q, Our perl guy left!!
42 I Am An Idiot
28 Advanced Perl Programming -- Dated?
27 difference between two times in seconds
25 perl as part of unix distribution
24 Suggestion for syntax change
19 newb q - help with write to file script
19 NetBIOS/nbname ???
18 Nobody loves me?
18 return value of `eval "use lib"'
These threads accounted for 15.4% of all articles.
Top 10 Threads by Volume
========================
(kb) (kb) (kb) (kb)
Volume ( hdr/ body/ orig) Posts Subject
-------------------------- ----- -------
104.7 ( 42.7/ 57.6/ 36.1) 42 I Am An Idiot
96.5 ( 48.3/ 45.9/ 22.0) 55 newb Q, Our perl guy left!!
76.3 ( 31.7/ 42.5/ 22.6) 24 Suggestion for syntax change
68.3 ( 25.5/ 38.5/ 23.5) 28 Advanced Perl Programming -- Dated?
47.6 ( 23.0/ 22.3/ 14.6) 27 difference between two times in seconds
43.2 ( 19.9/ 21.7/ 12.1) 25 perl as part of unix distribution
43.1 ( 13.3/ 28.9/ 22.6) 16 Why won't "use strict;" work?
37.5 ( 15.9/ 20.4/ 11.0) 18 Nobody loves me?
35.6 ( 16.7/ 17.9/ 7.4) 19 newb q - help with write to file script
33.7 ( 15.6/ 17.6/ 10.8) 18 return value of `eval "use lib"'
These threads accounted for 18.7% of the total volume.
Top 10 Threads by OCR (minimum of five posts)
==============================================
(kb) (kb)
OCR orig / body Posts Subject
----- -------------- ----- -------
0.880 ( 12.2/ 13.8) 8 I need help
0.863 ( 5.6/ 6.5) 6 perly.y
0.856 ( 8.2/ 9.6) 8 WWWBoard.PL
0.843 ( 3.1/ 3.7) 5 perl reg. ex. problem
0.842 ( 2.1/ 2.5) 5 Should truncate length be 0? (Larry R)
0.831 ( 2.3/ 2.8) 7 download file from another server
0.826 ( 6.4/ 7.8) 12 Delete records in 2 weeks time
0.803 ( 10.2/ 12.7) 12 Quotes in regex?
0.789 ( 4.3/ 5.4) 6 Warnings and undefs
0.780 ( 22.6/ 28.9) 16 Why won't "use strict;" work?
Bottom 10 Threads by OCR (minimum of five posts)
=================================================
(kb) (kb)
OCR orig / body Posts Subject
----- -------------- ----- -------
0.438 ( 2.8 / 6.3) 8 pattern match
0.427 ( 0.9 / 2.2) 5 Setting $/ from variable - accepting meta characters
0.417 ( 1.4 / 3.3) 5 No more typeglobs in Perl 6 (was: Advanced Perl Programming -- Dated?)
0.417 ( 4.7 / 11.4) 5 CGI->new(*FORM) Problem...
0.411 ( 7.4 / 17.9) 19 newb q - help with write to file script
0.410 ( 2.1 / 5.0) 7 Perl sequivallent for tidy (HTML fixup program)?
0.380 ( 1.7 / 4.4) 6 Help with param method in CGI.pm
0.375 ( 1.8 / 4.8) 5 CGI Execution URGENT
0.339 ( 2.8 / 8.3) 5 regexp match inside a time interval ?
0.327 ( 4.8 / 14.8) 5 Help with SQL query in Perl script
121 threads (27%) had at least five posts.
Top 10 Targets for Crossposts
=============================
Articles Newsgroup
-------- ---------
45 alt.perl
31 comp.lang.perl.modules
14 comp.lang.perl
12 comp.lang.tcl
5 no.it.programmering.perl
5 de.comp.lang.perl.cgi
3 comp.databases.oracle
3 comp.text.xml
3 comp.os.ms-windows.nt.admin.misc
3 tw.bbs.comp.lang.perl
Top 10 Crossposters
===================
Articles Address
-------- -------
7 "Anthony Roberts-West" <a.roberts-west@bigfoot.com>
5 bernard.el-hagin@lido-tech.net
4 Jason Dixon <jason@mybowie.com>
4 "W Kemp" <bill.kemp@wire2.com>
4 David H. Adler <dha@panix.com>
4 Eric Bohlman <ebohlman@netcom.com>
4 "Gibson" <gibson70@libero.it>
4 aqutiv@my-deja.com
3 "Daniel" <dae@chello.se>
3 Tim Hammerquist <tim@degree.ath.cx>
------------------------------
Date: Mon, 31 Jul 2000 15:09:58 +0100
From: "Simon H." <srh104@york.ac.uk>
Subject: string -> array?
Message-Id: <398588B6.80CA93E7@york.ac.uk>
I need to convert a string, $word, and also a binary number, $bivect, to
an array of characters so I can push and pop at leisure, and then
convert the string back again. Any suggestions on how to do this?
Thanks
Simon H.
------------------------------
Date: Mon, 31 Jul 2000 14:14:01 GMT
From: marcel@codewerk.com (Marcel Grunauer)
Subject: Re: string -> array?
Message-Id: <slrn8ob2nn.7k6.marcel@gandalf.local>
On Mon, 31 Jul 2000 15:09:58 +0100, Simon H. <srh104@york.ac.uk> wrote:
>I need to convert a string, $word, and also a binary number, $bivect, to
>an array of characters so I can push and pop at leisure, and then
>convert the string back again. Any suggestions on how to do this?
For example, using split() and join():
for my $s (qw/110001010 hello/) {
my @a = split //, $s;
pop @a;
push @a, 4..6;
my $r = join '' => @a;
print "$r\n";
}
perldoc -f split
perldoc -f join
--
Marcel
sub AUTOLOAD{($_=$AUTOLOAD)=~s;^.*::;;;y;_; ;;print} Just_Another_Perl_Hacker();
------------------------------
Date: Mon, 31 Jul 2000 13:12:36 GMT
From: ckeith@clara.net (Colin Keith)
Subject: Re: text file to HTML page
Message-Id: <8Xeh5.50$DT4.2090286@nnrp2.clara.net>
In article <8m3p93$o5h$1@niobium.hgmp.mrc.ac.uk>, mhughes@hgmp.mrc.ac.uk (Dr M Hughes) wrote:
>
>Please could someone tell me how to convert the results of a program
>that are in the way of a text file (.txt as i'm on windows) into an HTML file
>that I can return to the browser in my CGI script?
Woo, more words. Why do you need to return it as HTML if its a text file?
Can you not return it as a text file? Because it was requested via a web
browser doesn't mean it has to be an HTML page, URL's point to
'resources'. This is easiest method, your script just uses
print "Content-Type: text/plain\n\n";
then reads the file to and writes it to STDOUT.
Or better, convert it once using an editor to be able to format it how you
want (since a perl script isn't going to know how to add emphasis to words,
or to add anchors etc. from a plain text file because it only has text.) and
just return that file with no on the fly conversion.
---
Colin Keith
Systems Administrator
Network Operations Team
ClaraNET (UK) Ltd. NOC
------------------------------
Date: Mon, 31 Jul 2000 13:08:13 GMT
From: ckeith@clara.net (Colin Keith)
Subject: Re: text file to html
Message-Id: <1Teh5.49$DT4.2090065@nnrp2.clara.net>
In article <8m3oba$o0t$1@niobium.hgmp.mrc.ac.uk>, mhughes@hgmp.mrc.ac.uk (Dr M Hughes) wrote:
>Thanks in advance
For what? I mean, not that I mind (though I prefer if you throw money:)
What does 'text file to html' mean? You want to convert it?
open(TXT, "<readme.txt") || die "Ick - $!";
print "<HTML><HEAD><TITLE>readme.txt</TITLE></HEAD><BODY>\n";
while(defined($_ = <TXT>)){
print;
}
close(TXT);
print "</BODY></HTML>";
I suspect that isn't what you mean, but since 4 words aren't much to go on
. I mean, you might at least want to add some formatting to it. Perhaps
setting $/ = "\n\n" and reading paragraphs so:
$/ = "\n\n";
while(defined($_ = <TXT>)){
print "<P>$_</P>\n";
}
But we're back to only having 4 words to work with ...
---
Colin Keith
Systems Administrator
Network Operations Team
ClaraNET (UK) Ltd. NOC
------------------------------
Date: Mon, 31 Jul 2000 15:46:32 +0200
From: "Alan J. Flavell" <flavell@mail.cern.ch>
Subject: Re: text file to html
Message-Id: <Pine.GHP.4.21.0007311543570.9724-100000@hpplus03.cern.ch>
On Mon, 31 Jul 2000, Colin Keith wrote:
> print "<HTML><HEAD><TITLE>readme.txt</TITLE></HEAD><BODY>\n";
> while(defined($_ = <TXT>)){
> print;
> }
[..]
Bzzt, thanks for playing. Please pick up a copy of security alert
CA-2000-02 on your way out of the studio.
------------------------------
Date: Mon, 31 Jul 2000 13:52:57 GMT
From: Ala Qumsieh <aqumsieh@hyperchip.com>
Subject: Re: tricky regexp
Message-Id: <7au2d6fltx.fsf@merlin.hyperchip.com>
Tarjei Vassbotn <tarjei@onsite.no> writes:
> > Despite hours of pondering, I haven't reached an elegant (or even
> > working) regular expression to handle the following: given a string
> > that contains an arbitrary name encapsulated by underscores (eg
> > "lorem _ipsum_ dolor"), the substring "_ipsum_" would need to be
> > replaced by the value of the perl variable $ipsum ..ie the variable to
> > be used would be determined by the name in between the
> > underscores.
> > Any help would be oh-so-much appreciated!
> $text=~ s/_([^_]+)_/$replacers{$1}/g;
Perl variables *can* contain underscores. So, in my opinion, a better
solution would be:
s/ _(.*?)_ / $replacers{$1} /g;
which would interpolate variables like $this_one.
A more comprehensive solution is also given in the FAQs. In perlfaq4:
How can I expand variables in text strings?
--Ala
------------------------------
Date: 16 Sep 99 21:33:47 GMT (Last modified)
From: Perl-Users-Request@ruby.oce.orst.edu (Perl-Users-Digest Admin)
Subject: Digest Administrivia (Last modified: 16 Sep 99)
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: The mail to news gateway, and thus the ability to submit articles
| through this service to the newsgroup, has been removed. I do not have
| time to individually vet each article to make sure that someone isn't
| abusing the service, and I no longer have any desire to waste my time
| dealing with the campus admins when some fool complains to them about an
| article that has come through the gateway instead of complaining
| to the source.
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 V9 Issue 3857
**************************************