NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
Thank you, thank you, thank you (Score:1)
I have to say, I really enjoy Yuval's posts, as they are.. incredibly informative. Seriously, anything the guy has to say is pure gold.
However, much of it I have a hard time following. I would definitely fit the non-math crowd.
Thanks for taking the time to translate Yuval's stuff, and give some insight into this. It was fun to read, really interesting and surely made an impact on the way I'll code regarding this.
So, thanks :)
Now I know what's been bothering me... (Score:1)
Waiting on the Road to Eventually, I lost my Place On Line
This is unforgivable! (Score:1)
I think the problem is that a significant part of the process of understanding a difficult concept involves finding the right names for the right concepts. Once you know them it's tempting to take them for granted, because this is a powerful tool for describing what you mean.
I think your three compact rules really hit the nail on the head. While my third post addresses what you can do when the hierarchy gets complicated, it has nothing on how to get strated developing good habits.
Anyways, thanks for posting
Re: (Score:1)
To be more concrete, and to tie that with the original subject: in FormHandler we have attributes called 'params' and 'input', input is computed from 'params'. I think we could get rid of 'params
Re: (Score:1)
Re: (Score:1)
Readonly "evil" (Score:1)
Oh come now. Readonly may be sub-optimal for some cases, but does it really rise to the level of "evil"?
Readonly works at run-time. That's a feature. While there are many places where it would be better if it worked at compile-time, it (currently) doesn't have that capability.
The compiler cannot take advantage of Readonly variables' immutability, as you point out -- but does that really make all use of the Readonly module evil? Tone down the rhetoric a notch, please.
Re: (Score:1)
When used for package-level scalars Readonly has only one real advantage. It interpolates.
In exchange for interpolation, your code is larger, slower and adds a non-core dependency.
It's exactly this sort of module that we've seem time and time again, it adds a small convenience for a disproportional expense. People are lured into making their code worse for shiny beads.
Overuse of version.pm, inside-out objects, bundled non-optional coverage tests, the list goes on and on. People are encouraged to use somethi