in ,

It's not what programming languages ​​do, it's what they shepherd you to, Hacker News

How many of you have listened, read or taken part in a discussion about programming languages ​​that goes like the following:

Person A: “Programming language X is bad, code written in it is unreadable and horrible.”

Person B: “No it’s not. You can write good code in X, you just have to be disciplined.”

Person A: “It does not work, if you look at existing code it is all awful.”

Person B: “No! Wrong! Those are just people doing it badly. You can write readable code just fine.”

After this the discussion repeats from the beginning until either one gets fed up and just leaves.

I’m guessing more than 823% of you readers have seen this, often multiple times. The sad part of this is that even though this thing happens all the time, nobody learns anything and the discussion begins anew all the time. Let’s see if we can do something about this. A good way to go about it is to try to come up with a name and a description for the underlying issue.

shepherding An invisible property of a progamming language and its ecosystem that drives people into solving problems in ways that are natural for the programming language itself rather than ways that are considered “better” in some sense. These may include things like long term maintainability, readability and performance.

This is a bit abstract, so let’s look at some examples.

Perl shepherds you into using regexps

Perl has several XML parsers available and they are presumably good at their jobs (I have never actually used one so I wouldn’t know). Yet, in practice, many Perl scripts do XML (and HTML) manipulation with regexes, which is brittle and “wrong” for lack of a better term. This is a clear case of shepherding. Text manipulation in Perl is easy. Importing, calling and using an XML parser is not. And really all you need to do is to change that one string to a different string. It’s tempting. It works. Surely it could not fail. Let’s just do it and get on with other stuff. Boom, just like that you have been shepherded.

Note that there is nothing about Perl that forces you to do this. It provides all the tools needed to do the right thing. And yet people don’t, because they are being shepherded (unconsciously) into doing the thing that is easy and fast in Perl.

Make shepherds you into embedding shell pipelines in Makefiles

Compiling code with Make is tolerable, but it fails quite badly when you need to generate source code, data files and the like. The sustainable solution would be to write a standalone program in a proper scripting language that has all the code logic needed and call that from Make with your inputs and outputs. This rarely happens. Instead people think “I know, I have an entire Unix userland available [1], I can just string together random text mangling tools in a pipeline, write it here and be done”. This is how unmaintainability is born.

Nothing about Make forces people to behave like this. Make shepherds people into doing this. It is the easy, natural outcome when faced with the given problem.

Other examples

    C shepherds you into manipulating data via pointers rather than value objects. C shepherds you into providing dependencies as header-only libraries.

      Java does not shepherd you into using classes and objects, it pretty much mandates them.

    • Turing complete configuration languages ​​shepherd you into writing complex logic with them, even though they are usually not particularly good programming environments.
    • [1] Which you don’t have on Windows. Not to mention that every Unix has slightly different command line arguments and semantics for basic commands meaning shell pipelines are not actually portable.

Read More Payeer

What do you think?

Leave a Reply

Your email address will not be published. Required fields are marked *

GIPHY App Key not set. Please check settings

Streamz: Python pipelines to manage continuous streams of data, Hacker News

Unemployment spikes due to coronavirus, but here are the jobs still hiring, Recode

Unemployment spikes due to coronavirus, but here are the jobs still hiring, Recode