in reply to Re: Re: Re: Re: Re: Re: A Perl aptitude test
in thread A Perl aptitude test
Given your agreement off-line, this seems as good a place as any to continue our discussion.
I guess, as someone who makes a habit (and a career:) of, what I would term, fully understanding the systems, languages and tools I have worked with, and utilising them to their fullest, to effect solutions, you touched a nerve with various phrases.
I have no idea whether I even appeared on your radar set when you made these statements, but if even if I didn't, the implication that I would fit into one or more of these disparaged groups has been alluded to from time to time here, and I guess if the cap fits, I tend to wear it.
What I see as the difference between your stated position, as I interpret it and my own, is summed up for me -- though not necessarially by you, even though they are your words -- in the sentence.
By contrast the simple awareness of what will and won't be understood based on the feedback you describe is enough to achieve the goal that I am after...
I read this to mean that if, during peer reviews, certain constructs or techniques used by one or more of the team members were shown to be misinterpreted, or confusing to other team members, then those constructs and techniques would become candidates for the proscribed list.
The approach taken at the organisation in question was to investigate such occurances and, provided that the code was without side-effects or technical flaws, and especially if it had some clear benefits -- including, but not limited to performance. The technique then became the subject of an "Advanced Techniques paper", was usually presented to the team when written and added to the project, language or tool documentation set as appropriate. The emphasis was on educating the less advanced, rather than limiting the more advanced.
The reason that there were no 'stars' in the group was simply that the overall standard was so high, that anyone coming into the group, including those who came with a sense of their own stardom, rapidly found that they were, at best, one among many. The effect was salutary. All but a very few that joined whilst I was involved, went through a short period of floundering as they adjusted to the standards in the environment. Then a little wariness as they became accustomed to the peer review process and the way in which help was sought and given so freely, before adjusting to it and revelling in it. The few that did not make the adjustment, usually because they came from backgrounds where you protected your skillset as a way of life, generally moved on of their own volition.
I now realise that giving the specific example has tended to obscure rather than clarify the crux I was trying to get at :(.
The assertion I interpreted you to have made was that using the (as I would have it) full expressive power of perl to code algorithms concisely becomes a liability when the notation used to acheive it, falls into that area you variously term as "obscure constructs", "tricks", "showing off", "{as} crazy a line of punctuation you can spew".
I have several problems with that.
When I first encountered perl, despite a strong programming background in other languages, I found even the simplest perlisms, confusing, frustrating and obscure. Whether is was the usual perl beginners traps of $a[1] referring to @a not $a, or the confusion over when $_ was implicitly assigned in a while loop and when it was not; the subtleties of the various forms of magic, like <> versus <STDIN>, the autovivification of intermediate terms in a complex data structures even when checking for definedness, and a host of other similar things. I rapidly learnt to appreciate the reasoning behind these perlish ideas and learnt to read them and use them to produce leaner, and I would say clearer, code.
Even as my knowledge of perl improves, I continue to see it used (especially here at PM) in ways that I hadn't thought of, that justify the nomenclature of VHLL over and over. And with each new way of expressing the same basic algorithm, comes some advantage (at least in some circumstances) over the previous. Sometimes the improvement comes by way of performance; Sometimes because it allowes the expression of the underlying algorithm in a more concise form that more closely matches the way I think of the algorithm.
Discounting the obfu and golf strategies designed to either deliberately obscure or reduce the arbitrary metric of keystrokes, neither of which I pursue to any great extent although golf can be fun. I believe that writing concise code is good, not because it is sometimes more efficient, nor because of the 'laziness' ideal, nor even for the 'once and once only' factor, though that too can be beneficial not least when it comes to maintainance -- we've all fallen foul of modifying a peice of code in one place whilst failing to modify a similar piece elsewhere.
I beleive concise code that achieves the required algorithm is good, because every metrics analysis I have ever seen indicates that the more code there is, the more errors there are. I never seen anything that indicated otherwise.
A not entirely secondary reason, is that my own experience suggests that it is always easier to get a feel for the overall algorithm if it can be viewed in one go, than if you have to scroll up and down to see the different parts. This goes right back to my first ever commercial programming course for FORTRAN77 at DEC, where the instructor suggested that any routine over 2/3 (24 line) screenfuls should be broken into two subroutines. At the time, coming from an assembler and BASIC background, that was an anathema to me. Down the years, I've come to appreciate this advice more and more.
Now in Fortran, the costs of splitting a routine into a couple of subroutines were minimal but in perl, they are considerably higher, but the overhead is more than offset by the expressive power of perl to do a lot with a few well written lines.
The way I've come to think of it, that may or may not appeal to you, the mathematican, is that any programming language is simple a notation for expressing the algorithm in question. In the same way that advanced math usually relies upon a shorthand notation to express the ideas and steps of a theorem, so programming relies on the expressions of the language used.
It would be considerably easier for me to follow mathematical ideas if all the formulea and proofs were written in terms of +-/*^ sin/cos/tan etc. with all the intermediate steps spelt out explicitly. Whilst many, if not all of them could be written this way, they would become so tortuous long and repetative, that mathemeticians have evolved notations that encapsulate many of the intermediate terms and steps very concisely. If you understand the notation, then the reduction in clutter makes understanding the overall equations and proofs much easier to comprehend -- or so I'm told, my maths stop way short of this:).
This latter point is made better and more authoratively by Stephen Wolfram here when he notes.
In early mathematical notation--say the 1600s--quite a few ordinary words were mixed in with symbols. But increasingly in fields like mathematics and physics, no words have been included in notation and variables have been named with just one or perhaps two letters. In some areas of engineering and social science, where the use of mathematics is fairly recent and typically not too abstract, ordinary words are much more common as names of variables. This follows modern conventions in programming. And it works quite well when formulas are very simple. But if they get complicated it typically throws off the visual balance of the formulas, and makes their overall structure hard to see.
Whilst there is undoubtably a certain "show off" factor in devising more concise forms for expressing various algorithms in perl. Provided that the aim is reduction of clutter, in the form of removing redundant intermediate terms and steps; that efficiency isn't sacrificed; and deliberate obfuscation isn't the goal; then the result of the freindly competition is often a new idiom. Whilst it may look obscure the first time it is encountered, as with so many now-commonplace idioms, it rapidly becomes familiar through seeing it and using it.
In my 10 months of perl and visiting PM, I have seen several new idioms come into use, and learnt many more though reading the work of merlyn, Abigail, Aristotle, Juerd, sauoq and many others. I've also witnessed the process wherebye they are used (and sometimes evolved) in the course of one thread, and then start to crop up in the questions and answers of other threads. This does not usually take very long to happen when the idiom is useful. The truely obscure ones simply disappear.
I appreciate that the audience at PM is, by definition, an exceptional environment populated for the most part by enthusiasts, but with rare exception, every 'good' programer I have encountered over the last 30 years has not just programmed for a living, but was an enthusiast.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Re: Re: Re: Re: Re: Re: Re: A Perl aptitude test
by tilly (Archbishop) on May 13, 2003 at 18:02 UTC | |
by BrowserUk (Patriarch) on May 14, 2003 at 03:10 UTC | |
by tilly (Archbishop) on Jun 28, 2003 at 00:22 UTC |