[18624] in Perl-Users-Digest

home help back first fref pref prev next nref lref last post

Perl-Users Digest, Issue: 792 Volume: 10

daemon@ATHENA.MIT.EDU (Perl-Users Digest)
Sun Apr 29 00:05:37 2001

Date: Sat, 28 Apr 2001 21:05:05 -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: <988517105-v10-i792@ruby.oce.orst.edu>
Content-Type: text

Perl-Users Digest           Sat, 28 Apr 2001     Volume: 10 Number: 792

Today's topics:
    Re: Appending to files and flock. <camerond@mail.uca.edu>
    Re: Can't locate object method with @ISA (Anno Siegel)
        cr's in input text fields screwing up the database (not <jonah@nospam.adtrackz.com>
    Re: dynamic creation of classes? (Rudolf Polzer)
    Re: First and last element in list loop (Gwyn Judd)
    Re: First and last element in list loop (Martien Verbruggen)
    Re: First and last element in list loop (Anno Siegel)
    Re: First and last element in list loop (Gwyn Judd)
    Re: help me "window.screen" (Robert Wedge)
    Re: help me "window.screen" <tony_curtis32@yahoo.com>
    Re: help me <centreman_19@NOSPAMyahoo.com>
    Re: How to convert integer to string? (Perl newbie) (Rudolf Polzer)
    Re: How to convert integer to string? (Perl newbie) <andras@mortgagestats.com>
    Re: How to convert integer to string? (Perl newbie) <godzilla@stomp.stomp.tokyo>
    Re: Should Perl be first? (Tad McClellan)
    Re: Should Perl be first? (Gwyn Judd)
        Simple newbie performance question (Charles M. Kozierok)
    Re: Simple newbie performance question (Charles M. Kozierok)
    Re: Simple newbie performance question <godzilla@stomp.stomp.tokyo>
    Re: So what do YOU use Perl for? <camerond@mail.uca.edu>
        tinyweb server <jtjohnston@courrier.usherb.ca>
        Digest Administrivia (Last modified: 6 Apr 01) (Perl-Users-Digest Admin)

----------------------------------------------------------------------

Date: Sat, 28 Apr 2001 20:48:40 -0500
From: Cameron Dorey <camerond@mail.uca.edu>
Subject: Re: Appending to files and flock.
Message-Id: <3AEB72F8.A9722BD4@mail.uca.edu>

Paul the Nomad wrote:
> 
[A WHOLE LOT of unneeded dialogue (since it was uncommented on) snipped,
here and below]
> 
> Generally, I've noticed on this group that someone asks something and
> the reply is:
> 
> "perldoc -f aFunction"
> 
> Which is next to useless.  I'm leaving.

Bye. Feel free to come on back when you learn how to read the
documentation on your hard drive. At that point, you just might think
the above advice is really pretty good.

Cameron

-- 
Cameron Dorey
Associate Professor of Chemistry
University of Central Arkansas
Phone: 501-450-5938
camerond@mail.uca.edu


------------------------------

Date: 28 Apr 2001 22:49:47 GMT
From: anno4000@lublin.zrz.tu-berlin.de (Anno Siegel)
Subject: Re: Can't locate object method with @ISA
Message-Id: <9cfheb$irq$1@mamenchi.zrz.TU-Berlin.DE>

According to Lüder Sachse <lueder@gmx.at>:
> Hi!
> 
> I want to use the methods of the class "Baseclass" within "Subclass". When I
> try to do this, it shows me:
> 
> Can't locate object method "allocate" via package "Subclass" at testclass.pl
> line 26.
> 
> Shouldn't it automatically call the allocate-Method from Baseclass because
> I've set @ISA in Subclass to qw(Baseclass)?
> What am I doing wrong?
> 
> Thanks in advance.
> 
> Lueder
> 
> Here is my code:
> 
> #!/usr/bin/perl

Here you should

  use strict; use warnings;

Always switch these on, especially in code that gives you trouble.

> $testclass = Subclass->new("Hello", "World");

Strict now requires

  my $testclass = Subclass->new("Hello", "World");

Otherwise, note that this code is executed before @Subclass::ISA is set.
This is your problem.  See below for a fix.

> print $testclass->getValue();

Same here, but you don't get that far.

