[18864] in Perl-Users-Digest
Perl-Users Digest, Issue: 1032 Volume: 10
daemon@ATHENA.MIT.EDU (Perl-Users Digest)
Thu May 31 21:10:43 2001
Date: Thu, 31 May 2001 18:10:18 -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: <991357818-v10-i1032@ruby.oce.orst.edu>
Content-Type: text
Perl-Users Digest Thu, 31 May 2001 Volume: 10 Number: 1032
Today's topics:
Re: passing arguments to my script from a web browser <godzilla@stomp.stomp.tokyo>
Re: passing arguments to my script from a web browser <no@spam.please.>
Re: Perl 5.6.1 on AIX 4.3.3 does not pass "make test" <ae@is.dal.ca>
Re: perl and Informix <NOahammSPAN@sanderson.net.au>
Perl and pdf-files (=?iso-8859-1?Q?S=F8ren?= Boll Overgaard)
Re: Perl request <bart.lateur@skynet.be>
Problems with incrementing decimal numbers, bug with PE (Lan Xing)
reading records which *start* with some constant string (Timur Shtatland)
Re: Rounding (Tad McClellan)
Re: Server push and $|? <bcoon@sequenom.com>
Re: some < problems ... (Damian James)
test 2 <jliebgot@eni.net>
test <jliebgot@eni.net>
test <jliebgot@eni.net>
test <jliebgot@eni.net>
test <jliebgot@eni.net>
test <jliebgot@eni.net>
test <jliebgot@eni.net>
Re: test <bart.lateur@skynet.be>
test3 <jliebgot@eni.net>
test4 <jliebgot@eni.net>
Re: The FlakeyMind/Bryce Jacobs FAQ (v0.1) (Peter Seebach)
Re: The FlakeyMind/Bryce Jacobs FAQ (v0.1) (Peter Seebach)
Re: The FlakeyMind/Bryce Jacobs FAQ (v0.1) (Peter Seebach)
Digest Administrivia (Last modified: 6 Apr 01) (Perl-Users-Digest Admin)
----------------------------------------------------------------------
Date: Thu, 31 May 2001 16:23:02 -0700
From: "Godzilla!" <godzilla@stomp.stomp.tokyo>
Subject: Re: passing arguments to my script from a web browser
Message-Id: <3B16D256.BA4D2C03@stomp.stomp.tokyo>
Marcel Reuvekamp wrote:
> I've made myself a script which gets some arguments. It works just fine if I
> give them from the commanline, but then there's the problem. I want to use
> it in my browser. So there's my question, does anyone know how I can pass
> some arguments from my browser to my script?
I have read all the responses so far in this thread. None offer
any actual code, including my own. All suggest use of CGI.pm
save for mine. I suggest adding a read and parse routine with
either a query string or form action for access. One article
suggests a format using CGI.pm which does not work.
Use of CGI.pm is quite often the worst choice for many applications.
Within this article, I offer two pieces of code, one uses CGI.pm
and the other, my own very short read and parse, both written to
meet your specific parameters. I have included benchmark tests
which tell quite a tale.
Godzilla!
--
For these two test scripts, an URL is used:
http://localhost/~test?a=1&b=2
This test script is then browser accessed
per your parameters.
#!perl
print "Content-type: text/plain\n\n";
use CGI;
$query = new CGI;
foreach $name ($query->param)
{
print "Name: $name ";
foreach $value ($query->param ($name))
{ print "Value: $value\n"; }
}
$in = $ENV{'QUERY_STRING'};
@in = split (/&/, $in);
foreach $i (0 .. $#in)
{
$in[$i] =~ tr/+/ /;
($key, $val) = split (/=/, $in[$i], 2);
print "Name: $key Value: $val\n";
}
PRINTED RESULTS:
________________
Name: a Value: 1
Name: b Value: 2
Name: a Value: 1
Name: b Value: 2
BENCHMARK TEST:
_______________
#!perl
print "Content-type: text/plain\n\n";
use Benchmark;
print "Run One:\n\n";
&Time;
print "\n\nRun Two:\n\n";
&Time;
print "\n\nRun Three:\n\n";
&Time;
sub Time
{
timethese (10000,
{
'name1' =>
'$ENV{QUERY_STRING} = "a=1&b=2";
use CGI;
$query = new CGI;
foreach $name ($query->param)
{
$true = "false";
foreach $value ($query->param ($name))
{ $false = "true"; }
}',
'name2' =>
'$ENV{QUERY_STRING} = "a=1&b=2";
$in = $ENV{QUERY_STRING};
@in = split (/&/, $in);
foreach $i (0 .. $#in)
{
$in[$i] =~ tr/+/ /;
($key, $val) = split (/=/, $in[$i], 2);
$true = "false"; $false = "true";
}',
} );
}
exit;
PRINTED RESULTS:
________________
Run One:
Benchmark: timing 10000 iterations of name1, name2...
name1: 8 wallclock secs ( 7.63 usr + 0.00 sys = 7.63 CPU) @ 1310.62/s
name2: 0 wallclock secs ( 0.55 usr + 0.00 sys = 0.55 CPU) @ 18181.82/s
Run Two:
Benchmark: timing 10000 iterations of name1, name2...
name1: 8 wallclock secs ( 7.58 usr + 0.00 sys = 7.58 CPU) @ 1319.26/s
name2: 1 wallclock secs ( 0.55 usr + 0.00 sys = 0.55 CPU) @ 18181.82/s
Run Three:
Benchmark: timing 10000 iterations of name1, name2...
name1: 7 wallclock secs ( 7.64 usr + 0.00 sys = 7.64 CPU) @ 1308.90/s
name2: 1 wallclock secs ( 0.55 usr + 0.00 sys = 0.55 CPU) @ 18181.82/s
------------------------------
Date: 1 Jun 2001 01:32:43 GMT
From: "Not Important" <no@spam.please.>
Subject: Re: passing arguments to my script from a web browser
Message-Id: <3b16e2ab$1@news2.mibx.net>
Your code makes no effor to decode special characters that _would_ be encoded,
an obvious example being space (%20), which is why many people will point
to CGI.pm. If you were desperate to cut time, you could use the readparse
function from the old cgilib.pl
"Godzilla!" <godzilla@stomp.stomp.tokyo> wrote:
>Marcel Reuvekamp wrote:
>
>> I've made myself a script which gets some arguments. It works just fine
if I
>> give them from the commanline, but then there's the problem. I want to
use
>> it in my browser. So there's my question, does anyone know how I can pass
>> some arguments from my browser to my script?
>
>
>I have read all the responses so far in this thread. None offer
>any actual code, including my own. All suggest use of CGI.pm
>save for mine. I suggest adding a read and parse routine with
>either a query string or form action for access. One article
>suggests a format using CGI.pm which does not work.
>
>Use of CGI.pm is quite often the worst choice for many applications.
>
>Within this article, I offer two pieces of code, one uses CGI.pm
>and the other, my own very short read and parse, both written to
>meet your specific parameters. I have included benchmark tests
>which tell quite a tale.
>
>
>Godzilla!
>--
>
>For these two test scripts, an URL is used:
>
>http://localhost/~test?a=1&b=2
>
>This test script is then browser accessed
>per your parameters.
>
>
>#!perl
>
>print "Content-type: text/plain\n\n";
>
>use CGI;
>$query = new CGI;
>
>foreach $name ($query->param)
> {
> print "Name: $name ";
> foreach $value ($query->param ($name))
> { print "Value: $value\n"; }
> }
>
>
>$in = $ENV{'QUERY_STRING'};
>@in = split (/&/, $in);
>foreach $i (0 .. $#in)
> {
> $in[$i] =~ tr/+/ /;
> ($key, $val) = split (/=/, $in[$i], 2);
> print "Name: $key Value: $val\n";
> }
>
>PRINTED RESULTS:
>________________
>
>Name: a Value: 1
>Name: b Value: 2
>Name: a Value: 1
>Name: b Value: 2
>
>
>BENCHMARK TEST:
>_______________
>
>#!perl
>
>print "Content-type: text/plain\n\n";
>
>use Benchmark;
>
>print "Run One:\n\n";
>&Time;
>
>print "\n\nRun Two:\n\n";
>&Time;
>
>print "\n\nRun Three:\n\n";
>&Time;
>
>
>sub Time
> {
> timethese (10000,
> {
> 'name1' =>
> '$ENV{QUERY_STRING} = "a=1&b=2";
> use CGI;
> $query = new CGI;
> foreach $name ($query->param)
> {
> $true = "false";
> foreach $value ($query->param ($name))
> { $false = "true"; }
> }',
>
> 'name2' =>
> '$ENV{QUERY_STRING} = "a=1&b=2";
> $in = $ENV{QUERY_STRING};
> @in = split (/&/, $in);
> foreach $i (0 .. $#in)
> {
> $in[$i] =~ tr/+/ /;
> ($key, $val) = split (/=/, $in[$i], 2);
> $true = "false"; $false = "true";
> }',
> } );
> }
>
>exit;
>
>PRINTED RESULTS:
>________________
>
>Run One:
>
>Benchmark: timing 10000 iterations of name1, name2...
> name1: 8 wallclock secs ( 7.63 usr + 0.00 sys = 7.63 CPU) @ 1310.62/s
> name2: 0 wallclock secs ( 0.55 usr + 0.00 sys = 0.55 CPU) @ 18181.82/s
>
>
>Run Two:
>
>Benchmark: timing 10000 iterations of name1, name2...
> name1: 8 wallclock secs ( 7.58 usr + 0.00 sys = 7.58 CPU) @ 1319.26/s
> name2: 1 wallclock secs ( 0.55 usr + 0.00 sys = 0.55 CPU) @ 18181.82/s
>
>
>Run Three:
>
>Benchmark: timing 10000 iterations of name1, name2...
> name1: 7 wallclock secs ( 7.64 usr + 0.00 sys = 7.64 CPU) @ 1308.90/s
> name2: 1 wallclock secs ( 0.55 usr + 0.00 sys = 0.55 CPU) @ 18181.82/s
------------------------------
Date: Thu, 31 May 2001 22:07:39 +0000 (UTC)
From: Aidan Evans <ae@is.dal.ca>
Subject: Re: Perl 5.6.1 on AIX 4.3.3 does not pass "make test"
Message-Id: <9f6fbb$af3$1@News.Dal.Ca>
In comp.unix.aix Tony Fitzgerald <jaf@unb.ca> wrote:
>I am trying to install latest stable perl on AIX. The make compiles
>cleanly with only a few (I) information messages suggesting additional
>optimization could be obtained using MAXMEM option. Am using the IBM
>compiler (not gcc). The make test, however, reported failures and
>running the "./perl harness" in the ./t directory indicated that perl
>failed 6/258 or was 97.67% "okay" of test scripts, and 21/12601 or
>99.83% ok for subtests. Some of the tests produced core files.
...
>Has anyone managed to get a recent perl to pass its tests on a recent
>AIX? I would like to know just whether it's possible. The production
>perl on the system was originally compiled on AIX 4.3.0 and I'm
>reasonably sure it did pass its tests at the time.
I've had the following recent experience compiling 5.6.1. First, I used
the "C for AIX Compiler" (fileset vac.C level 5.0.1.0) on AIX 4.2.1. The
"make test" reported failures for four tests:
lib/io_multihomed....FAILED at test 1
lib/io_sock..........FAILED at test 1
lib/io_udp...........FAILED at test 1
lib/syslog...........FAILED at test 0
I then copied the installation directory to a 4.3.3 system (at the 4330-06
maintenance level). I tried "make test" (no re-compile) and it failed
many tests with errors like
lib/dprof............Can't load '../lib/auto/File/Glob/Glob.so' for
module File::Glob: readExports: bad magic at ../lib/XSLoader.pm line
75. at ../lib/File/Glob.pm line 101
Compilation failed in require at lib/dprof.t line 26.
BEGIN failed--compilation aborted at lib/dprof.t line 26.
Obviously not recompiling was a bad idea, I guess because of
incompatibilities between the code and the very old C compiler and run-time
on this system: xlC.C 3.1.3.0 installed nearly five years ago. I did "make
clean" and recompiled. This allowed a successful "make test" with no
failures at all.
Finally, I installed vac.C 5.0.1.0 on this system, "make clean", and
re-compile. "make test" was again successful.
Aidan Evans | AE@AC.Dal.CA | Computer Facilities & Operations
| 494-3332 | University Computing & Information Services
| cfo-systems@dal.ca
------------------------------
Date: Fri, 1 Jun 2001 09:39:24 +1000
From: "Andrew Hamm" <NOahammSPAN@sanderson.net.au>
Subject: Re: perl and Informix
Message-Id: <9f6kvr$2kgfi$1@ID-79573.news.dfncis.de>
miss wrote in message <3B16152B.ED538A@nmpm.com.my>...
>Hai all;
>
>If I want to using Perl and Informix as my database.What I should
>install???
>(my is Win98)
>
>should I install dbd::informix????
>
Although Laszlo's answer is the ideal, it may be tricky on Windows, and ODBC
with Perl may be another alternative that could be easier to get working on
Windows.
However, I have on my very PC a version of Perl 5.6 with DBD::Informix and
Perl/Tk for graphical programming. A collegue who has Microsoft Visual C++
(don't know which version) down-loaded the perl source from CPAN and made a
functioning build. Then, with a bit of encouragement he got the
DBD::Informix to work, and after further prodding he got the Perl/Tk
compiled and working. Beautiful.
So it can be done! The most usual thing people do on Windows is to install
Active Perl, but I'm not at all sure of how easy it will be to put the DBD
and Tk into it. Perhaps it's just as easy if you have the C compiler?
Anyway, if you have any specific problems please post questions. I'll try to
pass them onto my collegue and get answers for you. It'll be a bit slow but
if nobody else can help you, it's better than nothing.
Good luck.
--
"Dis act ain't about lafter - it's about comedy" - Andrew Dice Clay
------------------------------
Date: 31 May 2001 22:55:33 GMT
From: boll@fw1.dk (=?iso-8859-1?Q?S=F8ren?= Boll Overgaard)
Subject: Perl and pdf-files
Message-Id: <slrn9hdiv5.2g8f.boll@treebeard.tolkien.dk>
Hello
I am trying to figure out how to actually make perl read text from a
pdf-file. So far I've been unsuccessful.
The misc modules, apparantly, are written to do much more advanced stuff
than what I currently. I've been reading the perldoc's, but I can't seem to
get the modules work they way I want them to.
I pretty much need a way to open a pdf-file, read any text from it, and put
it into a scalar.
Admittedly, I have no idea what a pdf-file contains, or how it's formatted,
but I am assuming that reading content from it in the above specified manner
should be possible.
Any suggestions would be greatly appreciated.
--
Søren O.
If idiots could fly, IRC would be an airport
------------------------------
Date: Thu, 31 May 2001 23:14:32 GMT
From: Bart Lateur <bart.lateur@skynet.be>
Subject: Re: Perl request
Message-Id: <72kdht42u5hmaq78en2hvktu4i1s81m8o8@4ax.com>
Abigail wrote:
>Well, since there is already a "review" program deleting files in KEEPERS,
>it should be much easier to modify the review program and deleting the
>files from ORIGINAL.
I think these are deleted manually with the help of an image file
viewer. That's how I understand the problem at hand. Otherwise, you'd be
right: just delete the files in KEEPERS and in ORIGINAL in one go.
--
Bart.
------------------------------
Date: 31 May 2001 17:36:29 -0700
From: lan_xing@hotmail.com (Lan Xing)
Subject: Problems with incrementing decimal numbers, bug with PERL??
Message-Id: <2a6ee727.0105311636.7b00f2c3@posting.google.com>
I am just starting out with PERL,
although I have experience in programming with C.
Could someone point out to me why this code prints out "1"???
When count is incremented to 1, doesn't the expression in while loop
becomes false and exits??
$count = 0;
Perl code
---------
while ($count < 1)
{
print ("$count\n");
$count+=0.1;
}
Result
------
0
0.1
0.2
0.3
0.4
0.5
0.6
0.7
0.8
0.9
1
Additional Problems
-------------------
Also I have noticed that if I use a bigger number in the expression in
the while loop say, $count < 50, I will get strange result after the
loop
runs for some time. The result will have a lot of decimal places.
5.8
5.9
5.99999999999999
6.09999999999999
6.19999999999999
6.29999999999999
6.39999999999999
6.49999999999999
6.59999999999999
6.69999999999999
6.79999999999999
6.89999999999999
6.99999999999999
Could someone out there please tell me what is going on with PERL??
With regards,
Lan Xing
------------------------------
Date: 31 May 2001 15:23:47 -0700
From: timur@lbri.lionbioscience.com (Timur Shtatland)
Subject: reading records which *start* with some constant string
Message-Id: <98deab61.0105311423.101f43c3@posting.google.com>
I have a large file from which consists entirely of records which all
start (rather than end) with some constant string, for example
"some_header". I would like to read and process all records. The best
solution I came up with seems too clumsy, because it uses the string
as input record separator ($/), then strips this string from the end
and adds it to the beginning of each record:
cat file | perl -ne 'BEGIN{$/="some_header"} s|$/||; next unless $_;
$_ = $/ . $_; process_record($_)'
Is there a way to make it less ugly? Thank you!
Timur Shtatland
timur@lbri.lionbioscience.com
------------------------------
Date: Thu, 31 May 2001 18:16:26 -0400
From: tadmc@augustmail.com (Tad McClellan)
Subject: Re: Rounding
Message-Id: <slrn9hdglq.6ck.tadmc@tadmc26.august.net>
Paul Boardman <peb@bms.umist.ac.uk> wrote:
>> For an explanation of the "unexpected" results, look at these:
>>
>> 0.555 => 0.55500000000000004885 => 0.56
>> 1.555 => 1.55499999999999993783 => 1.55
>>
>I apologise if I'm being stupid but I don't see the explanation there...
This may help, Perl FAQ, part 4:
"Why am I getting long decimals (eg, 19.9499999999999) instead
of the numbers I should be getting (eg, 19.95)?"
Accuracy and precision are concepts from Number Theory.
Nothing much particular to Perl in it.
Yes, Number Theory is hard :-)
--
Tad McClellan SGML consulting
tadmc@augustmail.com Perl programming
Fort Worth, Texas
------------------------------
Date: Thu, 31 May 2001 15:34:53 -0700
From: BCC <bcoon@sequenom.com>
Subject: Re: Server push and $|?
Message-Id: <3B16C70D.5A286D38@sequenom.com>
> Don't believe in docu, especially outdated,
> not mentioning any version numbers ones.
>
> Again, have you *tried* CGI::Push ? ;-)
>
> If you use Apache 1.3.xx be sure to pass "-nph => 0".
>
> Buggs
Interesting! Your right, I didn't doubt the documentation. I'll give it a
shot, it would be cool it it works.
Thanks!
Bryan
------------------------------
Date: 31 May 2001 23:53:22 GMT
From: damian@qimr.edu.au (Damian James)
Subject: Re: some < problems ...
Message-Id: <slrn9hdmbl.d0e.damian@puma.qimr.edu.au>
Bertrand Cuissart chose Thu, 31 May 2001 14:22:02 +0200 to say this:
>...
> i am trying to write a Perl script under Windows. I encounter some
>problems with the operator "<".
I think you are confused here. Below, you are not using '<' as a Perl
operator at all, but as part of your DOS command line. I suspect this is not
your problem, however.
>...I want to call an external program that
>reads on the stdin and writes on stdout. I wrote this kind of line :
>`mytool.exe < input.dat >output.res`;
Since you are redirecting the standard output to a file, it is pointless
to use backticks for this. You might want to use system() instead.
Otherwise there should be no problem with using '<' and '>' for redirection
(so long as this conforms to DOS syntax: they are not part of Perl here).
<OT>
You might want to double check that your paths are correct.
</OT>
>But there's a problem with the < character.
You need to say exactly what is going wrong, what error messages you get or
what things that you expect to happen fail to happen. Otherwise we are just
guessing here.
> What am I doing wrong?
Probably, you are asking the wrong question :-).
See:
perldoc -f system
HTH
Cheers,
Damian
--
@:=grep!($;+=m!$/|#!),split//,<DATA>;@;=0..$#:;while(@;){for($;=@;;--$;;)
{@;[$;,$:]=@;[$:,$;]if($:=rand$;+$|)!=$;}push@|,shift@;if$;[0]==@|;select
$,,$,,$,,1/80;print qq x\bxx((@;+@|)*$|++),@:[@|,@;],!@;&&$/} __END__
Just another Perl Hacker # rev 3.1 -- a JAPH in progress, I guess...
------------------------------
Date: Thu, 31 May 2001 16:06:11 -0700
From: Jim Liebgott <jliebgot@eni.net>
Subject: test 2
Message-Id: <3B16CE63.84CE1C75@eni.net>
this will never match
------------------------------
Date: Thu, 31 May 2001 16:04:12 -0700
From: Jim Liebgott <jliebgot@eni.net>
Subject: test
Message-Id: <3B16CDEC.7E30FCAD@eni.net>
this will never match
------------------------------
Date: Thu, 31 May 2001 16:26:11 -0700
From: Jim Liebgott <jliebgot@eni.net>
Subject: test
Message-Id: <3B16D313.519D70B4@eni.net>
test
------------------------------
Date: Thu, 31 May 2001 16:33:00 -0700
From: Jim Liebgott <jliebgot@eni.net>
Subject: test
Message-Id: <3B16D4AC.53F873C6@eni.net>
test
------------------------------
Date: Thu, 31 May 2001 16:40:12 -0700
From: Jim Liebgott <jliebgot@eni.net>
Subject: test
Message-Id: <3B16D65C.EEB3C333@eni.net>
test
------------------------------
Date: Thu, 31 May 2001 16:44:23 -0700
From: Jim Liebgott <jliebgot@eni.net>
Subject: test
Message-Id: <3B16D757.534F0B88@eni.net>
test
------------------------------
Date: Thu, 31 May 2001 17:18:40 -0700
From: Jim Liebgott <jliebgot@eni.net>
Subject: test
Message-Id: <3B16DF60.60029D19@eni.net>
test
------------------------------
Date: Thu, 31 May 2001 23:36:14 GMT
From: Bart Lateur <bart.lateur@skynet.be>
Subject: Re: test
Message-Id: <tbldht0irp1t9k8dvdfuod76qph46mvbl0@4ax.com>
Jim Liebgott wrote:
>test
Yeah it works. But you're really starting to annoy me. And not just me,
I guess.
Don't you have any newsgroups with "test" in its name? Because it sure
isn't in "comp.lang.perl.misc".
--
Bart.
------------------------------
Date: Thu, 31 May 2001 16:20:18 -0700
From: Jim Liebgott <jliebgot@eni.net>
Subject: test3
Message-Id: <3B16D1B2.2B40FE52@eni.net>
test message
------------------------------
Date: Thu, 31 May 2001 16:22:05 -0700
From: Jim Liebgott <jliebgot@eni.net>
Subject: test4
Message-Id: <3B16D21D.1E68DD08@eni.net>
test
------------------------------
Date: 31 May 2001 22:38:18 GMT
From: seebs@plethora.net (Peter Seebach)
Subject: Re: The FlakeyMind/Bryce Jacobs FAQ (v0.1)
Message-Id: <3b16c7d8$0$328$3c090ad1@news.plethora.net>
In article <3b136f26.663752140@nntp.interaccess.com>,
Thaddeus L Olczyk <olczyk@interaccess.com> wrote:
>Another troll characteristic. They never think that people
>will recognise them as such. Did you really think that I would
>not check out your postings in comp.lang.perl.misc ?
Well, I may be a troll, but I'm not whoever it is you have this thing going
with, and I think your post was a waste of valuable electrons. Sheesh. If
you want to flame people, do it with style, panache, and competence. Your
post wasn't a FAQ, the insults were ill-chosen and inconsistently applied,
and you left the reader with no real reason to prefer you over the target
of your attacks.
(And if you want to assert that I'm really just a sock puppet for some guy
on comp.object, go right ahead.)
-s
--
Copyright 2001, all wrongs reversed. Peter Seebach / seebs@plethora.net
C/Unix wizard, Pro-commerce radical, Spam fighter. Boycott Spamazon!
Consulting & Computers: http://www.plethora.net/
------------------------------
Date: 31 May 2001 22:39:30 GMT
From: seebs@plethora.net (Peter Seebach)
Subject: Re: The FlakeyMind/Bryce Jacobs FAQ (v0.1)
Message-Id: <3b16c822$0$328$3c090ad1@news.plethora.net>
In article <3b1571cf.664433218@nntp.interaccess.com>,
Thaddeus L Olczyk <olczyk@interaccess.com> wrote:
>Technically this is v0.1.1, but I am keeping the same title so that a
>new thread is not started.
... and you didn't remember to thread the references, so you *DID* create
a new thread. You've certainly established your technical competence here.
-s
--
Copyright 2001, all wrongs reversed. Peter Seebach / seebs@plethora.net
C/Unix wizard, Pro-commerce radical, Spam fighter. Boycott Spamazon!
Consulting & Computers: http://www.plethora.net/
------------------------------
Date: 31 May 2001 22:40:55 GMT
From: seebs@plethora.net (Peter Seebach)
Subject: Re: The FlakeyMind/Bryce Jacobs FAQ (v0.1)
Message-Id: <3b16c876$0$328$3c090ad1@news.plethora.net>
In article <slrn9h95q2.epd.mgjv@verbruggen.comdyn.com.au>,
Martien Verbruggen <mgjv@tradingpost.com.au> wrote:
>If so, please don't crosspost to clp.misc anymore. The fact that
>topmind used to post here in the past doesn't make any of the post
>very topical, and to be frank, we've got our own trolls to deal with
>here.
And if we didn't, you think we'd take crap like this? Hell, no. We'd
crosspost to alt.religion.kibology and say things like
I need to write a rendering program which can display something
that looks like durian smells. Should I use perl or python?
-s
--
Copyright 2001, all wrongs reversed. Peter Seebach / seebs@plethora.net
C/Unix wizard, Pro-commerce radical, Spam fighter. Boycott Spamazon!
Consulting & Computers: http://www.plethora.net/
------------------------------
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.
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 1032
***************************************