[13166] in Perl-Users-Digest
Perl-Users Digest, Issue: 576 Volume: 9
daemon@ATHENA.MIT.EDU (Perl-Users Digest)
Wed Aug 18 15:07:20 1999
Date: Wed, 18 Aug 1999 12:05:10 -0700 (PDT)
From: Perl-Users Digest <Perl-Users-Request@ruby.OCE.ORST.EDU>
To: Perl-Users@ruby.OCE.ORST.EDU (Perl-Users Digest)
Perl-Users Digest Wed, 18 Aug 1999 Volume: 9 Number: 576
Today's topics:
Re: -T mode and "Too late for "-T" option" <mikecard@my-deja.com>
Re: -T mode and "Too late for "-T" option" (Malcolm Ray)
Re: Insecure dependency message with SGID script (Ronald J Kimball)
Re: Matt's cookielib and Unicode <kperrier@blkbox.com>
Re: Matt's cookielib and Unicode (Jerome O'Neil)
Re: O'Reilly Online Training <elaine@chaos.wustl.edu>
Re: O'Reilly Online Training (brian d foy)
Re: O'Reilly Online Training support@gethits.com
Perl and DBM file questions <groberts@uow.edu.au>
Re: Perl and DBM file questions (Malcolm Ray)
Re: pushing an anonymous hash slice <uri@sysarch.com>
Re: pushing an anonymous hash slice (Greg Bacon)
Re: pushing an anonymous hash slice (Greg Bacon)
Re: regular expression problem... (Ronald J Kimball)
Re: regular expression problem... (Marcel Grunauer)
restoring variables for computation <liber8r@mcs.net>
Re: restoring variables for computation <david@metroplexweb.com>
Re: SNMP module <gmarzot@baynetworks.com>
Re: someone pleae help <kperrier@blkbox.com>
Re: Wacky Programming Tales <bivey@teamdev.com>
Re: Wacky Programming Tales <skip@mojam.com>
What is AVS ? <irishcream@iname.com>
Re: What is AVS ? <irishcream@iname.com>
Re: What is AVS ? (brian d foy)
Will program in exchange for... <hosting400meg@hotmail.com>
Digest Administrivia (Last modified: 1 Jul 99) (Perl-Users-Digest Admin)
----------------------------------------------------------------------
Date: Wed, 18 Aug 1999 17:10:44 GMT
From: mike cardeiro <mikecard@my-deja.com>
Subject: Re: -T mode and "Too late for "-T" option"
Message-Id: <7pepe9$7kq$1@nnrp1.deja.com>
In article <MPG.1221ff36d06407be989e5e@nntp.hpl.hp.com>,
lr@hpl.hp.com (Larry Rosler) wrote:
> Where did you come up with that nonsense? Did you try *anything*
before
> posting it?
i had the exact problem a couple of months ago and this was the advice i
received from this newsgroup. i did try it and it did (appear) to work,
my apologies for passing along wrong info but it was info received
uncontested from this very newsgroup and it did appear to work.
mike cardeiro
Sent via Deja.com http://www.deja.com/
Share what you know. Learn what you don't.
------------------------------
Date: 18 Aug 1999 18:27:25 GMT
From: M.Ray@ulcc.ac.uk (Malcolm Ray)
Subject: Re: -T mode and "Too late for "-T" option"
Message-Id: <slrn7rluod.3pd.M.Ray@carlova.ulcc.ac.uk>
On Wed, 18 Aug 1999 17:10:44 GMT, mike cardeiro <mikecard@my-deja.com> wrote:
>In article <MPG.1221ff36d06407be989e5e@nntp.hpl.hp.com>,
> lr@hpl.hp.com (Larry Rosler) wrote:
>
>> Where did you come up with that nonsense? Did you try *anything*
>before
>> posting it?
>
>
>i had the exact problem a couple of months ago and this was the advice i
>received from this newsgroup. i did try it and it did (appear) to work,
> my apologies for passing along wrong info but it was info received
>uncontested from this very newsgroup and it did appear to work.
I sense a major and potentially dangerous misunderstanding. Observe:
$ cat t1
#!/usr/bin/perl -T
system('date');
__END__
$ perl t1
Too late for "-T" option at t1 line 1.
$ cat t2
#!/usr/bin/perl-T
system('date');
__END__
$ perl t2
Wed Aug 18 19:12:48 BST 1999
Does this mean that removing the space before the flag in t2 has fixed
the problem? No. See:
$ ./t1
Insecure $ENV{PATH} while running with -T switch at ./t1 line 3.
$ ./t2
bash: ./t2: No such file or directory
The -T flag must be passed to the Perl compiler. In the first
two invocations above, no flags are supplied to the compiler on the
command line, but it reads the shebang line itself to figure out what
flags to use. In the first one, it sees the -T flag, and gives the
warning which is explained in perldiag. In the second invocation,
it sees a shebang line which appears to ask for the running of a
program called '/usr/bin/perl-T' without any flags. The fact that the
program name contains the magic string 'perl' is enough to prevent
the compiler handing over to another program (see perlrun for the
slightly counter-intuitive details). Since no flags were supplied,
taint checking isn't used, and it runs the 'date' command from my PATH.
In the third invocation above, the kernel itself (this is on Unix)
arranges to run Perl with the -T flag, so taint checking takes place,
as you can see from the error message (as always, this is explained
in perldiag). In the fourth invocation, the kernel tries to run the
program /usr/bin/perl-T, which doesn't exist.
I searched deja for the bad advice you say you were given, but I can't
find it. I see you asking the question and getting four replies.
One is an explicit pointer to perldiag, one is a request for more
info, one is a clear explanation, and the remaining one is a bit
of (correct) advice. Try as I might, I can't figure out how you
interpreted any of the response the way you did. Did you read the
relevant entry in perldiag? If you found it unclear, can you suggest
a re-wording which removes the difficulty?
--
Malcolm Ray University of London Computer Centre
------------------------------
Date: Wed, 18 Aug 1999 14:04:35 -0400
From: rjk@linguist.dartmouth.edu (Ronald J Kimball)
Subject: Re: Insecure dependency message with SGID script
Message-Id: <1dwqipo.fyi5bjixjs66N@p116.tc19b.metro.ma.tiac.com>
Gregg Palmer <gpalmer@interaccess.com> wrote:
> we're trying to run a setgid script, and getting the following error:
> Insecure dependency in symlink while running setgid at
> /usr/local/bin/linkmail.pl.
> Any ideas/help would be appreciated.
Reading about this error message in the perldiag documentation should
prove enlightening.
--
_ / ' _ / - aka -
( /)//)//)(//)/( Ronald J Kimball rjk@linguist.dartmouth.edu
/ http://www.tiac.net/users/chipmunk/
"It's funny 'cause it's true ... and vice versa."
------------------------------
Date: 18 Aug 1999 12:43:20 -0500
From: Kent Perrier <kperrier@blkbox.com>
Subject: Re: Matt's cookielib and Unicode
Message-Id: <5E7B11E3DA15E040.DED30CA758CE4BBC.3996F5F6BBE5AED6@lp.airnews.net>
Steve <lebed@my-deja.com> writes:
>
> Surely this isn't difficult, but I've only been learning Perl for 2
> days, and you never need to learn languages anyway, you just copy code.
>
Go away, troll. If you don't have the time to learn the language then
no one here has the time to help you.
Kent
------------------------------
Date: 18 Aug 1999 17:42:58 GMT
From: jeromeo@atrieva.com (Jerome O'Neil)
To: Steve <lebed@my-deja.com>
Subject: Re: Matt's cookielib and Unicode
Message-Id: <7perb2$kct$1@brokaw.wa.com>
[Posted and mailed]
Steve <lebed@my-deja.com> writes:
> I've got cookielib from Matt'sScript Archive...
Please, put it back, and use CGI.pm.
> Surely this isn't difficult, but I've only been learning Perl for 2
> days, and you never need to learn languages anyway, you just copy code.
Ummm. You should learn this, however: If it has "Matt's Script Archive"
or "Solena Sol" attached to it, it's probably broken, defective, ineficient,
insecure or some combination of the above.
If you never need to learn languages, you should instead hire someone who
does.
--
Jerome O'Neil, Operations and Information Services
Atrieva Corporation, 600 University St., Ste. 911, Seattle, WA 98101
jeromeo@atrieva.com - Voice:206/749-2947
The Atrieva Service: Safe and Easy Online Backup http://www.i-filezone.com
------------------------------
Date: Wed, 18 Aug 1999 13:11:51 -0400
From: Elaine -HFB- Ashton <elaine@chaos.wustl.edu>
Subject: Re: O'Reilly Online Training
Message-Id: <37BAE92A.42A80B34@chaos.wustl.edu>
support@gethits.com wrote:
> Attn. Randall Schwartz and Tom Christian: the net needs some
> serious online perl courses. Mr. Schwartz: I would love to take
> you "PROM" course, but Portland is a bit of a commute! I
> would gladly push $249 your way for an instructor interactive
> course.
a.k.a. Randal Schwartz and Tom Christiansen :)
I wonder why there isn't more use of videoconferencing technology in
training. Is the cost prohibitive still? We used it at BBN and I thought
it was terrific. I believe this genre is called 'distance learning' in
the trade.
And the net already has a whole slew of Perl docs and such for free.
http://www.perl.com is a excellent place to start.
Also, I do believe Randal, Tom, Joseph, et al, offer open classes as
well as on-site training.
e.
------------------------------
Date: Wed, 18 Aug 1999 13:59:47 -0400
From: brian@pm.org (brian d foy)
Subject: Re: O'Reilly Online Training
Message-Id: <brian-1808991359470001@173.new-york-50-55rs.ny.dial-access.att.net>
In article <37BAE0DC.70BFCEAE@gethits.com>, support@gethits.com wrote:
>Attn. Randall Schwartz and Tom Christian: the net needs some
Err, Randal, and Christiansen
>serious online perl courses. Mr. Schwartz: I would love to take
>you "PROM" course, but Portland is a bit of a commute! I
both of these companies do open training sessions if there is
sufficient interest in an area. there is also perltraining.com.
see who is in your area.
each company has contact information on their web pages.
>would gladly push $249 your way for an instructor interactive
>course.
from a small training company the cost would be a lot more than
that. O'Reilly can offer inexpensive courses because they are
a big company. you might consider giving O'Reilly feedback on
their courseware as well.
--
brian d foy
------------------------------
Date: Wed, 18 Aug 1999 18:00:54 GMT
From: support@gethits.com
Subject: Re: O'Reilly Online Training
Message-Id: <37BAF677.1DEB839F@gethits.com>
brian d foy wrote:
> >Attn. Randall Schwartz and Tom Christian: the net needs some
>
> Err, Randal, and Christiansen
Thanks, I realized that after the post as well.
Darryl.
------------------------------
Date: Thu, 19 Aug 1999 03:10:05 +1000
From: Geoff Roberts <groberts@uow.edu.au>
Subject: Perl and DBM file questions
Message-Id: <37BAE8ED.84EBB983@uow.edu.au>
Hi,
I would like to have a DBM file that has fixed sized records - these
will simply be indexed by their record number (no sorting or
anything). Each record would be around the 1/2k mark in size.
Records will need to be added and deleted.
Would Perl's DBM files be able to handle around 300,000 to 500,000 of
these records? How will perl deal with accessing records - I'm just
concerned about memory. If I get perl to retrieve record 200,000 does
perl simply go to that record directly and retrieve it, or does it need
to load much more into memory to access that record.
Are there good examples on DBM files of this size and how to use them
efficiently?
Thanks for any help
Geoff
------------------------------
Date: 18 Aug 1999 18:52:33 GMT
From: M.Ray@ulcc.ac.uk (Malcolm Ray)
Subject: Re: Perl and DBM file questions
Message-Id: <slrn7rm07h.44c.M.Ray@carlova.ulcc.ac.uk>
On Thu, 19 Aug 1999 03:10:05 +1000, Geoff Roberts <groberts@uow.edu.au> wrote:
>Hi,
>
> I would like to have a DBM file that has fixed sized records - these
>will simply be indexed by their record number (no sorting or
>anything). Each record would be around the 1/2k mark in size.
>Records will need to be added and deleted.
>
> Would Perl's DBM files be able to handle around 300,000 to 500,000 of
>these records? How will perl deal with accessing records - I'm just
>concerned about memory. If I get perl to retrieve record 200,000 does
>perl simply go to that record directly and retrieve it, or does it need
>to load much more into memory to access that record.
>
> Are there good examples on DBM files of this size and how to use them
>efficiently?
>
> Thanks for any help
This sounds like it may be a good application for a tied array rather than
a hash, using DB_File's DB_RECNO interface method. If you have DB_File,
see its documentation: it includes an example of using DB_RECNO.
--
Malcolm Ray University of London Computer Centre
------------------------------
Date: 18 Aug 1999 13:26:39 -0400
From: Uri Guttman <uri@sysarch.com>
Subject: Re: pushing an anonymous hash slice
Message-Id: <x77lmtyp80.fsf@home.sysarch.com>
>>>>> "BM" == Bill Moseley <moseley@best.com> writes:
BM> my %h;
BM> @h{ qw/rank file title group/ } = ( split /\t/ )[0,1,2,5];
BM> push @results, \%h;
BM> How do I write without using a temporary hash?
no easy way that i know of. the problem is you have to create the
key/value pairings. an anon hash can't do that directly unless you merge
the name list with the value list and that is more code. this is
simpler.
i remember a thread a while back where something like this was done and
even randal used a named hash. creating an array of hashes from just
rows of value data can't be compressed much more that that.
if perl had some wacko operator that alternated values of two lists it
could be done like this:
push @results, { alternate( [ qw( rank file title group ) ],
[ (split /\t/ )[0,1,2,5] ] ) } ;
but that is pretty ugly and needs anon arrays to separate the lists
which is wasted overhead. so one of the issues is how to you mark with
syntax two lists as being related. so the named hash starts to look optimal.
and make sure the my %h is inside the loop so it get reallocated each
time through.
uri
--
Uri Guttman ----------------- SYStems ARCHitecture and Software Engineering
uri@sysarch.com --------------------------- Perl, Internet, UNIX Consulting
Have Perl, Will Travel ----------------------------- http://www.sysarch.com
The Best Search Engine on the Net ------------- http://www.northernlight.com
"F**king Windows 98", said the general in South Park before shooting Bill.
------------------------------
Date: 18 Aug 1999 17:31:47 GMT
From: gbacon@itsc.uah.edu (Greg Bacon)
Subject: Re: pushing an anonymous hash slice
Message-Id: <7peqm3$kdi$1@info2.uah.edu>
In article <MPG.12247b6c9ee651b09896c2@nntp1.ba.best.com>,
moseley@best.com (Bill Moseley) writes:
: my %h;
: @h{ qw/rank file title group/ } = ( split /\t/ )[0,1,2,5];
: push @results, \%h;
:
: How do I write without using a temporary hash?
You can do it, but you wouldn't want to:
push @results, { rank => (split /\t/)[0], file => (split /\t/)[1],
title => (split /\t/)[2], group => (split /\t/)[5] };
You did say "without using a temporary hash", so
my @f = split /\t/;
push @results, { rank => $f[0], file => $f[1],
title => $f[2], group => $f[5] };
or
my @keys;
@keys[0,1,2,5] = qw( rank file title group );
my @f = split /\t/;
push @results, { map { ($keys[$_], $f[$_]) } 0, 1, 2, 5 };
would work too.
What's so bad about the temporary hash?
Greg
--
Reality is only an illusion, albeit a very persistent one.
-- Albert Einstein
------------------------------
Date: 18 Aug 1999 19:04:00 GMT
From: gbacon@itsc.uah.edu (Greg Bacon)
Subject: Re: pushing an anonymous hash slice
Message-Id: <7pf030$lgc$1@info2.uah.edu>
In article <x77lmtyp80.fsf@home.sysarch.com>,
Uri Guttman <uri@sysarch.com> writes:
: push @results, { alternate( [ qw( rank file title group ) ],
: [ (split /\t/ )[0,1,2,5] ] ) } ;
sub interleave {
my($a1,$a2) = @_;
my @result;
while (@$a1 || @$a2) {
push @result, shift @$a1 if @$a1;
push @result, shift @$a2 if @$a2;
}
@result;
}
push @results, { interleave [ qw/ rank file title group / ],
[ (split /\t/)[0,1,2,5] ] };
Greg
--
As a general rule, don't solve puzzles that open portals to Hell.
-- Ralph Mason
------------------------------
Date: Wed, 18 Aug 1999 14:04:37 -0400
From: rjk@linguist.dartmouth.edu (Ronald J Kimball)
Subject: Re: regular expression problem...
Message-Id: <1dwqjgc.1c7rha41k33l71N@p116.tc19b.metro.ma.tiac.com>
<perl_beginner@my-deja.com> wrote:
> I want to use RE to substitude a series of space at the start of the
> line into a series of ' '
>
> something like s/^( +)/ {#of space match}/g
How about:
pos($_) = 0;
s/\G / /g;
--
_ / ' _ / - aka -
( /)//)//)(//)/( Ronald J Kimball rjk@linguist.dartmouth.edu
/ http://www.tiac.net/users/chipmunk/
"It's funny 'cause it's true ... and vice versa."
------------------------------
Date: Wed, 18 Aug 1999 18:14:23 GMT
From: marcel.grunauer@lovely.net (Marcel Grunauer)
Subject: Re: regular expression problem...
Message-Id: <37cb05c5.32143990@news>
On Wed, 18 Aug 1999 14:04:37 -0400, rjk@linguist.dartmouth.edu (Ronald
J Kimball) wrote:
><perl_beginner@my-deja.com> wrote:
>
>> I want to use RE to substitude a series of space at the start of the
>> line into a series of ' '
>>
>> something like s/^( +)/ {#of space match}/g
>
>How about:
>
>pos($_) = 0;
>s/\G / /g;
Or
s/^( +)/' ' x length $1/e;
Marcel
--
perl -e 'print unpack(q$u$,q$82G5S="!!;F]T:&5R(%!E<FP@2&%C:V5R$)'
------------------------------
Date: Wed, 18 Aug 1999 11:24:38 -0500
From: "liberator.net" <liber8r@mcs.net>
Subject: restoring variables for computation
Message-Id: <7pen0u$36m$1@Nntp1.mcs.net>
I'm having trouble restoring values from previous cgi runs and making them
available for computation.
I have figured out that textfield names are restorable with the
'import_names()' command. However, I can't seem to figure out how to
restore variables. If I construct $a, how do I recall it on the second pass
of the same script? Can I also use these restored variables to do
computation?
[I'm trying to build a quizmaster for adding signed Integers. I can get
everything looking nice but I can't seem to check the answers for
correctness nor can I report it to the user on the second pass through the
script.]
Any help on this would be greatly appreciated. All the online help-forms
and faqs say absolutely nothing about reporting variables and computing with
variables on the second pass.]
--
The Liberator
E-Mail: news@liberator.net
Web Site: http://www.liberator.net/
------------------------------
Date: Wed, 18 Aug 1999 13:46:36 -0500
From: David Heinemann <david@metroplexweb.com>
Subject: Re: restoring variables for computation
Message-Id: <21BF3060903E134A.27DA6A92F267524D.2D27CFC894FE2945@lp.airnews.net>
You just pass hidden form fields with that information and assign that value to
a variable. You set it up like this.
if $in{'formfield'} {$var =$in{'formfield'} }
else {$var = "text or number"}
This assigns the value of the form field whether it be text, hidden or whatever
to the variable "$var" - if there is no form field defined (as in the first
run), then it assigns a value to it.
"liberator.net" wrote:
> I'm having trouble restoring values from previous cgi runs and making them
> available for computation.
>
> I have figured out that textfield names are restorable with the
> 'import_names()' command. However, I can't seem to figure out how to
> restore variables. If I construct $a, how do I recall it on the second pass
> of the same script? Can I also use these restored variables to do
> computation?
>
> [I'm trying to build a quizmaster for adding signed Integers. I can get
> everything looking nice but I can't seem to check the answers for
> correctness nor can I report it to the user on the second pass through the
> script.]
>
> Any help on this would be greatly appreciated. All the online help-forms
> and faqs say absolutely nothing about reporting variables and computing with
> variables on the second pass.]
>
> --
> The Liberator
>
> E-Mail: news@liberator.net
> Web Site: http://www.liberator.net/
--
____________________________________________
Dave Heinemann
Webmaster/Programmer
Metroplex Web (http://www.metroplexweb.com)
Phone: 972-503-8984
Fax: 972-503-8960
____________________________________________
------------------------------
Date: 18 Aug 1999 14:21:05 -0400
From: Joe Marzot <gmarzot@baynetworks.com>
Subject: Re: SNMP module
Message-Id: <pd1zd1c5m6.fsf@baynetworks.com>
senthilr@email.com writes:
> Hi:
>
> I was trying to install SNMP v1.8.1. When I do 'make test' I get these:
>
> Bad operator(DEFINITIONS): At line 1 in
> /usr/local/share/snmp/mibs/IF-MIB.txt
> Bad operator(DEFINITIONS): At line 1 in
> /usr/local/share/snmp/mibs/TCP-MIB.txt
> Bad operator(DEFINITIONS): At line 1 in
> /usr/local/share/snmp/mibs/UDP-MIB.txt
> Bad operator(DEFINITIONS): At line 1 in
> /usr/local/share/snmp/mibs/SNMPv2-MIB.txt
> Bad operator(DEFINITIONS): At line 1 in
> /usr/local/share/snmp/mibs/RFC1213-MIB.txt
>
> ....
>
>
> Any ideas..
>
I have seen this error reported before but I have not heard the
resolution to it.
FWIW, I am using SNMP-1.8.1 with ucd-snmp-3.6.2 w/ perl5.004_05 and
5.005_03 on linux, Solaris, and win32.
Can you give more details about your setup, versions etc.
I would very much like to solve this (got me curious).
in general it is very easy to make and install the ucd-snmp toolkit
which is highly portable and full featured. The benefits of being able
to parse the mib and use the symbolic names from the mib in your perl
code are obvious - not to mention the performance benefit over all-perl
solutions.
good luck, GSM
> Thanks,
> ..Senthil.
>
>
> Sent via Deja.com http://www.deja.com/
> Share what you know. Learn what you don't.
--
G.S. Marzot email: gmarzot@nortelnetworks.com
Nortel Networks voice: (978)916-3990
600 Tech Park M/S BL60-101 pager: (800)409-6080 (4096080@skytel.com)
Billerica, MA 01821 fax: (978)670-8145
------------------------------
Date: 18 Aug 1999 12:51:03 -0500
From: Kent Perrier <kperrier@blkbox.com>
Subject: Re: someone pleae help
Message-Id: <265AC060E2C7FC70.B0E551D890C49B13.34BAB52DBE9B2226@lp.airnews.net>
Carlos Cerna <cerna@cig.mot.com> writes:
>
> Guys I have never wrote a perl script I know a bit about html.My problem
> is that I need a script that would read a html page that contains a
> table (html generated) and allow me to change 6 text fields and write
> the changes back to the file.While on line,of course the script need to
> generate a form and ask the user to enter the page to be updated/change
> eg:1d.html.Then have 6 text fields to change.
>
> Any help would greatly be appreciated.
Hire a programmer.
------------------------------
Date: 18 Aug 1999 17:38:23 GMT
From: "William" <bivey@teamdev.com>
Subject: Re: Wacky Programming Tales
Message-Id: <01bee9a0$30018e00$583c08cf@bill.jump.net>
Patrick Bogaart <bogw@geo.vu.nl> wrote in article
<37BAE44B.E66250BD@geo.vu.nl>...
> Yes I can:
>
> i = 0;
> label_1:;
> /* some use of i */
> i = i + 1;
> if (i==max_index) goto label_2;
> goto label_1;
> label_2:;
>
> <wink>
I found this last week:
if ( something )
{
}
else
{
A process that sets the success variable
if (! success )
goto Error;
}
Error:
Note that there was nothing between the goto and and the label
except the end of the else clause. -Wm
------------------------------
Date: Wed, 18 Aug 1999 12:42:53 -0500 (CDT)
From: Skip Montanaro <skip@mojam.com>
To: "William" <bivey@teamdev.com>
Subject: Re: Wacky Programming Tales
Message-Id: <14266.61569.441849.181455@dolphin.mojam.com>
William> if ( something )
William> {
William> }
William> else
William> {
William> A process that sets the success variable
William> if (! success )
William> goto Error;
William> }
William> Error:
William> Note that there was nothing between the goto and and the label
William> except the end of the else clause. -Wm
Planning ahead, no doubt. ;-)
Skip Montanaro | http://www.mojam.com/
skip@mojam.com | http://www.musi-cal.com/~skip/
847-971-7098
------------------------------
Date: Wed, 18 Aug 1999 19:40:51 +0200
From: "John Steer" <irishcream@iname.com>
Subject: What is AVS ?
Message-Id: <7perno$5i2$1@wanadoo.fr>
Hello,
Could anybody point me to a site where I can find
information about AVS ?(Address Verification System)
Or tell me few information about how to implement it ?
(in Perl of course)
Thank you very much
John
------------------------------
Date: Wed, 18 Aug 1999 19:41:35 +0200
From: "John Steer" <irishcream@iname.com>
Subject: Re: What is AVS ?
Message-Id: <7perpe$5j2$1@wanadoo.fr>
Sorry, I wanted information about AGE verification system ...
John Steer <irishcream@iname.com> wrote in message news:...
> Hello,
>
> Could anybody point me to a site where I can find
> information about AVS ?(Address Verification System)
> Or tell me few information about how to implement it ?
> (in Perl of course)
>
> Thank you very much
>
> John
>
>
------------------------------
Date: Wed, 18 Aug 1999 14:09:04 -0400
From: brian@pm.org (brian d foy)
Subject: Re: What is AVS ?
Message-Id: <brian-1808991409040001@173.new-york-50-55rs.ny.dial-access.att.net>
In article <7perno$5i2$1@wanadoo.fr>, "John Steer" <irishcream@iname.com> wrote:
>Could anybody point me to a site where I can find
>information about AVS ?(Address Verification System)
>Or tell me few information about how to implement it ?
>(in Perl of course)
AVS is used by financial institutions to aid in verifying
credit card transactions. implementing it depends on the
particular (financial institution) processor that you will
use. Cybercash, for instance, has a Perl API with this
stuff built in, although other vendors might do it differently.
--
brian d foy
------------------------------
Date: Wed, 18 Aug 1999 11:18:24 -0700
From: 400 Meg Hosting <hosting400meg@hotmail.com>
Subject: Will program in exchange for...
Message-Id: <00091c0e.923dd642@usw-ex0106-042.remarq.com>
Hi All,
I'll do:
Web Development:
Web Design
Graphics Design
Perl Programming (CGI stuff)
Or VB Programming for you.
In exchange for a Sony Mavica camera or a Computer (or $).
Web Site references available upon request.
MUST REPLY TO 400meghosting@hotmail.com
BTW, also email me if interested in 400 meg hosting for
$50/month
* Sent from RemarQ http://www.remarq.com The Internet's Discussion Network *
The fastest and easiest way to search and participate in Usenet - Free!
------------------------------
Date: 1 Jul 99 21:33:47 GMT (Last modified)
From: Perl-Users-Request@ruby.oce.orst.edu (Perl-Users-Digest Admin)
Subject: Digest Administrivia (Last modified: 1 Jul 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.
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" from
almanac@ruby.oce.orst.edu. The real FAQ, as it appeared last in the
newsgroup, can be retrieved with the request "send perl-users FAQ" from
almanac@ruby.oce.orst.edu. 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" from
almanac@ruby.oce.orst.edu.
For other requests pertaining to the digest, send mail to
perl-users-request@ruby.oce.orst.edu. Do not waste your time or mine
sending perl questions to the -request address, I don't have time to
answer them even if I did know the answer.
------------------------------
End of Perl-Users Digest V9 Issue 576
*************************************