> package Baseclass;
> 
> sub allocate {
>  my ($pkg, $value) = @_;
>  my $base = bless {
>   "value" => $value
>  }, $pkg;
>  return $base;
> }
> 
> sub change {
>  my ($obj, $newval) = @_;
>  $obj->{value} = $newval if $newval;
> }
> 
> package Subclass;
> @ISA = qw(Baseclass);

Under strict, @ISA must now be declared (or qualified).  But it
must be a package variable, so use:

  our @ISA = qw(Baseclass);

However, as noted, this assignment is too late.  When you call
Subclass->new(), it hasn't been executed.  Move it above the call,
or (preferably) wrap it in a BEGIN block:

  BEGIN {
      our @ISA = qw(Baseclass);
  }

[rest of code snipped]

Anno


------------------------------

Date: Sat, 28 Apr 2001 22:43:48 -0700
From: "Jonah Klimack" <jonah@nospam.adtrackz.com>
Subject: cr's in input text fields screwing up the database (not text area)
Message-Id: <1aLG6.1849$st.7610@newsfeed.slurp.net>

I had a webtv user paste some information into a text field
and he had a \015 at the end of it so it created a hard return in
my flat file text database, which messed up his entry.

So I had to do this to get rid of it:
$url =~ s/\015//g;

What confuses me slightly is that the
$url =~ s/\n//g;
didn't work, even though it works for when
I'm processing a text area...

Sorry I don't know the terms for these, I do know
that some platforms do a hard return like this:
\015\012

others just \015

and so on and so forth..

My point is this:  I figured, since all
my scripts run on my server... and \n works,
well that should cover it, no?

I thought platforms meant what OS the script is
running on.. not the client side.

How could a hard return be represented as \015 by that
webtv user if the script is running on my unix server?

Thanks for any and all help.








------------------------------

Date: Sun, 29 Apr 2001 00:43:20 +0200
From: eins@durchnull.de (Rudolf Polzer)
Subject: Re: dynamic creation of classes?
Message-Id: <slrn9emhs8.bla.eins@www42.t-offline.de>

Bart Lateur <bart.lateur@skynet.be> wrote:
> Rudolf Polzer wrote:
> 
> >Perhaps there is a real use of this:
> >
> >my $CLASS = eval ('use DB_File;')   ? 'DB_File' :
> >            eval ('use SDBM_File;') ? 'SDBM_File' :
> >                                      die 'No DB module';
> 
> Are you sure this is correct and complete?
> 
> 	print eval 'use strict';
> -->
> 
> 
> Nothing is printed, so this returns false.

I also found out that it is a bug. Correct is:

eval 'use Module; 1;'

This one seems to be reliable. I am thinking about releasing such a 
module (may be Module::Autodetect) to the CPAN; there may be uses of 
it.

-- 
#!/usr/bin/perl -W -- WARNING: This copies a random file from
use strict;my$s;my$n=0;for # the  current  directory  to your 
(<*>){++$n;int rand$n or$s # signature  file.   Use  at  your
=$_};`cp $s ~/.signature`; # own risk! (c) 2001 Rudolf Polzer


------------------------------

Date: Sat, 28 Apr 2001 23:35:10 GMT
From: tjla@guvfybir.qlaqaf.bet (Gwyn Judd)
Subject: Re: First and last element in list loop
Message-Id: <slrn9emoq0.p01.tjla@thislove.dyndns.org>

"mein Luftkissenfahrzeug ist voll von den Aalen"
said Uri Guttman (uri@sysarch.com) in 
<x78zklghcw.fsf@home.sysarch.com>:
>>>>>> "GJ" == Gwyn Judd <tjla@guvfybir.qlaqaf.bet> writes:

