Comment on Clever code is probably the worst code you could write

Nevoic@lemm.ee ⁨1⁩ ⁨month⁩ ago

Coding happens in languages. This works much the same way as natural language, sometimes you’ll speak in a way that is very clear to you and people who speak that language, but not to others.

sumSquares = sum . map (^ 2)

vs

def sumSquares(numbers):
    result = 0
    for number in numbers:
        result += number ** 2
    return result

Function composition is clear to people who speak Haskell, and eliminating mutation/untracked side effects helps to keep behavior local and gives equational reasoning. You can ask your IDE what the type of sumSquares is, and immediately know without looking at the implementation that there are no side effects, and what the types are.

On the flip side, most programmers can read basic Python, the C family of languages has seen more adoption, and Python simplifies a lot of the syntax/concepts down to their most basic forms. Python tries to be the most like English, and this is both its greatest strength and weakness (English can be an abysmal language for structured data processing).

source
Sort:hotnewtop