[7579] in Perl-Users-Digest

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

Perl-Users Digest, Issue: 1205 Volume: 8

daemon@ATHENA.MIT.EDU (Perl-Users Digest)
Tue Oct 21 11:07:17 1997

Date: Tue, 21 Oct 97 08:00:37 -0700
From: Perl-Users Digest <Perl-Users-Request@ruby.OCE.ORST.EDU>
To: Perl-Users@ruby.OCE.ORST.EDU (Perl-Users Digest)

Perl-Users Digest           Tue, 21 Oct 1997     Volume: 8 Number: 1205

Today's topics:
     Re: 2000 time problem (John Moreno)
     Re: @ + @  =  %   but how? <merlyn@stonehenge.com>
     [Reposted due to Enlow UCE cancel]: Constants and stati <joegottman@worldnet.att.net>
     [Reposted due to Enlow UCE cancel]: Constants and stati <joegottman@worldnet.att.net>
     [Reposted due to Enlow UCE cancel]: Handling EBCDIC Pac <tom.gebhardt@hboc.com>
     [Reposted due to Enlow UCE cancel]: Handling EBCDIC Pac <tom.gebhardt@hboc.com>
     [Reposted due to Enlow UCE cancel]: How to process sign akaleem@ibm.net
     [Reposted due to Enlow UCE cancel]: How to process sign akaleem@ibm.net
     [Reposted due to Enlow UCE cancel]: Is there POSIX.pm f (Binh Do)
     [Reposted due to Enlow UCE cancel]: Is there POSIX.pm f (Binh Do)
     [Reposted due to Enlow UCE cancel]: map or for : which  <brian@criticalpath.net>
     [Reposted due to Enlow UCE cancel]: map or for : which  <brian@criticalpath.net>
     [Reposted due to Enlow UCE cancel]: Perl and MS Excel <swarsi@nmpnet.net>
     [Reposted due to Enlow UCE cancel]: Perl and MS Excel <swarsi@nmpnet.net>
     [Reposted due to Enlow UCE cancel]: Perl interface to S (Tim Villa)
     [Reposted due to Enlow UCE cancel]: Perl interface to S (Tim Villa)
     Digest Administrivia (Last modified: 8 Mar 97) (Perl-Users-Digest Admin)

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

Date: Tue, 21 Oct 1997 10:45:40 -0400
From: phenix@interpath.com (John Moreno)
Subject: Re: 2000 time problem
Message-Id: <1997102109094126321090N@roxboro-183.interpath.net>

Mike Heins <mheins@prairienet.org> wrote:

] Steffen Beyer (sb@en.muc.de) wrote:
] : Petri Backstrom <petri.backstrom@icl.fi> wrote:
] : 
] : > Now, if I'd venture a guess, you will not be using Windows 95
] : > or the current release of Perl in 2038 (less in 2050), and I'm 
] : > sure that long before 2038 you'll have a computer where this 
] : > won't be a problem (in the Perl current then or anything else).

True.

] : That's exactly what the argument was back in the fifties or so when
] : the assembler and COBOL code was created that is going to break in
] : 2000...

No it's not.  And even if it was there is a fudemental difference in the
type of the problem.  More on this below.

] The difference was that their decision one was code-related, and could
] not be saved by a doubling of integer size. It is guaranteed that 
] even Windows will be 64-bit by then...

Their problem was going with a lowest common denominator standard.  They
issue wasn't really one of space since their "solution" took up more
(ever so slightly) than twice the space needed.

The problem was one of data type - instead of using a binary value for
the year they used a ASCII value.  This presents all kinds of problems,
but did make the data bases more human readable and portable.

Now the problem is not one of data type but instead one of data SIZE.
Most modern OS's have a "date" type which counts the number of seconds
since X.  This value is mainly being kept in a 32 bit field and is what
most programs use whenever there is call to use a date.  When these
OS's go to 64 bit system this data type will almost certainly be one of
the ones that get's bumped up.  And after that happens the only problem
will be old databases and conversion between the two.

But when this does start to happen I hope that the people designing this
data type set a better X than either 1904 or 197(?) - one that goes back
a little farther for people doing historical work.

-- 
John Moreno

-- 
John Moreno


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

Date: 21 Oct 1997 07:27:59 -0700
From: Randal Schwartz <merlyn@stonehenge.com>
To: "Richard Butcher" <mailus@web-uk.com>
Subject: Re: @ + @  =  %   but how?
Message-Id: <8c90vnxkb4.fsf@gadget.cscaper.com>

