frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Age of "Don't do it yourself"

https://blog.rybarix.com/2025/11/26/age-of-dont-diy.html
1•sandruso•1m ago•0 comments

Anomalous electronic state opens pathway to room-temperature superconductivity

https://phys.org/news/2025-11-anomalous-electronic-state-pathway-room.html
1•rbanffy•1m ago•0 comments

Reminder that HN Active exists and is arguably better

https://news.ycombinator.com/active
2•loteck•1m ago•1 comments

What's Hiding Inside Haribo's Power Bank and Headphones?

https://www.lumafield.com/first-article/posts/whats-hiding-inside-haribos-power-bank-and-headphones
1•rozenmd•2m ago•0 comments

Show HN: MXP – A2A-compatible agent protocol, 37x faster than JSON

1•ferasawady•3m ago•0 comments

China completes first emergency mission to Tiangong space station

https://www.reuters.com/business/media-telecom/china-launch-shenzhou-22-spaceship-0411-gmt-state-...
1•Teever•4m ago•0 comments

France to bring in form of military service

https://www.bbc.co.uk/news/articles/c0edw7g7z79o
1•AIBytes•5m ago•0 comments

Z-Image, free online image generator

https://zimage.net
1•BruceWok•7m ago•0 comments

Cooldown Myths for Runners

https://therundownbytherunningeffect.substack.com/p/cooldowns-are-overrated
1•RalphHavensPT•9m ago•1 comments

Google says hackers stole data from 200 companies following Gainsight breach

https://techcrunch.com/2025/11/21/google-says-hackers-stole-data-from-200-companies-following-gai...
1•SilverElfin•9m ago•0 comments

Blender facial animation tool. What else should it do?

https://github.com/shun126/livelinkface_arkit_receiver/wiki
1•happy-game-dev•11m ago•0 comments

Walrus – distributed message streaming in Rust

4•janicerk•12m ago•0 comments

The Last Programming Language, and the End of (A Bit of) History

https://davegriffith.substack.com/p/the-last-programming-language-and
1•dxs•18m ago•0 comments

When Life Gets Too Easy

https://woodypearson.substack.com/p/when-life-gets-too-easy
1•heywoods•20m ago•0 comments

Show HN: Save Trippy – A Thanksgiving Game

https://www.savetrippy.com/
4•nezaj•21m ago•1 comments

Build Your Ideas with Gemini

https://app.new
1•tzury•21m ago•0 comments

Show HN: The Participatory Interface Theory

1•bobsh•23m ago•0 comments

Tesla CEO Elon Musk admits tough realization about FSD

https://www.thestreet.com/automotive/tesla-ceo-elon-musk-admits-tough-realization-about-fsd
2•gochuks•25m ago•0 comments

Show HN: A1 – Local Sandbox and JIT Compiler for AI Agents

https://github.com/stanford-mast/a1
1•calebhwin•26m ago•1 comments

Enterprise security can be messy: Building a Security-Aware Culture

2•rezliant•26m ago•1 comments

Math Skill for Claude Code

https://github.com/ananddtyagi/claude-code-marketplace/tree/main/plugins/math
1•ananddtyagi•28m ago•1 comments

The Input Stack on Linux: An End-to-End Architecture Overview

https://venam.net/blog/unix/2025/11/27/input_devices_linux.html
4•venamresm__•30m ago•0 comments

Israel proposes Kiryat Tivon for Nvidia's multibillion-$ tech campus in North

https://www.timesofisrael.com/israel-proposes-kiryat-tivon-for-nvidias-multibillion-dollar-tech-c...
3•thenaturalist•31m ago•1 comments

Asahi Investigation Results and Future Measures on Cyberattack Data Exposure

https://www.asahigroup-holdings.com/en/newsroom/detail/20251127-0204.html
1•ChrisArchitect•36m ago•0 comments

SSE sucks for transporting LLM tokens

https://zknill.io/posts/sse-sucks-for-transporting-llm-tokens/
2•zknill•36m ago•1 comments

Seagate achieves 6.9TB storage capacity per platter

https://www.tomshardware.com/pc-components/hdds/seagate-achieves-a-whopping-6-9tb-storage-capacit...
6•elorant•36m ago•0 comments

Shuffle – Game Mode as Experiment Engine

1•gok2•38m ago•0 comments

Grim Fandango film inspirations [pdf]

