Live data from Hacker News

Ask HN: Are functional programmers more upset about how good AI is at coding?

news.ycombinator.com

11–18 of 18 posts

Re: Ask HN: Are functional programmers more upset about how good AI is at coding?

#11
post #6

Earlier quoted context omitted.

[flagged]

no. if we use that framing of yours, fp aim is to write a solution that flows like a river while imperative solution is like rolling up a ball of various solutions and then throwing it at the problem.

The point is the details of the implementation don't matter that much anymore. It's just something for the AI to work out — much like assembly code generation is for compilers.

Re: Ask HN: Are functional programmers more upset about how good AI is at coding?

#12

I don't think functional programmers are necessarily more upset about AI being good at coding. If anything, FP tends to emphasize concepts that AI is already quite good at manipulating: composability, immutability, pure functions, and well-defined abstractions.

If AI is already good at this, then it will naturally lead programmers who may not be good in that respect in that direction anyway via the code that it generates.

In other words, being a human expert in writing high quality implementations is less important now.

Re: Ask HN: Are functional programmers more upset about how good AI is at coding?

#13
The topic paragraph and comments indicate you already have your own conclusion to this question. If you already have an answer to your own question then why ask in the first place? This sounds like cognitive conservatism in search of support.

Re: Ask HN: Are functional programmers more upset about how good AI is at coding?

#15
Yes some of us are having a hard time with it.

All of the years we've spent on immutable by default, strong types and dreaming about the lambda has to matter! The AI that just rips out thousands of lines an hour of imperative and weakly typed code just has to be leading organizations to ruin! You'll see!

We worked hard at honing our craft. It's still meaningful, damnit!

Re: Ask HN: Are functional programmers more upset about how good AI is at coding?

#16

Earlier quoted context omitted.

no. if we use that framing of yours, fp aim is to write a solution that flows like a river while imperative solution is like rolling up a ball of various solutions and then throwing it at the problem.

The point is the details of the implementation don't matter that much anymore. It's just something for the AI to work out — much like assembly code generation is for compilers.

And?

Re: Ask HN: Are functional programmers more upset about how good AI is at coding?

#17
Author is confused.

FP is disgusting looking anyway

Once React came out with shit like

    useEffect(() => {}, [])
And it was actually good and useful, I gave up on code aesthetics. Or rather, moved that thinking into overall comment, spacing, file breakdown and organization.

How the fuck does "useEffect(() => {}, [])" mean a function that will run when the page loads? And then if you do this

    useEffect(handleComponentMount, []) 
You go to jail in real life. Nobody knows why - it has to be an arrow function.
Post reply on HN