>>>>> "Richard" == Richard Butcher <mailus@web-uk.com> writes:

Richard> I guess combining two arrays of equal length into one hash
Richard> is such a frequently used routine that I have missed it somewhere
Richard> in the first few pages of the book.

Richard> So how do I do this?

Just use a hash slice (which, contrary to popular rumors, is *not*
a very bad tasting soft drink)...

    @keys =   qw(a b c d e f g h);
    @values = qw(0 1 1 0 1 1 0 1);
    %hash = (); @hash{@keys} = @values;

print "Just another Perl hacker," # but not what the media calls "hacker!" :-)
## legal fund: $20,990.69 collected, $186,159.85 spent; just 315 more days
## before I go to *prison* for 90 days; email fund@stonehenge.com for details

-- 
Name: Randal L. Schwartz / Stonehenge Consulting Services (503)777-0095
Keywords: Perl training, UNIX[tm] consulting, video production, skiing, flying
Email: <merlyn@stonehenge.com> Snail: (Call) PGP-Key: (finger merlyn@ora.com)
Web: <A HREF="http://www.stonehenge.com/merlyn/">My Home Page!</A>
Quote: "I'm telling you, if I could have five lines in my .sig, I would!" -- me


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

Date: Mon, 20 Oct 1997 20:44:54 -0400
From: Joe Gottman <joegottman@worldnet.att.net>
Subject: [Reposted due to Enlow UCE cancel]: Constants and statics
Message-Id: <REPOST-12387.621948242188.62gu6b$r33@bgtnsc02.worldnet.att.net>

As long as they are putting new syntax elements into Perl, how about
constant
and static variables.  I know of 2 ways of doing constants in Perl, and
both have 
disadvantages. The first way,
   *PI = \3.1415;
does not work for a variable declared with my, or for a hash or array.
The second
way,
   sub PI() {3.1415;}
cannot be declared either local or my.

