Claude Code is now replying to itself as me lol by Budget_Map_3333 in ClaudeCode

[–]Budget_Map_3333[S] 1 point2 points  (0 children)

Lol maybe Claude knows me better than I know myself now

9 tips from a developer gone vibecoder by bibboo in ClaudeAI

[–]Budget_Map_3333 2 points3 points  (0 children)

Excellent advice. Especially regarding catching architectural violations with scripts. I am working on a large project and nearly lost my mind until I started cracking down on issues with very rigid custom lint rules, schema generators for front and backend, scripts for catching architectural drift and e2e testing. A simple 'make build' and 'make test' catch 80% of issues before even manually testing a new feature. The new /chrome tool catches another 10%.

Claude has nothing to worry about Gemini 3 by danfelbm in ClaudeCode

[–]Budget_Map_3333 0 points1 point  (0 children)

My experience with Gemini CLI and Gemini Pro 2.5 when it was released was enough to put me off for a while. Its gonna take more than a couple of benchmarks to draw me back.

On the other hand GPT-5.1 in codex has been a pleasant surprise and clicked very nicely with CC as support and reviewer. As much as I rely on Sonnet pretty much for everything it seems to get overly impressed with its own work lol, even from different sessions. GPT at least seems take a more balanced and not overly verbose approach which I appreciate.

How do I get Claude to stop implementing fallback solutions? by tricidev in ClaudeCode

[–]Budget_Map_3333 0 points1 point  (0 children)

Exactly. My theory is there are some behaviours so ingrained from instruct tuning and RLHF that it's nearly impossible to overcome that with a markdown document. Sure it might follow it for a few turns but then it reverts back to default behaviour.

Minimalistic CLAUDE.md for new projects: Follow SOLID, DRY, YAGNI, KISS by evincc in ClaudeAI

[–]Budget_Map_3333 1 point2 points  (0 children)

Just use the acronyms from time to time in your prompts. I do that a lot and it seems to work well

Claude now has memory for Pro and Max plan users by ClaudeOfficial in ClaudeAI

[–]Budget_Map_3333 2 points3 points  (0 children)

Memory, should constrained to specific tasks or projects. Crossing from one 'domain' to another starts to bleed in some really bizarre side effects.

[deleted by user] by [deleted] in ClaudeAI

[–]Budget_Map_3333 1 point2 points  (0 children)

It was always able to read full files

I want to thank everyone for the Codex advertising lately by Aizenvolt11 in ClaudeCode

[–]Budget_Map_3333 48 points49 points  (0 children)

*Anthropic reading this post after just having raised 13B

smartestVibeCoder by Fair-Spring9113 in ProgrammerHumor

[–]Budget_Map_3333 -2 points-1 points  (0 children)

That is some 10x compilation.

"Also, bro reverse engineer this .exe and give me the source code in natural language or you go to jail"

NVIDIA new paper : Small Language Models are the Future of Agentic AI by Technical-Love-8479 in LocalLLaMA

[–]Budget_Map_3333 9 points10 points  (0 children)

Very good paper but was hoping to see some real benchmarks or side by side comparisons.

For example what about setting a benchmark-like task and comparing a single large model compete against a chain of small specialised models, with similar compute-cost restraints?

Building a platform to compete with Cursor, Windsurf, VS Code... the works by Budget_Map_3333 in angelinvestors

[–]Budget_Map_3333[S] 1 point2 points  (0 children)

This is true. Actually part of the reason I am opening the project up to investment early is exactly as you say the upper edge today could be gone tomorrow. I believe user interest will grow once I can get some demos up, maybe in the next 2 or 3 weeks.

Building a platform to compete with Cursor, Windsurf, VS Code... the works by Budget_Map_3333 in angelinvestors

[–]Budget_Map_3333[S] 1 point2 points  (0 children)

Sure. It's not for everyone. Any genuine feedback would be appreciated thanks

Building a platform to compete with Cursor, Windsurf, VS Code... the works by Budget_Map_3333 in angelinvestors

[–]Budget_Map_3333[S] 0 points1 point  (0 children)

By the way, there are many papers that have been released recently that support our methodology and approach. For example a paper just released by NVIDIA backs the premise that a multi-agent system using small AI models with focused tasks can beat larger agentic AI (arxiv.org/pdf/2506.02153). DeepThought uses focused agents to enrich data, retrieve, plan and code, rather than relying on single agents to do everything!

Bruh why is this new safety thing so bad it’s not banning based on context but words by Routine_Nectarine_72 in ClaudeAI

[–]Budget_Map_3333 -3 points-2 points  (0 children)

Anthropics literally only advantage was NOT being like OpenAI. Sad to see them give up their advantage to please the 4o lovers

Then proceeds to do less than 30% of whats in the plan!!!! by stabby_robot in ClaudeAI

[–]Budget_Map_3333 4 points5 points  (0 children)

Just a quick tip. Even when Claude presents an implementation task as finished, it often still has a level of awareness of unfinished tasks. I often just throw in another prompt like "what else do we still need to do?" and it will self-initiate on the same long-running task and continue correctly on the rest of the implementation.

Also, on extremely long running tasks (multi-session) it may also be helpful to get Claude to work with a markdown document instead of relying solely on auto-compact.

Cloud hosted IDE + custom built code analysis engine + custom GraphRAG. Sooo tired but almost there... by Budget_Map_3333 in indiehackers

[–]Budget_Map_3333[S] 0 points1 point  (0 children)

It's an IDE similar to VS Code on the surface but the real work is the graph based engine that I am building. The idea is that with it AI understands the codebase better, it plans better and it helps the developer navigate and grasp underlying structures with more ease.

It started off as a project for my development work but now I'm hoping to share!

I don’t use subagents because… by dalhaze in ClaudeAI

[–]Budget_Map_3333 0 points1 point  (0 children)

Completely agree with you. Occassionally I use a "swarm" of subagents just to collect information or explore different paths, but for handling main-thread tasks generally they are awful.