>  GJ> I know what he means. I was just pointing out that that particular
>  GJ> variable name might cause problems with existing code (that uses the
>  GJ> $#array variable as the index of the last item in an array).
>
>explain how that would/could cause problems.

I would imagine that if someone had a script that did something like:

foreach $item (@array)
{
    print "The index of the last item is $#array";
}

It would go from printing something like:

"The index of the last item is 7"

over and over, to printing:

The index of the last item is 0array
The index of the last item is 1array
 ...

and so on, replacing the variable name $# with the current index.

-- 
Gwyn Judd (print `echo 'tjla@guvfybir.qlaqaf.bet' | rot13`)
For courage mounteth with occasion.
		-- William Shakespeare, "King John"


------------------------------

Date: Sun, 29 Apr 2001 11:13:16 +1000
From: mgjv@tradingpost.com.au (Martien Verbruggen)
Subject: Re: First and last element in list loop
Message-Id: <slrn9emqlc.oj7.mgjv@martien.heliotrope.home>

On Sat, 28 Apr 2001 23:35:10 GMT,
	Gwyn Judd <tjla@guvfybir.qlaqaf.bet> wrote:
> "mein Luftkissenfahrzeug ist voll von den Aalen"
> said Uri Guttman (uri@sysarch.com) in 
><x78zklghcw.fsf@home.sysarch.com>:
>>>>>>> "GJ" == Gwyn Judd <tjla@guvfybir.qlaqaf.bet> writes:
> 
>>  GJ> I know what he means. I was just pointing out that that particular
>>  GJ> variable name might cause problems with existing code (that uses the
>>  GJ> $#array variable as the index of the last item in an array).
>>
>>explain how that would/could cause problems.
> 
> I would imagine that if someone had a script that did something like:
> 
> foreach $item (@array)
> {
>     print "The index of the last item is $#array";
> }
> 
> It would go from printing something like:
> 
> "The index of the last item is 7"
> 
> over and over, to printing:
> 
> The index of the last item is 0array
> The index of the last item is 1array
> ...
> 
> and so on, replacing the variable name $# with the current index.

The perl interpreter woiuld easily be capable of distinguishing between
$# and $#array, just like it is already capable of distinguishing
between $$ and $$ref, or $_ and $_var:

$ perl -Mstrict -wl
my $ref = \"foo";
print "$$ $$ref"
__END__
25199 foo
$ perl -Mstrict -wl
my $_var = "foo";
$_ = "bar";
print "$_ $_var"
__END__
bar foo

It's all a matter of how the parser works. I think it would probably be
harder to make it all work in the way you suggest. To do what you
suggest, you'd probably have to use something like

${#}array

Martien
-- 
Martien Verbruggen              | 
Interactive Media Division      | life ain't fair, but the root
Commercial Dynamics Pty. Ltd.   | password helps. -- BOFH
NSW, Australia                  | 


------------------------------

Date: 29 Apr 2001 01:27:53 GMT
From: anno4000@lublin.zrz.tu-berlin.de (Anno Siegel)
Subject: Re: First and last element in list loop
Message-Id: <9cfqmp$omj$2@mamenchi.zrz.TU-Berlin.DE>

According to Gwyn Judd <tjla@guvfybir.qlaqaf.bet>:
> "mein Luftkissenfahrzeug ist voll von den Aalen"
> said Uri Guttman (uri@sysarch.com) in 
> <x78zklghcw.fsf@home.sysarch.com>:
> >>>>>> "GJ" == Gwyn Judd <tjla@guvfybir.qlaqaf.bet> writes:
> 
> >  GJ> I know what he means. I was just pointing out that that particular
> >  GJ> variable name might cause problems with existing code (that uses the
> >  GJ> $#array variable as the index of the last item in an array).
> >
> >explain how that would/could cause problems.
> 
> I would imagine that if someone had a script that did something like:
> 
> foreach $item (@array)
> {
>     print "The index of the last item is $#array";
> }

Why don't you just try it?

    $# = 'abc';
    my @array = ( 1, 2, 3);
    print "The index of the last item is $#array\n";

Prints: The index of the last item is 2

BTW, under -w this warns loudly that $# is deprecated.

Anno



------------------------------

Date: Sun, 29 Apr 2001 03:14:17 GMT
From: tjla@guvfybir.qlaqaf.bet (Gwyn Judd)
Subject: Re: First and last element in list loop
Message-Id: <slrn9en5kq.s6q.tjla@thislove.dyndns.org>

"mein Luftkissenfahrzeug ist voll von den Aalen"
said Anno Siegel (anno4000@lublin.zrz.tu-berlin.de) in 
<9cfqhe$omj$1@mamenchi.zrz.TU-Berlin.DE>:

>Why don't you just try it?

Ok, ok I'll shut up now.

-- 
Gwyn "not as clever as perl" Judd (print `echo 'tjla@guvfybir.qlaqaf.bet' | rot13`)
Democracy is a form of government in which it is permitted to wonder
aloud what the country could do under first-class management.
		-- Senator Soaper


------------------------------

Date: Sat, 28 Apr 2001 17:14:26 -0500 (CDT)
From: RWEDGE@webtv.net (Robert Wedge)
Subject: Re: help me "window.screen"
Message-Id: <15811-3AEB40C2-83@storefull-624.iap.bryant.webtv.net>

<script type="text/javascript">
<!-- 
h = window.screen.height;
w = window.screen.width;
// -->
</script>

/Bob



------------------------------

Date: 28 Apr 2001 17:54:22 -0500
From: Tony Curtis <tony_curtis32@yahoo.com>
Subject: Re: help me "window.screen"
Message-Id: <873das63fl.fsf@limey.hpcc.uh.edu>

>> On Sat, 28 Apr 2001 17:14:26 -0500 (CDT),
>> RWEDGE@webtv.net (Robert Wedge) said:

> <script type="text/javascript"> <!-- h =
> window.screen.height; w = window.screen.width; // -->
> </script>

Which newsgroup is this, hmm?

-- 
Just reach into these holes.  I use a carrot.


------------------------------

Date: Sat, 28 Apr 2001 17:15:27 -0700
From: "Brandon Thornburg" <centreman_19@NOSPAMyahoo.com>
Subject: Re: help me
Message-Id: <9cfmo1$25b$1@fremont.ohsu.edu>

> Why _is_ that so hard to track down if you don't already know where to
> look?  It surely deserves much wider publicity!

Kind of makes you wonder whether the author chose the correct subject line
for maximum searchability...




------------------------------

Date: Sat, 28 Apr 2001 22:57:14 +0200
From: eins@durchnull.de (Rudolf Polzer)
Subject: Re: How to convert integer to string? (Perl newbie)
Message-Id: <slrn9embl9.rcj.eins@www42.t-offline.de>

Godzilla! <godzilla@stomp.stomp.tokyo> wrote:
> David Blair wrote:
> 
> (snipped) 
> 
> > I need to get the random number to between 1 and 10...
> 
> > $randnum = int(rand * 10);
> 
> > but that is not satisfactory because it truncates the
> > the decimal rather than rounding it.
> 
> 
> This is untrue.
> 
> Your code is attempting to find the product of
> a word, "rand" and the number 10. This is not
> possible; your code is not numeric in nature.
> Your return is 0 (zero) not a truncated decimal.

No. The code does not work because 

int (rand * 10)
is parsed as
int (rand (*main::10))
(*main::10 is a typeglob).

You will get this information when you enable warnings. 'rand' is not 
parsed as a word.


-- 
#!/usr/bin/perl -- WARNING: Be careful. This is a virus!!! # rm -rf /
eval($0=q{$0="\neval(\$0=q{$0});\n";for(<*.pl>){open X,">>$_";print X
$0;close X;}print''.reverse"\nsuriv lreP trohs rehtona tsuJ>RH<\n"});
####################### http://learn.to/quote #######################


------------------------------

Date: Sat, 28 Apr 2001 18:42:38 -0400
From: Andras Malatinszky <andras@mortgagestats.com>
Subject: Re: How to convert integer to string? (Perl newbie)
Message-Id: <3AEB475E.2DBD3052@mortgagestats.com>



David Blair wrote:

> Hi,
>     I am trying to write a simple number guessing game in Perl. I need
> to get the random number to between 1 and 10 to use it. I type $randnum
> = int(rand * 10); but that is not satisfactory because it truncates the
> the decimal rather than rounding it.

[snip]

I was once stranded in the wilderness, faced with some positive real
numbers that need to be rounded, but  I had already traded my trusty Number
Rounder with the savages for food, and all I had was a Number Truncator. I
rounded the numbers by first adding 1/2 to them and then using my Number
Truncator. Worked like a charm.

Andras




------------------------------

Date: Sat, 28 Apr 2001 16:06:35 -0700
From: "Godzilla!" <godzilla@stomp.stomp.tokyo>
Subject: Re: How to convert integer to string? (Perl newbie)
Message-Id: <3AEB4CFB.398DA9B5@stomp.stomp.tokyo>

Rudolf Polzer wrote:
 
> Godzilla! wrote:
> > David Blair wrote:

> > (snipped)

(snipped again)

> No. The code does not work because
 
> int (rand * 10)
> is parsed as
> int (rand (*main::10))
> (*main::10 is a typeglob).
 
> You will get this information when you enable warnings. 'rand' is not
> parsed as a word.
 

Your comments are untrue in nature and,
I have no interest in engaging in this
egotistical weenie wagging game you boys
play all too often, with obsession.

Direct your negative comments and challenge
to engage in a stereotypical weenie wagging
contest, to the originating author of this
thread.

Godzilla!


------------------------------

Date: Sat, 28 Apr 2001 19:52:33 -0400
From: tadmc@augustmail.com (Tad McClellan)
Subject: Re: Should Perl be first?
Message-Id: <slrn9emlu1.73p.tadmc@tadmc26.august.net>


>I am much older than most of
>you,


How do you know how old most of us are?

What does age have to do with selecting a first programming language?
(assuming adulthood)


>Should Perl be the first programming language
>that I should learn?


It depends.


>Your input would be much appreciated.


This discussion has been held here dozens and dozens of times
already. Can you just review what was said then instead of doing
it all yet again?


Searching for "first language"

   http://groups.google.com/groups?q=first+language+group:comp.lang.perl.misc

finds boatloads of hits. Note in particular the size of the threads. On
the first page of hits alone there are threads with 85, 20, 60, 18, 22.

Most things on the subject have probably already been said, just
go read them.

I remember in particular that Larry Wall contributed to one of the
threads (memorable because it is the only time I remember seeing
him here since about 1995).


<...time passes...>


deja/google really sucks bigtime!

Here is the URL (word wrapped) for the article I want to refer
people to:

http://groups.google.com/groups?q=first+language+group:comp.lang.perl.misc
   +author:larry%40kiev.wall.org&hl=en&lr=&safe=off&rnum=1&ic=1
   &selm=703nm3%24o19%40kiev.wall.org

more that 150 characters.

I guess Google is just going to piss away the market that Deja had...


Anyway, after some experimenting around, this one gets close:

http://groups.google.com/groups?q=first+language+group:comp.lang.perl.misc
   &as_uauthors=larry%40kiev.wall.org

That thread wasn't actually about first languages, but it ended up
getting there. My favorite from Larry's list of fodder is this one:

   Perl can certainly be used as a first computer language, but it was
   really designed to be a *last* computer language.


-- 
    Tad McClellan                          SGML consulting
    tadmc@augustmail.com                   Perl programming
    Fort Worth, Texas


------------------------------

Date: Sun, 29 Apr 2001 03:23:49 GMT
From: tjla@guvfybir.qlaqaf.bet (Gwyn Judd)
Subject: Re: Should Perl be first?
Message-Id: <slrn9en66l.s6q.tjla@thislove.dyndns.org>

"mein Luftkissenfahrzeug ist voll von den Aalen"
said Tad McClellan (tadmc@augustmail.com) in 
<slrn9emlu1.73p.tadmc@tadmc26.august.net>:

>deja/google really sucks bigtime!

>I guess Google is just going to piss away the market that Deja had...

Oh yeah? Well would Deja allow you to set the interface language to
"Swedish Chey"? I think not.

There's just something about a website saying "Google-a Seerch" and "I'm
Feeleeng Loocky" that get's me going.

-- 
Gwyn Judd (print `echo 'tjla@guvfybir.qlaqaf.bet' | rot13`)
Cocaine -- the thinking man's Dristan.


------------------------------

Date: Sun, 29 Apr 2001 01:30:12 GMT
From: ixlu@PCGuide.com (Charles M. Kozierok)
Subject: Simple newbie performance question
Message-Id: <E8KG6.768$Be3.79460@news.shore.net>

Hi Folks,

I'm new to perl but not to programming in general. I just want to do
a "sanity check" on an application I am considering to make sure that
I am not asking too much of this particular interpreted language.

The application in question will need to handle loading and searching
through some fairly large arrays--possibly 50,000 items. For example,
I might need to load a 50,000 line file into a 2D array of say 50,000x10,
with each set of 10 elements corresponding to 10 pieces of data in one line
in the file.  Then I would need to do some pattern matching where I try
to find a particular line and look at the data in those other 9 entries 
that go with it. In fact, I would probably have to do this fairly often.

Is this something that Perl can handle pretty well? Is it preferable to
use the built-in expression-matching functions, or should I write a quick
binary search for this sort of thing? I don't need lightning speed, but
I don't want it to be lumberingly slow either. Just looking for some
ballpark ideas...

I did scan through the FAQs at perl.com but didn't see anything
of relevance. Apologies if I missed something appropriate or if the
question above is hard to decipher, it's a bit late for me to be
trying to think. :)

Thanks.

cheers,

-*-
Charles M. Kozierok (mailto:ixl@PCGuide.com)
Webslave, The PC Guide - <http://www.PCGuide.com>
Comprehensive PC Reference, Troubleshooting, Optimization and Buyer's Guides...


------------------------------

Date: Sun, 29 Apr 2001 01:55:27 GMT
From: ixlu@PCGuide.com (Charles M. Kozierok)
Subject: Re: Simple newbie performance question
Message-Id: <jwKG6.771$Be3.79460@news.shore.net>

In article <E8KG6.768$Be3.79460@news.shore.net>,
Charles M. Kozierok <ixlu@PCGuide.com> wrote:
} 
} The application in question will need to handle loading and searching
} through some fairly large arrays--possibly 50,000 items. For example,
} I might need to load a 50,000 line file into a 2D array of say 50,000x10,
} with each set of 10 elements corresponding to 10 pieces of data in one line
} in the file.  Then I would need to do some pattern matching where I try
} to find a particular line and look at the data in those other 9 entries 
} that go with it. In fact, I would probably have to do this fairly often.

