[12924] in Perl-Users-Digest

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

Perl-Users Digest, Issue: 334 Volume: 9

daemon@ATHENA.MIT.EDU (Perl-Users Digest)
Mon Aug 2 12:17:20 1999

Date: Mon, 2 Aug 1999 09:10:15 -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           Mon, 2 Aug 1999     Volume: 9 Number: 334

Today's topics:
    Re: Looking for a Regular Expression to do an exact mat (Andreas Fehr)
    Re: Looking for a Regular Expression to do an exact mat (Abigail)
    Re: Looking for a Regular Expression to do an exact mat <mamster@mamster.net>
    Re: Looking for a Regular Expression to do an exact mat (Abigail)
    Re: Looking for a Regular Expression to do an exact mat <aperrin@mcmahon.qal.berkeley.edu>
    Re: Looking for a Regular Expression to do an exact mat <tchrist@mox.perl.com>
    Re: Paasing Arguments to System Function (Tad McClellan)
    Re: paging text <johnp@vcimail.com.remove.me>
    Re: parallel processing in perl (Abigail)
    Re: passing command-line arguments to script ! (Anno Siegel)
    Re: passing command-line arguments to script ! (PaulK)
    Re: passing command-line arguments to script ! (Abigail)
    Re: passing command-line arguments to script ! (Anno Siegel)
    Re: perl code can't work (Tad McClellan)
        perl Upload Triggering <nigh_postal@my-deja.com>
    Re: perl Upload Triggering (Abigail)
    Re: RegExp: Searching all items of an array <jwilson@theideapeople.com>
        string comparision ( newbie ) <heather.wiley@bentley.com>
    Re: why are you so harsh to this guy ? <uri@sysarch.com>
        Y2K in Washington (Was: Re: print "Location: http://... (Larry Rosler)
        Digest Administrivia (Last modified: 1 Jul 99) (Perl-Users-Digest Admin)

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

Date: Mon, 02 Aug 1999 14:21:04 GMT
From: backwards.saerdna@srm.hc (Andreas Fehr)
Subject: Re: Looking for a Regular Expression to do an exact match case   indepenent
Message-Id: <37a5a916.32380670@news.uniplus.ch>

On Mon, 02 Aug 1999 15:13:32 +0200, Alex Farber
<eedalf@eed.ericsson.se> wrote:

>Hi Keith,
>
>Keith S wrote:
>> Does anyone know how "regular expression" that matches either upper or
>>  lower case letter strings and does not use the "/i" option ???
>
>/[a-zA-Z]/
>

And how should that match 'computer administration' ?

Andreas


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

Date: 2 Aug 1999 10:32:10 -0500
From: abigail@delanet.com (Abigail)
Subject: Re: Looking for a Regular Expression to do an exact match case   indepenent
Message-Id: <slrn7qbeeo.r33.abigail@alexandra.delanet.com>

Andreas Fehr (backwards.saerdna@srm.hc) wrote on MMCLXII September
MCMXCIII in <URL:news:37a5a916.32380670@news.uniplus.ch>:
** On Mon, 02 Aug 1999 15:13:32 +0200, Alex Farber
** <eedalf@eed.ericsson.se> wrote:
** 
** >Hi Keith,
** >
** >Keith S wrote:
** >> Does anyone know how "regular expression" that matches either upper or
** >>  lower case letter strings and does not use the "/i" option ???
** >
** >/[a-zA-Z]/
** >
** 
** And how should that match 'computer administration' ?


On the first character.

HTH. HAND.


Abigail
-- 
perl -we 'print q{print q{print q{print q{print q{print q{print q{print q{print 
               qq{Just Another Perl Hacker\n}}}}}}}}}'    |\
perl -w | perl -w | perl -w | perl -w | perl -w | perl -w | perl -w | perl -w


  -----------== Posted via Newsfeeds.Com, Uncensored Usenet News ==----------
   http://www.newsfeeds.com       The Largest Usenet Servers in the World!
------== Over 73,000 Newsgroups - Including  Dedicated  Binaries Servers ==-----


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

Date: Mon, 2 Aug 1999 10:23:12 -0400
From: Matthew Amster-Burton <mamster@mamster.net>
Subject: Re: Looking for a Regular Expression to do an exact match case  indepenent
Message-Id: <Pine.GSO.3.96.990802102134.13236A-100000@wired.your-site.com>

