Live data from Hacker News

Ask HN: Is anyone experiencing "AI brain rot?"

news.ycombinator.com

21–30 of 43 posts

Re: Ask HN: Is anyone experiencing "AI brain rot?"

#22
While I was working on this piece about using LLMs to migrate code https://glennengstrand.info/software/llm/migration/java/type... I experienced a first hand encounter of review fatigue. One of the lines of code in the middle of a LLM generated block was gibberish but not gibberish enough to be caught by the compiler. I study the code before accepting the change but just had a complete blind spot on that line. It was the linter that eventually caught it.

Re: Ask HN: Is anyone experiencing "AI brain rot?"

#23
post #20

Not that I've noticed, but I've made a concerted effort from the beginning to mentally work through any AI-generated code I use. Yes, it does require a lot of discipline. I believe it's equally important to ask it to explain why it generated the code when the output is unexpected. More often that not, it's acting more like "fancy autocomplete", though.

I agree, I'm too picky in domains I am knowledgable about to not go over every character of the output. For areas where I have no clue, I have sometimes found success with just pasting the code without understanding it, but it wasn't an easy process.

Re: Ask HN: Is anyone experiencing "AI brain rot?"

#26
I'm a neurodivergent coder and have always been a "code by reference" person, so I will have API docs up even if I've done a thing 100 times. The context helps me get into the mindset of what I'm doing, and has helped me be productive.

This fails when people expect rote memorization like in coding interviews, but it works well when I'm actually working through problems in a company - I have a set of references up and available, usually of the internal codebase. I use AI as an advanced reference primarily so I haven't had the problem as stated here yet!

I think a lot of folks are finding that via AI they're switching over to the way that I do code, without the benefits of internal thinking structure I've had to come up with over time to manage it. I try to think of whatever I'm doing in a sort of scaffold, and then change my focus into the details. If you lose your ability to zoom in or out on layers of abstraction (because you don't understand whats happening in detail), that's when you need to spend time diving in.

You can't just sit back all the time like a farmer who's got a machine to plow and tend to all the fields, you need to be doing QA and making sure its doing what it says its doing. If you're letting it handle what the scaffold is, you know even less.

You decide which if any mental models you outsource to AI. You decide what you manage, and whats important for you to manage. Don't let short term productivity gains hobble your ability to zoom in!

Re: Ask HN: Is anyone experiencing "AI brain rot?"

#28
No, not really. I find it almost impossible to get AI to generate anything of any significant complexity.

For me the main difference is that I search and read much less when problem solving. In the past I'd often have to search docs and SO for ages looking for information about some bug/functionality. Today about 50% of the time I can just ask AI if it knows what I need. Although the other 50% of the time it will give me some BS hacky answers or just make something up – especially when I'm using less common libraries.

Where I have got much lazier is when it comes to writing BS code like regexs, etc. It's not that I can't write them, I just know that it will take me longer to think about and create the regex than explaining to an LLM what I want to match on. But you still need to know regex to review it so I don't feel like losing any skills, just able to work faster in some cases like how pulling a email regex from SO would have help you code a solution faster a decade a go.

Re: Ask HN: Is anyone experiencing "AI brain rot?"

#29

It’s not only AI. It’s short form content, fast paced life. I can’t seem to be able to concentrate as I used to, get into the zone. I get irritated way more, for example when I can’t code a solution fast enough and the AI is being stupid, I get angry.

Unfortunately, at least at my company, leadership has caught this bug. This means features need to be delivered faster, with a smaller team, etc. Not a good way to create quality software.

Re: Ask HN: Is anyone experiencing "AI brain rot?"

#30
Yes. It's definitely noticeable. Though, I try to console myself by remembering that my architectural design is definitely hypertrophied. My code is ultimately better. I think my LLM-assisted problem solving is definitely more efficient as well. My code literacy is better.

Hopefully LLMs won't vanish away... I'd be at a net negative.

Post reply on HN