Static variables are possible, but tedious.  Why not steal the syntax
for static, 
constant (and volatile while we're at it) from C?
-- 
Joe Gottman
joegottman@nospam.worldnet.att.net

[Remove nospam to reply]
========= WAS CANCELLED BY =======:

Rogue cancel from Michael Enlow, X-Cancelled-by etc. are forged.
Further information can be acquired at http://www.sputum.com/ucepage.htm
You can express your displeasure with Mr. Enlow by contacting him at:
enlow@direcpc.com

Control: cancel <62gu6b$r33@bgtnsc02.worldnet.att.net>
Newsgroups: comp.lang.perl.misc
Path: ...!news.rediris.es!news-ge.switch.ch!newscore.univie.ac.at!newsfeed.nacamar.de!news-peer.gsl.net!news-tokyo.gip.net!news.gsl.net!gip.net!nspixp!newsfeed.btnis.ad.jp!newsfeed1.btnis.ad.jp!news.fsinet.or.jp!ubc.co.jp!nobody
From: godmom@pagesz.net
Subject: cmsg cancel <62gu6b$r33@bgtnsc02.worldnet.att.net>
Approved: godmom@pagesz.net
Message-ID: <cancel.62gu6b$r33@bgtnsc02.worldnet.att.net>
X-No-Archive: Yes
Sender: Joe Gottman <joegottman@worldnet.att.net>
X-Cancelled-By: godmom@pagesz.net
Organization: UBC
Date: Tue, 21 Oct 1997 02:29:04 GMT
Lines: 2


This article cancelled within Tin.


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

Date: Mon, 20 Oct 1997 20:44:54 -0400
From: Joe Gottman <joegottman@worldnet.att.net>
Subject: [Reposted due to Enlow UCE cancel]: Constants and statics
Message-Id: <REPOST-8894.7285461425781.62gu6b$r33@bgtnsc02.worldnet.att.net>

As long as they are putting new syntax elements into Perl, how about
constant
and static variables.  I know of 2 ways of doing constants in Perl, and
both have 
disadvantages. The first way,
   *PI = \3.1415;
does not work for a variable declared with my, or for a hash or array.
The second
way,
   sub PI() {3.1415;}
cannot be declared either local or my.

Static variables are possible, but tedious.  Why not steal the syntax
for static, 
constant (and volatile while we're at it) from C?
-- 
Joe Gottman
joegottman@nospam.worldnet.att.net

[Remove nospam to reply]
========= WAS CANCELLED BY =======:

Rogue cancel from Michael Enlow, X-Cancelled-by etc. are forged.
Further information can be acquired at http://www.sputum.com/ucepage.htm
You can express your displeasure with Mr. Enlow by contacting him at:
enlow@direcpc.com

Control: cancel <62gu6b$r33@bgtnsc02.worldnet.att.net>
Newsgroups: comp.lang.perl.misc
Path: ...!news.rediris.es!news-ge.switch.ch!newscore.univie.ac.at!newsfeed.nacamar.de!news-peer.gsl.net!news-tokyo.gip.net!news.gsl.net!gip.net!nspixp!newsfeed.btnis.ad.jp!newsfeed1.btnis.ad.jp!news.fsinet.or.jp!ubc.co.jp!nobody
From: godmom@pagesz.net
Subject: cmsg cancel <62gu6b$r33@bgtnsc02.worldnet.att.net>
Approved: godmom@pagesz.net
Message-ID: <cancel.62gu6b$r33@bgtnsc02.worldnet.att.net>
X-No-Archive: Yes
Sender: Joe Gottman <joegottman@worldnet.att.net>
X-Cancelled-By: godmom@pagesz.net
Organization: UBC
Date: Tue, 21 Oct 1997 02:29:04 GMT
Lines: 2


This article cancelled within Tin.


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

Date: 20 Oct 1997 20:46:56 GMT
From: "Tom Gebhardt" <tom.gebhardt@hboc.com>
Subject: [Reposted due to Enlow UCE cancel]: Handling EBCDIC Packed Decimal on ASCII Platform
Message-Id: <REPOST-19566.402862548828.01bcdd99$4cc4c530$34161595@tgebhardt>

Has anyone had any experience converting EBCDIC Packed Decimal fields to
usable numerics when reading a file from an ASCII-platform Perl script? 
I'm having some trouble figuring out how to use the unpack or vec functions
to do this.  Are these functions even the correct approach?

========= WAS CANCELLED BY =======:

Rogue cancel from Michael Enlow, X-Cancelled-by etc. are forged.
Further information can be acquired at http://www.sputum.com/ucepage.htm
You can express your displeasure with Mr. Enlow by contacting him at:
enlow@direcpc.com

Control: cancel <01bcdd99$4cc4c530$34161595@tgebhardt>
Newsgroups: comp.lang.perl.misc
Path: ...!ddsw1!news.mcs.net!peerfeed.ncal.verio.net!europa.clark.net!204.59.152.222!news-peer.gsl.net!news-tokyo.gip.net!news.gsl.net!gip.net!nspixp!newsfeed.btnis.ad.jp!newsfeed1.btnis.ad.jp!news.fsinet.or.jp!ubc.co.jp!nobody
From: godmom@pagesz.net
Subject: cmsg cancel <01bcdd99$4cc4c530$34161595@tgebhardt>
Approved: godmom@pagesz.net
Message-ID: <cancel.01bcdd99$4cc4c530$34161595@tgebhardt>
X-No-Archive: Yes
Sender: "Tom Gebhardt" <tom.gebhardt@hboc.com>
X-Cancelled-By: godmom@pagesz.net
Organization: UBC
Date: Tue, 21 Oct 1997 02:30:04 GMT
Lines: 2


This article cancelled within Tin.


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

Date: 20 Oct 1997 20:46:56 GMT
From: "Tom Gebhardt" <tom.gebhardt@hboc.com>
Subject: [Reposted due to Enlow UCE cancel]: Handling EBCDIC Packed Decimal on ASCII Platform
Message-Id: <REPOST-16201.505554199219.01bcdd99$4cc4c530$34161595@tgebhardt>

Has anyone had any experience converting EBCDIC Packed Decimal fields to
usable numerics when reading a file from an ASCII-platform Perl script? 
I'm having some trouble figuring out how to use the unpack or vec functions
to do this.  Are these functions even the correct approach?

========= WAS CANCELLED BY =======:

Rogue cancel from Michael Enlow, X-Cancelled-by etc. are forged.
Further information can be acquired at http://www.sputum.com/ucepage.htm
You can express your displeasure with Mr. Enlow by contacting him at:
enlow@direcpc.com

Control: cancel <01bcdd99$4cc4c530$34161595@tgebhardt>
Newsgroups: comp.lang.perl.misc
Path: ...!ddsw1!news.mcs.net!peerfeed.ncal.verio.net!europa.clark.net!204.59.152.222!news-peer.gsl.net!news-tokyo.gip.net!news.gsl.net!gip.net!nspixp!newsfeed.btnis.ad.jp!newsfeed1.btnis.ad.jp!news.fsinet.or.jp!ubc.co.jp!nobody
From: godmom@pagesz.net
Subject: cmsg cancel <01bcdd99$4cc4c530$34161595@tgebhardt>
Approved: godmom@pagesz.net
Message-ID: <cancel.01bcdd99$4cc4c530$34161595@tgebhardt>
X-No-Archive: Yes
Sender: "Tom Gebhardt" <tom.gebhardt@hboc.com>
X-Cancelled-By: godmom@pagesz.net
Organization: UBC
Date: Tue, 21 Oct 1997 02:30:04 GMT
Lines: 2


This article cancelled within Tin.


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

Date: Mon, 20 Oct 1997 19:06:52 GMT
From: akaleem@ibm.net
Subject: [Reposted due to Enlow UCE cancel]: How to process signals with a daemon?
Message-Id: <REPOST-9597.7070922851562.344bab7a.2094721@news-s01.ny.us.ibm.net>

Hello:

I am looking for some help in debugging a daemon using perl 5. Once
the daemon is running it is NOT processing signal like USR1...

I have code that makes the program a daemon and then I am executing my

own function once I get a system signal.  The system signals function 
works fine as long as I run it separately with making it a daemon.

Any help is greatly appreciated.

Thanks in advance.
========= WAS CANCELLED BY =======:

Rogue cancel from Michael Enlow, X-Cancelled-by etc. are forged.
Further information can be acquired at http://www.sputum.com/ucepage.htm
You can express your displeasure with Mr. Enlow by contacting him at:
enlow@direcpc.com

Control: cancel <344bab7a.2094721@news-s01.ny.us.ibm.net>
Newsgroups: comp.lang.perl.misc
Path: ...!news.rediris.es!newsfeed.mad.ibernet.es!News.Amsterdam.UnisourceCS!cosy.sbg.ac.at!news.cs.utwente.nl!opus.ies-energy.com!news.webspan.net!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!news-peer.gsl.net!news-tokyo.gip.net!news.gsl.net!gip.net!nspixp!newsfeed.btnis.ad.jp!newsfeed1.btnis.ad.jp!news.fsinet.or.jp!ubc.co.jp!nobody
From: godmom@pagesz.net
Subject: cmsg cancel <344bab7a.2094721@news-s01.ny.us.ibm.net>
Approved: godmom@pagesz.net
Message-ID: <cancel.344bab7a.2094721@news-s01.ny.us.ibm.net>
X-No-Archive: Yes
Sender: akaleem@ibm.net
X-Cancelled-By: godmom@pagesz.net
Organization: UBC
Date: Tue, 21 Oct 1997 00:27:22 GMT
Lines: 2


This article cancelled within Tin.


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

Date: Mon, 20 Oct 1997 19:06:52 GMT
From: akaleem@ibm.net
Subject: [Reposted due to Enlow UCE cancel]: How to process signals with a daemon?
Message-Id: <REPOST-29753.091979980469.344bab7a.2094721@news-s01.ny.us.ibm.net>

Hello:

I am looking for some help in debugging a daemon using perl 5. Once
the daemon is running it is NOT processing signal like USR1...

I have code that makes the program a daemon and then I am executing my

own function once I get a system signal.  The system signals function 
works fine as long as I run it separately with making it a daemon.

Any help is greatly appreciated.

Thanks in advance.
========= WAS CANCELLED BY =======:

Rogue cancel from Michael Enlow, X-Cancelled-by etc. are forged.
Further information can be acquired at http://www.sputum.com/ucepage.htm
You can express your displeasure with Mr. Enlow by contacting him at:
enlow@direcpc.com

Control: cancel <344bab7a.2094721@news-s01.ny.us.ibm.net>
Newsgroups: comp.lang.perl.misc
Path: ...!news.rediris.es!newsfeed.mad.ibernet.es!News.Amsterdam.UnisourceCS!cosy.sbg.ac.at!news.cs.utwente.nl!opus.ies-energy.com!news.webspan.net!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!news-peer.gsl.net!news-tokyo.gip.net!news.gsl.net!gip.net!nspixp!newsfeed.btnis.ad.jp!newsfeed1.btnis.ad.jp!news.fsinet.or.jp!ubc.co.jp!nobody
From: godmom@pagesz.net
Subject: cmsg cancel <344bab7a.2094721@news-s01.ny.us.ibm.net>
Approved: godmom@pagesz.net
Message-ID: <cancel.344bab7a.2094721@news-s01.ny.us.ibm.net>
X-No-Archive: Yes
Sender: akaleem@ibm.net
X-Cancelled-By: godmom@pagesz.net
Organization: UBC
Date: Tue, 21 Oct 1997 00:27:22 GMT
Lines: 2


This article cancelled within Tin.


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

Date: Tue, 21 Oct 1997 00:40:06 GMT
From: bdo@epnet.com (Binh Do)
Subject: [Reposted due to Enlow UCE cancel]: Is there POSIX.pm for Perl Win32?
Message-Id: <REPOST-31590.035919189453.344bf924.28711755@newshost>

I installed Perl-Win32 for NT (latest version 5.003) and do not see POSIX.pm in the lib
directory. So I am not sure if POSIX.pm is not ported yet or should I get it somewhere and
install it manually?

Thank you for any info.

Binh.
	
========= WAS CANCELLED BY =======:

Rogue cancel from Michael Enlow, X-Cancelled-by etc. are forged.
Further information can be acquired at http://www.sputum.com/ucepage.htm
You can express your displeasure with Mr. Enlow by contacting him at:
enlow@direcpc.com

Control: cancel <344bf924.28711755@newshost>
Newsgroups: comp.lang.perl.misc
Path: ...!news.rediris.es!news-ge.switch.ch!newscore.univie.ac.at!newsfeed.nacamar.de!news-peer.gsl.net!news-tokyo.gip.net!news.gsl.net!gip.net!nspixp!newsfeed.btnis.ad.jp!newsfeed1.btnis.ad.jp!news.fsinet.or.jp!ubc.co.jp!nobody
From: godmom@pagesz.net
Subject: cmsg cancel <344bf924.28711755@newshost>
Approved: godmom@pagesz.net
Message-ID: <cancel.344bf924.28711755@newshost>
X-No-Archive: Yes
Sender: bdo@epnet.com (Binh Do)
X-Cancelled-By: godmom@pagesz.net
Organization: UBC
Date: Tue, 21 Oct 1997 02:29:16 GMT
Lines: 2


This article cancelled within Tin.


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

Date: Tue, 21 Oct 1997 00:40:06 GMT
From: bdo@epnet.com (Binh Do)
Subject: [Reposted due to Enlow UCE cancel]: Is there POSIX.pm for Perl Win32?
Message-Id: <REPOST-3523.8924560546875.344bf924.28711755@newshost>

I installed Perl-Win32 for NT (latest version 5.003) and do not see POSIX.pm in the lib
directory. So I am not sure if POSIX.pm is not ported yet or should I get it somewhere and
install it manually?

Thank you for any info.

Binh.
	
========= WAS CANCELLED BY =======:

Rogue cancel from Michael Enlow, X-Cancelled-by etc. are forged.
Further information can be acquired at http://www.sputum.com/ucepage.htm
You can express your displeasure with Mr. Enlow by contacting him at:
enlow@direcpc.com

Control: cancel <344bf924.28711755@newshost>
Newsgroups: comp.lang.perl.misc
Path: ...!news.rediris.es!news-ge.switch.ch!newscore.univie.ac.at!newsfeed.nacamar.de!news-peer.gsl.net!news-tokyo.gip.net!news.gsl.net!gip.net!nspixp!newsfeed.btnis.ad.jp!newsfeed1.btnis.ad.jp!news.fsinet.or.jp!ubc.co.jp!nobody
From: godmom@pagesz.net
Subject: cmsg cancel <344bf924.28711755@newshost>
Approved: godmom@pagesz.net
Message-ID: <cancel.344bf924.28711755@newshost>
X-No-Archive: Yes
Sender: bdo@epnet.com (Binh Do)
X-Cancelled-By: godmom@pagesz.net
Organization: UBC
Date: Tue, 21 Oct 1997 02:29:16 GMT
Lines: 2


This article cancelled within Tin.


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

Date: Mon, 20 Oct 1997 10:09:24 -0700
From: brian moseley <brian@criticalpath.net>
Subject: [Reposted due to Enlow UCE cancel]: map or for : which is better in this case?
Message-Id: <REPOST-18525.434631347656.344B9044.54BCCF4E@criticalpath.net>

ok. $list is a reference to an array of objects( which respond to a
header() method) and $hdr is a string; both $list and $hdr have been
passed into this particular sub.

i want to create a hash with key "value of this object's $hdr header"
and value "index of this object in @$list", such that i can create

	@sorted_table = sort keys %table;

and then build a new sorted array of objects.

which of the below pieces of code is preferable, in terms of speed,
readability, and overall niceness?

candidate 1:

    my %table;
    for ( my $idx = 0; $idx < ( scalar @$list ); $idx++ ) {
       my $val = $list->[$idx]->header( $hdr );
       $table{$val} = $idx;
   }

candidate 2:

    my $idx = 0;
    my %table = map {
        $_->header( $hdr ), $idx++
        } @$list;


-- 

* brian moseley *
{ agent of chaos => critical path }
========= WAS CANCELLED BY =======:

Rogue cancel from Michael Enlow, X-Cancelled-by etc. are forged.
Further information can be acquired at http://www.sputum.com/ucepage.htm
You can express your displeasure with Mr. Enlow by contacting him at:
enlow@direcpc.com

Control: cancel <344B9044.54BCCF4E@criticalpath.net>
Newsgroups: comp.lang.perl.misc
Path: ...!news.rediris.es!news-ge.switch.ch!newscore.univie.ac.at!newsfeed.nacamar.de!news-peer.gsl.net!news-tokyo.gip.net!news.gsl.net!gip.net!nspixp!newsfeed.btnis.ad.jp!newsfeed1.btnis.ad.jp!news.fsinet.or.jp!ubc.co.jp!nobody
From: godmom@pagesz.net
Subject: cmsg cancel <344B9044.54BCCF4E@criticalpath.net>
Approved: godmom@pagesz.net
Message-ID: <cancel.344B9044.54BCCF4E@criticalpath.net>
X-No-Archive: Yes
Sender: brian moseley <brian@criticalpath.net>
X-Cancelled-By: godmom@pagesz.net
Organization: UBC
Date: Tue, 21 Oct 1997 00:31:43 GMT
Lines: 2


This article cancelled within Tin.


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

Date: Mon, 20 Oct 1997 10:09:24 -0700
From: brian moseley <brian@criticalpath.net>
Subject: [Reposted due to Enlow UCE cancel]: map or for : which is better in this case?
Message-Id: <REPOST-22103.325439453125.344B9044.54BCCF4E@criticalpath.net>

ok. $list is a reference to an array of objects( which respond to a
header() method) and $hdr is a string; both $list and $hdr have been
passed into this particular sub.

i want to create a hash with key "value of this object's $hdr header"
and value "index of this object in @$list", such that i can create

	@sorted_table = sort keys %table;

and then build a new sorted array of objects.

which of the below pieces of code is preferable, in terms of speed,
readability, and overall niceness?

candidate 1:

    my %table;
    for ( my $idx = 0; $idx < ( scalar @$list ); $idx++ ) {
       my $val = $list->[$idx]->header( $hdr );
       $table{$val} = $idx;
   }

candidate 2:

    my $idx = 0;
    my %table = map {
        $_->header( $hdr ), $idx++
        } @$list;


-- 

* brian moseley *
{ agent of chaos => critical path }
========= WAS CANCELLED BY =======:

Rogue cancel from Michael Enlow, X-Cancelled-by etc. are forged.
Further information can be acquired at http://www.sputum.com/ucepage.htm
You can express your displeasure with Mr. Enlow by contacting him at:
enlow@direcpc.com

Control: cancel <344B9044.54BCCF4E@criticalpath.net>
Newsgroups: comp.lang.perl.misc
Path: ...!news.rediris.es!news-ge.switch.ch!newscore.univie.ac.at!newsfeed.nacamar.de!news-peer.gsl.net!news-tokyo.gip.net!news.gsl.net!gip.net!nspixp!newsfeed.btnis.ad.jp!newsfeed1.btnis.ad.jp!news.fsinet.or.jp!ubc.co.jp!nobody
From: godmom@pagesz.net
Subject: cmsg cancel <344B9044.54BCCF4E@criticalpath.net>
Approved: godmom@pagesz.net
Message-ID: <cancel.344B9044.54BCCF4E@criticalpath.net>
X-No-Archive: Yes
Sender: brian moseley <brian@criticalpath.net>
X-Cancelled-By: godmom@pagesz.net
Organization: UBC
Date: Tue, 21 Oct 1997 00:31:43 GMT
Lines: 2


This article cancelled within Tin.


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

Date: Mon, 20 Oct 1997 17:27:36 -0400
From: Suhail Warsi <swarsi@nmpnet.net>
Subject: [Reposted due to Enlow UCE cancel]: Perl and MS Excel
Message-Id: <REPOST-1281.9608764648438.344BCCC8.E16B7C8@nmpnet.net>

Does any one know if there is anything for perl that allows it to access
MS Excel files?

Suhail

========= WAS CANCELLED BY =======:

Rogue cancel from Michael Enlow, X-Cancelled-by etc. are forged.
Further information can be acquired at http://www.sputum.com/ucepage.htm
You can express your displeasure with Mr. Enlow by contacting him at:
enlow@direcpc.com

Control: cancel <344BCCC8.E16B7C8@nmpnet.net>
Newsgroups: comp.lang.perl.misc
Path: ...!news.tamu.edu!newshost.comco.com!news.altair.com!uwvax!uwm.edu!gsl-penn-ns.gsl.net!news-dc.gsl.net!news-peer.gsl.net!news-tokyo.gip.net!news.gsl.net!gip.net!nspixp!newsfeed.btnis.ad.jp!newsfeed1.btnis.ad.jp!news.fsinet.or.jp!ubc.co.jp!nobody
From: godmom@pagesz.net
Subject: cmsg cancel <344BCCC8.E16B7C8@nmpnet.net>
Approved: godmom@pagesz.net
Message-ID: <cancel.344BCCC8.E16B7C8@nmpnet.net>
X-No-Archive: Yes
Sender: Suhail Warsi <swarsi@nmpnet.net>
X-Cancelled-By: godmom@pagesz.net
Organization: UBC
Date: Tue, 21 Oct 1997 00:24:11 GMT
Lines: 2


This article cancelled within Tin.


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

Date: Mon, 20 Oct 1997 17:27:36 -0400
From: Suhail Warsi <swarsi@nmpnet.net>
Subject: [Reposted due to Enlow UCE cancel]: Perl and MS Excel
Message-Id: <REPOST-26682.185699462891.344BCCC8.E16B7C8@nmpnet.net>

Does any one know if there is anything for perl that allows it to access
MS Excel files?

Suhail

========= WAS CANCELLED BY =======:

Rogue cancel from Michael Enlow, X-Cancelled-by etc. are forged.
Further information can be acquired at http://www.sputum.com/ucepage.htm
You can express your displeasure with Mr. Enlow by contacting him at:
enlow@direcpc.com

Control: cancel <344BCCC8.E16B7C8@nmpnet.net>
Newsgroups: comp.lang.perl.misc
Path: ...!news.tamu.edu!newshost.comco.com!news.altair.com!uwvax!uwm.edu!gsl-penn-ns.gsl.net!news-dc.gsl.net!news-peer.gsl.net!news-tokyo.gip.net!news.gsl.net!gip.net!nspixp!newsfeed.btnis.ad.jp!newsfeed1.btnis.ad.jp!news.fsinet.or.jp!ubc.co.jp!nobody
From: godmom@pagesz.net
Subject: cmsg cancel <344BCCC8.E16B7C8@nmpnet.net>
Approved: godmom@pagesz.net
Message-ID: <cancel.344BCCC8.E16B7C8@nmpnet.net>
X-No-Archive: Yes
Sender: Suhail Warsi <swarsi@nmpnet.net>
X-Cancelled-By: godmom@pagesz.net
Organization: UBC
Date: Tue, 21 Oct 1997 00:24:11 GMT
Lines: 2


This article cancelled within Tin.


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

Date: Tue, 21 Oct 1997 01:09:48 GMT
From: tim.villa@uwa.edu.au (Tim Villa)
Subject: [Reposted due to Enlow UCE cancel]: Perl interface to Sun NIS+?
Message-Id: <REPOST-10874.668121337891.62gvd4$pud$1@enyo.uwa.edu.au>

Hi all,
Not sure if such a beast exists but are there any Perl libraries around for 
accessing Solaris NIS+ tables without having to use system() or ``?  I'm 
trying to speed up some routines that talk to the NIS+ a lot.

Thanks
Tim


--
Tim Villa 		   Faculties of Economics & Commerce, Education and Law
Network/Systems Officer		            The University of Western Australia
Phone: +61-08-9380-1796			       	          Fax: +61-08-9380-1068
<mailto:tim.villa@uwa.edu.au>		         <http://buck.ecel.uwa.edu.au/>
========= WAS CANCELLED BY =======:

Rogue cancel from Michael Enlow, X-Cancelled-by etc. are forged.
Further information can be acquired at http://www.sputum.com/ucepage.htm
You can express your displeasure with Mr. Enlow by contacting him at:
enlow@direcpc.com

Control: cancel <62gvd4$pud$1@enyo.uwa.edu.au>
Newsgroups: comp.lang.perl.misc
Path: ...!news.rediris.es!news-ge.switch.ch!newscore.univie.ac.at!newsfeed.nacamar.de!news-peer.gsl.net!news-tokyo.gip.net!news.gsl.net!gip.net!nspixp!newsfeed.btnis.ad.jp!newsfeed1.btnis.ad.jp!news.fsinet.or.jp!ubc.co.jp!nobody
From: godmom@pagesz.net
Subject: cmsg cancel <62gvd4$pud$1@enyo.uwa.edu.au>
Approved: godmom@pagesz.net
Message-ID: <cancel.62gvd4$pud$1@enyo.uwa.edu.au>
X-No-Archive: Yes
Sender: tim.villa@uwa.edu.au (Tim Villa)
X-Cancelled-By: godmom@pagesz.net
Organization: UBC
Date: Tue, 21 Oct 1997 02:28:40 GMT
Lines: 2


This article cancelled within Tin.


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

Date: Tue, 21 Oct 1997 01:09:48 GMT
From: tim.villa@uwa.edu.au (Tim Villa)
Subject: [Reposted due to Enlow UCE cancel]: Perl interface to Sun NIS+?
Message-Id: <REPOST-10700.673431396484.62gvd4$pud$1@enyo.uwa.edu.au>

Hi all,
Not sure if such a beast exists but are there any Perl libraries around for 
accessing Solaris NIS+ tables without having to use system() or ``?  I'm 
trying to speed up some routines that talk to the NIS+ a lot.

Thanks
Tim


--
Tim Villa 		   Faculties of Economics & Commerce, Education and Law
Network/Systems Officer		            The University of Western Australia
Phone: +61-08-9380-1796			       	          Fax: +61-08-9380-1068
<mailto:tim.villa@uwa.edu.au>		         <http://buck.ecel.uwa.edu.au/>
========= WAS CANCELLED BY =======:

Rogue cancel from Michael Enlow, X-Cancelled-by etc. are forged.
Further information can be acquired at http://www.sputum.com/ucepage.htm
You can express your displeasure with Mr. Enlow by contacting him at:
enlow@direcpc.com

Control: cancel <62gvd4$pud$1@enyo.uwa.edu.au>
Newsgroups: comp.lang.perl.misc
Path: ...!news.rediris.es!news-ge.switch.ch!newscore.univie.ac.at!newsfeed.nacamar.de!news-peer.gsl.net!news-tokyo.gip.net!news.gsl.net!gip.net!nspixp!newsfeed.btnis.ad.jp!newsfeed1.btnis.ad.jp!news.fsinet.or.jp!ubc.co.jp!nobody
From: godmom@pagesz.net
Subject: cmsg cancel <62gvd4$pud$1@enyo.uwa.edu.au>
Approved: godmom@pagesz.net
Message-ID: <cancel.62gvd4$pud$1@enyo.uwa.edu.au>
X-No-Archive: Yes
Sender: tim.villa@uwa.edu.au (Tim Villa)
X-Cancelled-By: godmom@pagesz.net
Organization: UBC
Date: Tue, 21 Oct 1997 02:28:40 GMT
Lines: 2


This article cancelled within Tin.


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

Date: 8 Mar 97 21:33:47 GMT (Last modified)
From: Perl-Request@ruby.oce.orst.edu (Perl-Users-Digest Admin) 
Subject: Digest Administrivia (Last modified: 8 Mar 97)
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 V8 Issue 1205
**************************************

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