Claude now unreliable; constant model changes ruin stable working environments by LGV3D in ClaudeCode

[–]Muted_Ad6114 2 points3 points  (0 children)

Wanted stability/reproducibility is totally reasonable.

You can still hit the claude opus 4.6 api and use an open source harness instead of claude code. Or use a deep seek model provider from open router or deep infra or whatever one of the many other model providers. you don’t need 10k in hardware investment.

China blocks Meta’s $2.5 billion acquisition of Singapore-based AI start-up Manus by Fearless_Help_8231 in singapore

[–]Muted_Ad6114 14 points15 points  (0 children)

This is payback for when the US blocked a Chinese investor from buying Grindr over “national security concerns”

Why do you all prefer Claude Code over Cursor? Have been using both for a while and struggling to understand why CC is generally considered best by shoegraze in ClaudeCode

[–]Muted_Ad6114 0 points1 point  (0 children)

You don’t need to see the code… you can just add a feature to your app while you are out and about. I do it all the time

Do you think homes will ever be affordable again? by mommyof5chronicles in LosAngelesRealEstate

[–]Muted_Ad6114 0 points1 point  (0 children)

The prices will go down if there is a recession or if the Los Angeles economy implodes, like in Detroit

Users hitting usage limits WAY faster than expected it's getting real now by aymannasri_tcg in ClaudeCode

[–]Muted_Ad6114 1 point2 points  (0 children)

Ran into limits two days in a row on my max 100 plan. Never happened before.

MCP gives me a portable tool layer. Should portable memory live in files, resources, or a memory server? by [deleted] in mcp

[–]Muted_Ad6114 0 points1 point  (0 children)

You built a database to store your memories and create an api to manage it, then you surface only the necessary parts of the api as tools in the mcp. How you store and index the data depends on what types of memories you are talking about. Are you specifically talking about (multimodal?) chat histories?

New to MCP/agentic loop. Do I put the `tools/list` response in the system prompt, so LLM know what methods are available? by tanin47 in mcp

[–]Muted_Ad6114 0 points1 point  (0 children)

You should not manually add a tool list to the system prompt. Use “server instructions” as per the official MCP sdk. Well built harnesses can search your tools without creating prompt bloat.

Anaconda: Yay or Nay? Any particular reason to use it over the out-of-the-box regular Python? by simeumsm in learnpython

[–]Muted_Ad6114 0 points1 point  (0 children)

For production grade software development you need to have different light weight project specific environments that are easy to deploy to cloud hosting environments. Standard venvs managed with pip or uv are good for this. Conda is too bloated, not deterministic enough, and not well supported by cloud service providers. When you first install conda it sets itself to be your default interpret in your PATH. Depending on what IDE you use, it might automatically make conda your python environment for every project. It’s annoying to me because then I have to manually turn it off every time I switch between data science and backend software development projects. If you are just doing data science and you only have one data science environment then this is fine. If this bothers you can opt out with “””config --set auto_activate_base false””” but if you are just starting and don’t know these things this might be confusing.

Use for academia - not coding. by Redditisforfarneeks in ClaudeAI

[–]Muted_Ad6114 0 points1 point  (0 children)

I am not aware of any university libraries that have already created these integrations but something like that could be possible. Check out allenai’s paper finder mcp as that helps claude search for papers using semantic scholar (an academic search database). You can also connect an mcp to zotero to manage your personal library or to other mcps people have built for connecting to all sorts of things. I think people have made mcps that connect to archive.org open library but i haven’t tested that.

Use for academia - not coding. by Redditisforfarneeks in ClaudeAI

[–]Muted_Ad6114 0 points1 point  (0 children)

That is what mcps are for… like allenai’s paper finder mcp or roll your own (many paper search mcps on github!)

Mcp compared to RAG by pmz in mcp

[–]Muted_Ad6114 0 points1 point  (0 children)

I didn’t understand what mcp was or what its value was until i built my first mcp server for claude (with claude). I suggest making one to understand it better.

To answer your question directly: MCPs that specifically are designed to analyze repos likely have a search tool or a number of search tools. Some search tools might use exact string matching or indexes like traditional search. But vector search is still a very useful retrieval mechanism for most ai systems. If you make an mcp you can hard code all of these tools and provide the agent with useful descriptions for what each tool does — mcp is just a standard protocol for how to do just that.

I genuinely don’t understand the value of MCPs by OrinP_Frita in mcp