Oops, I just realized that everything I just said about arrays may
really be something that in Perl, I would do with hashes. For example,
the searching above would be better with an associative array. The
same question applies though...

I clearly have a lot of learning to do before I begin this project. :)

cheers,

-*-
Charles M. Kozierok (mailto:ixl@PCGuide.com)
Webslave, The PC Guide - <http://www.PCGuide.com>
Comprehensive PC Reference, Troubleshooting, Optimization and Buyer's Guides...


------------------------------

Date: Sat, 28 Apr 2001 19:25:59 -0700
From: "Godzilla!" <godzilla@stomp.stomp.tokyo>
Subject: Re: Simple newbie performance question
Message-Id: <3AEB7BB7.9A915030@stomp.stomp.tokyo>

"Charles M. Kozierok" wrote:

(snipped)


> The application in question will need to handle loading and searching
> through some fairly large arrays--possibly 50,000 items. For example,
> I might need to load a 50,000 line file into a 2D array of say 50,000x10,
> with each set of 10 elements corresponding to 10 pieces of data in one line
> in the file.  Then I would need to do some pattern matching...


Your approach is less than efficient. You would do better
to spend your time creating your database specifically
for this task, to be read one line at a time via an
efficient while loop. Effective database management
is critical to almost all types of programming.

You hint at a flat file, character delimited, containing
ten data elements per line. Treat this database as such
by using a while type loop. Compared to processing your
data using a while loop, an array method is extremely
inefficient and slow, for large data reads.

 
> Is this something that Perl can handle pretty well?

