Yes I've experienced everything you stated. Here's what helped me: Problem 1: "Obsessed with reinventing the wheel" " three duplicate functions": Suggestion: plan then implement. Tell LLM to scan your project and crete markdown file plan to solve the task first. DO NOT try to selve tasks in a single shot without planning. Review the plan file then, IN A NEW SESSION with clean context, tell LLM to read the implementat…
>Problem 3: "you'll hit the 200k token limit..." ... Suggestion: use 1 million context window LLMs. Yes, if the model someone is using only has 200k token limit, that would immediately suggest to me that it really isn't a sophisticated enough model. Most of my coding sessions end up being about 350k tokens long when I finish, it wouldn't even fit in a 200k context. And that isn't counting the cache-reads by subagents…
AI coding is a nightmare. Am I the only one experiencing this?
31–40 of 62 posts
Re: AI coding is a nightmare. Am I the only one experiencing this?
#32I’m serious. Treat it like any other tool. When it helps solves problems, use it. When it makes problems, don’t use it.
There are a lot of people and an enormous amount of money trying to make hands off agentic happen, but the happiest and most effective enthusiasts I know do not give up control: they go function by function and class by class, generating or writing as they see fit.
The goal is to make useful software. At least, I think that’s still true?
Re: AI coding is a nightmare. Am I the only one experiencing this?
#33Re: AI coding is a nightmare. Am I the only one experiencing this?
#34You mention two very specific aspects of AI producing code: - "It hyper-focuses on the current task and couldn't care less if its changes break other parts of the system." - "Long context = instant brain damage" This is why I quickly discovered that I had to turn AI into a knowledgable, patient tutor rather than let it code for me. I am thoroughly at the helm for all decisions big and small - I don't let AI touch the…
And it is a lot cheaper in the end :)
Re: AI coding is a nightmare. Am I the only one experiencing this?
#35Re: AI coding is a nightmare. Am I the only one experiencing this?
#36I ran into many of the same issues, and they motivated me to experiment with a linter that flags duplication and architectural problems across a codebase. It’s still a work in progress though:
Re: AI coding is a nightmare. Am I the only one experiencing this?
#37Re: AI coding is a nightmare. Am I the only one experiencing this?
#38Sorry you're struggling. There are tons of resources out there from people who've been through the same pain and built up techniques to mitigate them. Matt Pocock's YouTube channel is one good starting place, there are many others. One key tip though is - you own the architecture of your application. If your files have become bloated over several rounds of LLM-generated code, that is primarily your responsibility to…
Re: AI coding is a nightmare. Am I the only one experiencing this?
#39Earlier quoted context omitted.
>Problem 3: "you'll hit the 200k token limit..." ... Suggestion: use 1 million context window LLMs. Yes, if the model someone is using only has 200k token limit, that would immediately suggest to me that it really isn't a sophisticated enough model. Most of my coding sessions end up being about 350k tokens long when I finish, it wouldn't even fit in a 200k context. And that isn't counting the cache-reads by subagents…
minimax m3 has a 1M token context window so not sure how op is hitting this 200k. maybe the plan they're on? or some setting in some layer of whatever their dev tooling is using.
Even DeepSeek v4 Flash has 1million context size.
Re: AI coding is a nightmare. Am I the only one experiencing this?
#40You mention two very specific aspects of AI producing code: - "It hyper-focuses on the current task and couldn't care less if its changes break other parts of the system." - "Long context = instant brain damage" This is why I quickly discovered that I had to turn AI into a knowledgable, patient tutor rather than let it code for me. I am thoroughly at the helm for all decisions big and small - I don't let AI touch the…
Plus it’s so much cheaper… that has to matter.