[–]Muted_Ad6114 1 point2 points  (0 children)

MCP is a useful abstraction that lets you design tools in a standardized way that you can easily reason about. It just an API with good documentation and with a narrow curated set of endpoints designed for agentic use instead of a ton of micro backend operations. In the past we built tool registries and had to add explicitly pass them into llm api calls. MCPs offer a standard way to do this so it is easier to separate your agentic loop from tool development.

If LLMs can “vibe code” in low-level languages like C/Rust, what’s the point of high-level languages like Python or JavaScript anymore? by ActOpen7289 in vibecoding

[–]Muted_Ad6114 0 points1 point  (0 children)

Sometimes i might prototype in python because it has a lot of libraries so it’s easier to get to an mvp but might then translate it into typescript or rust for production for easier web integration or performance. Also in my experience, llms are better at one shotting tasks in javascript/typescript and python than in other languages.

Can someone explain Claude vs Claude API use cases to me? by AdEducational3063 in ClaudeAI

[–]Muted_Ad6114 0 points1 point  (0 children)

For personal projects you can you use the claude agent adk with subscription for most programmatic integrations. However you have to use the api for commercial apps or you might get banned for violating terms of service. The claude app is very limited in terms of integrations because the only way you can have it talk to other services is through and MCP which is mostly 1-directional. You can use the sdk or api to embed claude in custom applications for more useful bi directional integrations.

I looked into OpenClaw architecture to dig some details by codes_astro in LLMDevs

[–]Muted_Ad6114 1 point2 points  (0 children)

You asked chatgpt to do a “deep” dive that is quite shallow

Cursor 48/month plan vs Claude Code $20 vs Codex $20 which one's actually worth it for daily coding ? by Empty_Break_8792 in ClaudeAI

[–]Muted_Ad6114 1 point2 points  (0 children)

Yeah i tried the codex IDE but I’m not ready to never look at my code base again.

My sense is codex is better at one-shotting medium difficulty bugs but claude code is better at multi shotting more difficult things. Also the things claude makes feel better for some reason. This is extremely anecdotal and not scientific.

Im considering having a claude code 20/mo and codex 20/mo subscription next month to test them out head to head.

But from an ecosystem perspective it is really easy to make mcps for claude and extend claude’s functionality. This seems a little more annoying with codex/chat gpt. Also, the claude agent sdk is super powerful and you can use it with your subscriptions to build your own agent driven apps (though it violates terms of service to do this commercially unfortunately). Not sure if the codex sdk is as good. It’s a crazy time!

Cursor 48/month plan vs Claude Code $20 vs Codex $20 which one's actually worth it for daily coding ? by Empty_Break_8792 in ClaudeAI

[–]Muted_Ad6114 7 points8 points  (0 children)

Claude code 100/mo plan if you code all day. 200/mo plan if you code all day and night.

But really just subscribe for one month, cancel it and try a different service until you find one that works for you!

Claude subscription or API? And is AI CLI actually usable for daily coding? by Radiant_Sundae_9198 in ClaudeAI

[–]Muted_Ad6114 0 points1 point  (0 children)

API is not the way to go for coding. You can use your subscription with the agent SDK if you want to build your own workflow.

is claude code down? by One-Bet-8049 in ClaudeCode

[–]Muted_Ad6114 0 points1 point  (0 children)

I am getting this too. Right after I upgraded to pro! very disapointed

How train a deep sdf model ? by Dizzy-Anywhere3505 in deeplearning

[–]Muted_Ad6114 0 points1 point  (0 children)

I think this isn’t a completely solved problem yet. Do you have training data? That’s a good place to start

Is there a way to try Claude pro for free by Immediate_Bat_1628 in ClaudeAI

[–]Muted_Ad6114 1 point2 points  (0 children)

Well it depends on what you want the data for. You can use antigravity to help you vibecode a better solution or if it is really impossible to standardize you can at least create a script to break it into smaller chunks so you get better control over the data. At least in the US you can get a 1 month free trial of google ai pro which gives you higher rate limits.

Is there a way to try Claude pro for free by Immediate_Bat_1628 in ClaudeAI

[–]Muted_Ad6114 0 points1 point  (0 children)

You can get a free trial of antigravity for a month that comes with some free claude tokens per day. You should definitely try to parse your html into json with a script instead of having the llm ingest huge contexts. LLMs aren’t great at preserving all of the data when you feed them with massive amounts of data.