frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Small Is Beautiful

https://blog.dshr.org/2026/09/small-is-beautiful.html
1•zdw•32s ago•0 comments

Surfmen of the U.S. Life-Saving Service

https://www.nps.gov/calo/learn/historyculture/surfmen.htm
1•Bluestein•1m ago•0 comments

Meta's $17B Settlement Is a Bad Deal for Teens and All Social Media Users

https://www.eff.org/deeplinks/2026/09/metas-17-billion-settlement-bad-deal-teens-and-all-social-m...
1•panarky•3m ago•0 comments

Modernist Tiles with CSS Grid

https://www.carmenansio.com/articles/modernist-tiles-css-grid/
1•eustoria•4m ago•0 comments

Zitron: Have we reached Peak AI? (2024)

https://www.wheresyoured.at/peakai/
1•Jimmc414•6m ago•1 comments

I've Been Reading

https://antonyfb.com/blog/reading-straw-world.html
1•jruohonen•6m ago•0 comments

JavaScript / ECMAScript Internationalization (I18n)

https://www.jsi18n.com/
1•eustoria•7m ago•0 comments

Making my blog feel like other people are here

https://keith.is/post/playhtml-shared-header/
1•eustoria•7m ago•0 comments

Claude Fable 5.1 results on ARC-AGI

https://arcprize.org/results/anthropic-claude-fable-5-1
3•matt1•9m ago•0 comments

Aurem – ships real commits to your website from plain English, no coder needed

https://auremcto.com/
2•tjsandhu•9m ago•0 comments

A docs page is a long and complex search query to find AI agents

https://blog.val.town/aeo
3•stevekrouse•10m ago•0 comments

Pgwatch v6: dashboards reimagined, and a reaper that doesn't choke

https://www.cybertec-postgresql.com/en/pgwatch-v6-dashboards-reimagined-and-a-reaper-that-doesnt-...
1•blueshoess•11m ago•0 comments

Appletini: The Card for Everything [video]

https://www.youtube.com/watch?v=vyAJKuzkzYg
1•frizlab•12m ago•0 comments

I don't use a Computer [pdf]

https://classes.matthewjbrown.net/teaching-files/philtech/berry-computer.pdf
3•sashank_1509•16m ago•2 comments

UnitedHealthcare to drop prior authorization for range of conditions

https://www.reuters.com/legal/litigation/unitedhealthcare-drop-prior-authorization-requirements-r...
2•elo2000•16m ago•0 comments

Dark matter hunt takes unexpected turn after signal spotted in LZ detector

https://www.imperial.ac.uk/news/articles/natural-sciences/physics/2026/dark-matter-hunt-takes-une...
1•cisc•19m ago•0 comments

Show HN: HN Match Maker – Matching "Who Wants to Be Hired?" With "Who's Hiring?"

https://hnmatchmaker.com/
3•all2•21m ago•0 comments

Panzoe Technologies

https://panzoe.ai/
1•roper1225•24m ago•0 comments

India preparing rollout of agentic payments on UPI

https://www.reuters.com/world/india/india-preparing-rollout-agentic-payments-upi-sources-say-2026...
1•alephnerd•25m ago•0 comments

The Nerd Reich wants to destroy democracy, and its mask has slipped

https://www.abc.net.au/news/2026-09-02/the-nerd-reich-silicon-valley-fascism-war-on-democracy-abc...
16•phs318u•26m ago•3 comments

Meta's Addictive Design

https://www.bitsoffreedom.nl/en/2026/07/22/metas-addictive-design/
2•jruohonen•27m ago•0 comments

Russia helping Iran develop supersonic cruise missiles

https://www.ft.com/content/6cf367bc-95b0-4f1f-b149-a25684adefc3
2•doener•27m ago•1 comments

A PCB business card with a batteryless LED, powered by the phone that taps it

https://www.kevin.md/the-business-card-that-lights-up.md/
1•thekevintang•28m ago•0 comments

It's simple to buy Canadian with O SCANada

https://www.oscanadaapp.ca/
2•cf100clunk•29m ago•1 comments

10 AI Lessons from Driving 200M+ Fully Autonomous Miles

https://waymo.com/blog/2026/08/10ailessons/
2•bookofjoe•30m ago•0 comments

Cryptocurrency Sucks – In excruciating detail [pdf]

https://redacted.moe/f/5b697982.pdf
4•Cyclone_•30m ago•0 comments

California ban on 'addictive' social media for teens heads to Newsom

https://www.politico.com/news/2026/08/31/social-media-addictive-ban-newsom-01058241
2•1vuio0pswjnm7•31m ago•0 comments

Cutting an AI agent's network access mid-run, measured at 127 ms

https://medium.com/data-science-collective/your-coding-agent-has-your-aws-keys-and-an-open-intern...
2•sebuzdugan•33m ago•0 comments

Kleinanzeigen's category tree, reverse-engineered (no official API exists)

https://github.com/Rebaiahmed/anzeigenboost-open
2•rebai94•34m ago•0 comments

