RE: I have got the answer - HEY

2002-02-15 Thread Walter Torres

Anyone have any ideas why I'm getting hundreds of copies of this particular
message?

walter


 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED]]On Behalf Of
 [EMAIL PROTECTED]
 Sent: Friday, February 15, 2002 4:53 AM
 To: [EMAIL PROTECTED]
 Subject: I have got the answer


 thanx guys. i have got the answer

 ___
 Perl-Win32-Users mailing list
 [EMAIL PROTECTED]
 To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

___
Perl-Win32-Users mailing list
[EMAIL PROTECTED]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs



RE: Hash Questions

2002-02-04 Thread Walter Torres

 Hello,

 I have defined a hash in a specific order. When I print the hash elements,
 the hash become unsorted and prints the elements out of my original order.

 Is there any way to restrict the hash from internally sorting the
elements?

 snip

1) you can not determine the order of elements in a hash table.

2) Perl does not sort its hash tables.

3) Carl's solution to this issue is exactly what I use to pull out
   data from a hash in a particular order.

Walter

___
Perl-Win32-Users mailing list
[EMAIL PROTECTED]
To unsubscribe: http://listserv.ActiveState.com/mailman/listinfo/perl-win32-users



RE: How to find a drive exsistence

2001-04-27 Thread Walter Torres

Try this, see if it helps

Walter



 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED]]On Behalf Of
 Grant Hopwood
 Sent: Thursday, April 26, 2001 9:55 AM
 To: Asif Kaleem
 Cc: [EMAIL PROTECTED]
 Subject: Re: How to find a drive exsistence
 
 
 -start-
Asif Kaleem [EMAIL PROTECTED]
 at04/26/2001 09:37 AM
 
 Hello Gang:
 
 I am in a process of writing a Perl program that has the following 
 requirement.
 
 $DumpDevicesDrive = F;
 
 This variable is read from a configuration file if this 
 variable has a 
 value we
 proceed on, if this variable is not set then we look for 
 Drive F, if not 
 found
 look for drive D, if not found look for Drive C.
 
 My Question: Is there a way to find out if the drive exists?
 
 See Win32::FileOp at http://jenda.krynicky.cz/
 
 Grant Hopwood.
 Valero Energy Corp.
 (210)370-2380
 PGP Public Key: Ldap://certserver.pgp.com
 nuclear iraq bioweapon encryption cocaine korea terrorist
 ___
 Perl-Win32-Users mailing list
 [EMAIL PROTECTED]
 http://listserv.ActiveState.com/mailman/listinfo/perl-win32-users
 get-cd-2.pl


Re: can anyone recommend an easy-to-install web server for pc

2001-04-10 Thread Walter Torres

I have apache on my laptop.

I have it installed on a 'development' partion, along with my Perl install.

Both installs are in directory trees that match my UNIX server, that way my
perl scripts SheBANG line don't have to change for the PC and then change
again when I place them on my UNIX server.

Works great!

No volume letters needed!

Also, by modifing the HOST file, I can use 'web.torres.ws' as my local
address instead of local host. 'www.torres.ws' is my online address, the
'web' is my local address.

Works fine.

Walter


- Original Message -
From: "David Blaikie" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, April 10, 2001 12:10 PM
Subject: can anyone recommend an easy-to-install web server for pc


 I want to be able to test cgis on my pc using a browser, but without
 connecting to a network -- supposedly calling 'localhost' in the URL.
 What's the easiest way I can set up a web server?  Nothing fancy required
 -- just for testing CGIs.

 thanks in advance,

 David


 ___
 Perl-Win32-Users mailing list
 [EMAIL PROTECTED]
 http://listserv.ActiveState.com/mailman/listinfo/perl-win32-users

___
Perl-Win32-Users mailing list
[EMAIL PROTECTED]
http://listserv.ActiveState.com/mailman/listinfo/perl-win32-users



Re: Regular Expression questions

2001-03-28 Thread Walter Torres

- Original Message - 
From: "Lee Goddard" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]; "Walter Torres" [EMAIL PROTECTED]
Cc: "Perl-Win32-Users" [EMAIL PROTECTED]
Sent: Wednesday, March 28, 2001 7:31 AM
Subject: Re: Regular Expression questions


 At 17:34 27/03/2001 -0800, $Bill Luebkert wrote:
 Walter Torres wrote:
 
   I brake this down to this...
 
 That's break not brake. :)
 
 Broke.
 

Aw Jeez!

If your gunna pick!

;)

Walter


___
Perl-Win32-Users mailing list
[EMAIL PROTECTED]
http://listserv.ActiveState.com/mailman/listinfo/perl-win32-users



Re: Regular Expression questions

2001-03-28 Thread Walter Torres


- Original Message -
From: "$Bill Luebkert" [EMAIL PROTECTED]
To: "Walter Torres" [EMAIL PROTECTED]
Cc: "Perl-Win32-Users" [EMAIL PROTECTED]
Sent: Tuesday, March 27, 2001 7:34 PM
Subject: Re: Regular Expression questions


 Walter Torres wrote:
 
  OK, I have to ask...
 
  Lee wrote this...
 
 $a =~ s/^(\d+)(\d{4})$/\1/;
 
  I brake this down to this...

 That's break not brake. :)

 
  @s =~  s/# substitute
   ^   # start at the top

 ^ Anchor to the beginning of the string.

Yes, that's what I was refering too, but I should have used 'anchor to
beginning' to help other understand what this is doing.

Thanks for the validation. I was wondering how this was working.

Walter


___
Perl-Win32-Users mailing list
[EMAIL PROTECTED]
http://listserv.ActiveState.com/mailman/listinfo/perl-win32-users