On Mon, 2 Aug 1999, Alex Farber wrote:

> Keith S wrote:
> > Does anyone know how "regular expression" that matches either upper or
> >  lower case letter strings and does not use the "/i" option ???
> 
> /[a-zA-Z]/

Close, but that matches a single character and doesn't respect locale.
How about:

/[^\W_]+/

Matthew



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

Date: 2 Aug 1999 10:33:02 -0500
From: abigail@delanet.com (Abigail)
Subject: Re: Looking for a Regular Expression to do an exact match case  indepenent
Message-Id: <slrn7qbegb.r33.abigail@alexandra.delanet.com>

Matthew Amster-Burton (mamster@mamster.net) wrote on MMCLXII September
MCMXCIII in <URL:news:Pine.GSO.3.96.990802102134.13236A-100000@wired.your-site.com>:
,, On Mon, 2 Aug 1999, Alex Farber wrote:
,, 
,, > Keith S wrote:
,, > > Does anyone know how "regular expression" that matches either upper or
,, > >  lower case letter strings and does not use the "/i" option ???
,, > 
,, > /[a-zA-Z]/
,, 
,, Close, but that matches a single character and doesn't respect locale.
,, How about:
,, 
,, /[^\W_]+/


Or one uses (?i)



Abigail
-- 
sub A::TIESCALAR{bless\my$x=>A};package B;@q=qw/Hacker Another
Perl Just/;use overload'""'=>sub{pop @q};sub A::FETCH{bless\my
$y=>B}; tie my $shoe => 'A';print "$shoe $shoe $shoe $shoe\n";


  -----------== Posted via Newsfeeds.Com, Uncensored Usenet News ==----------
   http://www.newsfeeds.com       The Largest Usenet Servers in the World!
------== Over 73,000 Newsgroups - Including  Dedicated  Binaries Servers ==-----


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

Date: Mon, 02 Aug 1999 07:53:57 -0700
From: Andrew J Perrin <aperrin@mcmahon.qal.berkeley.edu>
Subject: Re: Looking for a Regular Expression to do an exact match case indepenent
Message-Id: <37A5B105.C1ED6937@mcmahon.qal.berkeley.edu>

Keith S wrote:
> 
 ...
> I'm using the "Regular Expression" that are provided in Mysql Database engine.
> 

How is that related to perl regular expressions?

> It does not support the /i "case insensitive" option.
> 
> So this does not work>
> 
> $teststring =~ m/computer administration/i;
> 

I see. How about:
	lc($teststring) eq 'computer administration'

or, given that you're using SQL anyway, how about
	$teststring LIKE 'computer administration'

> Does anyone know how "regular expression" that matches either upper or
>  lower case letter strings and does not use the "/i" option ???
> 

Well, there are lots of answers to that question:
	/(?i)computer administration/  #pretty snide answer :)
	/computer administration|COMPUTER ADMINISTRATION/
	/[cC][oO][mM][pP][uU][tT][eE][rR] 
[aA][dD][mM][iI][nN][sS][tT][rR][aA][tT][iI][oO][nN]/
		# make sure the above is on one line; newsreader will
		# mangle it.

However, the right answer to your problem is not to use a regular
expression; if you're doing an exact match it's useless.

> Thanks for any help
> Keith Salomon

-- 
-------------------------------------------------------------
Andrew Perrin - NT/Unix/Access Consulting -
aperrin@mcmahon.qal.berkeley.edu  
            I'M LOOKING FOR ANOTHER EXPERIENCED ACCESS
               DEVELOPER - CONTACT ME IF INTERESTED.
        http://www.geocities.com/SiliconValley/Grid/7544/
-------------------------------------------------------------


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

Date: 2 Aug 1999 09:45:20 -0700
From: Tom Christiansen <tchrist@mox.perl.com>
Subject: Re: Looking for a Regular Expression to do an exact match case indepenent
Message-Id: <37a5bd10@cs.colorado.edu>

     [courtesy cc of this posting mailed to cited author]

In comp.lang.perl.misc, 
    Andrew J Perrin <aperrin@mcmahon.qal.berkeley.edu> writes:
:or, given that you're using SQL anyway, how about
:	$teststring LIKE 'computer administration'

Clever. Maybe in perl6 we'll see a "LIKE" operator as a 
more legible version of the "=~" operator. 

--tom, who hopes that the smileys are implicit
-- 
"People demand freedom of speech to make up for the freedom of thought
 which they avoid."   		- Kierkegaard


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

