RE: perl IDE

2007-07-30 Thread Andrew Curry
Eclipse,vi, gvim etc... Are all plausible for usage, I use vi/gvim but that's only because its what I was taught to use. You use whatever your comfortable with in the end. IDEs help with faster code generation and also help with the standardisation of code, on a large projects they are also very go

Re: missing values from files

2007-07-30 Thread Chas Owens
On 7/30/07, Isha M. Renta <[EMAIL PROTECTED]> wrote: > The 13 is the counter for the $inittime array (which actually have 13 > numbers and not 15 as it seems) and the 3600 is the number of lines in all > the files. All the files have 3600 lines. > > Isha snip Then you have an off-by-one error. Yo

Re: missing values from files

2007-07-30 Thread John W. Krahn
Chas Owens wrote: On 7/30/07, Isha M. Renta <[EMAIL PROTECTED]> wrote: The 13 is the counter for the $inittime array (which actually have 13 numbers and not 15 as it seems) and the 3600 is the number of lines in all the files. All the files have 3600 lines. Isha snip Then you have an off-by-o

Re: missing values from files

2007-07-30 Thread Chas Owens
On 7/30/07, John W. Krahn <[EMAIL PROTECTED]> wrote: > Chas Owens wrote: > > On 7/30/07, Isha M. Renta <[EMAIL PROTECTED]> wrote: > >> The 13 is the counter for the $inittime array (which actually have 13 > >> numbers and not 15 as it seems) and the 3600 is the number of lines in all > >> the files

Re: missing values from files

2007-07-30 Thread Mr. Shawn H. Corey
Chas Owens wrote: No, that is almost always better written as for my $element (@array) {} You should only use a range if you want to iterate a specific number of times or you want to iterate over that range. Using the position of last the last element in an array is a big clue that you really

ASCII::Plot::Scatter namespace

2007-07-30 Thread Inventor
Hi, and thanks for all the help so far. I have prepared an ASCII plotting module for CPAN submission and I would like your opinion on the namespace. PAUSE tells me I should ask the community if my namespace is chosen properly. I would like to call it ASCII::Plot::Scatter because it is an ASCII s

Re: missing values from files

2007-07-30 Thread Irenta
Thanks it worked! YAY! On Jul 30, 12:11 pm, [EMAIL PROTECTED] (Chas Owens) wrote: > On 7/30/07, Isha M. Renta <[EMAIL PROTECTED]> wrote:> The 13 is the counter > for the $inittime array (which actually have 13 > > numbers and not 15 as it seems) and the 3600 is the number of lines in all > > the

Re: missing values from files

2007-07-30 Thread Rob Dixon
Chas Owens wrote: On 7/30/07, John W. Krahn <[EMAIL PROTECTED]> wrote: Chas Owens wrote: On 7/30/07, Isha M. Renta <[EMAIL PROTECTED]> wrote: The 13 is the counter for the $inittime array (which actually have 13 numbers and not 15 as it seems) and the 3600 is the number of lines in all the fil

Re: FW: Html within code

2007-07-30 Thread Jay Savage
On 7/29/07, Mr. Shawn H. Corey <[EMAIL PROTECTED]> wrote: > The recommended usage of open is: > > open my $omarfh, '<', 'junk' or die "Input file 'junk' cannot be opened: > $!"; > > The three argument is preferred as a malicious user could enter a file name > that starts with '>' It is preferr

Re: ASCII::Plot::Scatter namespace

2007-07-30 Thread Paul Lalli
On Jul 30, 1:06 pm, [EMAIL PROTECTED] (Inventor) wrote: > Also, I know how to name a module, but how do I create the hierarchy > with the :: characters? I don't want to have a filename with :: in > it, so I figure there must be some inheritance thing involved, but I > haven't run across it in my r

Re: FW: Html within code

2007-07-30 Thread Mr. Shawn H. Corey
Jay Savage wrote: On 7/29/07, Mr. Shawn H. Corey <[EMAIL PROTECTED]> wrote: The recommended usage of open is: open my $omarfh, '<', 'junk' or die "Input file 'junk' cannot be opened: $!"; The three argument is preferred as a malicious user could enter a file name that starts with '>' It i

Re: ASCII::Plot::Scatter namespace

2007-07-30 Thread usenet
Inventor wrote: > I would like to call it ASCII::Plot::Scatter because it is an ASCII > scatter plot generator, I don't know what that is, but most people strongly associate ASCII (a character encoding) with Text. Could the module fit under Text::Plot::Scatter? > how do I create the hierarchy wi

Re: ASCII::Plot::Scatter namespace

2007-07-30 Thread Inventor
On Jul 30, 3:50 pm, [EMAIL PROTECTED] (Paul Lalli) wrote: > > You need to read: > perldoc perlmod > and > perldoc perlnewmod > > before you start doing anything else. > Paul Lalli I knew someone was going to tell me RTFM! I will do that immediately, thanks. Inventor -- To unsubscribe, e-mail

Re: FW: Html within code

2007-07-30 Thread Rob Dixon
Mr. Shawn H. Corey wrote: Jay Savage wrote: On 7/29/07, Mr. Shawn H. Corey <[EMAIL PROTECTED]> wrote: The recommended usage of open is: open my $omarfh, '<', 'junk' or die "Input file 'junk' cannot be opened: $!"; The three argument is preferred as a malicious user could enter a file nam