https://drive.google.com/file/d/1uIofz6_WeSYI3-6SEHT0vqFplb1wfLSW/view
1•Rant423•38m ago•0 comments

Tell HN: It should be okay to use AI for code and papers

1•nis0s•41m ago•2 comments

Show HN: Readit – Portable, dynamic context for AI Agents

https://readit.md/
2•zeerg•42m ago•1 comments
Open in hackernews

LLMs Are Great, but They're Not Everything

4•procha•6mo ago
Three years after ChatGPT’s release, LLMs are in everything—demos, strategies, and visions of AGI. But from my observer’s perspective, the assumptions we’re making about what LLMs can do seem to be drifting from architectural reality.

LLMs are amazing at unstructured information—synthesizing, summarizing, reasoning loosely across large corpora. But they are not built for deterministic workflows or structured multi-step logic. And many of today’s most hyped AI use cases are sold exactly like that.

Architecture Matters

We often conflate different AI paradigms:

    LLMs (Transformers): Predict token sequences based on context. Great with language, poor with state, goal-tracking, or structured tool execution.

    Symbolic AI / State Machines: Rigid logic, excellent for workflows—bad at fuzziness or ambiguity.

    Reinforcement Learning (RL): Optimizes behavior over time via feedback, good for planning and adaptation, harder to scale and train.
Each of these has a domain. The confusion arises when we treat one as universally applicable. Right now, we’re pushing LLMs into business-critical automation roles where deterministic control matters—and they often struggle.

Agentic Frameworks: A Workaround, Not a Solution

Agentic frameworks have become popular: LLMs coordinating with other LLMs in roles like planner, executor, supervisor. But in many cases, this is just masking a core limitation: tool calling and orchestration are brittle. When a single agent struggles to choose correctly from 5 tools, giving 10 tools to 2 agents doesn’t solve the problem it just moves the bottleneck.

Supervising a growing number of agents becomes exponentially harder, especially without persistent memory or shared state. At some point, these setups feel less like robust systems and more like committee members hallucinating their way through vague job descriptions.

The Demo Trap

A lot of what gets shown in product demos—“AI agents booking travel, updating CRMs, diagnosing errors”—doesn’t hold up in production. Tools get misused, calls fail, edge cases break flows. The issue isn’t that LLMs are bad it’s that language prediction is not a process engine.

If even humans struggle to execute complex logic reliably, expecting LLMs to replace structured automation is not vision it’s optimism bias.

On the Silence of Those Who Know Better

What’s most puzzling is the silence of those who could say this clearly: the lab founders, the highly respected researchers, the already-rich executives. These are people who know that LLMs aren’t general agents. They have nothing to lose by telling the truth and everything to gain by being remembered as honest stewards.

Instead, they mostly play along. The AGI narrative rolls forward. Caution is reframed as doubt. Realistic planning becomes an obstacle to growth.

I get it, markets, momentum, investor expectations. But still: it’s hard not to feel that something more ethical and lasting is being passed over in favor of short-term shine.

A Final Thought

I might be wrong—but it’s hard to ignore the widening gap between what LLMs are and what C-level execs and investors want them to be. Engineering teams are under pressure to deliver the Hollywood dream, but that dream often doesn’t materialize. Meanwhile, sunk costs pile up, and the clock keeps ticking. This isn’t pessimism it’s recognizing that hype has gravity, and reality has limits. I’d love to be proven wrong and happily jump on the beautiful AI hype train if it ever truly arrives.

Comments

designorbit•6mo ago
Love this perspective. You nailed the core issue: LLMs ≠ process engines. And agentic frameworks stacking roles often end up masking fragility instead of fixing it.

One thing I’ve been exploring is this middle ground—what if we stop treating LLMs as process executors, and instead make them contextual participants powered by structured, external memory + state layers?

I’m building Recallio as a plug-and-play memory API exactly for this gap: letting agents/apps access persistent, scoped memory without duct-taping vector DBs and custom orchestration every time.

Totally agree the dream won’t materialize through token prediction alone—but maybe it does if we reconnect LLMs with better state + memory infra.

Have you seen teams blending external memory/state successfully in production? Or are most still trapped inside the prompt+vector loop?

dpao001•6mo ago
What is your opinion on Manus. Is it closing in on AGI or is it as you suggest a sticking plaster waiting to break?