Date: Mon, 2 Aug 1999 05:52:32 -0400
From: tadmc@metronet.com (Tad McClellan)
Subject: Re: Paasing Arguments to System Function
Message-Id: <0pp3o7.d94.ln@magna.metronet.com>


[ Please put your comments *following* the quoted text that
  you are commenting on.
]


PaulK (paul@vdkamer.nl) wrote:
: On 1 Aug 1999 22:31:35 GMT, ebohlman@netcom.com (Eric Bohlman) wrote:

: >work, but unfortunately many CGI programs use a cargo-cult parameter 
: >decoder instead), and then pass the input the proper way. 


: i do not know if this is cargo-cult ? whatever that means.


   It means:

      "Copied and used without any understanding of how it works"



   You should not do that. There are bugs in lots (most?) of the
   "script archive" programs.

   You won't recognize the bugs if you don't understand how the 
   code works (or doesn't work :-)


--
    Tad McClellan                          SGML Consulting
    tadmc@metronet.com                     Perl programming
    Fort Worth, Texas


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

Date: Mon, 2 Aug 1999 10:51:04 -0400
From: "John Pavlakis" <johnp@vcimail.com.remove.me>
Subject: Re: paging text
Message-Id: <rqbc4mlee70cq6@corp.supernews.com>


Tad McClellan <tadmc@metronet.com> wrote in message
news:etmqn7.hfr.ln@magna.metronet.com...
> John Pavlakis (johnp@vcimail.com.remove.me) wrote:
>
> : How do I page text read from STDIN or a file so it does not scroll all
at
>                                   ^^                          ^^^^^^
> : once? I am using NT and Unix. Thank you.
>
>
>    Your question makes no sense.
>
>    Input does not go the screen, therefore it cannot scroll.
>
>    Surely you mean output?
>

STDOUT is what I meant.

>
>    If so, you get it to page the same way you get the output from
>    any program to page (by feeding it into a paging program).
>
>
>       my_script arg1 arg2 | more

Thanks, but my program is a bit interactive, so paging the program wouldn't
make sense, as it requires input (it's an email program, so you have to
select which message you want read from a list)




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

Date: 2 Aug 1999 10:35:52 -0500
From: abigail@delanet.com (Abigail)
Subject: Re: parallel processing in perl
Message-Id: <slrn7qbelm.r33.abigail@alexandra.delanet.com>

Ameet Chaubal (achaubal@admin.tavsnet.com) wrote on MMCLXII September
MCMXCIII in <URL:news:7o45lv$6kt$1@frontier2.tavsnet.com>:
~~ Hi all
~~ 
~~ I have a perl script that fetches data from an Oracle database in flat
~~ files.
~~ There are about 200 tables that it recieves data from. .
~~ The processing is done in serial manner, one table after another.So it takes
~~ a long time to complete.
~~ What is the best way to do this in parallel. i.e. 5 to 10 tables at a time.
~~ All the tables are independent of each
~~ other, so there is no problem about order.


That's an SQL question, not a Perl one.




Abigail
-- 
perl -we 'print split /(?=(.*))/s => "Just another Perl Hacker\n";'


  -----------== Posted via Newsfeeds.Com, Uncensored Usenet News ==----------
   http://www.newsfeeds.com       The Largest Usenet Servers in the World!
------== Over 73,000 Newsgroups - Including  Dedicated  Binaries Servers ==-----


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

Date: 2 Aug 1999 15:06:17 -0000
From: anno4000@lublin.zrz.tu-berlin.de (Anno Siegel)
Subject: Re: passing command-line arguments to script !
Message-Id: <7o4c59$8j1$1@lublin.zrz.tu-berlin.de>

PaulK <paul@vdkamer.nl> wrote in comp.lang.perl.misc:
>On Mon, 02 Aug 1999 15:12:10 +0200, Alex Farber
><eedalf@eed.ericsson.se> wrote:
>
>>Hi Paul,
>>
>>PaulK wrote:
>>> $test = 'perl  \\query\\query1.cgi';
>>
>>you probably should use single backslashes here.
>>
>>> $uitkomst = `$test "FileNaam=test.txt"`;
>>> 
>>> the FileNaam parameter is not filled.
>>
>>Are you sure?
>>
>>> When i try to do it the correct way :
>>> $uitkomst=system("perl","\\query\\query1.cgi","FileNaam=test.txt);
>>
>>Try using full path to the perl interpreter.
>>
>
>Yep i'm sure. Note that i'm using Active Perl on WinNT.
>The script query1.cgi is testing on the variable FileNaam. When it
>isn't filled the script will generate an error ! So i'm sure that the
>variable is not filled.

Apparently you mean you don't find the perl variable $FileNaam set
to 'text.txt'.  Well, why should it?  This isn't the way parameters
are handed down to a perl script.  What you *will* find is that
$ARGV[ 0] is set to 'FileNaam=test.txt'.  There are many ways to
retrieve the filename from that.  Here is one:

my $FileNaam = (split '=', $ARGV[ 0])[ 1];

Of course, this is not particularly robust.  The traditional way
is just to give the filename on the command line like

query1.cgi test.txt

This way you'd get the filename via

$FileNaam = $ARGV[ 0]

but you'd probably not even need to do that.  Just read from
the filehandle ARGV, it will be opened to your file.

Anno

Anno


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

Date: Mon, 02 Aug 1999 15:09:03 GMT
From: paul@vdkamer.nl (PaulK)
Subject: Re: passing command-line arguments to script !
Message-Id: <37a5b3f8.34041852@news.wxs.nl>

On 2 Aug 1999 15:06:17 -0000, anno4000@lublin.zrz.tu-berlin.de (Anno
Siegel) wrote:

>PaulK <paul@vdkamer.nl> wrote in comp.lang.perl.misc:
>>On Mon, 02 Aug 1999 15:12:10 +0200, Alex Farber
>><eedalf@eed.ericsson.se> wrote:
>>
>>>Hi Paul,
>>>
>>>PaulK wrote:
>>>> $test = 'perl  \\query\\query1.cgi';
>>>
>>>you probably should use single backslashes here.
>>>
>>>> $uitkomst = `$test "FileNaam=test.txt"`;
>>>> 
>>>> the FileNaam parameter is not filled.
>>>
>>>Are you sure?
>>>
>>>> When i try to do it the correct way :
>>>> $uitkomst=system("perl","\\query\\query1.cgi","FileNaam=test.txt);
>>>
>>>Try using full path to the perl interpreter.
>>>
>
>$FileNaam = $ARGV[ 0]
>
>but you'd probably not even need to do that.  Just read from
>the filehandle ARGV, it will be opened to your file.
>
>Anno
>
>Anno

Excuses, i will resolve the variable $FileNaam in query1.cgi as
follows:

use CGI;
$FileNaam = param('FileNaam');
if (!$FileNaam)
{
	print "Not Filled";
}




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

Date: 2 Aug 1999 10:38:05 -0500
From: abigail@delanet.com (Abigail)
Subject: Re: passing command-line arguments to script !
Message-Id: <slrn7qbepq.r33.abigail@alexandra.delanet.com>

PaulK (paul@vdkamer.nl) wrote on MMCLXII September MCMXCIII in
<URL:news:37a57433.17716497@news.wxs.nl>:
|| Help help help,
|| 
|| I need to run a several scripts from within a script to carpture the
|| ouput and display it on screen.
|| 
|| when i run it like this
|| 
|| $test = 'perl  \\query\\query1.cgi';
                  ^^     ^^  Are you sure?
|| $uitkomst = `$test "FileNaam=test.txt"`;
|| 
|| the FileNaam parameter is not filled.
|| When i try to do it the correct way :
|| 
|| $uitkomst=system("perl","\\query\\query1.cgi","FileNaam=test.txt);
|| 
|| also FileNaam is not filled.

What do you mean by 'FileNaam is not filled'? 

Are you sure this is a Perl question, and not a DOS one?



Abigail
-- 
perl -wle '$, = " "; print grep {(1 x $_) !~ /^(11+)\1+$/} 2 .. shift'


  -----------== Posted via Newsfeeds.Com, Uncensored Usenet News ==----------
   http://www.newsfeeds.com       The Largest Usenet Servers in the World!
------== Over 73,000 Newsgroups - Including  Dedicated  Binaries Servers ==-----


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

Date: 2 Aug 1999 15:46:17 -0000
From: anno4000@lublin.zrz.tu-berlin.de (Anno Siegel)
Subject: Re: passing command-line arguments to script !
Message-Id: <7o4eg9$8lj$1@lublin.zrz.tu-berlin.de>

PaulK <paul@vdkamer.nl> wrote in comp.lang.perl.misc:
>On 2 Aug 1999 15:06:17 -0000, anno4000@lublin.zrz.tu-berlin.de (Anno
>Siegel) wrote:
>>
>>$FileNaam = $ARGV[ 0]
>>
>>but you'd probably not even need to do that.  Just read from
>>the filehandle ARGV, it will be opened to your file.
>>
>>Anno
>
>Excuses, i will resolve the variable $FileNaam in query1.cgi as
>follows:
>
>use CGI;
>$FileNaam = param('FileNaam');
>if (!$FileNaam)
>{
>	print "Not Filled";
>}

Oh, you're using CGI.  You should have said so.  This may change
everything, or nothing, I don't know.

Anno


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

Date: Mon, 2 Aug 1999 06:03:47 -0400
From: tadmc@metronet.com (Tad McClellan)
Subject: Re: perl code can't work
Message-Id: <3eq3o7.d94.ln@magna.metronet.com>

kee (keecm@pc.jaring.my) wrote:
: I am beginner in Perl language, please don't mind if my question is
: stupid.


   We don't (or shouldn't anyway) mind stupid questions at all.

   We *do* mind questions that are already answered (FAQs) and
   questions that are not about Perl.






: #! perl


   You forgot to enable warnings.

#! perl -w


   You should do that on *each and every* perl program.


: print "Content-type:text/html\n\n";
                     ^^

   Where's the space?


: Ii use ie4 to view the html file, when i click the GO button, it just
: shows the source code of the test.pl file, like ....


: Please help.


   Your problem has nothing to do with Perl.

   It has to do with how your web server is setup (and it sounds like
   you don't even *have* a web server. You need a web server to run
   CGI programs in a CGI environment. You can run CGI programs in
   a command line environment if you are clever enough to use
   the CGI.pm module).

   So, go get a free web server for your home computer (www.apache.org).

   If you have server setup questions in the future, then you should
   ask them in a server newsgroup, not here in clpmisc:

      comp.infosystems.www.servers.mac
      comp.infosystems.www.servers.misc
      comp.infosystems.www.servers.ms-windows
      comp.infosystems.www.servers.unix



   Perl FAQ, part 3:

      "Where can I learn about CGI or Web programming in Perl?"


: Thanks in advance.

   You're welcome (but you are expected to check the Perl FAQs *before*
                   posting to the Perl newsgroup).


--
    Tad McClellan                          SGML Consulting
    tadmc@metronet.com                     Perl programming
    Fort Worth, Texas


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

Date: Mon, 02 Aug 1999 14:13:38 GMT
From: nigh_postal <nigh_postal@my-deja.com>
Subject: perl Upload Triggering
Message-Id: <7o492a$l0k$1@nnrp1.deja.com>

Is there a way that I can trigger a file-upload without the direct use
of a file-field?  I'm trying to write a GUI that won't be using
standard submit buttons (will be using images), and a file-field
automatically puts the standard browse button at the end of the field.

Thanks,
-Cody


Sent via Deja.com http://www.deja.com/
Share what you know. Learn what you don't.


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

Date: 2 Aug 1999 10:39:39 -0500
From: abigail@delanet.com (Abigail)
Subject: Re: perl Upload Triggering
Message-Id: <slrn7qbesp.r33.abigail@alexandra.delanet.com>

nigh_postal (nigh_postal@my-deja.com) wrote on MMCLXII September MCMXCIII
in <URL:news:7o492a$l0k$1@nnrp1.deja.com>:
'' Is there a way that I can trigger a file-upload without the direct use
'' of a file-field?  I'm trying to write a GUI that won't be using
'' standard submit buttons (will be using images), and a file-field
'' automatically puts the standard browse button at the end of the field.


And your Perl question is?



Abigail
-- 
Don't fight the web. Work with it.


  -----------== Posted via Newsfeeds.Com, Uncensored Usenet News ==----------
   http://www.newsfeeds.com       The Largest Usenet Servers in the World!
------== Over 73,000 Newsgroups - Including  Dedicated  Binaries Servers ==-----


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

Date: Mon, 02 Aug 1999 11:13:36 -0400
From: Jacky Wilson <jwilson@theideapeople.com>
Subject: Re: RegExp: Searching all items of an array
Message-Id: <37A5B5A0.DB57FE42@theideapeople.com>

check out http://www.cgi-resources.com

marcza@my-deja.com wrote:

> I want to find out if in column 2 to 6 of each array item
> the text "date" is written.
> The array has say 8 items.
> I want to do that without a loop.
> The following doesn't work:
>
> if (substr($array[[0-7]],3,4) =~ /date/) {  ... }
>
> But I feel that it should work somehow.
>
> Can anyone help ?
>
> Thanx
>
> Marcus
>
> Sent via Deja.com http://www.deja.com/
> Share what you know. Learn what you don't.

--


Jacky Wilson
jwilson@theideapeople.com
Web Applications Management
-------------------------
Behold, I send you forth as lambs among wolves.




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

Date: Mon, 02 Aug 1999 11:47:56 -0400
From: Heather Wiley <heather.wiley@bentley.com>
Subject: string comparision ( newbie )
Message-Id: <37A5BDAC.A41D1AB3@bentley.com>

I am running active Perl on Windows NT
want to compare two vars
I know:
   if ( $var1 eq $var2)
whats the converse

 if (! ( $var1 eq $var2 ))
works but is this the correct method?

I thought it was neq but I get a syntax error

thanks
heather

( my camel book is at home and the online docs for active perl aren't
much help )




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

Date: 02 Aug 1999 10:21:27 -0400
From: Uri Guttman <uri@sysarch.com>
Subject: Re: why are you so harsh to this guy ?
Message-Id: <x7btcql0uw.fsf@home.sysarch.com>

>>>>> "AS" == Arved Sandstrom <Arved_37@chebucto.ns.ca> writes:

  AS> In article <37a565a8_1@newsread3.dircon.co.uk>, Jonathan Stowe
  AS> <gellyfish@gellyfish.com> wrote:

  >> I see thousands of people asking and perhaps tens of people making useful
  >> answers.  

  AS> I'm not knocking the stalwarts, but I suggest that if the top 25 answer
  AS> machines exercised some restraint and left a few posts for others,
  AS> especially the easier ones (not the FAQ questions, just easier), it might
  AS> let some of the second team have a chance and maybe distribute the load
  AS> more equitably.

as one of the so-called stalwarts, i have been doing that more. i am
tending to skip more newbie questions without rtfm'ing them. but i don't
see the second tier jumping in as much as i would like. and when they
do, i still see bad followups (probably from the third tier trying to
climb up!).

uri, who is being pickier and lazier

-- 
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: Mon, 2 Aug 1999 08:17:49 -0700
From: lr@hpl.hp.com (Larry Rosler)
Subject: Y2K in Washington (Was: Re: print "Location: http://..." avec paramčtres)
Message-Id: <MPG.120f5669fab8d567989d95@nntp.hpl.hp.com>

In article <37a54e5a.9152620@news.uniplus.ch> on Mon, 02 Aug 1999 
08:00:27 GMT, Andreas Fehr <backwards.saerdna@srm.hc> says...
> On Mon, 2 Aug 1999 00:14:14 -0700, lr@hpl.hp.com (Larry Rosler) wrote:
> 
> >Sind Sie nicht schweizer?  Sie solten viele Sprachen kennen, besonders 
> >Französisch, nicht wahr?
> 
> I'm Swiss, that's true. I know a lot of languages, but I don't speak
> them...
> 
> But as you are American, why do you speak German? Are you allowd to
> speak it? Isn't there any law about cryptography? Don't foreign
> languages fall under these laws? :)

Most of us Murkins don't speak nuthin but Murkin, no-how.  And we don't 
know nuthin 'bout no Y2K problems, neither.


Quoted in this morning's San Francisco Chronicle:

Worried about the effects of Y2K on computer-driven banking, air traffic
control, heart pace-makers?  Relax.

The Washington Post quotes Senate Banking Committee Chairman Phil Gramm,
R-Texas, at a hearing last week:  "Well, it seems to me we ought to be
encouraged that in the year 1000, they had to add a new digit, and yet
no evidence of economic disruption.  And then a millennium before, we
had dates going down, and then they started going up, and yet no evidnce
of disruption of chaos in the economy.  So if they could do it then,
surely we can deal with it now, it seems to me."

-- 
(Just Another Larry) Rosler
Hewlett-Packard Laboratories
http://www.hpl.hp.com/personal/Larry_Rosler/
lr@hpl.hp.com


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

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". 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 V9 Issue 334
*************************************


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