Dyson Launches Toothbrush

https://www.dyson.com/oral-care/electric-toothbrush/camerajet/ceramic-ultra-blue
38•noja•35m ago•13 comments
Open in hackernews

GenAI-Accelerated TLA+ Challenge

https://foundation.tlapl.us/challenge/index.html
35•lemmster•1y ago

Comments

Taikonerd•1y ago
Using LLMs for formal specs / formal modeling makes a lot of sense to me. If an LLM can do the work of going from informal English-language specs to TLA+ / Dafny / etc, then it can hook into a very mature ecosystem of automated proof tools.

I'm picturing it something like this:

1. Human developer says, "if a user isn't authenticated, they shouldn't be able to place an order."

2. LLM takes this, and its knowledge of the codebase, and turns it into a formal spec -- like, "there is no code path where User.is_authenticated is false and Orders.place() is called."

3. Existing code analysis tools can confirm or find a counterexample.

omneity•1y ago
A fascinating thought. But then who verifies that the TLA+ specification does indeed match the human specification?

I’m guessing using an LLM as a translator narrows the gap, and better LLMs will make it narrower eventually, but is there a way to quantify this? For example how would it compare to a human translating the spec into TLA+?

justanotheratom•1y ago
maybe run it through few other LLMs depending on how much confidence you need - o3 pro, gemini 2.5 pro, claude 3.7, grok 3, etc..
svieira•1y ago
Then you need to be able to formally prove the equivalence of various TLA+ programs (maybe that's a solved problem?)
omneity•1y ago
No idea about SOTA but naively it doesn't seem like a very difficult problem:

- Ensure all TLA+ specs produced have the same inputs/outputs (domains, mostly a prompting problem and can solved with retries)

- That all TLA+ produce the same outputs for the same inputs (making them functionally equivalent in practice, might be computationally intensive)

Of course that assumes your input domains are countable but it's probably okay to sample from large ranges for a certain "level" of equivalence.

EDIT: Not sure how that will work with non-determinism though.

justanotheratom•1y ago
I didn't mean generate separate TLA programs. Rather, other LLMs review and comment on whether this TLA program satisfies the user's specification.
Taikonerd•1y ago
A fair question! I'd say it's not that different from using an LLM to write regular code: who verifies that the code the LLM wrote is indeed what you meant?
fmap•1y ago
The usual way to check whether a definition is correct is to prove properties about it that you think should hold. TLA+ has good support for this, both with model checking as well as simple proofs.
frogmeister57•1y ago
It makes a lot of sense only for graphics card sales people. For everyone else with a working neuron the sole idea is utter nonsense.
max_•1y ago
Leslie Lamport said that he invented TLA+ so people could "think above the code".

It was meant as a tool for people to improve their thinking and description of systems.

LLM generation of TLA+ code is just intellectual masterbation.

It may get the work done for your boss. But you intellect will still remain bald — in which case you are better off not writing TLA+ at all.

warkdarrior•1y ago
> [TLA+] was meant as a tool for people to improve their thinking and description of systems.

Why the speciesism? Why couldn't LLMs use TLA+ by translating a natural-language request into a TLA+ model and then checking it in TLA+?

jjmarr•1y ago
Not the OP, but I would rather give a formal specification of my system to an AI and have it generate the code.

I believe the point is it's easier for a human to verify a system's correctness as expressed in TLA+ and verify code correctly matches the system than it is to correctly verify the entire code as a system at once.

Then, if my model of the system is flawed, TLA+ will tell me.

I'm an AI bull so if I give the LLM a natural language description, I'd like the LLM to explain the model instead of just writing the TLA+ code.

max_•1y ago
TLA+ was invented in the first place because we Leslie Lamport thought natural language was a dubious tool for "specifying systems".

Yes an LLM may generate the TLA+ code even correctly, but model checking is not the end goal of TLA+

TLA+ plus is written to fully under how a system works at an abstract level.

Anyways, I guess you could just read the LLM generated TLA+ code. That would help you understand the abstraction of the system — but is the LLMs abstraction equal to your abstraction.

But vibe coded TLA+ sounds extremely dangerous especially in mission critical stuff where its required like Smart Contracts, Pacemakers, Aircraft software etc

frogmeister57•1y ago
Using generative chatbots to write a formal spec is the most stupid idea ever. Specs are all about reasoning. You need to do the thinking to model the system in a very simplified manner. Formal methods and the generative BS are at the antipodes of reliability. This is an insult to reason. Please keep this nonsense away from the serious parts of CS.
siscia•1y ago
Anyone who has tried to write formal verification will tell you that there is a WIDE gap between thinking and writing the specs.

Any tool that makes formal verification more accessible, should be welcome.

I believe the valuable part is how accessible we make thinking together with machines.

Us human are great at create innovative solutions, not so great at check and verify every single thing that can go wrong. Machines help with that.

kelseyfrog•1y ago
Interesting. I've always wanted to formalize the US Constitution into TLA+ in order to find loopholes.