frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Classified as terrorists by the US government: Hacker collective A/I gives up

https://www.heise.de/en/news/Classified-as-terrorists-by-the-US-government-Hacker-collective-A-I-...
1•doener•44s ago•0 comments

Docker-Boot

https://github.com/purplesyringa/docker-boot
1•thijsr•6m ago•0 comments

Demystifying Complex Configurations

https://guix.gnu.org/blog/2026/demystifying-complex-configurations//
1•birdculture•8m ago•0 comments

Thoughts on Omarchy

https://chrissy.dev/notes/thoughts-on-omarchy/
2•meetpateltech•10m ago•0 comments

No Graphics API

https://github.com/sebbbi/NoGraphicsAPI
2•sagacity•11m ago•0 comments

Gap between how your team sees you AND how you see yourself

https://highimpactengineering.substack.com/p/the-gap-between-how-i-saw-myself
3•cmpit•12m ago•0 comments

We have found stable singularity on 3D Euler

https://twitter.com/AnimaAnandkumar/status/2097216195342864528
2•YeGoblynQueenne•13m ago•0 comments

Automatically detecting AI text in my browser

https://www.seangoedecke.com/deckard/
4•swah•14m ago•1 comments

By coincidence an independent result on Euler blowup has been released

https://mathstodon.xyz/@tao/117234157753860650
2•YeGoblynQueenne•16m ago•0 comments

Ancient Egypt in 3D

https://expeditione.fun/expeditions/ancient-egypt/
2•thunderbong•16m ago•0 comments

How to export Gemini chats to pdf [video]

https://www.youtube.com/watch?v=zFdp8DUfDco
3•quysala12•17m ago•0 comments

World Model (Artificial Intelligence)

https://en.wikipedia.org/wiki/World_model_(artificial_intelligence)
3•doener•19m ago•0 comments

Project Tapestry

https://thealliance.ai/projects/tapestry
2•doener•20m ago•0 comments

Plasma Studio

https://thelibre.news/announcing-plasma-studio/
4•DeepLogin•21m ago•0 comments

What Can You Do with a Local LLM?

https://grigio.org/what-can-you-actually-do-with-a-local-llm/
2•grigio•23m ago•0 comments

TCP-Brutal v2 released: A rate-based TCP congestion control algorithm

https://github.com/HyNetworks/tcp-brutal
2•NeverBehave•23m ago•1 comments

A continuing problem: human-generated content

https://github.com/geoff1111/AI-post/blob/main/README.md
2•Egret•23m ago•0 comments

Property Graph Queries reverted from Postgres 19 after third beta

https://git.postgresql.org/gitweb/?p=postgresql.git;a=commit;h=b1f106c80cbeb18d3a0219994d98a51a6e...
2•gmac•25m ago•1 comments

Be Easy to Leave

https://codebahn.net/blog/be-easy-to-leave/
3•maxheyer•27m ago•0 comments

Xiaomi Announces Foldable iPhone Rival

https://www.macrumors.com/2026/09/07/xiaomi-announces-foldable-iphone-rival/
2•ksec•27m ago•0 comments

Vaenyx – A personal AI app for family

https://github.com/vaenyxai/core
2•vaenyxai•27m ago•0 comments

The Carob Trust Prize for Academic Courage

https://www.thecarobtrust.org/the-prize
2•mpweiher•29m ago•0 comments

The 'Covered List': A Fraud Claimed 'National Security'

https://www.lawfaremedia.org/article/the--covered-list---a-fraud-claimed--national-security
2•heisenbit•31m ago•0 comments

Why Gen Z Loves Brain Rot

https://www.nytimes.com/2026/09/08/opinion/gen-z-tiktok-ig-reels.html
2•_tk_•32m ago•0 comments

WeWorm – First zero-click worm to spread through WeChat calls

https://blog.calif.io/p/weworm
3•quyleanh•32m ago•1 comments

Streaming Is Raising Prices Faster Than Cable Ever Did

https://www.hollywoodreporter.com/business/business-news/streaming-inflation-raising-prices-cable...
2•thm•37m ago•0 comments

Chromium/Chrome team witholds support for Icelandic language in Intl API

https://issues.chromium.org/issues/40624456
1•saevarom•39m ago•0 comments

PromptCube

https://promptcube3.com/en/
1•lucascaijia•41m ago•0 comments

Firelight and the Origins of Spoken Language

https://royalsocietypublishing.org/rspb/article/293/2078/20260602/483174/Firelight-and-the-origin...
1•harscoat•44m ago•0 comments

Netflix Moves Toward Open Source Flink Autoscaler for 30k Streaming Jobs

https://www.infoq.com/news/2026/09/netflix-flink-autoscaler/
1•theanonymousone•48m ago•0 comments
Open in hackernews

LLMs Are Great, but They're Not Everything

4•procha•1y 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•1y 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•1y 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?