Re: FW: Parsing a line - part 2

2002-04-24 Thread John W. Krahn
[Please don't top-post] Rich Busse wrote: From: John W. Krahn [mailto:[EMAIL PROTECTED]] Here is one way to do it: $_ = q[P=IcwRcsm D=D: SL=20 ST=d:\icw\rcsm\StartSv.bat Parm1 Parm2 U=http://uslv...]; my ( $Proc, $Start, $Url, $Sleep, $Drive ); my %keys; @keys{

FW: proxy server

2002-04-22 Thread Jackson, Harry
-Original Message- From: Todd Wade [mailto:[EMAIL PROTECTED]] Go get the Perl Cookbook. Very good advice in any weather. If you have not got it, get it, its a fantastic book and I am always turning to it. Harry

FW: Hash Values (again)

2002-04-04 Thread Allison Ogle
Basically I have a hash with keys and all the values of these keys are set to zero. Then I step through my input file with the filehandle and I want to compare the filehandle to all of the keys in the hash. if there is a match, I would like to increment the value. My hash is called %seen.

Re: FW: Hash Values (again)

2002-04-04 Thread Chas Owens
On Thu, 2002-04-04 at 11:35, Allison Ogle wrote: Basically I have a hash with keys and all the values of these keys are set to zero. Then I step through my input file with the filehandle and I want to compare the filehandle to all of the keys in the hash. if there is a match, I would like

FW: Time arithmetics...

2002-04-02 Thread Richard Smith
This is a problem for us historians. I would hope that perl designers, among others, are thinking about wide date ranges... Thanx, Smiddy ( About that log message from AD 61, ... ) -Original Message- From: Michael Kelly [SMTP:[EMAIL PROTECTED]] Sent: Tuesday, April 02, 2002 11:42

FW: How does one get returned values from embeded scalars

2002-04-01 Thread J . Hourihane
The problem I am having is with $full How do I get $login to return its value when I try to assign this scalar $full Thanks in advance #!/util/perl5.static $hostname = qx(/usr/ucb/hostname); chomp $hostname; %hosts = ( crane = hourihj, runner = paulg, ice = root, );

Re: FW: How does one get returned values from embeded scalars

2002-04-01 Thread bob ackerman
looks like '$login = print $hosts{$hostname};' is not what you want. 'print' function returns '1' -- not the string it prints. you want: $login = $hosts{$hostname}; and if you really want to print the value: print $login; On Monday, April 1, 2002, at 08:30 AM, [EMAIL PROTECTED] wrote: The

FW: Connecting to DB

2002-03-28 Thread Michael Gargiullo
OK I have the following array @new which has the following data in it this town this state zipcode county fips (I want discarded) Area code And want to insert these vars into my DB I'm using this code: #!/usr/bin/perl -w use LWP::Simple; use

Fw: best place to get Perl...

2002-03-27 Thread Chris H.
for my system running Win 95 ?? I'm reading beginning Perl and need to start writing code asap... Thnx in advance. Chris.

FW: How to thread in Perl?

2002-03-27 Thread Richard Smith
Actually, it is a *NIX thing. There are non-blocking ways to reap children, at least in most modern *NIX systems. You probably also want to look at the documentation for the wait() function. It may explain why your experiment appeared to work. Anybody know how to do non-blocking waits in

Fw: perl..changing directory

2002-03-25 Thread subbu
hi, i am trying to write a program that changes to any user-specified directory on a machine .. regards keshav

Fw: How I can do logout?

2002-03-25 Thread Luis Guillot
Thank you very much for response. I'm asking about expiring session, and I just know that Perl cann't do it. I imagined that the solution was Javascript. The question is as I can do it. Luis Guillot - Original Message - From: Hanson, Robert [EMAIL PROTECTED] To: 'Luis

FW: Easy CMD

2002-03-24 Thread Gary Hawkins
In a private correspondence someone wrote: The application is called FastCommandPrompt. At http://www.webattack.com, if you enter fast command, it is the first one which shows up on your screen. After installation, it is a right click and the option 'Launch Command Prompt' and you are

Fw: DBI w/ DBD:ODBC or DBD:mysql or DBIx-AnyDBD

2002-03-21 Thread Bob T
- Original Message - From: Bob T To: [EMAIL PROTECTED] Sent: Thursday, March 21, 2002 11:10 PM Subject: Fw: DBI w/ DBD:ODBC or DBD:mysql or DBIx-AnyDBD - Original Message - From: Bob T To: [EMAIL PROTECTED] Sent: Thursday, March 21, 2002 11:08 PM Subject: DBI w/ DBD:ODBC

Re: FW: How long can $_ be?

2002-03-14 Thread Elaine -HFB- Ashton
Anette Seiler [[EMAIL PROTECTED]] quoth: * * This got me wondering. Is the behavior you see caused by limitations * for $_, or by limitations of the print function? You might try: * print strlen( $_ ), \n; * *My Perl doesn't know what strlen is. Is it part of a module? * *I don't think, it is

FW: Save image to disk

2002-03-14 Thread Gary Hawkins
Worked fine on the remote system, but, can someone give me the ppm install ... url line to install LWP::Simple? -Original Message- From: Sent: Thursday, March 14, 2002 8:16 AM To: 'Gary Hawkins' Subject: RE: Save image to disk It looks like you didn't get a straight answer. You

FW: Perldoc question

2002-03-13 Thread Collins, Joe (EDSI\\BDR)
If new to unix and you want to find perldoc (or any module), try this: find . -name perldoc* -print That will locate perldoc and show you the path to it. You could also try: whence perldoc That may also work (works for me under ksh) Hope that helps, Joe -Original Message- From:

FW:

2002-03-13 Thread J . Hourihane
Hi guys I am having trouble trying to figure out how to do a match between two hashes basically I have the $login and $gid from the passwd file and the $gid and $gname fields from the group file. (I got these from getpwent and getgrent) #!/util/perl5.static -w # Build phash %phash = (); $gid

FW: How long can $_ be?

2002-03-13 Thread Richard Smith
Hi Folks, This got me wondering. Is the behavior you see caused by limitations for $_, or by limitations of the print function? You might try: print strlen( $_ ), \n; Thanks, Smiddy -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: FW: How long can $_ be?

2002-03-13 Thread Anette Seiler
Hi Smiddy, you wrote: This got me wondering. Is the behavior you see caused by limitations for $_, or by limitations of the print function? You might try: print strlen( $_ ), \n; My Perl doesn't know what strlen is. Is it part of a module? I don't think, it is a limitation of the print

FW: Perl install on Win XP

2002-03-02 Thread Shaun O'Reilly
-Original Message- From: Shaun O'Reilly [mailto:[EMAIL PROTECTED]] Sent: 02 March 2002 03:01 PM To: [EMAIL PROTECTED] Subject: Perl install on Win XP Hi, I am sorry for being stupid, but I do not understand the following in Perl-5.00502-mswin32-x86.readme: To install this archive,

Re: FW: Perl install on Win XP

2002-03-02 Thread Johannes Franken
On Sat, Mar 02, 2002 at 08:11:48PM +0200, Shaun O'Reilly wrote: assign the extension .PL [...] Perl.exe or Perl.dll or create a new one called Perl.pl? assign it to perl.exe -- Johannes Franken Professional unix/network development mailto:[EMAIL PROTECTED] http://www.jfranken.de/ -- To

Fw: off topic : frames html question

2002-02-26 Thread Rahul Garg
I also dont know whether its possible or not! any suggestions ! Well, I have a html page which has many hyperlinks. Now each hyperlink at present calls another html page that has two frames(horizontally).Ist frame is same for all links. Now second frame is also same but has many bookmarks. I

Fw: off topic : frames html question

2002-02-26 Thread Rahul Garg
Well, I also dont know whether its possible or not ? Any suggestions. - Original Message - From: Rahul Garg [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, February 27, 2002 10:57 AM Subject: off topic : frames html question Well, I have a html page which has many hyperlinks.

Re: Fw: off topic : frames html question

2002-02-26 Thread Jon Molin
Rahul Garg wrote: Well, I also dont know whether its possible or not ? Any suggestions. I hope you won't keep replying to your own question every second hour, saying that you don't know the answer /jon - Original Message -- To unsubscribe, e-mail: [EMAIL PROTECTED] For

FW: Timeout issue using the Perl NET cmd method

2002-02-21 Thread Bill Barrett
Between one of my colleagues and myself, we stumbled on to the problem. It was an incorrect Prompt assignment when I was doing a new on my telnet object. Those darn typos. Sorry, Bill Barrett -Original Message- From: Bill Barrett [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 21,

FW: eqvt. to MACROS

2002-02-12 Thread Lawrence Liew
Hi there, Jenda suggested that I post my question on this list. Right. I want to merge 4 RTF documents into a single doc because they're of different parts, after being converted from Framemaker. For example: BrisCasAgrA92_01B_.rtf (3rd) BrisCasAgrA92_01B_C.rtf (1st) BrisCasAgrA92_01B_E.rtf

FW: Help reqd. for collecting data

2002-02-05 Thread Anand, Pankaj
Further to below mentioned mail , How to collect ata for weekly basis , like 01/04 -- Data1 Data2 Data3 01/11 -- Data1 Data2 Data3 01/18 -- Data1 Data2 Data3 And so on One thing I can do is tail the last 7 lines of daily data file and put in some file so that I have to run the job

FW: Formats

2002-02-01 Thread ABhagwandin
-Original Message- From: Anthony Bhagwandin Sent: Friday, February 01, 2002 1:11 PM To: [EMAIL PROTECTED] Subject: Formats Why does the following not work for me? format NAME = TEST @ $test $test = asdfjkl;; select(NAME); write(); __END__ -- To unsubscribe, e-mail:

Fw: cronjob problem

2002-01-21 Thread Rahul Garg
Hello, I am running crontab command. I want the output of commands in crontab file to be mailed to me. For that I am setting the MAILTO environment variable at the beginning of crontab file. MAILTO=email-id But its not working though the commands in crontab file are working fine. Also,

Fw: substitute all non-digits with ''. I think I saw this posted rec ently, but I could not find it...

2002-01-07 Thread Tanton Gibbs
- Original Message - From: Tanton Gibbs [EMAIL PROTECTED] To: Tanton Gibbs [EMAIL PROTECTED] Sent: Monday, January 07, 2002 3:06 PM Subject: Re: substitute all non-digits with ''. I think I saw this posted rec ently, but I could not find it... oops :) forgot the c on my tr $str =~

FW: question on cook book example

2002-01-04 Thread marcus_holland-moritz
| buy not exactly sure how this is working. tried looking at | perldoc pack | but no luck. explanation is appreciated. perldoc unpack gives the explanation: In addition to fields allowed in pack(), you may prefix a field with a %number to indicate that you want a number-bit checksum of

FW: Why can't this two programs be piping?

2002-01-03 Thread Mariana Añez
Do you mean I should use name pipes (using open function)? -Original Message- From: Matthew Lyon [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 02, 2002 3:53 PM To: John W. Krahn Cc: [EMAIL PROTECTED] Subject: Re: Why can't this two programs be piping? This goes beyond the scope

Re: FW: Why can't this two programs be piping?

2002-01-03 Thread Matthew Lyon
no. I'm not saying anything. I tend to like naming thnigs, however for clarity of thought. On Thu, 3 Jan 2002, Mariana Añez wrote: Do you mean I should use name pipes (using open function)? -Original Message- From: Matthew Lyon [mailto:[EMAIL PROTECTED]] Sent: Wednesday,

FW: question -- beginner's programmer's block (your answer)

2002-01-03 Thread Booher Timothy B 1stLt AFRL/MNAC
I hope this serves as an answer . . . The original file is of this form: * foo *** thingA: 12 thingB: 23 thingC: 21 trial 1 colAcolBcolCcolD 1 23 28 273 227

Re: FW: question -- beginner's programmer's block (your answer)

2002-01-03 Thread Jeff 'japhy' Pinyan
On Jan 3, Booher Timothy B 1stLt AFRL/MNAC said: I hope this serves as an answer . . . Ok, I see. Then in your case, you'd probably want to do something like: for (split /\n/, $buffer) { ($field, $value) = split /\s*:\s+/; $field =~ s/^\s+//; $value =~ s/\s+$//; # do

FW: C vs. Perl

2002-01-02 Thread Busse, Rich
This might have been beaten to death today, but I'd like to add my $0.02: 1. You Linux guru says C would be faster than Perl? Prove it. Are there any specific benchmarks? Probably not. Remember, assembly language is faster than C! 2. Just this morning I wrote a 3 line Perl fragment to run a

Re: FW: Question

2001-12-20 Thread Jerry Preston
Pankaj, What I did was to make the background display area larger and then write the info to that area. my $back_ground = 800; my $image = new GD::Image( $back_ground + 660, $back_ground + 130 ); Jerry Pankaj Warade wrote: -Original Message- From: Pankaj Warade [mailto:[EMAIL

FW: Question

2001-12-19 Thread Pankaj Warade
Title: Glacier -Original Message-From: Pankaj Warade [mailto:[EMAIL PROTECTED]]Sent: Wednesday, December 19, 2001 3:56 PMTo: BeginnersSubject: Question I am using the GD:Graph for plotting the graphs. These graphs are generated on the fly and displayed on a wab browser. I need to

Re: FW: Perl and Web Service Providers

2001-12-18 Thread Michael Fowler
On Sat, Dec 15, 2001 at 06:06:59PM +0100, Greennet wrote: Merry Christmas All! And a Merry Christmas to you too. Sorry if this is the wrong list. I'm new to Perl, CGI, and web service providers so I'm not sure if this is the right list to post my question to. If it's not will someone let

FW: Perl and Web Service Providers

2001-12-15 Thread Greennet
Merry Christmas All! Sorry if this is the wrong list. I'm new to Perl, CGI, and web service providers so I'm not sure if this is the right list to post my question to. If it's not will someone let me know where I should post to get an answer and I'll send it there. I wrote a Perl script using

FW: Question about searching a log file

2001-12-07 Thread Lance Prais
I am a beginning perl developer and am a little confused I was wondering if anyone out there can give me some direction. or at the very least tell me a good site for beginners to get information. it seem like every site is for advanced developers My situation is as follows I have a command that

Re: FW: Long variable again

2001-12-06 Thread Carl Rogers
At 02:09 PM 12/6/2001 +1030, Daniel Falkenberg wrote: Hey again all! $string = attack. The password for $user_to_change should not have to be changed.\n. - x 70, \n Hello. Thank you for using our software.\n\n; Now I have been informed to replace the , with a

Re: FW: Long variable again

2001-12-06 Thread iain truskett
* Carl Rogers ([EMAIL PROTECTED]) [07 Dec 2001 06:34]: [...] How about this: $linebreak = - x 70; $string = \nHELLO WORLD!\n\n. To $to, \n\n. \n. $linebreak. \n Hello World . Thank you for using our software.\n\n; Not pretty, not elegant, but get's the

FW: Long variable again

2001-12-05 Thread Daniel Falkenberg
Hey again all! $string = attack. The password for $user_to_change should not have to be changed.\n. - x 70, \n Hello. Thank you for using our software.\n\n; Now I have been informed to replace the , with a . at the second line of the string near 70. This gives me

[ADMIN THREAD CLOSED] Re: (End this thread) Re: Fwd: Fw: PLEEEEEEEASE READ!!!

2001-12-04 Thread Kevin Meltzer
Hi folks. I was hoping this would die out gracefully, but alas it has not. Let's consider this thread CLOSED and move on. Thanks for your cooperation. Cheers, Kevin On Mon, Dec 03, 2001 at 11:23:39AM -0800, Curtis Poe ([EMAIL PROTECTED]) said something similar to: End this thread, please. If

Re: Hoax filter [was: Fwd: Fw: PLEEEEEEEASE READ!!!]

2001-12-04 Thread Roger C Haslock
, December 04, 2001 12:00 PM Subject: Re: Hoax filter [was: Fwd: Fw: PLEEEASE READ!!!] Mark, the first thing I thought when I read the subject was: Oh, no! Another one who overread this lot of 2 pence to this thread and Curtis' request to stop it finally... But now to the new subject

Fw: mail attachments

2001-12-04 Thread Jon Howe
Hi all I have nicked this script from http://alma.ch/perl/Mail-Sendmail-FAQ.htm#attachments The thing is all works well except for the fact the attachment arrives named as perl(somenumber.kb) Does any one no how I can name the attachment the same as the value passed to file handle F by

FW: Using Time::Localtime module

2001-12-04 Thread Nicholas . Saner
This is one of the first Perl scripts I wrote, fooling around with localtime(), timelocal() and timegm(). # the functions timelocal() and timegm(), which are contained in the module Time::Local, are inverses of # the built-in Perl function localtime(). use Time::Local; # Populate a list with

(End this thread) Re: Fwd: Fw: PLEEEEEEEASE READ!!!

2001-12-03 Thread Curtis Poe
, but maybe you should read it. it may be true and if so it's a really good deal. Note: forwarded message attached. ATTACHMENT part 2 message/rfc822 Date: Thu, 29 Nov 2001 17:20:22 -0800 (PST) From: michael tran [EMAIL PROTECTED] Subject: Fwd: Fw: PLEEEASE READ!!! To: [EMAIL

Re: (End this thread) Re: Fwd: Fw: PLEEEEEEEASE READ!!!

2001-12-03 Thread Scott R. Godin
In article [EMAIL PROTECTED], [EMAIL PROTECTED] (Curtis Poe) wrote: End this thread, please. If you have something to say to this individual, please do so privately. Yes, the spam was innapropriate, but I find it a bit ironic that the spam-haters have generated so much, uh, spam.

Re: Fw: PLEEEEEEEASE READ!!!

2001-12-02 Thread Roger C Haslock
OT: Such people should have their e-mail priveleges removed. - Roger - - Original Message - From: Dean Theophilou [EMAIL PROTECTED] To: lynn bui [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Sunday, December 02, 2001 4:57 AM Subject: RE: Fw: PLEEEASE READ!!! When I feel like taking

Re: Fw: PLEEEEEEEASE READ!!!

2001-12-02 Thread Jonathan Gardner
On Sunday 02 December 2001 08:13 pm, Roger C Haslock wrote: OT: Such people should have their e-mail priveleges removed. - Roger - Step 1: Contact their ISP Step 2: Complain Most ISP's are as intolerant of this as you are. They will at least warn the guy, at best cut him off. Jonathan --

Re: Fwd: Fw: PLEEEEEEEASE DONT BE SO STUPID!!!

2001-12-01 Thread Mel Matsuoka
At 10:28 PM 11/30/2001 -0800, you wrote: hey, this does not concern perl, but maybe you should read it. it may be true and if so it's a really good deal. Note: forwarded message attached. If it does not concern Perl, then why the hell are you spamming it to this mailing list, as well as dozens

Re: Fwd: Fw: PLEEEEEEEASE DONT BE SO STUPID!!!

2001-12-01 Thread nafiseh saberi
PROTECTED] To: lynn bui [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Friday, November 30, 2001 22:24 PM Subject: Re: Fwd: Fw: PLEEEASE DONT BE SO STUPID!!! At 10:28 PM 11/30/2001 -0800, you wrote: hey, this does not concern perl, but maybe you should read it. it may be true and if so

RE: Fw: PLEEEEEEEASE READ!!!

2001-12-01 Thread Dean Theophilou
When I feel like taking a chance on opening attachments like yours, it'll be a cold day in hell. On a more serious note, are you a moron? -Original Message- From: lynn bui [mailto:[EMAIL PROTECTED]] Sent: Friday, November 30, 2001 10:29 PM To: [EMAIL PROTECTED] Subject: Fwd: Fw

Fwd: Fw: PLEEEEEEEASE READ!!!

2001-11-30 Thread lynn bui
[EMAIL PROTECTED] Sent: Monday, November 19, 2001 11:48 AM Subject: FW: PLEEEASE READ!!! Show me the money! (and monkey's will fly out of my) -Original Message- From: Craig [mailto:[EMAIL PROTECTED]] Sent: Friday, November 16, 2001 6:18 PM To: Nicole Hric; Monkey Boy; Joe

Re: FW: Question:

2001-11-16 Thread register
$arrayref seems okay assuming that $prod is an array ref it should be $prod-[0] * $prod-[1] On Fri, Nov 16, 2001 at 11:52:49AM -0500, AMORE,JUAN (HP-Roseville,ex1) shaped the electrons to read: Hello, Do I have the below dereferencing correct. I a anonymous array and I'm trying to

Re: Fw: question

2001-11-08 Thread Jenda Krynicky
[almost OT now ! Just talkin' and talkin' ...] From: Jeff 'japhy' Pinyan [EMAIL PROTECTED] On Nov 8, shirley said: Is it possible read in the data then extract the Max value and Minimum value out of that data set using perl ? Sorting a list of numbers is NOT the best

FW: Problem performing a split using triangular brackets

2001-11-01 Thread Watkiss, Stewart
Hello, This is a resend of my earlier email. Apologies to anyone that couldn't read my earlier email - I forgot to change the formatting to plain text. How outlook express can let you specify a format per user, but outlook 2000 can't I'll never know. I have a program that deals with Email

Re: FW: Problem performing a split using triangular brackets

2001-11-01 Thread Etienne Marcotte
I you just say use strict; my $full_address = 'My Name [EMAIL PROTECTED]' my ($user, $email) = split (//,$full_address); $user =~ s///g; # remove the in the name, you could perfect it so that it only removes the first and last one, keeping Robert bob Ducharme as $name with the in it $email =~

FW: What is Auto-Vivification

2001-10-19 Thread Kipp, James
#Please note that I am trying to access a new non-existing Autovivication does not happen when you are trying to access the non existing key, it happens when you are trying to assing it. So if you have: $href-{foo} and you do something like print $href-{fou} it will then create this entry

Re: FW: What is Auto-Vivification

2001-10-19 Thread RaFaL Pocztarski
Kipp, James wrote: Autovivication does not happen when you are trying to access the non existing key, it happens when you are trying to assing it. So if you have: $href-{foo} and you do something like print $href-{fou} it will then create this entry which can be detrimental. No. Printing

FW: Everyone please move on.... RE: Sh*t!!!!!!!!

2001-10-11 Thread padula, domenic
Perhaps but WE can't help you. It should be taken offline with an administrator for the courtesy of others on this list. -Original Message- From: Chris Wilson [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 11, 2001 12:18 To: padula, domenic Subject: Re: Everyone please move on

FW: Browser Redirection

2001-10-10 Thread Grierson, Garry (UK07)
Oops the URL should be: http:[EMAIL PROTECTED]/ -Original Message- From: Grierson, Garry (UK07) Sent: Wednesday, October 10, 2001 12:49 PM To: '[EMAIL PROTECTED]' Cc: '[EMAIL PROTECTED]' Subject: Browser Redirection This is the same answer as my last post!! Go to

Re: Any suggested response ? FW: Need PERL module DBI on SUN1

2001-10-03 Thread Brett W. McCoy
On Wed, 3 Oct 2001, Moon, John wrote: Does anyone have any suggestions as to how to reply to this gentleman ? There's nowhere near enough information to go on to even venture a guess. -- Brett http://www.chapelperilous.net/

FW: Storing a Decryptable Password?

2001-10-02 Thread RArul
Read this article, which implements RC4 Symmetric encryption in VBScript. http://www.4guysfromrolla.com/webtech/010100-1.shtml I mimicked the idea by creating a Perl DLL which would encrypt a plain-text password. The logic behind a symmetric encryption is that you provide a key which would

RE: FW: rmdir

2001-09-26 Thread Porter, Chris
Please remove me from the mailing list. Thank you. Chris -Original Message- From: Michael Fowler [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 27, 2001 5:27 PM To: Me Cc: Porter, Chris; [EMAIL PROTECTED] Subject: Re: FW: rmdir On Wed, Jun 27, 2001 at 03:51:43PM -0500, Me wrote

Re: FW: rmdir

2001-09-26 Thread Scott P
5:27 PM To: Me Cc: Porter, Chris; [EMAIL PROTECTED] Subject: Re: FW: rmdir On Wed, Jun 27, 2001 at 03:51:43PM -0500, Me wrote: Basically, you have to write a sub that does the following sort of thing (ignoring your wrinkle that you don't want to delete all the files in the initial

FW: system calls

2001-09-24 Thread Busse, Rich
For Windows NT, try system (start $command); For a load of options, enter start /? at the Windows NT command line. -Original Message- From: Najamuddin, Junaid [mailto:[EMAIL PROTECTED]] Sent: Friday, 21 September, 2001 14:56 To: 'Sidharth Malhotra'; Jonathan Howe; [EMAIL PROTECTED]

FW: associative array of arrays

2001-09-23 Thread Zysman, Roiy
Hi all, Can any one show me a way on how to use associative arrays to hold array pointers,and how to modify the arrays (not the associativeones) Thx

Re: FW: associative array of arrays

2001-09-23 Thread Troy Denkinger
On Sunday 23 September 2001 02:20, Zysman, Roiy wrote: Can any one show me a way on how to use associative arrays to hold array pointers,and how to modify the arrays (not the associativeones) Well, I suppose one could give examples here, but you're going to be best off if you read about it

Re: FW: formating variables

2001-09-18 Thread Brett W. McCoy
On Tue, 18 Sep 2001, Wagner wrote: I have a variable $var and its value is 345.678975 (for example). How can i format $var to became 345.67 only two digits after the point... printf(%.2f, $var); Note that this will do actual rounding of your number as well. Another question... my

FW: Variable interpolation in a format - Disregard

2001-09-13 Thread Kim Green
never mind. -Original Message- From: Kim Green Sent: Thursday, September 13, 2001 9:11 AM To: '[EMAIL PROTECTED]' Subject: Variable interpolation in a format Below is my format: format FILE_TOP = New Customers Since

Re: FW: problem with using HTML::FormValidator

2001-09-07 Thread Mark Stosberg
Hello again Maryana, It appears that you are not following the format of the example given below, which is the cause of you error. You have the right idea about how to call an anonymous subroutine (like this: \subroutine ). Here's a test script with the syntax you are looking for: ### use

Re: FW: problem with using HTML::FormValidator

2001-09-07 Thread Maryana Osipchuk
Hi, Mark! Thanx for answer - it's partly help me to resolve my problem (now I use Data::FormValidator). Tnx for so usefull module ;o) But to call my function I need do it in that way: p1 = { constraint = \main::valid_equiv, params = [ qw (p1 p2)], }, when I

Re: FW: problem with using HTML::FormValidator

2001-09-06 Thread Mark Stosberg
-- Forwarded Message From: Maryana Osipchuk [EMAIL PROTECTED] When I try using this one (as constraint rule - my own function) -- p1 = { constraints = valid_equiv, params = [qw (p1 p2)] } valid_equiv as main::valid_equiv -- I receive an

FW: Bind variables

2001-09-04 Thread Kim Green
My script has a statement handle that accepts only one parameter. I am assigning the parameter given to the $ARGV[0]. I run the script from the command line, also sending the parameter. I am also assigning all selected values to an array for output. I continue to get this message: Can't

FW: File names on NT

2001-08-29 Thread Rice, Elizabeth A.
Ok. That gets me quite a bit further down the road. What I've done now is the following that will run when the OS is NT: # change forward slashes to backslashes for each line in file called filetab open (FILETAB, +${filetab}) or die (Cannot open $filetab for update \n); while (FILETAB) {

Re: Fw: Virus alert

2001-08-27 Thread Mark Byerley
ROTECTED]; [EMAIL PROTECTED]; [EMAIL PROTECTED]; [EMAIL PROTECTED]; [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Tuesday, August 21, 2001 5:28 PM Subject: Fwd: Fw: Virus alert From: Cherrise Nathaniel [EMAIL PROTECTED] To: ANDRE' HECTOR [EMAIL PROTECTED], [EMAIL PROTECTED], [EMAIL P

FW: Sorting

2001-08-24 Thread Govinderjit Dhinsa
How do I please sort; $a in ascending order ## $inFile = ETOPUP-TRANSACTIONS.DAT;1; $outFile = sort-etopup.pl; open IN, $inFile or die Can't open $inFile: $!; open OUT, $outFile or die Can't create $outFile: $!; while (IN) {

Re: Fw: Browser Problem

2001-08-23 Thread Curtis Poe
--- Advance Design - Vance [EMAIL PROTECTED] wrote: Hi Joel, Thanks for the fast reply. This is the html document heads. I have tried messing about with these, but with no change in result. !doctype html public -//W3C//DTD HTML 4.0 Transitional//EN html head titlebase-02.html/title

Fw: Fw: Virus alert

2001-08-22 Thread Bernhard
: Fwd: Fw: Virus alert From: Cherrise Nathaniel [EMAIL PROTECTED] To: ANDRE' HECTOR [EMAIL PROTECTED], [EMAIL PROTECTED], [EMAIL PROTECTED], [EMAIL PROTECTED], [EMAIL PROTECTED], Dillan De Souza [EMAIL PROTECTED] Subject: Fw: Virus alert Date: Sat, 18 Aug 2001 08:43:31 -0700

FW: hash, key value

2001-08-21 Thread Jennifer Pan
-Original Message- From: Jennifer Pan Sent: Tuesday, August 21, 2001 6:08 PM To: '[EMAIL PROTECTED]' Subject: hash, key value Dear all: I would like to construct a hash, the value of each key is a bunch of refs to lists $value1 -- @list1

Re: FW: hash, key value

2001-08-21 Thread register
Can u clarify your question ... what is value1..6 ... it looks like you are trying to create a hash of references to arrays .. in which case value1 to 6 does not come into play at all my %hash $hash{key1}-[\@list1,\@list2,\@list3] $hash{key2}-[\@list4,\@list3,\@list1] to dereference the second

Re: FW: hash, key value

2001-08-21 Thread Jeff 'japhy/Marillion' Pinyan
On Aug 21, Jennifer Pan said: $value1 -- @list1 $value2 -- @list2 %hash{key} = $value3 --@list3 $value4 -- @list4 $value5 -- @list5 Well, you want a reference to an anonymous array [ ... ] that holds references to other arrays

FW: PERL IS NOT A HIGH LEVEL LANGUAGE

2001-08-17 Thread Gene Martin
Subject: PERL IS NOT A HIGH LEVEL LANGUAGE Just a note from a VERY NEWBIE; On my new copy of O-Reilly's Programming the Perl DBI, page 3 under the subheading of Perl, it states plainly that Perl is a very high-level language. I have a hard time convincing my professors in college to take Perl

FW: FUCK YOU

2001-08-14 Thread John
Mr. Lucifer/Sir Chees-a-lot, Ya' know, unwittingly, this is a good way to get yourself targeted. You might want to rethink your words before you go flinging them about so witlessly. People like myself can and most often do retaliate to children that run amuck at the mouth. Don't push it BOZO, I

Re: [ADMIN} Re: FW: F*** YOU

2001-08-14 Thread register
I know we should not spend too much bandwidth on something like this .. but I have been on several lists and this issue always comes up at several points in the lists history ... I actually think it will be cool for the guys writing mailing list programs to take the unsubscribing issue into the

[ADMIN] Re: [ADMIN] Re: FW: F*** YOU

2001-08-14 Thread perlguy
] Sent: Tuesday, August 14, 2001 9:59 AM Subject: [ADMIN} Re: FW: F*** YOU Whoa.. there is no reason to put this on the list. If anyone is planning on repsonding to the list on this, don't. If you have complaints/comments on the list, people on the list, threads on the list, etc.. please send

Re: [ADMIN] Re: [ADMIN] Re: FW: F*** YOU

2001-08-14 Thread Michael Kelly
On 8/14/01 9:48 AM, [EMAIL PROTECTED] wrote: On Tue, Aug 14, 2001 at 11:03:02AM -0500, John ([EMAIL PROTECTED]) spew-ed forth: then do something about this BOZO. I have already emailed 1st.net. what more can I do? John John, You can start by reading what I posted which firstly said no

RE: [ADMIN] Re: [ADMIN] Re: FW: F*** YOU

2001-08-14 Thread Mooney Christophe-CMOONEY1
Agreed. It would be nice not to have to deal with jerks on this list. -Original Message- From: Michael Kelly [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 14, 2001 12:47 PM To: [EMAIL PROTECTED] Subject: Re: [ADMIN] Re: [ADMIN] Re: FW: F*** YOU On 8/14/01 9:48 AM, [EMAIL PROTECTED

Re: [ADMIN] Re: [ADMIN] Re: FW: F*** YOU

2001-08-14 Thread Casey West
On Tue, Aug 14, 2001 at 01:05:22PM -0500, Mooney Christophe-CMOONEY1 wrote: : Agreed. It would be nice not to have to deal with jerks on this list. No. John may have replied to his personal mail in an inappropriate manner, but he is willing to work it out. He has been in contact with all of

FW:

2001-08-10 Thread shawn
-Original Message- From: shawn [mailto:[EMAIL PROTECTED]] Sent: Friday, August 10, 2001 10:40 AM To: perlcgi Subject: I'm stuck... -using CGI.pm I've created an edit cgi-forms-page to edit values/items in a database. What I want to happen is to have the form fields ( there are

Re: Fw: changes visible when passing a list by value

2001-08-10 Thread Jeff 'japhy/Marillion' Pinyan
On Aug 10, Rizwan Majeed said: It is known that passing a list by value to a function does not make visible to the calling function changes made to the list. But I dont understand how does the push() function works. Push takes the value of a list and still makes visible to the calling block of

Fw: very funny

2001-08-09 Thread Roger C Haslock
[ Please reply to the group, or else the thread loses its cohesion. RCH] I trust you are aware of http://www.perl.com/pub/q/FAQs. If these are incomprehensible to newbies, please post to this group, and say what you don't understand. If the FAQs are no good, they need revision. - Roger - -

Fw: result of regexps into a string

2001-08-09 Thread Kehai Li
- Original Message - From: Akshay Arora [EMAIL PROTECTED] To: Tyler Longren [EMAIL PROTECTED] Cc: perl-beginners [EMAIL PROTECTED] Sent: Thursday, August 09, 2001 7:24 PM Subject: Re: result of regexps into a string since you know that the first thing on the log file is the IP number

Fw: changes visible when passing a list by value

2001-08-09 Thread Rizwan Majeed
- Original Message - From: Rizwan Majeed To: '[EMAIL PROTECTED]' Sent: Thursday, August 09, 2001 6:05 PM Subject: changes visible when passing a list by value It is known that passing a list by value to a function does not make visible to the calling function changes made to the

FW: thanks

2001-07-26 Thread Bedford, Donald T.
I second Debbie's kudos to the group. I've been around for 18 years and this group is one of the most unselfish, helpful and non-flaming I've seen. Thank you for your good work... -don -Original Message- From: Debbie Christensen [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 24, 2001

HELP--FW: displaying info in HTML - all in one line....

2001-07-19 Thread Adam Mc Gregor
any one got any input for me? thanks Regards Adam McGregor [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] Affinity Internet (Pty) Ltd -Original Message- From: Adam Mc Gregor Sent: 19 July 2001 09:56 To: [EMAIL PROTECTED] Subject: displaying info in HTML - all in one

<    1   2   3   4   5   >