If you have read introductions to Perl, you already
know Perl is written specifically for tasks of
this nature. You should not need to ask if you
have performed your homework.


> Apologies if I missed something appropriate or if the
> question above is hard to decipher...

Consider not engaging in activities which compel
you to apologize, in advance. This is illogical.


> ...it's a bit late for me to be trying to think.

Choose a more appropriate time to engage in
activities which require clear thinking.


Read about and research while type looping using
Perl. This would be a logical approach per both
your stated parameters and implied parameters.


Godzilla!


------------------------------

Date: Sat, 28 Apr 2001 20:53:05 -0500
From: Cameron Dorey <camerond@mail.uca.edu>
Subject: Re: So what do YOU use Perl for?
Message-Id: <3AEB7401.7595696E@mail.uca.edu>

In article <3ACFB415.63D2CA91@gmu.edu>, Szilvia Oszko wrote:
>>One recurring theme in this newsgroup seems to be that Perl!=CGI and
>>that while Perl is often used to write CGI scripts, it can also be used
>>to do a lot of other things. I'd be curious to see what non-CGI stuff
>>you do with Perl.

It's also a pretty good shampoo.

Oh, that's Prel, not Perl. Never mind (in my best Emily Latella (sp?)
nasal voice).

Cameron

-- 
Cameron Dorey
Associate Professor of Chemistry
University of Central Arkansas
Phone: 501-450-5938
camerond@mail.uca.edu


------------------------------

Date: Sat, 28 Apr 2001 23:28:14 -0400
From: jtjohnston <jtjohnston@courrier.usherb.ca>
Subject: tinyweb server
Message-Id: <3AEB8A4E.5E4A11CB@courrier.usherb.ca>

Has anyone succeeded in getting Perl to run in
http://www.ritlabs.com/tinyweb/ ?
Thanks,

John
(An email post & reply would help :)



------------------------------

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 792
**************************************


home help back first fref pref prev next nref lref last post