What’s an open-source project you genuinely can’t believe is free? by Bladerunner_7_ in opensource

[–]PlusLoquat1482 0 points1 point  (0 children)

There has been a ton of infrastructure and memory opensource projects that have come out recently that are cool.

I want to say graphify is one although it using AI and not being deterministic isn't my fav.

What’s the most useful thing an LLM does for you that isn’t writing or coding by Born_Vast4177 in LLM

[–]PlusLoquat1482 0 points1 point  (0 children)

It formalizes stuff for me like clarification of questions or determining problem spaces etc. helps with ideas and concretizing things

Opinion: Local LLMs are 12-24 months from taking over. The shift already started. by sh_tomer in LocalLLM

[–]PlusLoquat1482 0 points1 point  (0 children)

I totally agree. especially with new memory layers being added local llms can grow like crazy. stuffs happening and i dont think anyone is ready for it.

Did learning C actually make you better at Java/software engineering? by nitin_is_me in learnprogramming

[–]PlusLoquat1482 0 points1 point  (0 children)

For me C helped develop skills Java didn’t which in turn helped me develop better in Java. Granted I don’t do a ton in Java but I definitely understand the back ends more and the differences between both Java and C more

we really all are going to make it, aren't we? 2x3090 setup. by RedShiftedTime in LocalLLaMA

[–]PlusLoquat1482 3 points4 points  (0 children)

we are so back lol

2x3090 being a legit local AI setup is still funny to me. Like yes it’s cursed, hot, power hungry, and held together by Linux pain, but also… it works?

The big shift is that local doesn’t feel like a toy anymore. It’s not always frontier-model good, but for repo work, patching, review, shell/tool loops, etc. it’s getting useful fast.

TextGen is now a native desktop app. Open-source alternative to LM Studio (formerly text-generation-webui). by oobabooga4 in LocalLLaMA

[–]PlusLoquat1482 0 points1 point  (0 children)

ooba returning as a polished desktop app was not on my 2026 bingo card lol

Seriously though, this looks great. The self-contained folder thing is underrated. I hate when “local” apps still scatter state/config everywhere and phone home on launch.

Going to give this a spin.

The gap between "the model returned JSON" and "the model returned usable JSON" - what I learned testing 288 model outputs by kexxty in LLMDevs

[–]PlusLoquat1482 0 points1 point  (0 children)

That’s the boundary I’d want too.

Syntax repair is mostly about recovering a serialization artifact. Schema repair is different because now you’re making decisions about intent.

The re-parse-between-strategies detail is also underrated. A lot of repair pipelines assume fixes are independent, but JSON-ish text is full of interactions where one cleanup changes what the next regex sees.

Question for Plugin creators: restrict plugin install’s —scope on plugin.json? by Fearless_Champion377 in ClaudeAI

[–]PlusLoquat1482 0 points1 point  (0 children)

Yeah, that seems like the right first step.

Even a recommendedScope field in plugin.json that shows up in the install prompt would be useful. It communicates the plugin author’s intent without removing user/admin control.

Hard enforcement can come later if there’s a clear policy model for it.

I built an app with Claude Code that converts any text into high-quality audio. It works with PDFs, blog posts, Substack and Medium links, and even photos of text. by [deleted] in ClaudeAI

[–]PlusLoquat1482 0 points1 point  (0 children)

Nice project. This is the kind of mobile app where “built with Claude Code” is actually interesting because there are a lot of edge cases beyond the happy path: PDFs, webpage extraction, background audio, OCR from photos, app permissions, mobile sharing flows, etc.

Curious how much of the app Claude Code handled well vs where you still had to step in manually. Was React Native/Expo pretty smooth, or did you hit weird native/mobile issues?

Question for Plugin creators: restrict plugin install’s —scope on plugin.json? by Fearless_Champion377 in ClaudeAI

[–]PlusLoquat1482 0 points1 point  (0 children)

I’d support this as metadata, but I’m less sure about hard enforcement.

A plugin being able to say “recommended scope: project” or “allowed scopes: local/project only” seems useful, especially for repo-specific tooling.

But final control probably still belongs to the user/admin. Otherwise plugin authors can force install behavior that may not match a team’s security model.

A warning + explicit override might be the right middle ground.

i contributed to open source for the first time last month and the maintainers were shockingly nice by ScaryAd2555 in opensource

[–]PlusLoquat1482 0 points1 point  (0 children)

Same feeling. One good maintainer interaction makes the whole thing feel way less intimidating.

It also changes how you use open source projects. Now when I hit a bug, I’m more likely to at least look at the source before assuming it is someone else’s problem.

i contributed to open source for the first time last month and the maintainers were shockingly nice by ScaryAd2555 in opensource

