[12519] in Perl-Users-Digest
Perl-Users Digest, Issue: 6119 Volume: 8
daemon@ATHENA.MIT.EDU (Perl-Users Digest)
Thu Jun 24 16:07:40 1999
Date: Thu, 24 Jun 99 13:00:20 -0700
From: Perl-Users Digest <Perl-Users-Request@ruby.OCE.ORST.EDU>
To: Perl-Users@ruby.OCE.ORST.EDU (Perl-Users Digest)
Perl-Users Digest Thu, 24 Jun 1999 Volume: 8 Number: 6119
Today's topics:
Re: accessing a character in a string (Philip 'Yes, that's my address' Newton)
Re: Attaching a file with a form <uucon@my-deja.com>
Creating graphics on the fly for web pages hollanderm@my-deja.com
Re: flock equivalent on win32 <cassell@mail.cor.epa.gov>
Re: garbage collector <aqumsieh@matrox.com>
Re: gathering output from program amidalla@my-deja.com
How can I get size of uploaded image via CGI? <wagener@cs.fsu.edu>
Re: how to read die "Error:..." (Andrew Allen)
Re: how to remove \n from middle of variable <kazuma@my-deja.com>
Re: how to remove \n from middle of variable (Larry Rosler)
Re: how to remove \n from middle of variable (Philip 'Yes, that's my address' Newton)
Re: how to remove \n from middle of variable <aqumsieh@matrox.com>
Re: HOWTO compare two arrays, an get the difference <aqumsieh@matrox.com>
localtime (perldoc -f localtime didn't help) <arcane@verinet.com>
Re: Newbie - Perl books - which to get? syurman@spatialfocus.com
Re: Newbie - Perl books - which to get? <uucon@my-deja.com>
Re: Newbie - Perl books - which to get? (Andrew Johnson)
Onchat.com using java? How about perl? hotister@my-deja.com
Process id for fork()ed process (JamesGPage)
Re: Read a file starting a a certain point in the middl (Philip 'Yes, that's my address' Newton)
Re: Read a file starting a a certain point in the middl (Andrew Allen)
Re: Replacing i with e etc (Philip 'Yes, that's my address' Newton)
Re: sorting an array from 2nd element onwards <aqumsieh@matrox.com>
Re: Viral matters [completely off-topic] <cassell@mail.cor.epa.gov>
Re: Wraparound Array/list... (Larry Rosler)
WWWBoard for NT <dspivey@electro-net.com>
Special: Digest Administrivia (Last modified: 12 Dec 98 (Perl-Users-Digest Admin)
----------------------------------------------------------------------
Date: Thu, 24 Jun 1999 18:45:32 GMT
From: nospam.newton@gmx.net (Philip 'Yes, that's my address' Newton)
Subject: Re: accessing a character in a string
Message-Id: <37727bd8.1191189@news.nikoma.de>
On Thu, 24 Jun 1999 08:05:03 -0700, "Ariel" <fake@nospam.edu> wrote:
>I was getting spammed
>from several random addresses using domains like mindspring, hotmail,
>prodigy, usa.net, typically with an email address like
><name>34456690@<domain>.com..so it wasn't one specific address that I could
>block. I have reported the spam to a few of the ISPs but the spam kept
>coming, on average about 5 messages a day.
And blocking one address won't do you *any* good as it's fake more
often than not, and even if not, complaints to the ISP will often
cause it to be closed down so he can't post from there any more
anyway. Which is why "remove" addresses are a hoax -- by the time you
get the spam, they may be invalid :).
Cheers,
Philip
--
Philip Newton <nospam.newton@gmx.net>
------------------------------
Date: Thu, 24 Jun 1999 18:35:45 GMT
From: Ryan Corder <uucon@my-deja.com>
Subject: Re: Attaching a file with a form
Message-Id: <7kttq0$dp0$1@nnrp1.deja.com>
In article <7ktjed$91d$1@nnrp1.deja.com>,
pyammine@my-deja.com wrote:
> Is it possible with Perl to attach a file (i.e. a Word file) to a form
> and save it when submitting?
>
> I know how to upload a file name
>
> <input type="file" etc...> using HTML tags but how do you take that
> file and path and have it uploaded into the server?
>
> I would appreciate any help in this area.
>
> Pascal
>
> Sent via Deja.com http://www.deja.com/
> Share what you know. Learn what you don't.
>
Check out the CGI.pm website. CGI.pm will allow you to upload a file and
save it to the server where ever you want to.
http://stein.cshl.org/www/software/cgi/
Ryan
Sent via Deja.com http://www.deja.com/
Share what you know. Learn what you don't.
------------------------------
Date: Thu, 24 Jun 1999 17:45:14 GMT
From: hollanderm@my-deja.com
Subject: Creating graphics on the fly for web pages
Message-Id: <7ktqr6$cei$1@nnrp1.deja.com>
I am making a web page which uses data posted from a form to dynamically
create graphs (using gnuplot). These graphs are to be served up to the
next web page, along with some other formating. There is a possibility
for multiple graphs on one page and many users simultaneously.
My basic problem is that I want to create temp files (I use the $$ to
generate the name of the gif on the fly) and then delete them
immediately after being served to the web page. When I tried something
like this
. . . .
$| = 1; # to force the output
print "<img src=\"$temp_gif\">
print "</body></html>";
$|=0;
sleep 5; # I tried this in one version - the only dif - the page
took
# an extra five seconds to load
unlink $temp_gif;
I got the page with a broken image sign. I guess I delete the picture
too early. If I take off the unlink command, everything runs smoothly.
If anyone has a fix that isn't too cumbersome, I would be very
appreciative. I think my last resort is to run a cron job on the server
which deletes all of the gif files in the temp directory.
thank you so much,
mike.
Sent via Deja.com http://www.deja.com/
Share what you know. Learn what you don't.
------------------------------
Date: Thu, 24 Jun 1999 11:36:30 -0700
From: David Cassell <cassell@mail.cor.epa.gov>
Subject: Re: flock equivalent on win32
Message-Id: <37727AAE.6AE6359C@mail.cor.epa.gov>
Kenneth Rose wrote:
> Here is my situation. I'm writing a very simple CGI script using Perl.
> It will be something that logs users comments to a file (like a
> guestbook, but they can't see it). Anyways, the thing is that I want to
> make sure the file is locked so that there is no chance that the file
> gets written to at the same time by two different users. Unfortunately,
> I'm running this on WinNT, which doesn't have any type of flock function
> (that I know of).
Yes. Try it. Perl's flock() works on NT too. Just don't
count on it working on win95, though...
HTH,
David
--
David Cassell, OAO cassell@mail.cor.epa.gov
Senior computing specialist
mathematical statistician
------------------------------
Date: Thu, 24 Jun 1999 14:25:59 -0400
From: Ala Qumsieh <aqumsieh@matrox.com>
Subject: Re: garbage collector
Message-Id: <x3yaetpcv60.fsf@tigre.matrox.com>
vijoc@my-deja.com writes:
> Is the perl garbage collector going to change anytime soon?
Why do you ask? Do you want it to change? If so, then why?
------------------------------
Date: Thu, 24 Jun 1999 18:52:29 GMT
From: amidalla@my-deja.com
Subject: Re: gathering output from program
Message-Id: <7ktup7$e5s$1@nnrp1.deja.com>
sorry.. forgot the angle brackets.. but still same result.. why??
> open(README, "looper.exe -URTS_DEBUG=quit |")
> or die "Cant run program: $!\n";
> while(<README>) {
> $output .= $_;
> }
> close (README);
Sent via Deja.com http://www.deja.com/
Share what you know. Learn what you don't.
------------------------------
Date: Thu, 24 Jun 1999 15:46:16 -0400
From: Brian Wagener <wagener@cs.fsu.edu>
Subject: How can I get size of uploaded image via CGI?
Message-Id: <37728B08.A67CFB5E@cs.fsu.edu>
I have made a script that allows a person to upload a graphic file,
either a jpg or gif, and I need to be able to see if it is within the
size specs. I don't see a way in perl to get info from a graphic file.
I am using perl 5.005 if anyone can help me I would be very happy.
Thanks in advance.
Brian
------------------------------
Date: 24 Jun 1999 19:20:15 GMT
From: ada@fc.hp.com (Andrew Allen)
Subject: Re: how to read die "Error:..."
Message-Id: <7ku0df$kjr$3@fcnews.fc.hp.com>
Wolfgang =?iso-8859-1?Q?G=F6tzinger?= (wolfgang.goetzinger@siemens.at) wrote:
: Hi everybody!
: i programmed a perl script that executes the program myProgr and reads
: the stdout of myProgr in @output:
: open OUTPUT,'myProgr|';
: @output = <OUTPUT>;
: close OUTPUT;
: question: if myProgr dies with:
: die "Error: blahblah...";
: how can i read this errormessage in my perl script???????
: (there is no usable value in $? and $!)
Check out IPC::Open3. It allows to read stderr. $? should be valid
after your close.
Andrew
------------------------------
Date: Thu, 24 Jun 1999 17:47:09 GMT
From: Kazuma <kazuma@my-deja.com>
Subject: Re: how to remove \n from middle of variable
Message-Id: <7ktqup$cfe$1@nnrp1.deja.com>
> I have a variable that holds multiple lines kind of like:
>
> line one
> line two
> line three
>
> I would like to remove the \n from the variable so that it holds
>
> line one line two line three
You shoud use the substitution...
$variable =~ s/\n/ /g;
This will substitute all the "\n" with spaces...
Best regards,
Kazuma
Sent via Deja.com http://www.deja.com/
Share what you know. Learn what you don't.
------------------------------
Date: Thu, 24 Jun 1999 11:44:49 -0700
From: lr@hpl.hp.com (Larry Rosler)
Subject: Re: how to remove \n from middle of variable
Message-Id: <MPG.11dc1c78927d34c6989c3e@nntp.hpl.hp.com>
In article <7ktmvs$oa6$1@news.monmouth.com> on Thu, 24 Jun 1999 12:40:58
-0400, Matt <splinter@monmouth.com> says...
> $VARIABLE = "LINE1\nLINE2\nLINE3\n"
>
> do
>
> $VARIABLE =~ s/\n//g;
>
> That should work...I believe (I'm no expert but try it! It works for me.)
That is wrong -- 's/\n/ /g' is what was requested. And it is at least
an order of magnitude slower than 'tr/\n/ /'.
--
(Just Another Larry) Rosler
Hewlett-Packard Laboratories
http://www.hpl.hp.com/personal/Larry_Rosler/
lr@hpl.hp.com
------------------------------
Date: Thu, 24 Jun 1999 18:57:45 GMT
From: nospam.newton@gmx.net (Philip 'Yes, that's my address' Newton)
Subject: Re: how to remove \n from middle of variable
Message-Id: <37727e06.1749366@news.nikoma.de>
On Thu, 24 Jun 1999 10:53:40 -0400, David Barnes <aardvark@ibm.net>
wrote:
>using $variable =~ tr/\n/ /; gets rid of everything up to the last \n,
>so my result is only
>
>line three
Looks to me as if there's a \r in there somewhere. Try replacing \r\n
with space e.g. tr/\r\n/ /s .
Cheers,
Philip
--
Philip Newton <nospam.newton@gmx.net>
------------------------------
Date: Thu, 24 Jun 1999 14:25:03 -0400
From: Ala Qumsieh <aqumsieh@matrox.com>
Subject: Re: how to remove \n from middle of variable
Message-Id: <x3ybte5cv7k.fsf@tigre.matrox.com>
David Barnes <aardvark@ibm.net> writes:
> Thank you, but that doesn't seem to be it. I have enclosed $variable in
> quotes and printed it out, and it does indeed contain all three lines.
Ok .. let's see ..
% perl -w
$var = "one line\ntwo lines\nthree lines\n";
print $var, "<<<\n";
$var =~ tr/\n/ /;
print $var, "<<<\n";
__END__
one line
two lines
three lines
<<<
one line two lines three lines <<<
So .. what is it that doesn't work for you?
Ala
------------------------------
Date: Thu, 24 Jun 1999 13:40:18 -0400
From: Ala Qumsieh <aqumsieh@matrox.com>
Subject: Re: HOWTO compare two arrays, an get the difference
Message-Id: <x3yd7ylcxa6.fsf@tigre.matrox.com>
Marko Hoepken <marko.hoepken@sican.de> writes:
> "Torfinn Keringen" wrote:
>
> > I have @array1 @array2, both of them contains a few lines of text,
> > what I want is an @array3 containing the lines from @array1
> > that is missing in @array2
>
> Try this: (not tested)
Would you please test your code before posting it?
> foreach $list1 (@array1) { # every entry of array1
> if (! grep (/^$list1$/,@array2)) { # if the grep fails, the
> # entry will be pushed
This is highly inefficient, and will fail if any $list1 contains
special chars like *, |, etc ..
> push (@array3,$list1);
> }
> }
A better solution would be:
my @array3 = ();
{
my (%h1, %h2);
@h1{@array1} = ();
@h2{@array2} = ();
for my $key (keys %h1) {
push @array3 => $key unless exists $h2{$key};
}
}
Another, more cryptic solution would be:
my @array3 = ();
{
my $str = join '|' => map { quotemeta } @array2;
@array3 = grep { !/^(?:$str)$/ } @array1;
}
HTH,
Ala
------------------------------
Date: Thu, 24 Jun 1999 13:05:12 -0600
From: Arcane <arcane@verinet.com>
Subject: localtime (perldoc -f localtime didn't help)
Message-Id: <37728167.2CA697D0@verinet.com>
Alright, here's another question about localtime that I couldn't find
the
answer for by running "perldoc -f localtime"... I hope no one minds
toooooo much. :)
I have the following perl program that when run on the commandline it
returns the correct time, but once it is run through apache the time is
an
hour behind. This only happens on one of my computers and not the
other two. I would guess it's some kind of TZ setting or daylight
savings
setting, but I don't know where it would be located at.
Here's the code:
--- Start ---
#!/usr/local/bin/perl -w
use diagnostics;
use strict;
my ($yyyy, $mm, $dd, $hh, $mi, $ss) = (localtime)[5, 4, 3, 2, 1, 0];
$yyyy += 1900;
$mm++;
print "Content-Type: text/html\n\n";
printf "Current date and time is: %2.2d-%2.2d-%4d: %2.2d:%2.2d:%2.2d\n",
$mm, $dd, $yyyy, $hh, $mi, $ss;
--- End ---
Any help would be great!
Bryan
------------------------------
Date: Thu, 24 Jun 1999 17:52:48 GMT
From: syurman@spatialfocus.com
Subject: Re: Newbie - Perl books - which to get?
Message-Id: <7ktr9a$ck4$1@nnrp1.deja.com>
Hi Rhonda,
I haven't seen Perl in a Nutshell (Ellen Siever, Stephen Spainhour and
Nathan Patwardhan) mentioned yet, but it's a good one to keep on your
desk while you work.
To anyone reading this who has limited funds--
Check your public library. I started with Programming Perl, and found
it captivating. My current favorite is Effective Perl Programming. Both
of them were available from my local library in Dekalb County, Georgia.
Who woulda thunk it?
Cheers,
Sara
In article <376FB0D7.643584DE@itol.com>,
Rhonda Nowak <rmn@itol.com> wrote:
> Hi All,
> I looked on Amazon for Perl books and found quite a few. I would like
> to order a couple. Here is my narrowed list:
>
> Beginner Level -
> Learning Perl (2nd Edition) - Randal L. Schwartz
> Teach Yourself Perl 5 in 21 Days - David Till
>
> Advanced Level -
> Effective Perl Programming: Writing Better Programs with Perl - Joseph
> N. Hall
> Programming Perl (2nd Edition) - Larry Wall
> Perl: The Programmer's Companion - Nigel Chapman
>
> I read reviews on Amazon, but would like to hear from anyone who
> knows/has heard of these books. Please help me decide which would be
> best for me (beginner) and our more experienced Perl programmer.
>
> Thanks much,
> Rhonda
>
>
Sent via Deja.com http://www.deja.com/
Share what you know. Learn what you don't.
------------------------------
Date: Thu, 24 Jun 1999 18:26:29 GMT
From: Ryan Corder <uucon@my-deja.com>
Subject: Re: Newbie - Perl books - which to get?
Message-Id: <7ktt86$dgr$1@nnrp1.deja.com>
In article <37711AFA.B02E9A46@mail.cor.epa.gov>,
David Cassell <cassell@mail.cor.epa.gov> wrote:
> Andy wrote:
> [Note: I'm moving your comment to *after* its prequel, since
> that's the way people read Usenet. Good snippage, though...]
>
> > Eric Bohlman wrote in message ...
> > [my snip of Eric's advice]
> >
> > How about for win32 systems?
> > I've already purchased the Lizard book.
> > Any comments on this one. It's still being shipped as of this message.
>
> Excellent choice. The gecko book (it's a 'wall' gecko - get it?)
> is a good translation from the unix world to the win32 world.
>
> In fact, you should buy everything that has one or more of
> these names on it:
> Larry Wall
> Randal Schwartz
> Tom Christiansen
> Lincoln Stein
>
> Do *not* buy any book which is for 'Dummies', or which promises
> to teach you something in K days. I don't think Randal Himself
> could teach the average newbie all of Perl in 7 days and have
> that person be a fully functional Perl programmer. Similarly,
> I doubt the tag team of Kernighan and Ritchie could teach
> some newbie to be a *good* C programmer in 7 days.
>
> Anyone can teach a newbie to be a *lousy* programmer in K days.
>
> David
> --
> David Cassell, OAO cassell@mail.cor.epa.gov
> Senior computing specialist
> mathematical statistician
>
I have to disagree. TY Perl in 21 Days, gave me a solid foundation. I agree
that it is by FAR, not the best Perl book our there, but it gave me a start.
I then moved on to 'Programming Perl' which was the best help. I just order
the black panther book and am very excited about getting it in.
TY Perl didnt make me a programmer, it just got me interested :) and gave me
enough no how to get myself places in Perl.
Ryan Corder
Sent via Deja.com http://www.deja.com/
Share what you know. Learn what you don't.
------------------------------
Date: Thu, 24 Jun 1999 19:18:10 GMT
From: andrew-johnson@home.com (Andrew Johnson)
Subject: Re: Newbie - Perl books - which to get?
Message-Id: <Svvc3.1543$59.5346@news1.rdc2.on.home.com>
In article <7ktt86$dgr$1@nnrp1.deja.com>,
Ryan Corder <uucon@my-deja.com> wrote:
[snip]
! TY Perl didnt make me a programmer, it just got me interested :) and gave me
! enough no how to get myself places in Perl.
^^^^^^
is that your Freudian slip showing?
:-)
andrew (couldn't resist)
------------------------------
Date: Thu, 24 Jun 1999 18:29:58 GMT
From: hotister@my-deja.com
Subject: Onchat.com using java? How about perl?
Message-Id: <7kttel$diq$1@nnrp1.deja.com>
just curious, I think the onchat.com was using java to implement
the web-based comic-like chat room (sort of like M$ V-Chat, but no
client -- except the web browser -- is needed)..
Uh.. is that possible to implement such a monster using perl only?
(yes, I have read the Perl FAQ already)... Also does anyone know any
detail how the onchat.com implemented their web-based chat program?
(most of the perl chat scripts that I tried really sucks)..
thanks
Sent via Deja.com http://www.deja.com/
Share what you know. Learn what you don't.
------------------------------
Date: 24 Jun 1999 19:28:52 GMT
From: jamesgpage@aol.com (JamesGPage)
Subject: Process id for fork()ed process
Message-Id: <19990624152852.22212.00000400@ng-cg1.aol.com>
I can get the process id of the perl process in the $$ variable.
I can code: $child = fork() which returns 0 if te executing process is the
parent and a process id if the thread is the forked child. However, within the
child $$ still refers to the perl top level process. Is there a way to
determine the process id of the child from within the child without passing
$child around?
#!/usr/local/bin/perl
print ">>1 parent=$$<<\n";
$child = fork();
if($child)
{
my $rc = thread("a", "b", "c");
print ">>child=$child rc=$rc \n";
}
else
{
print ">>2 ($child)<<\n";
wait;
}
print ">>3 ($child)<<\n";
exit;
sub thread
{
my @parms = @_;
my $x = @parms;
print "Thread: " . $$ . " ($x) " . join('*', @parms) . "\n";
return ($x);
}
------------------------------
Date: Thu, 24 Jun 1999 18:57:45 GMT
From: nospam.newton@gmx.net (Philip 'Yes, that's my address' Newton)
Subject: Re: Read a file starting a a certain point in the middle
Message-Id: <37727f34.2051762@news.nikoma.de>
On 24 Jun 1999 15:34:01 GMT, mesarchm@aol.com (Mesarchm) wrote:
>I need it to not read the file from the begging, but pick up from that
>predetermined line.
perldoc -f seek may help you; however, seek() only knows about bytes,
not about lines. Remembering the byte offset (e.g. with tell()) and
saving it somewhere else is left as an exercise to the reader.
Cheers,
Philip
--
Philip Newton <nospam.newton@gmx.net>
------------------------------
Date: 24 Jun 1999 19:17:29 GMT
From: ada@fc.hp.com (Andrew Allen)
Subject: Re: Read a file starting a a certain point in the middle
Message-Id: <7ku089$kjr$2@fcnews.fc.hp.com>
Mesarchm (mesarchm@aol.com) wrote:
: I currently have a perl scripts that reads IIS logs and grabs specific
: elements. However, this script will run against an entire directory of log
: files. Because of this it needs to know if it already read a file, and if it
: did pickup where it left off. I can not make any changes to the logs. Some of
: these files are very large. Ranging from 100MB to GB's. Because of that I
: need it to not read the file from the begging, but pick up from that
: predetermined line.
You could store the position (using "tell") where you left off and do
a "seek" to it the next time. Or store the line number and do
$_=<> while $.<$linenum;
I'd do the first, since it's likely to be faster, and sounds like
you're looking for performance.
Andrew
------------------------------
Date: Thu, 24 Jun 1999 18:57:44 GMT
From: nospam.newton@gmx.net (Philip 'Yes, that's my address' Newton)
Subject: Re: Replacing i with e etc
Message-Id: <37727d98.1639474@news.nikoma.de>
On Thu, 24 Jun 1999 07:54:21 -0700, lr@hpl.hp.com (Larry Rosler)
wrote:
>> does anybody know of perl code to replace all characters with accents (e.g.
>> i, s, h etc) with the standard a-z chars
>
>It is a one-liner.
>
>perldoc -f tr
What exactly to put in the tr depends, of course, on the character set
you are using (PC437? Latin-1? Unicode? EBCDIC? etc.)
Cheers,
Philip
--
Philip Newton <nospam.newton@gmx.net>
------------------------------
Date: Thu, 24 Jun 1999 13:19:44 -0400
From: Ala Qumsieh <aqumsieh@matrox.com>
Subject: Re: sorting an array from 2nd element onwards
Message-Id: <x3yemj1cy8f.fsf@tigre.matrox.com>
Marko Hoepken <marko.hoepken@sican.de> writes:
> JQ wrote:
>
> > Is it possible to sort an array alphabetically only from the 2nd
> > element onwards?
> Try (not tested):
>
> @array=shift(sort(unshift(@array))); # looks ugly but cooool (uses
> # $_ to handle first element)
How does it use $_? Why didn't you test?
% perl -w
@ary = qw/z c a b/;
@ary = shift(sort(unshift(@ary)));
Type of arg 1 to shift must be array (not sort) at - line 2, near "))"
__END__
Execution of - aborted due to compilation errors.
------------------------------
Date: Thu, 24 Jun 1999 11:38:45 -0700
From: David Cassell <cassell@mail.cor.epa.gov>
Subject: Re: Viral matters [completely off-topic]
Message-Id: <37727B35.5798C8A7@mail.cor.epa.gov>
Tom Christiansen wrote:
> [snip]
> And you do that, it's hardly a virus. And you deserve to die. I'm so
> tired of the script kiddies who think Unix only lacks viruses because
> people don't care to write them. They're fundamentally missing the point
> of privilege management.
And in some cases, they haven't grokked the distinction between
a virus and a worm. I'll bet RTM could tell them... :-)
David
--
David Cassell, OAO cassell@mail.cor.epa.gov
Senior computing specialist
mathematical statistician
------------------------------
Date: Thu, 24 Jun 1999 11:51:59 -0700
From: lr@hpl.hp.com (Larry Rosler)
Subject: Re: Wraparound Array/list...
Message-Id: <MPG.11dc1e2b4bc89a32989c3f@nntp.hpl.hp.com>
[Posted and a courtesy copy mailed.]
In article <3771fc5a.489109662@24.0.3.71> on Thu, 24 Jun 1999 17:39:27
GMT, Mitch <portboy@home.com> says...
> I'd like to have an wraparound array that consists of five elements
> (strings).
my @array;
push @array, 'new string';
shift @array if @array > 5;
Methinks you are asking too much here for simple answers, meanwhile
avoiding reading the docs and trying things out yourself.
--
(Just Another Larry) Rosler
Hewlett-Packard Laboratories
http://www.hpl.hp.com/personal/Larry_Rosler/
lr@hpl.hp.com
------------------------------
Date: Thu, 24 Jun 1999 14:21:47 -0400
From: "David Spivey" <dspivey@electro-net.com>
Subject: WWWBoard for NT
Message-Id: <37727687.0@news.hcs.net>
I am looking for somewhere that has a message board (WWWBoard) that I can
download to use on my NT Server v. 4.0. All of the WWWboard's online are
comaptible only with Unix and I need one that has been written with NT in
mind. Any help would be greatly appreciated.
David Spivey
dspivey@electro-net.com
------------------------------
Date: 12 Dec 98 21:33:47 GMT (Last modified)
From: Perl-Request@ruby.oce.orst.edu (Perl-Users-Digest Admin)
Subject: Special: Digest Administrivia (Last modified: 12 Dec 98)
Message-Id: <null>
Administrivia:
Well, after 6 months, here's the answer to the quiz: what do we do about
comp.lang.perl.moderated. Answer: nothing.
]From: Russ Allbery <rra@stanford.edu>
]Date: 21 Sep 1998 19:53:43 -0700
]Subject: comp.lang.perl.moderated available via e-mail
]
]It is possible to subscribe to comp.lang.perl.moderated as a mailing list.
]To do so, send mail to majordomo@eyrie.org with "subscribe clpm" in the
]body. Majordomo will then send you instructions on how to confirm your
]subscription. This is provided as a general service for those people who
]cannot receive the newsgroup for whatever reason or who just prefer to
]receive messages via e-mail.
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.
To submit articles to comp.lang.perl.misc (and this Digest), send your
article to perl-users@ruby.oce.orst.edu.
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.
The Meta-FAQ, an article containing information about the FAQ, is
available by requesting "send perl-users meta-faq". The real FAQ, as it
appeared last in the newsgroup, can be retrieved with the request "send
perl-users FAQ". Due to their sizes, neither the Meta-FAQ nor the FAQ
are included in the digest.
The "mini-FAQ", which is an updated version of the Meta-FAQ, is
available by requesting "send perl-users mini-faq". It appears twice
weekly in the group, but is not distributed in the digest.
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 V8 Issue 6119
**************************************