481
stop (sh.itjust.works)
you are viewing a single comment's thread
view the rest of the comments
[-] LovableSidekick@lemmy.world 3 points 10 months ago* (last edited 10 months ago)

Thankfully never got sucked into that void. I had a coworker who really evangelized functional programming. I wonder what he's up to now.

[-] douglasg14b@lemmy.world 6 points 10 months ago* (last edited 10 months ago)

We have a principal engineer on our team that is pushing this sort of style, hard.

It's essentially obfuscation, no one else on the team can really review, nevermind understand and maintain what they write. It's all just functional abstractions on top of abstractions, every little thing is a function, even property/field access is extracted out to a function instead of just.... Using dot notation like a normal person.

[-] bleistift2@sopuli.xyz 6 points 10 months ago

even property/field access is extracted out to a function

Java, the most functional programming language there is.

[-] douglasg14b@lemmy.world 5 points 10 months ago

Well, this is in JS to be clear

Instead of

const name = user.name

It's

const userToName(user) => user.name;

const name = userToName(user);

Ad nauseum.

[-] bleistift2@sopuli.xyz 3 points 10 months ago* (last edited 10 months ago)

I was afraid you’d say that. That’s stupid.

Do they give a reason for why that’s ‘necessary’?

(Also it should be const userToName = (user) => user.name;)

[-] LovableSidekick@lemmy.world 2 points 10 months ago

That was the impression I got about functional programming, from what little I read about it like 15 years ago. Sounds like somebody found a pretty hammer and everything became a nail.

[-] victorz@lemmy.world 2 points 10 months ago* (last edited 10 months ago)

I dabbled in some Haskell a few years ago but quit trying when I got to the hard parts like monads and functors and stuff. All those mathematical concepts were a little too abstract for me.

But what I did bring with me from the experience changed my way of programming forever. Especially function composition and tacit (point-free) style programming. It makes writing code so much faster and simpler and it's easier to read and maintain.

You can utilize some functional programming concepts without being too hardcore with it and get the best of both worlds in the process. 👍

this post was submitted on 27 Mar 2025
481 points (95.1% liked)

Programmer Humor

28818 readers
726 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 2 years ago
MODERATORS