Re: Perl::Optomizer

2004-05-13 Thread JupiterHost.Net
Jean-Sébastien Guay wrote: http://en.wikipedia.org/wiki/Optimization_(computer_science) Optimization (computer science From Wikipedia, the free encyclopedia. (Wikipedia does not have an article on this topic yet. To start the article, click Edit this page.) ?? :( I was wanting to read it.

RE: Perl::Optomizer

2004-05-13 Thread Jean-Sébastien Guay
> > http://en.wikipedia.org/wiki/Optimization_(computer_science) > > Optimization (computer science > > From Wikipedia, the free encyclopedia. > > (Wikipedia does not have an article on this topic yet. To start the > article, click Edit this page.) > > ?? :( I was wanting to read it...

Re: Perl::Optomizer

2004-05-13 Thread JupiterHost.Net
Jeff 'japhy' Pinyan wrote: The lesson to learn is: Premature optimization is the root of all evil. Got ya ;p http://en.wikipedia.org/wiki/Optimization_(computer_science) Optimization (computer science From Wikipedia, the free encyclopedia. (Wikipedia does not have an article on this topi

Re: Perl::Optomizer

2004-05-13 Thread Jeff 'japhy' Pinyan
The lesson to learn is: Premature optimization is the root of all evil. http://en.wikipedia.org/wiki/Optimization_(computer_science) -- Jeff "japhy" Pinyan [EMAIL PROTECTED] http://www.pobox.com/~japhy/ RPI Acacia brother #734 http://www.perlmonks.org/ http://www.cpan.org/ CPAN

Re: Perl::Optomizer

2004-05-13 Thread JupiterHost.Net
Ricardo SIGNES wrote: * "JupiterHost.Net" <[EMAIL PROTECTED]> [2004-05-13T11:35:58] Bob Showalter wrote: for instance: $newvariable = "$howdy"; should be: $newvariable = $howdy; That's not an appropriate optimization. Perl objects can overload stringification. Interesting... So when would tha

Re: Perl::Optomizer

2004-05-13 Thread Ricardo SIGNES
* "JupiterHost.Net" <[EMAIL PROTECTED]> [2004-05-13T11:35:58] > Bob Showalter wrote: > >> for instance: > >> $newvariable = "$howdy"; > >> should be: > >> $newvariable = $howdy; > > > >That's not an appropriate optimization. Perl objects can overload > >stringification. > > Interesting... > So

RE: Perl::Optomizer

2004-05-13 Thread Bob Showalter
JupiterHost.Net wrote: > Hello list, > > Perl::Tidy is very excellent for making source look nice. > I was wondering if anyone knew of anything that is the same type of > idea but it optomizes your Perl code to run a bit faster: > for instance: > $newvariable = "$howdy"; > should be: >