[13479] in Perl-Users-Digest
Perl-Users Digest, Issue: 889 Volume: 9
daemon@ATHENA.MIT.EDU (Perl-Users Digest)
Thu Sep 23 14:07:29 1999
Date: Thu, 23 Sep 1999 11:05:13 -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: <938109913-v9-i889@ruby.oce.orst.edu>
Content-Type: text
Perl-Users Digest Thu, 23 Sep 1999 Volume: 9 Number: 889
Today's topics:
Re: (-d $filename) test <emschwar@rmi.net>
Re: ./ -- why? <aqumsieh@matrox.com>
Re: ./ -- why? <uri@sysarch.com>
Re: ./ -- why? <Mike.Wescott@ColumbiaSC.NCR.COM>
Re: ./ -- why? (Alan Curry)
Re: CGI sending email with attachment <BurtHwangSPAMSUCKS@SPAMSUCKS.ufsltd.com>
Re: confusing localtime <sariq@texas.net>
Re: how to test if a file is a link? <aqumsieh@matrox.com>
Re: HTTP file upload on NT problem <warddc@cat.com>
Re: new to Perl- Activestate's PDK wont install <laurensmith@sprynet.com>
Re: ODBC and sub-routines <jonnyace@magix.com.sg>
Re: Perl - CGI -MySQL KernelKlink@webtv.net
Perl and MFC on NT escarge4166@my-deja.com
perl multi-thread ? <root@www2.amanage.com>
perl multi-thread ? <root@www2.amanage.com>
Re: perl multi-thread ? <shawn@unifygroup.com>
Please help a newby... david_2exvia@my-deja.com
Re: Please help a newby... (Bill Moseley)
Re: Setting process name <sariq@texas.net>
Re: Setting process name (Bill Moseley)
Re: stopping a thread <dan@tuatha.sidhe.org>
Term::Cap <marshalc@americasm01.nt.com>
Re: toLowercase?? <kbandes@home.com>
Re: trouble using the Perl2exe aplication ghentghent@my-deja.com
two frames using pelr nallurichandu@my-deja.com
Re: You should be admired (Henry Penninkilampi)
Re: You should be admired (Henry Penninkilampi)
Re: You should be admired <uri@sysarch.com>
Digest Administrivia (Last modified: 16 Sep 99) (Perl-Users-Digest Admin)
----------------------------------------------------------------------
Date: 23 Sep 1999 11:52:38 -0600
From: Eric The Read <emschwar@rmi.net>
Subject: Re: (-d $filename) test
Message-Id: <xkfzoydikgp.fsf@valdemar.col.hp.com>
vasile@club-internet.fr (Vasile Calmatui) writes:
> Just hoping the following code will satisfy everyone...
Sorry!
> #concatenes two pathes and be sure a '\' is added between
Ack! Don't *DO* that. Win32 can understand paths separated by '/' just
as well. Also, doing it that way means your routines are portable across
many operating systems. The only reason (okay, I'm exaggerating a
little) you should ever use '\\' in a Win32 system is when you're passing
arguments to CMD.EXE.
> sub concatPath($@) {
> my ($path, @files)=@_;
> #if nothing more to add
> my $file=shift @files or return $path;
> chop($path) if($path=~/\\$/);
You could do a "{ local $/ = '\\'; chomp($path); }" right there. But I'd
recommend you use '/' instead of '\\', for reasons stated above.
> $path.= $file=~/^\\/ ? $file : "\\".$file;
Again, try '/'.
> return concatPath($path, @files);
> }#concatPath
Also, please reply *AFTER* what you quote. It makes it easier to see
what you're replying to.
-=Eric
------------------------------
Date: Thu, 23 Sep 1999 11:58:54 -0400
From: Ala Qumsieh <aqumsieh@matrox.com>
Subject: Re: ./ -- why?
Message-Id: <x3yso45wrep.fsf@tigre.matrox.com>
"Jeff" <post.it@in.newsgroup.pls> writes:
> I am wondering why would I need to precede my Perl script with a " ./ " to
> get it to execute? I am using a Red Hat server. When I run this script on
> a Slackware server it doesn't need the ./ in front of the file name.
You path on the RedHat server doesn't have '.' (the current directory)
included in it. The path on the Slackware server does.
Just add '.' to your path. Personally, I prefer not to.
Now, this happens with all of your programs, not only Perl scripts, so
this question wasn't really Perl related.
--Ala
------------------------------
Date: 23 Sep 1999 13:51:05 -0400
From: Uri Guttman <uri@sysarch.com>
Subject: Re: ./ -- why?
Message-Id: <x71zbp4iuu.fsf@home.sysarch.com>
>>>>> "RLS" == Randal L Schwartz <merlyn@stonehenge.com> writes:
>>>>> "Philip" == Philip 'Yes, that's my address' Newton <nospam.newton@gmx.net> writes:
Philip> 2) This opens yourself up to things such as your favourite co-worker
Philip> putting a shell script containing "rm -rf *" and called "ls" into your
Philip> directory. '.' shouldn't be the first component of your path, and
Philip> probably shouldn't be in it at all.
RLS> Speaking of cargo cult programming... why do people type:
RLS> rm -rf *
RLS> when it should be
RLS> rm -rf .
RLS> ? You wanna leave the dotfiles or something?
and what if you are not in the root dir? so it should be
/bin/rm -rf /
i use the full path in case it was aliased (like i do) to something safe
like rm -i
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: 23 Sep 1999 13:51:45 -0400
From: Mike Wescott <Mike.Wescott@ColumbiaSC.NCR.COM>
Subject: Re: ./ -- why?
Message-Id: <x44sglqzwu.fsf@ColumbiaSC.NCR.COM>
merlyn@stonehenge.com (Randal L. Schwartz) writes:
> Speaking of cargo cult programming... why do people type:
>
> rm -rf *
>
> when it should be
>
> rm -rf .
>
> ? You wanna leave the dotfiles or something?
>
> :-)
Because "rm -rf ." removes nothing on many versions of Unix. Of the
three I had quick access to, two did nothing. Solaris7 (x86 and sparc)
and Linux (RH 6.0). The other (NCR's MP-RAS) removed everything but
"." and "..".
--
-Mike Wescott
mike.wescott@ColumbiaSC.NCR.COM
------------------------------
Date: Thu, 23 Sep 1999 18:02:36 GMT
From: pacman@defiant.cqc.com (Alan Curry)
Subject: Re: ./ -- why?
Message-Id: <0XtG3.6412$QJ.374695@typ11.nn.bcandid.com>
In article <m1g105x12q.fsf@halfdome.holdit.com>,
Randal L. Schwartz <merlyn@stonehenge.com> wrote:
>Speaking of cargo cult programming... why do people type:
>
> rm -rf *
>
>when it should be
>
> rm -rf .
12:58 a2 defiant /tmp/foo %ls -a
. .. .blah bar
12:58 a2 defiant /tmp/foo %rm -rf .
rm: cannot remove `.' or `..'
12:58 a2 defiant /tmp/foo %ls -a
. .. .blah bar
12:58 a2 defiant /tmp/foo %rm -rf *
12:58 a2 defiant /tmp/foo %ls -a
. ..
12:58 a2 defiant /tmp/foo %rm --version
rm (GNU fileutils) 3.16
12:58 a2 defiant /tmp/foo %man zshoptions
[...]
GLOB_DOTS (-4)
Do not require a leading . in a filename to
be matched explicitly.
[...]
--
Alan Curry |Declaration of | _../\. ./\.._ ____. ____.
pacman@cqc.com|bigotries (should| [ | | ] / _> / _>
--------------+save some time): | \__/ \__/ \___: \___:
Linux,vim,trn,GPL,zsh,qmail,^H | "Screw you guys, I'm going home" -- Cartman
--
Alan Curry |Declaration of | _../\. ./\.._ ____. ____.
pacman@cqc.com|bigotries (should| [ | | ] / _> / _>
--------------+save some time): | \__/ \__/ \___: \___:
Linux,vim,trn,GPL,zsh,qmail,^H | "Screw you guys, I'm going home" -- Cartman
------------------------------
Date: Thu, 23 Sep 1999 13:16:14 -0400
From: "Burt Hwang" <BurtHwangSPAMSUCKS@SPAMSUCKS.ufsltd.com>
Subject: Re: CGI sending email with attachment
Message-Id: <hftG3.65$RA1.2811@client>
>I suggest that he read RFC 1521 if he's going to be writing his own
>MIME messages instead of using MIME::Lite.
1. Where can I read up on RFC 1521?
2. If I were to use MIME::Lite, how? The web server is not really mine.
It really belongs to "host-express". I'm their customer and my site
registered with them. Can I install then use MIME::Lite even if it is not
really my server? Should I find out whether they already support it? Or am
I totally off here?
Thanks.
Kragen Sitaker wrote in message ...
>In article <37ea51cd_2@newsread3.dircon.co.uk>,
>Jonathan Stowe <gellyfish@gellyfish.com> wrote:
>>Burt Hwang <BurtHwangSPAMSUCKS@SPAMSUCKS.ufsltd.com> wrote:
>>> To tell you the truth, I don't really know what I'm doing. But as I've
>>> observed from other email source codes, it looks like you would define a
>>> boundary, then use it with "--" before each. Am I wrong? To me, it
looks
>>> like I AM using the same boundary, no? Here's my code again and sample
>>> email source(see bottom)
>>
>>Yes you are wrong. You are not using the same boundary because the one
>>that you declare has no dashes in from of it. Again if you dont what
>>you are doing use a module like MIME::Lite.
>
>Actually, Burt Hwang is correct. From RFC 1521:
> The Content-Type field for multipart entities requires one parameter,
> "boundary", which is used to specify the encapsulation boundary. The
> encapsulation boundary is defined as a line consisting entirely of
> two hyphen characters ("-", decimal code 45) followed by the boundary
> parameter value from the Content-Type header field.
>
>I suggest that he read RFC 1521 if he's going to be writing his own
>MIME messages instead of using MIME::Lite.
>
>I may reply to his original message if I get time.
>--
><kragen@pobox.com> Kragen Sitaker <http://www.pobox.com/~kragen/>
>Thu Sep 23 1999
>46 days until the Internet stock bubble bursts on Monday, 1999-11-08.
><URL:http://www.pobox.com/~kragen/bubble.html>
------------------------------
Date: Thu, 23 Sep 1999 12:28:33 -0500
From: Tom Briles <sariq@texas.net>
Subject: Re: confusing localtime
Message-Id: <37EA6341.91EB2B5A@texas.net>
"Z. Huang" wrote:
>
> Today is 9/23/99. But localtime shows 8/23/1999. I tested it on two
> unix machines with the same result. Anyone one knows why?
Well, the people who RTFM do.
perldoc -f localtime
HTH. HAND.
- Tom
------------------------------
Date: Thu, 23 Sep 1999 12:06:16 -0400
From: Ala Qumsieh <aqumsieh@matrox.com>
Subject: Re: how to test if a file is a link?
Message-Id: <x3yr9jpwr2f.fsf@tigre.matrox.com>
j9feng@my-deja.com writes:
> As we all know, we can use -e -d -r -w etc to test a file's property.
> Now my question is how to test if a file is a symbolic or hard link.
By reading more of perlfunc. All the file tests are mentioned there:
[snip]
-e File exists.
-z File has zero size.
-s File has nonzero size (returns size).
-f File is a plain file.
-d File is a directory.
-l File is a symbolic link.
-p File is a named pipe (FIFO).
[snip]
And, do you really know what hard links are?
> I am writing a perl script. First, list all the file in 'pwd', then test
> if it is a directory, if it is, I recursively chdir into it and list the
> files again. The problem is that if it is a link which links to its
> parent(or grandparent) directory, I will get an infinite loop. So I need
> to test if it is a link before I do 'chdir'.
Perhaps you could keep a list of all visited directories in a hash
somewhere, and check if that directory has been visited
before. Graph/Tree traversal algorithms might be useful in your case.
HTH,
--Ala
------------------------------
Date: Thu, 23 Sep 1999 12:25:41 -0500
From: Daniel Ward <warddc@cat.com>
To: Jonathan Stowe <gellyfish@gellyfish.com>
Subject: Re: HTTP file upload on NT problem
Message-Id: <37EA6295.C5CCFA75@cat.com>
Thanks that works awesome! -- Dan Ward
Jonathan Stowe wrote:
> Daniel Ward <warddc@cat.com> wrote:
> > How do I tell perl to use a different hard drive for its temp
> > files? It creates CGITEM999999 files in c:\temp, I want
> > to tell perl to place the CGI temp files on d:\temp
> > how do I do that?
> >
>
> I dont think this documented in the CGI manpage but is obvious from the
> code :
>
> $TempFile::TMPDIRECTORY = 'D:/temp';
>
> /J\
> --
> "Is there no demand for mechanical pussies?" - Mrs Slocombe
------------------------------
Date: Thu, 23 Sep 1999 09:52:27 -0700
From: "Lauren Smith" <laurensmith@sprynet.com>
Subject: Re: new to Perl- Activestate's PDK wont install
Message-Id: <7sdlsk$fq2$1@brokaw.wa.com>
Jims News wrote in message
<7sd3st$o7a$1@newsreader2.core.theplanet.net>...
>Hi,
>For my computing degree I am required to learn a bit of Perl. I would
like
>to use ActiveState's Perl Development Kit for Win32
To learn Perl, you probably don't need a full blown Development Kit.
ActivePerl (build 519) should probably be enough to get you up and
running with Perl. It comes with a ton of documentation, and is fully
functional.
>[snip description of install problems]
>Can anyone of you good people help?
You may want to email support@ActiveState.com about your problem.
Good Luck,
Lauren
--
Debugger? Bah, I have my print statements!
------------------------------
Date: Fri, 24 Sep 1999 01:17:32 +0800
From: Jonathan Teo <jonnyace@magix.com.sg>
Subject: Re: ODBC and sub-routines
Message-Id: <37EA60AC.E39A6252@magix.com.sg>
Hello, is anyone there? I've received no reply to this question. Is it
really so stupid a question? If so,
I should receive at least a few flames? *Any* pointers at all, pleeease. I
know there's a lot of you
gurus out there and I'm honestly stuck. Come on, give me a break!
Jonathan Teo
> I'm trying to write some generic sub-routines for connection using
> Win32::ODBC, but just can't make it work. The (trimmed) code is
> below. I've tried various alternatives: "return \$db;" instead of
> "return $db", and dereferencing it in
> the doSQL() call with "doSQL($$mydb...)" instead of "doSQL($mydb,...)".
> The truth is, I'm totally lost.
>
> The program fails at the sql() call:
> Can't call method "sql" without a package or object reference at
> c:\test\test1.pl line 33.
>
> Could someone please tell me what I've done wrong?
>
> Brgds Jonathan Teo
>
> use Win32::ODBC;
>
> my $mydb;
> my $db;
> my $odate;
>
> exit if ($mydb = connectDB("nt10", "abcd", "efgh") == undef);
>
> die "SQL failed!\n" if (doSQL($mydb, "select getdate() odate") < 0);
> if ($mydb->FetchRow()) {
> ($odate) = $mydb->Data("odate");
> }
> print "$odate\n";
>
> sub connectDB() {
> my ($dsn, $uid, $pwd) = @_;
>
> if (!($db = new Win32::ODBC("DSN=$dsn;UID=$uid;PWD=$pwd"))){
> # print some log info here
> return undef;
> }else{
> # print some log info here
> return $db;
> }
> }
>
> sub doSQL {
> my ($db, $sql) = @_;
>
> if ($db->sql($sql) ) {
> print "Error: " . $db->Error() . "\n";
> # print some log info here
> return -1;
> } else {
> # print some log info here
> return 0;
> }
> }
------------------------------
Date: Thu, 23 Sep 1999 12:32:16 -0400 (EDT)
From: KernelKlink@webtv.net
Subject: Re: Perl - CGI -MySQL
Message-Id: <25930-37EA5610-37@newsd-212.iap.bryant.webtv.net>
c_j_marshall@hotmail.com
wrote:
=========
Good question. And I'm sure the guys on the MySQL newsgroup would be
delighted to receive it.
But not us.
=========
Where is the MySQL newsgroup? I searched deja.com before I posted here,
but could not find such a newsgroup.
------------------------------
Date: Thu, 23 Sep 1999 17:26:28 GMT
From: escarge4166@my-deja.com
Subject: Perl and MFC on NT
Message-Id: <7sdnri$fsm$1@nnrp1.deja.com>
Good day, all,
I am working on a typical MFC application for NT. I would like to do
some Perl processing in the background at some point. My problem is
that when I invoke the perl executable (through the system command) for
a split second, and MS-DOS window shows up.
I would really like to prevent this from happening. What can I do to
change the way that this operates?
Your help is greatly appreciated,
Jennifer
escarge@csdi.qualcomm.com
Sent via Deja.com http://www.deja.com/
Share what you know. Learn what you don't.
------------------------------
Date: 23 Sep 1999 10:14:20 PDT
From: root <root@www2.amanage.com>
Subject: perl multi-thread ?
Message-Id: <7sdn5c$hoa@journal.concentric.net>
------------------------------
Date: 23 Sep 1999 10:15:42 PDT
From: root <root@www2.amanage.com>
Subject: perl multi-thread ?
Message-Id: <7sdn7u$hoa@journal.concentric.net>
------------------------------
Date: 23 Sep 1999 10:43:15 PDT
From: shawn fang <shawn@unifygroup.com>
Subject: Re: perl multi-thread ?
Message-Id: <37EA671A.B0C841D5@unifygroup.com>
Hi,
I have a perl scripts that forks a lot of children. How can I reduce
the footprint of those processes ? Is multi-threading the answer and
does perl 5 supports multithreading on Solaris2.7 ? Or is there a way
to have one instance of perl interperator loaded in memory and multiple
instances of a subroutine being executed at the same time ?
I appreciate your help.
shawn
------------------------------
Date: Thu, 23 Sep 1999 16:59:49 GMT
From: david_2exvia@my-deja.com
Subject: Please help a newby...
Message-Id: <7sdm9r$eht$1@nnrp1.deja.com>
Hello,
I'd like to send a form by e-mail from a form.
I have written the page with the form like this :
<form action="../cgi-local/envoi.cgi" target="main" method="POST">
.../...
<input type="Submit" value="Envoyer">
</form>
I have written the envoi.cgi file like this :
#!/usr/bin/perl
print "Content-type: text/html\n\n";
require "cgi-lib.pl";
require "mail-lib.pl";
&ReadParse(*input);
$email_body = "information \n\n";
$email_body .= "$input{'souhaite'}\n";
$email_body .= "$input{'Nom'}";
$email_body .= "$input{'Prenom'}\n";
$email_body .= "$input{'Adresse'}\n";
$email_body .= "$input{'CP'}";
$email_body .= "$input{'Ville'}\n";
$email_body .= "$input{'Telephone'}\n";
$email_body .= "$input{'Situation'}\n";
$email_body .= "$input{'Age'}\n";
$email_body .= "$input{'Conjoint'}\n";
$email_body .= "$input{'Enfants'}\n";
$email_body .= "$input{'Profession'}\n";
$email_body .= "$input{'Regime'}\n";
$email_body .= "$input{'remboursement'}\n";
$email_body .= "$input{'maintient'}\n";
$email_body .= "$input{'supplementaire'}\n";
$email_body .= "$input{'Question'}\n";
&send_mail("from\@me.com", "to\@you.com", "Sujet", "$email_body");
When I click on the submit button, I get the error :Internal server
Error.
I think my call to the CGI is not correct.
Can you help me ?
Thank you.
Sent via Deja.com http://www.deja.com/
Share what you know. Learn what you don't.
------------------------------
Date: Thu, 23 Sep 1999 10:46:05 -0700
From: moseley@best.com (Bill Moseley)
Subject: Re: Please help a newby...
Message-Id: <MPG.12540736c2c2b78a989776@nntp1.ba.best.com>
david_2exvia@my-deja.com (david_2exvia@my-deja.com) seems to say...
> When I click on the submit button, I get the error :Internal server
> Error.
> I think my call to the CGI is not correct.
> Can you help me ?
Sure. Debug your script using the normal CGI debugging methods that are
often discussed in the CGI usenet group. Or check one of the FAQs on
CGI program debugging.
BTW - a style point (at least my style) - single quote text and you
won't have to backslash your @s and you don't need single quotes in your
hashes.
> Sent via Deja.com http://www.deja.com/
$score -= 1000;
--
Bill Moseley mailto:moseley@best.com
pls note the one line sig, not counting this one.
------------------------------
Date: Thu, 23 Sep 1999 12:01:11 -0500
From: Tom Briles <sariq@texas.net>
Subject: Re: Setting process name
Message-Id: <37EA5CD7.EC032B06@texas.net>
Bill Moseley wrote:
>
> Uri Guttman (uri@sysarch.com) seems to say...
> > >>>>> "BM" == Bill Moseley <moseley@best.com> writes:
> >
> > BM> Eighteen hour days are tough on the memory.
> > BM> I thought I remembered reading somewhere in perldoc a way to set the
> > BM> name ps sees for a forked process. Was that a dream or did I see it
> > BM> some place?
> >
> > $0
>
> I've see ;) and :'( and >:o but what does $0 say?
It says 'read the section about $0 in perldoc perlvar'.
> My brain is scrambled?
Well, you'll have to answer that one...
>
> Don't you sleep, Uri?
And uri that one...
- Tom
- Tom
------------------------------
Date: Thu, 23 Sep 1999 10:41:53 -0700
From: moseley@best.com (Bill Moseley)
Subject: Re: Setting process name
Message-Id: <MPG.12540639f420ce18989775@nntp1.ba.best.com>
Tom Briles (sariq@texas.net) seems to say...
> > > $0
> >
> > I've see ;) and :'( and >:o but what does $0 say?
>
> It says 'read the section about $0 in perldoc perlvar'.
Nobody ever gets my jokes :(
Doesn't matter -- Solaris seems to be one of the OS's where it doesn't
work.
--
Bill Moseley mailto:moseley@best.com
pls note the one line sig, not counting this one.
------------------------------
Date: Thu, 23 Sep 1999 18:02:09 GMT
From: Dan Sugalski <dan@tuatha.sidhe.org>
Subject: Re: stopping a thread
Message-Id: <BWtG3.398$Af7.19539@news.rdc1.ct.home.com>
Jim Lewis <jrl@ast.cam.ac.uk> wrote:
> I have a program where I am running a data processing pipeline on a
> thread and
> monitoring its progress in another one. Is there any way of sending a
> signal to
> the processing thread to stop it in its tracks if during the monitoring
> I see something
> is going wrong?
Currently no, though you can always cobble something up yourself. (Have
some sort of variable the thread checks occasionally and then exits if
it's some particular value) 5.6 might address this, at least partially.
Dan
------------------------------
Date: Thu, 23 Sep 1999 12:26:41 -0500
From: Marshall Culpepper <marshalc@americasm01.nt.com>
Subject: Term::Cap
Message-Id: <37EA62D0.A22A5939@americasm01.nt.com>
This is a fairly trivial question, but I'm currently using the Term::Cap
Module to output text in an xterm in certain plot points....
I've got the code working just great, but I'd like to make it look a
little more pleasing to the eye, so I thought there might be a way to
bolden and italicize the text (i'm not really interested in coloring the
text just yet)
Can anyone point me to some documentation on this subject?
I'm running
HP-UX 10.20 PA-RISC
perl 5.004_04
Thanks,
~Marshall
------------------------------
Date: Thu, 23 Sep 1999 13:12:17 -0400
From: Kenneth Bandes <kbandes@home.com>
Subject: Re: toLowercase??
Message-Id: <37EA5F71.3F01EDED@home.com>
Thomas Fischer wrote:
>
> How can I convert a mixedcase string to 100% lowercase with perl?
Use lc.
$x = "This and That";
print lc $x; # outputs this and that
Please do
perldoc -f lc
Ken Bandes
------------------------------
Date: Thu, 23 Sep 1999 17:02:38 GMT
From: ghentghent@my-deja.com
Subject: Re: trouble using the Perl2exe aplication
Message-Id: <7sdmf4$elr$1@nnrp1.deja.com>
I've gotten something like this before. Try putting a use AutoLoader at
the top of your code. Then compile and try again. If you get another
error, just use a 'use' with the module. Repeat process until errors
are fixed.
In article <2UWw3.318$c6.10923@juliett.dax.net>,
"[L] Vicious!" <baal@c2i.net> wrote:
> I'm having some trouble using the Perl2exe aplication, I know this is
not
> related to Perl, but I recon some of you probably have used it.
>
> Compiling my program goes fine, with no errormessages. But when I run
my
> EXE-file I get the errormessage:
>
> Can't locate auto/Tk/autosplit.ix in @INC at
PERL2EXE_STORAGE/AutoLoader.pm
> line 127.
> at PERL2EXE_STORAGE/Tk.pm line 13
> Error: Parse exception
>
> I run Win98 with the latest ActiveState Perl. If you would like to try
the
> Perl2exe program out, I found it on www.demobuilder.com
>
> Apreciate anything which might help...
>
>
Sent via Deja.com http://www.deja.com/
Share what you know. Learn what you don't.
------------------------------
Date: Thu, 23 Sep 1999 16:58:34 GMT
From: nallurichandu@my-deja.com
Subject: two frames using pelr
Message-Id: <7sdm7h$eh5$1@nnrp1.deja.com>
Hello Friends,
my home page consists of frames in the home1frame i have the user name
and password field once i submit the data to login.pl file.if he is a
valied user then i want to open a up a new frame removing the existing
frame. if he is a invalied user it should give a message in the
homeframe2.please help me in this regard.
Sent via Deja.com http://www.deja.com/
Share what you know. Learn what you don't.
------------------------------
Date: Fri, 24 Sep 1999 02:56:24 +0930
From: spamfree@metropolis.net.au (Henry Penninkilampi)
Subject: Re: You should be admired
Message-Id: <spamfree-2409990256250001@d6.metropolis.net.au>
In article
<07D5F91C223384A9.F50F7DD1F6BE7C8E.62E89B43770FD0CD@lp.airnews.net>, Kent
Perrier <kperrier@blkbox.com> wrote:
> > Tell me, Abigail, how does a petulant child gain respect in life? I'm
> > wondering if you know - you seem to be an authority on the subject.
>
> Unfortunately, he/she/it will never see your reply as the *plonk*
> indicates that she kill filed you.
Oh, so it actually *meant* something! Thanks for that Kent.
Not to worry, she hasn't kill-filed you (?) or Kragen, so she'll get to
see what I wrote one way or the other.
Great thing - quotes! Let you speak by proxy. And people who think
kill-files gives them power are very amusing to watch...
:^)
Henry.
------------------------------
Date: Fri, 24 Sep 1999 03:15:04 +0930
From: spamfree@metropolis.net.au (Henry Penninkilampi)
Subject: Re: You should be admired
Message-Id: <spamfree-2409990315040001@d6.metropolis.net.au>
In article <37EA59F3.112E809A@chaos.wustl.edu>, elaine@chaos.wustl.edu wrote:
> >I responded by
> > isolating her behavioural problem and delivered it to her on the end of a
> > sharp tongue. That had the desired effect - it shut her up and put her
> > back in her place (for now).
>
> As an academic curiosity, would you have done the same if she were a he?
Absolutely.
> I ask because there has been some speculation as to why there are so few
> women in the Perl community who are active participants.
Is the ratio unusually lower for Perl than it is for other programming
languages? Are there less women coding Perl than other programming
languages?
I know the answer to neither of the above questions, but perhaps answering
them might be a worthwhile place to start. Maybe?
> Either way, I'm curious because of the way you worded it 'put her back
> in her place' as this is generally a chauvenistic boast.
I've been dealing with women in positions of authority for a long time,
and my observation has been that they are much more capable and reasonable
than their male equivalents - hence they need to be cut down to size less
often.
I'm probably as chauvinistic as the next guy, but in my book an idiot is
an idiot (etc. etc.), and it makes no difference if they wear a skirt.
Hope that helps.
Henry.
------------------------------
Date: 23 Sep 1999 13:47:58 -0400
From: Uri Guttman <uri@sysarch.com>
Subject: Re: You should be admired
Message-Id: <x74sgl4j01.fsf@home.sysarch.com>
>>>>> "KP" == Kent Perrier <kperrier@blkbox.com> writes:
KP> This is what all new readers of ANY news group should do. Except that
KP> the standard lurking time is two weeks, not three months.
for some very small values of two weeks, it seems.
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: 16 Sep 99 21:33:47 GMT (Last modified)
From: Perl-Users-Request@ruby.oce.orst.edu (Perl-Users-Digest Admin)
Subject: Digest Administrivia (Last modified: 16 Sep 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.
| NOTE: The mail to news gateway, and thus the ability to submit articles
| through this service to the newsgroup, has been removed. I do not have
| time to individually vet each article to make sure that someone isn't
| abusing the service, and I no longer have any desire to waste my time
| dealing with the campus admins when some fool complains to them about an
| article that has come through the gateway instead of complaining
| to the source.
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 V9 Issue 889
*************************************