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
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
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
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
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
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
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
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
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
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
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
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
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
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
14 matches
Mail list logo