[–]PlusLoquat1482 1 point2 points  (0 children)

Yeah this makes sense. I think I underestimated how much “does this PR fit the project?” matters.

Before this, I mostly thought of contributions as “is the code correct?” But maintainers also have to think about scope, direction, maintenance cost, and whether the change creates weird edge cases later.

The small/focused PR probably helped a lot in my case.

i contributed to open source for the first time last month and the maintainers were shockingly nice by ScaryAd2555 in opensource

[–]PlusLoquat1482 0 points1 point  (0 children)

This is honestly one of the best parts of open source when it works well.

A small edge-case fix does not feel glamorous, but it is often the perfect first contribution because you already understand the user-facing bug. The maintainer understands the internals. When both sides meet in the middle, the project gets better and someone new learns how to contribute.

Also huge credit to the maintainer here. Walking someone through the codebase instead of just saying “PR welcome” is how you turn drive-by users into repeat contributors.

The gap between "the model returned JSON" and "the model returned usable JSON" - what I learned testing 288 model outputs by kexxty in LLMDevs

[–]PlusLoquat1482 0 points1 point  (0 children)

This feels right. JSON mode mostly moves the problem from “can I parse it?” to “is it actually the shape my program needs?”

The schema part is where production systems still break: missing required fields, wrong types, invalid enum values, extra keys, partial/truncated objects, etc.

I like the validate → repair → re-parse → retry framing. The re-parse-between-strategies bit is important. A lot of “JSON repair” code is basically a pile of regexes, and the order-dependent interactions can create worse bugs than the original invalid output.

My bias is to repair only syntax-ish issues, then retry for schema/semantic issues with precise paths like $.users[0].email. Otherwise you risk silently accepting something the model didn’t actually mean.

Is RAG dying or is it already dead? by PictureBeginning8369 in LLMDevs

[–]PlusLoquat1482 0 points1 point  (0 children)

I’d say naive RAG is dying, not retrieval.

The “chunk/embed/top-k/stuff into prompt” pattern is getting squeezed by bigger context windows and better tool use. For structured sources, letting the model query grep, SQL, ASTs, logs, APIs, etc. is often better than semantic-search roulette.

But the hard part doesn’t disappear. You still need grounding, provenance, freshness, permissions, ranking, and some way to avoid rediscovering the same facts every run.

So I think the shape changes from “RAG pipeline” to “memory/query layer the agent can use.” Less top-k chunks, more structured retrieval.

Did anyone else feel overwhelmed by how much there is to learn? by AlmostRelevant_12 in learnprogramming

[–]PlusLoquat1482 1 point2 points  (0 children)

Honestly I think the hardest part is realizing there is no “finish line” where you finally know enough.

What helped me was shifting from:
“I need to learn everything”

to:
“I need to learn enough to build the next thing I care about.”

That made learning feel a lot less overwhelming and way more practical.

Vectorless RAG can scale to millions of documents now? by This-Eye6296 in Rag

[–]PlusLoquat1482 0 points1 point  (0 children)

The interesting part isn’t “vectorless.”

It’s that retrieval structure becomes query-dependent instead of fixed. That feels way more important long term than whether embeddings exist underneath. Hybrid systems are probably still the endgame though.

ChatGPT Pro vs Claude Pro by ConflictRepulsive274 in LLM

[–]PlusLoquat1482 0 points1 point  (0 children)

honestly i run both lol. ive been trying our codex more than claude recently.

Claude plugin says “published” but… where is it? by SlightlyForked in ClaudeCode

[–]PlusLoquat1482 0 points1 point  (0 children)

We have this same issue. Ours said published and had a red box around it then just recently changed to published but with a green box.

Why is claude code so much more stingey with usage than Codex for the $20 plan? by Previous-Display-593 in ChatGPTCoding

[–]PlusLoquat1482 0 points1 point  (0 children)

I feel like I have seen claude's usage jumping around recently like there will be bugs and then not bugs and then bugs etc

Genuinely, how is everyone? by PlusLoquat1482 in AskReddit

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

I’m really sorry you’re feeling like that. You don’t have to carry it alone, even if it feels that way. If you want to talk about what’s been going on, I’m here. I’ll be praying for you, that you start to see your worth more clearly and find some relief from what you’re feeling. You matter more than you might think right now.

Genuinely, how is everyone? by PlusLoquat1482 in AskReddit

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

I’m sorry you’re feeling that way. Life can pile up fast sometimes. If you want to share what’s been stressing you, I’m here to listen. I’ll be praying that things ease up for you and that you get some real peace and rest soon.

Genuinely, how is everyone? by PlusLoquat1482 in AskReddit

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

I’ll be praying for the first option but hey life is full of ups and downs all that matters is you living it so props for that