frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

What Would C. S. Lewis Have Thought of AI?

https://chroniclesmagazine.org/web/what-would-c-s-lewis-have-thought-of-ai/
1•RickJWagner•1m ago•0 comments

High-sensitivity electro snout sniffs out unsafe food

https://newatlas.com/technology/electronic-nose-detect-spoiled-food-allergens/
1•breve•1m ago•0 comments

US at 250 – Why has the US been so successful and can it continue? [pdf]

https://assets.realclear.com/files/2026/06/2902_thematic_research_-_june_24.pdf
1•RickJWagner•2m ago•0 comments

Send OTP Codes over WhatsApp with the Telnyx Verify API

https://telnyx.com/resources/whatsapp-otp-verify-api
1•harpreetseehra•4m ago•0 comments

GCC 14.4 Released

https://gcc.gnu.org/pipermail/gcc/2026-June/248430.html
1•edelsohn•6m ago•0 comments

Exploring retro productivity software: Visual Basic on Windows 3.1

https://stonetools.ghost.io/visualbasic-win31/
1•jnord•6m ago•0 comments

BBC News uses thermal cameras to illustrate heatwave in London

https://www.bbc.co.uk/news/articles/cz9l1n4kn34o
2•xmjw•8m ago•0 comments

Show HN: NT – fly around Git worktrees from your shell

https://github.com/allisonmahmood/NT
1•Allisonmahmood•9m ago•0 comments

Scientists find evidence of hidden magma systems inside Mars

https://phys.org/news/2026-06-scientists-evidence-vast-hidden-magma.html
1•ilreb•11m ago•0 comments

Purchasing non-taxed Cannabis products carry fines now. Nova Scotia

https://news.novascotia.ca/en/2026/06/25/higher-fines-new-offences-support-safe-legal-cannabis-ma...
1•Weered•12m ago•0 comments

How we run untrusted code in Langfuse (OSS) and why we picked lambda

https://langfuse.com/blog/2026-06-22-code-evaluators-execution-model
1•marcklingen•13m ago•1 comments

Binance is leaving the EU. Here is how to move your funds

https://cyphergoat.com/binance-eu
2•4rkal•14m ago•0 comments

Everything Idiocracy Predicted That Came True [video][25 Mins]

https://www.youtube.com/watch?v=NPhYhwvMAM8
3•Bender•14m ago•0 comments

Captcha proves you're human. HATCHA proves you're not

https://github.com/mondaycom/HATCHA
18•backlit4034•15m ago•12 comments

Smart AC dial in TypeScript and CSS running natively on ESP32 [video]

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

The White House is asking OpenAI to slow roll the release of its new model

https://techcrunch.com/2026/06/25/the-white-house-is-asking-openai-to-slow-roll-the-release-of-it...
6•lucamark•19m ago•0 comments

From Pentagons to Pentagrams

https://johncarlosbaez.wordpress.com/2026/05/29/from-pentagons-to-pentagrams/
3•surprisetalk•21m ago•0 comments

Ask HN: Can anyone use Claude Fable 5?

4•vantareed•23m ago•1 comments

Ask HN: What makes you register on a website?

3•TheRickyRed•23m ago•1 comments

Open-source machine identity security (IAM roles outnumber humans 82:1)

https://github.com/josephtui767-cloud/MII
3•josephtui•26m ago•0 comments

Microsoft's quantum computing technology called into question, again

https://vechron.com/2026/06/microsofts-quantum-computing-technology-called-into-question-again/
3•bhartipoddar•28m ago•0 comments

The day I started believing

https://davidpoblador.com/blog/the-day-i-started-believing.html
3•nirvanis•30m ago•0 comments

Ultrasound Imaging of the Brain

https://alephneuro.com/blog/ultrasound-brain
4•rossant•30m ago•0 comments

After the Rent Freeze

https://phenomenalworld.org/analysis/after-the-rent-freeze/
2•mjbellantoni•30m ago•1 comments

Orientation-Dependent Drag Crisis&Flight Response of FIFA World Cup Ball Trionda

https://www.mdpi.com/2311-5521/11/5/128
2•bookofjoe•36m ago•0 comments

Zoo Visitors' Initial Assessment of an Animaloid Robot as a Zoo Exhibit [pdf]

https://dl.acm.org/doi/pdf/10.1145/3544549.3585762
2•parksb•36m ago•0 comments

Ask HN: How do you do invoicing?

2•lasvejas•38m ago•0 comments

Show HN: I tracked 47 flights with a smart ring to quantify IMSAFE's blind spot

https://jay9185.github.io/Ultrahuman-heatmaps/
3•jerr12939•38m ago•0 comments

Mlibc: A fukk-featured portable C standard library

https://github.com/managarm/mlibc
3•fanf2•39m ago•0 comments

A Curl Mountain Movie

https://daniel.haxx.se/blog/2026/06/26/a-curl-mountain-movie/
2•HieronymusBosch•40m ago•0 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.