How I code with AI on a budget/free
131–140 of 251 posts
Re: How I code with AI on a budget/free
#132Re: How I code with AI on a budget/free
#133OP must be a master of context switching! I can’t imagine opening that number of tabs and still focus
Re: How I code with AI on a budget/free
#134Maybe optimistic, but reading posts like this makes me hopeful that AI-assisted coding will drive people to design more modular and sanely organized code, to reduce the amount of context required for each task. Sadly pretty much all code I have worked with have been giant messes of everything being connected to everything else, causing the entire project to be potential context for anything.
Re: How I code with AI on a budget/free
#135My experience lines up with the article. The agentic stuff only works with the biggest models. (Well, "works"... OpenAI Codex took 200 requests with o4-mini to change like 3 lines of code...) For simple changes I actually found smaller models better because they're so much faster. So I shifted my focus from "best model" to "stupidest I can get away with". I've been pushing that idea even further. If you give up on ag…
Re: How I code with AI on a budget/free
#136Re: How I code with AI on a budget/free
#137Maybe optimistic, but reading posts like this makes me hopeful that AI-assisted coding will drive people to design more modular and sanely organized code, to reduce the amount of context required for each task. Sadly pretty much all code I have worked with have been giant messes of everything being connected to everything else, causing the entire project to be potential context for anything.
LLMs will write code this way if you ask but you have to know to ask.
Re: How I code with AI on a budget/free
#138Earlier quoted context omitted.
LLMs will write code this way if you ask but you have to know to ask.
At that(/what) point does it become harder for a human to grok a project?
You can end up doing this with entirely human written code too. Good software devs can see it from a mile away.
Re: How I code with AI on a budget/free
#139Earlier quoted context omitted.
> You can code for free this way vs > If you set your account's data settings to allow OpenAI to use your data for model training So, it's not "for free".
I was going to downvote you but you are adding to the discussion. In this context this is free from having to spend money. Many of us don't have the option to pay for models. We have to find some way to get the state of the art without spending our food money.
Re: How I code with AI on a budget/free
#140My experience lines up with the article. The agentic stuff only works with the biggest models. (Well, "works"... OpenAI Codex took 200 requests with o4-mini to change like 3 lines of code...) For simple changes I actually found smaller models better because they're so much faster. So I shifted my focus from "best model" to "stupidest I can get away with". I've been pushing that idea even further. If you give up on ag…
Aider as a non-agentic coding tool strikes a nice balance on the efficiency vs effectiveness front. Using tree-sitter to create a repo map of the repository means less filesystem digging. No MCP, but shell commands mean it can use utilities I myself am familiar with. Combined with Cerebras as a provider, the turnaround on prompts is instant; I can stay involved rather than waiting on multiple rounds of tool calls. It…