[17916] in Perl-Users-Digest
Perl-Users Digest, Issue: 76 Volume: 10
daemon@ATHENA.MIT.EDU (Perl-Users Digest)
Wed Jan 17 03:06:38 2001
Date: Wed, 17 Jan 2001 00:05:08 -0800 (PST)
From: Perl-Users Digest <Perl-Users-Request@ruby.OCE.ORST.EDU>
To: Perl-Users@ruby.OCE.ORST.EDU (Perl-Users Digest)
Message-Id: <979718708-v10-i76@ruby.oce.orst.edu>
Content-Type: text
Perl-Users Digest Wed, 17 Jan 2001 Volume: 10 Number: 76
Today's topics:
Re: Adding Feild Comments in Excel using Win32::OLE <here@spam.free.zone.au>
chat server???? jslutzky@my-deja.com
Help need with CGI script <hansson@uswest.net>
Re: Help need with CGI script <wyzelli@yahoo.com>
Re: How to convert a double-spaced file to single space <mischief@velma.motion.net>
Re: How to convert a double-spaced file to single space (Ben Okopnik)
Re: How to convert a double-spaced file to single space <uri@sysarch.com>
Re: More questions about pattern matching pyro3k@my-deja.com
Re: More questions about pattern matching <mischief@velma.motion.net>
Re: Newbie question: hash tables and dbm files; what am (Garry Williams)
Re: NEWBIE: need help with search spider/crawler (Damian James)
Re: passing parameters to another program <tony_curtis32@yahoo.com>
Re: Perl and AOL. How is this possible? (Dave)
Re: Perl and AOL. How is this possible? <smerr612@startrekmail.com>
Re: Perl and AOL. How is this possible? <uri@sysarch.com>
Perl question <bionic@engineer.com>
Re: Perl question (Dave)
Re: Perl question (Dave)
Digest Administrivia (Last modified: 16 Sep 99) (Perl-Users-Digest Admin)
----------------------------------------------------------------------
Date: Wed, 17 Jan 2001 13:30:55 +1100
From: "Chris W" <here@spam.free.zone.au>
Subject: Re: Adding Feild Comments in Excel using Win32::OLE
Message-Id: <Xu796.48$NO2.6671@news0.optus.net.au>
This works for me:
use Win32::OLE;
use strict;
my $Excel = Win32::OLE->GetActiveObject('Excel.Application') ||
Win32::OLE->new('Excel.Application', 'Quit');
my $Book = $Excel->Workbooks->Open('c:\temp\jada.xls');
my $Sheet = $Book->Worksheets(1);
$Sheet->Range("A1")->Select;
$Sheet->Range("A1")->AddComment;
$Sheet->Range("A1")->{Comment}->Text('Floober');
print $Sheet->Range("A1")->{Comment}{Text}, "\n";
print $Sheet->Range("A1")->{Comment}->Text, "\n";
__END__
------------------------------
Date: Wed, 17 Jan 2001 03:38:17 GMT
From: jslutzky@my-deja.com
Subject: chat server????
Message-Id: <943439$45$1@nnrp1.deja.com>
I'm new to this group, but not to Perl. I'm running apache on a RH6.2
server and looking to beef up our companies intranet.
Does anyone know of a nice (FREE) chat server, that has a client that
is os independent?????
I have been scouring the net and have found a few, but want to get some
info from anyone that might have been in the same position that i'm in
right now.
I would appreciate any feedback anyone could give.
thanks,
jls
Sent via Deja.com
http://www.deja.com/
------------------------------
Date: Tue, 16 Jan 2001 18:20:05 -0800
From: "Theodore Hansson" <hansson@uswest.net>
Subject: Help need with CGI script
Message-Id: <8f796.3252$ad2.145990@news.direcpc.com>
Hi,
Please go to the following link to see the script.
What's wrong with this script? Why do I get the error message?
Thanks for your help. Theodore
http://www.webmaster-forums.com/showthread.php?threadid=13248
------------------------------
Date: Wed, 17 Jan 2001 11:57:28 +0930
From: "Wyzelli" <wyzelli@yahoo.com>
Subject: Re: Help need with CGI script
Message-Id: <Rh796.14$Ug4.5413@vic.nntp.telstra.net>
"Theodore Hansson" <hansson@uswest.net> wrote in message
news:8f796.3252$ad2.145990@news.direcpc.com...
> Hi,
>
> Please go to the following link to see the script.
>
> What's wrong with this script? Why do I get the error message?
>
> Thanks for your help. Theodore
>
> http://www.webmaster-forums.com/showthread.php?threadid=13248
>
From the script in question...
# error codes below for those who bother to check result codes <gr>
# 1 success
# -1 $smtphost unknown
# -2 socket() failed
# -3 connect() failed
# -4 service not available
# -5 unspecified communication error
# -6 local user $to unknown on host $smtp
# -7 transmission of message failed
# -8 argument $to empty
I guess error six gives the answer.
Wyzelli
--
push@x,$_ for(a..z);push@x,' ';
@z='092018192600131419070417261504171126070002100417'=~/(..)/g;
foreach $y(@z){$_.=$x[$y]}y/jp/JP/;print;
------------------------------
Date: Wed, 17 Jan 2001 02:18:56 -0000
From: Chris Stith <mischief@velma.motion.net>
Subject: Re: How to convert a double-spaced file to single spaced?
Message-Id: <t6a08g222upb99@corp.supernews.com>
Ben Okopnik <ben-fuzzybear@geocities.com> wrote:
> The ancient archives of Tue, 16 Jan 2001 23:36:58 -0000 showed
> Chris Stith of comp.lang.perl.misc speaking thus:
>>Abigail <abigail@foad.org> wrote:
>>
>>> Or just:
>>
>>> $ perl -lp00e0 in > out
> <Laugh> Awesome. As usual. This time, I even know what she did. Hanging
> around this group is having a positive effect on my Perl knowledge -
> amazing. :)
>>The following one-liner will get rid of blank lines between two
>>otherwise contiguous lines, but will leave every second blank
>>line in a series of blank lines. This may be a better solution
>>in cases where some blank lines should be maintained. I'm not
>>sure if this is an issue for the OP or not, but I thought I'd
>>mention it just in case anyone really needs this behavior.
>>
>>perl -p0e 's/(.*)?\n\n(.*)?/$1\n$2/g' in > out
> In that case, I'll risk sticking my oar in - is there anything wrong with
> the following?
> perl -pi~ -wp0e's/\n\n/\n/g' in
The only thing I see that could be `wrong' is that -p is included
twice. The below works as well as the above in my tests. I
obviously missed the lack of any difference between using
(.*)?\n\n(.*)? and just plain \n\n in this case.
$ perl -i~ -wp0e's/\n\n/\n/g' in
> I wrote an 'awk' version of it a couple of years ago, and have been using
> it to "undoublespace" files ever since. It's not something that comes up
> very often, but it has come in useful.
I still like Abigail's method for when you want to get rid of all
blank lines. That's one of the nicest one-liners I've seen. Excellent
golf score.
Chris
Maybe in a Perl newsgroup, the quote my .sig generator came up with
today should
s/The Force is binary/The Force is evaluated in boolean context/
--
Christopher E. Stith
Try not. Do, or do not. The Force is binary. -- Yoda,
The Empire Strikes Back (paraphrased)
------------------------------
Date: 17 Jan 2001 02:56:05 GMT
From: ben-fuzzybear@geocities.com (Ben Okopnik)
Subject: Re: How to convert a double-spaced file to single spaced?
Message-Id: <slrn96a2j3.1a6.ben-fuzzybear@Odin.Thor>
The ancient archives of Wed, 17 Jan 2001 02:18:56 -0000 showed
Chris Stith of comp.lang.perl.misc speaking thus:
>Ben Okopnik <ben-fuzzybear@geocities.com> wrote:
>> The ancient archives of Tue, 16 Jan 2001 23:36:58 -0000 showed
>> Chris Stith of comp.lang.perl.misc speaking thus:
>
>>>The following one-liner will get rid of blank lines between two
>>>otherwise contiguous lines, but will leave every second blank
>>>line in a series of blank lines. This may be a better solution
>>>in cases where some blank lines should be maintained. I'm not
>>>sure if this is an issue for the OP or not, but I thought I'd
>>>mention it just in case anyone really needs this behavior.
>>>
>>>perl -p0e 's/(.*)?\n\n(.*)?/$1\n$2/g' in > out
>
>
>> In that case, I'll risk sticking my oar in - is there anything wrong with
>> the following?
>
>> perl -pi~ -wp0e's/\n\n/\n/g' in
>
>The only thing I see that could be `wrong' is that -p is included
>twice.
Believe it or not, up until now, I thought that the 'pi' switch had
nothing to do with 'p' (I've actually got a Perl book I can blame this on,
though. :\) Testing shows me wrong.
Ben Okopnik
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
X11 is the second worst windowing system in the world. First place is
a tie between all the other windowing systems that have sold more than
10 seats. -- Paul Tomblin in a.s.r.
------------------------------
Date: Wed, 17 Jan 2001 05:15:32 GMT
From: Uri Guttman <uri@sysarch.com>
Subject: Re: How to convert a double-spaced file to single spaced?
Message-Id: <x78zoazrm4.fsf@home.sysarch.com>
>>>>> "BO" == Ben Okopnik <ben-fuzzybear@geocities.com> writes:
>>> perl -pi~ -wp0e's/\n\n/\n/g' in
>>
>> The only thing I see that could be `wrong' is that -p is included
>> twice.
BO> Believe it or not, up until now, I thought that the 'pi' switch
BO> had nothing to do with 'p' (I've actually got a Perl book I can
BO> blame this on, though. :\) Testing shows me wrong.
all of perl's command line options are single chars. which book had that
stupidity? and you should always refer to perlrun for that anyway to be
sure.
uri
--
Uri Guttman --------- uri@sysarch.com ---------- http://www.sysarch.com
SYStems ARCHitecture, Software Engineering, Perl, Internet, UNIX Consulting
The Perl Books Page ----------- http://www.sysarch.com/cgi-bin/perl_books
The Best Search Engine on the Net ---------- http://www.northernlight.com
------------------------------
Date: Wed, 17 Jan 2001 02:31:23 GMT
From: pyro3k@my-deja.com
Subject: Re: More questions about pattern matching
Message-Id: <94305s$sop$1@nnrp1.deja.com>
######################################################
#!/usr/bin/perl -w
use strict;
while(<>) {
chomp;
if ($_ =~ /^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$/) { #added this line
my @section = split(/\./);
my $good_ip = 1;
for( @section ) {
if( $_ > 255 ) {
$good_ip = 0;
last;
} elsif( $_ < 0 ) {
$good_ip = 0;
last;
} else {
# no change
}
}
if( $good_ip ) {
print "Valid IP: $_\n";
} else {
print "Invalid IP: $_\n";
}
}
}
I added another conditional line to this which eliminates the problem.
Sent via Deja.com
http://www.deja.com/
------------------------------
Date: Wed, 17 Jan 2001 02:48:39 -0000
From: Chris Stith <mischief@velma.motion.net>
Subject: Re: More questions about pattern matching
Message-Id: <t6a207ne2fsge0@corp.supernews.com>
pyro3k@my-deja.com wrote:
> In article <t69putcfi4ni0a@corp.supernews.com>,
> Chris Stith <mischief@velma.motion.net> wrote:
>> ######################################################
>>
>> The following splits sections at '.' and checks the section
>> against the minimum value of 0 and the maximum value of 255.
>> It may have more lines, but the logic is simpler and it might
>> even be faster, although I haven't benchmarked the two.
>>
>> ######################################################
>> #!/usr/bin/perl -w
>> use strict;
>>
>> while(<>) {
>> chomp;
>> my @section = split(/\./);
>> my $good_ip = 1;
>> for( @section ) {
>> if( $_ > 255 ) {
>> $good_ip = 0;
>> last;
>> } elsif( $_ < 0 ) {
>> $good_ip = 0;
>> last;
>> } else {
>> # no change
>> }
>> }
>> if( $good_ip ) {
>> print "Valid IP: $_\n";
>> } else {
>> print "Invalid IP: $_\n";
>> }
>> }
>> #######################################################
>>
>> HTH,
>> Chris
> This works beautifully %99.999999. Returns Valid if input is 1...
Pyro gives my code too much credit here. The version above
passes all of these and more:
0
1
2
1.1
1.2
...
It checks on valid ranges but not on valid format. Below is a corrected
version of that one, which does use the simple regex /\d{1,3}/ instead
of the convoluted one I showed in my previous post, so this is still
simpler than doing it with a regex only.
#####################################################
#!/usr/bin/perl -w
use strict;
my $good_ip = 0;
while(<>) {
chomp;
my @section = split(/\./);
unless( @section == 4) { ### notice the check for number
$good_ip = 0; ### of sections
} else {
$good_ip = 1;
}
for( @section ) {
if( $_ > 255 ) {
$good_ip = 0;
last;
} elsif( $_ < 0 ) {
$good_ip = 0;
last;
} elsif( $_ !~ /\d{1,3}/ ) { ### notice the check
$good_ip = 0; ### for between 1 and 3
last; ### digits
} else {
# no change
}
}
if( $good_ip ) {
print "Valid IP: $_\n";
} else {
print "Invalid IP: $_\n";
}
}
###############################################
Of course, all of this changes for IPv6. :)
Chris
--
Christopher E. Stith
Disclaimer: Actual product may not resemble picture in ad in any way.
------------------------------
Date: Wed, 17 Jan 2001 06:08:51 GMT
From: garry@zvolve.com (Garry Williams)
Subject: Re: Newbie question: hash tables and dbm files; what am I doing wrong?
Message-Id: <TFa96.145$h41.7699@eagle.america.net>
On Tue, 16 Jan 2001 20:29:17 -0500, James Kauzlarich
<nospam-abuse@[127.0.0.1]> wrote:
>> The remedy is to serialize your data structure before storing it as
>> the value in a dbm record.
>
>I don't know what you mean by that.
The thing that you want stored `under' a key in your dbm file has
structure. There are many ways you might decide to store such a
structure so that it can be recreated when it is retrieved. But
probably the easiest is to use the Storable module. Anyway, you need
to decide and then implement that in your dbm file. The value in a
dbm file is only a string.
>I was hoping to be able to do it without relying on modules.
No problem, but maybe more error-prone. I guess that depends on your
problem. For simple data structures, I've implemented my own
serializations and ignored Storable. Your original question was how
to store a hash as a value in a dbm file. I guess you could choose to
represent the hash as key-value pairs of strings separated by pipe (|)
symbols. Then you could retrieve the value and use split to re-vivify
the hash. This may be a problem, if your keys or values can include
the pipe character. You decide, if you don't want to or can't use
Storable.
>I'm not using
>my own machine, and my ISP does not have many modules installed. In fact,
>they may have none. And they have not been inclined to install any. I
>asked if they could install the CGI module, and they asked 1) What was it.
>2) Where could it be gotten from, and 3) If it was a standard part of perl.
>Then they said no. That was before they yanked shell access from all the
>users. So I wrote my own routines to decode and encode URL's.
Hmm. I don't remember when CGI was included in the perl distribution.
It's been a while, but it is now. Your vendor must be behind the
times, eh?
>I guess I'm gonna have to move it to another server. ::sigh::
Moving to another service sounds prudent, from what you've described.
--
Garry Williams
------------------------------
Date: 17 Jan 2001 02:44:42 GMT
From: damian@puma.qimr.edu.au (Damian James)
Subject: Re: NEWBIE: need help with search spider/crawler
Message-Id: <slrn96a1qb.8b4.damian@puma.qimr.edu.au>
In article <slrn969t15.2gu.abigail@tsathoggua.rlyeh.net>, Abigail wrote:
>Damian James (damian@puma.qimr.edu.au) wrote on MMDCXCVI September
>MCMXCIII in <URL:news:slrn969s09.8b4.damian@puma.qimr.edu.au>:
>&& ... Anyway, its character set was a
>&& thing called Atari-ASCII, which did have 256 characters. I guess my
>&& misperception above is a residual scar from the experience.
>
>
>The used construct works with higher numbers than 256 too.
>
Sorry -- I was indicating the scar, and describing the implement with which
it was made. I didn't mean to suggest that this implement shared ANY
properties with the construct in your JAPH (other, perhaps, than that both
are sharp).
Without having been back to read about Unicode (yet), I tried brute
force to see how high it MIGHT work:
%cat unique_ords
#!/usr/local/bin/perl -w
use strict;
my %unique;
$unique{chr $_} = $_ for 0 .. 2**$ARGV[0]-1;
print "\n", scalar(keys %unique), "\n";
___END___
I found 2**20 unique values, but wasn't prepared to go higher (for the
obvious reason). But I'm not going to ask what gives, I'm going to read the
docs instead.
Cheers, and thanks again
Damian
------------------------------
Date: 16 Jan 2001 21:34:07 -0600
From: Tony Curtis <tony_curtis32@yahoo.com>
Subject: Re: passing parameters to another program
Message-Id: <87y9waetsg.fsf@limey.hpcc.uh.edu>
>> On Tue, 16 Jan 2001 17:47:36 -0500,
>> Matt Carey <mattc@country-life.com> said:
> I have a perl program on a Linux box that executes
> another perl program on a remote host(HP-UX 11.00). I
> need to pass variables from the program on the Linux box
> to the program on the remote host. Right now I am using
> 'rsh' to execute the program on the remote host. How can
> I pass variables with the 'rsh' command
perldoc perlvar --> @ARGV
You might want to use ssh isntead of rsh.
Alternatively you can write a daemon (most simply out of
inetd) to which you can pass the parameters through STDIN.
hth
t
--
Eih bennek, eih blavek.
------------------------------
Date: 17 Jan 2001 04:28:13 GMT
From: david.obrien@ssmb.com.au (Dave)
Subject: Re: Perl and AOL. How is this possible?
Message-Id: <Xns902C9D5F31D1Edavidobrienssmbcomau@169.191.103.140>
>> Are you always so rude?
>
>Abigail is very curt with her answers. But if you look at what she
>says, she's usually addressing the core of the problem. Abigail is kind
>of like Unix manpages. Nearly worthless at first glance, but solid gold
>after you have attained a certain level of knowledge.
>
Abigail reminds me of Godzilla (where is she anyway?). Completely off
putting to genuine posters, because they don't frame the problem exactly
the way they want it.
Your problem is a browser problem, but since you are using perl, I think
you are within your rights to post here, though you might get a nicer
response from comp.infosystems.www.authoring.cgi
--
"If I was five years younger. I'd take a flamethrower to this place!" Al
Pacino
------------------------------
Date: Wed, 17 Jan 2001 06:00:28 GMT
From: "Steven Merritt" <smerr612@startrekmail.com>
Subject: Re: Perl and AOL. How is this possible?
Message-Id: <0ya96.7422$J%.749477@news.flash.net>
"Dave" <david.obrien@ssmb.com.au> wrote in message
news:Xns902C9D5F31D1Edavidobrienssmbcomau@169.191.103.140...
> >> Are you always so rude?
> >
> >Abigail is very curt with her answers. But if you look at what she
> >says, she's usually addressing the core of the problem. Abigail is kind
> >of like Unix manpages. Nearly worthless at first glance, but solid gold
> >after you have attained a certain level of knowledge.
>
> Abigail reminds me of Godzilla (where is she anyway?).
Abigail is the exact opposite of Godzilla!, and who the hell cares where the
troll is? Not only does Abigail know what she is talking about, but she
doesn't go out of her way to suck up to new posters so she can give them bad
advice under the cover of friendly words.
> Completely off
> putting to genuine posters, because they don't frame the problem exactly
> the way they want it.
s/genuine/new\/inexperienced/ and I'll agree with you(I consider myself a
genuine poster. At least I'm pretty sure I'm not a bot. After seeing _The
Matrix_ I'm not absolutely sure of anything anymore). But just like Unix,
Abigail is under no compulsion to be user friendly. Those who understand
and feel the same way she does will get along with her fine. As for others,
maybe they should listen to someone/use something else. Far too many
people make the mistake of thinking Abigail(or any other prominent member of
the community/Newsgroup) is the typical Perl hacker or that she somehow
speaks for the community. It's simply not true. She's one voice in the
community. She doesn't speak for it and it doesn't speak for her.
Convenient that.
> Your problem is a browser problem, but since you are using perl, I think
> you are within your rights to post here, though you might get a nicer
> response from comp.infosystems.www.authoring.cgi
Oh, the original poster isn't going in my killfile or anything, but his
question wasn't a Perl issue. Since he now knows that, I'd be willing to
drop it and wish him luck in finding the answers he's looking for.
Steven
King of Casual Play
The One and Only Defender of Cards That Blow
------------------------------
Date: Wed, 17 Jan 2001 06:40:30 GMT
From: Uri Guttman <uri@sysarch.com>
Subject: Re: Perl and AOL. How is this possible?
Message-Id: <x766jeznoh.fsf@home.sysarch.com>
>>>>> "D" == Dave <david.obrien@ssmb.com.au> writes:
>>> Are you always so rude?
>>
>> Abigail is very curt with her answers. But if you look at what she
>> says, she's usually addressing the core of the problem. Abigail is kind
>> of like Unix manpages. Nearly worthless at first glance, but solid gold
>> after you have attained a certain level of knowledge.
>>
D> Abigail reminds me of Godzilla (where is she anyway?). Completely off
D> putting to genuine posters, because they don't frame the problem exactly
D> the way they want it.
boy are you offbase. moronzilla was a self professed troll and a flaming
idiot. not only was she a font of bad perl code and bugs, but she
couldn't handle feedback at any level nor have a logical
conversation. she never entered into any threads which had regular
posters in them. she always trolled newbies. all of her 'code' was cgi
based even though few of the questions had to do with the web. she is
gone for now and hopefully forever.
abigail may be curt but many newbies need that. and she is almost always
correct, knows plenty of perl and computer stuff and you can actually
converse with her.
if you want moronzilla back, then you are to be deemed a major luser and
should be plonked by all here.
uri
--
Uri Guttman --------- uri@sysarch.com ---------- http://www.sysarch.com
SYStems ARCHitecture, Software Engineering, Perl, Internet, UNIX Consulting
The Perl Books Page ----------- http://www.sysarch.com/cgi-bin/perl_books
The Best Search Engine on the Net ---------- http://www.northernlight.com
------------------------------
Date: Tue, 16 Jan 2001 21:25:35 -0600
From: BionicMan <bionic@engineer.com>
Subject: Perl question
Message-Id: <3A6510AE.5077DE9B@engineer.com>
Hi:
What is the quickest way to parse a file that has the following
characteristics:
-I need to be able to search for character "&" and whatever is in front
of needs to be saved in a table.
-Replacing all the words "arrays" with the word "hash"
-Remove all the comments which in 100% of the cases start with ****
-Direct all the results of the above in a *.pl file
Thanks for any direction.
Pdude
------------------------------
Date: 17 Jan 2001 04:35:08 GMT
From: david.obrien@ssmb.com.au (Dave)
Subject: Re: Perl question
Message-Id: <Xns902C9E8AC8511davidobrienssmbcomau@169.191.103.140>
BionicMan <bionic@engineer.com> wrote in <3A6510AE.5077DE9B@engineer.com>:
>Hi:
>What is the quickest way to parse a file that has the following
>characteristics:
>-I need to be able to search for character "&" and whatever is in front
>of needs to be saved in a table.
>-Replacing all the words "arrays" with the word "hash"
>-Remove all the comments which in 100% of the cases start with ****
>-Direct all the results of the above in a *.pl file
>
>Thanks for any direction.
>Pdude
>
>
Regular expressions.
Sorry a bit obvious I know
open (OUT_FILE,">$outfile") or die "can not open $outfile output file";
open (FILE_HANDLE,$input_file) or die "Can not open $input_file input
file";
@file_lines=<FILE_HANDLE>;
foreach $line (@file_lines)
{
$line =~ s/****//g;
$line =~ s/arrays/hash/g;
# can't be bothered figuring out the rest, but you get the idea
print OUT_FILE $line;
}
close OUT_FILE;
close FILE_HANDLE;
This probably isn't the fastest method, by a long way, but it is very easy
to follow
--
"If I was five years younger. I'd take a flamethrower to this place!" Al
Pacino
------------------------------
Date: 17 Jan 2001 04:37:09 GMT
From: david.obrien@ssmb.com.au (Dave)
Subject: Re: Perl question
Message-Id: <Xns902C9EE278CC6davidobrienssmbcomau@169.191.103.140>
> $line =~ s/****//g;
Sorry this is totally wrong. Not reading your post I guess. Need to strip
the rest of the line.
--
"If I was five years younger. I'd take a flamethrower to this place!" Al
Pacino
------------------------------
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 V10 Issue 76
*************************************