|
It's quite hard to examplify once I actually think about an example, but I'll try. It's more a global vibe of a piece of code rather then semantics but they do play a part (using Python as example): A young person (say 24), has experience coding of a few years, but very enthusiastic, loves reading programming blogs, a real stickler of doing it the "right" way, and sometimes forgets other people might have to read their code. They are not as pragmatic as they would be 10 years down the road. They would use vim or emacs in vim mode because that's more pro.
Their code might have a good few "clever" one liners that do something complex in a very concise manner. Took a while to compress into a single line and will take a week to read back and understand. Clever, but only if it never breaks or never needs maintenance. They write factories, sometimes of factories. They have 110% test coverage, including trivial stuff that doesn't require it. They would refactor a piece of code many times until it feels it's the right shade of clever. I like these coders because I can learn something from them, but if you have tight deadlines they might actually get in the way. Great to have a couple of these in your car, but don't let them drive. from itertools import chain
first_set = set(['one', 'two']).union(set(chain.from_iterable([next.key for next in some_yielding_iter()])))
other_value = make_value_factory_factory(first_set).make_value_factory()
10 years down the line these guys realise you write code once and it's read many times over, and the
above turns into a more vanilla multi line readable expression of the same idea.A less enthusiastic version of said 24 year old, codes because they knows how to, but has no aspirations
to get better at their craft. Less organised individual. Pep8 is a new variation of Pepsi Cola?
They are not bad coders, just sloppy. Their code works but can be better. They would benefit pairing
with the above person. def someFunction(value):
if (type(value) == ThisClass):
processObject(value)
elif (type(value) == str):
processString(value)
After pairing, maybe they were inspired a bit. Maybe they refactor to this: from functools import singledispatch
@singledispatch
def process_value(value):
process_object(value)
@process_value.register(str)
def _(value):
process_string(value)
def some_function(value):
return process_value(value)
I think a good exercise is to look at a person you know and try ot match their personality to the code
style. Then look at some code which might or might not be theirs and try to assert if it is. |
Maybe it's because I code in multiple languages daily, but I tend to not use a lot of the language features for each language. A part of it is definitely thinking about the ones that come after me, and wanting everyone -- from every background -- to be immediately able to reason about the code without having to look up what every syntax feature does.
I guess it's a fine line between depth of language features used vs. readability once one is gone from the project.