frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Anthropic's Safety Superpower

https://stratechery.com/2026/anthropics-safety-superpower/
1•swolpers•48s ago•0 comments

Ask HN: Why are Spec-kit specs like that

1•pretorian_paul•3m ago•0 comments

Philippines now China's 2nd biggest market for solar panels

https://www.philstar.com/business/2026/05/29/2531211/philippines-now-chinas-2nd-biggest-market-so...
1•doener•4m ago•0 comments

Neuroscientists discover cognitive benefits of reading physical comic books

https://www.psypost.org/neuroscientists-discover-previously-unknown-cognitive-benefits-of-reading...
1•emot•5m ago•0 comments

When Tailwinds Vanish

https://foundersfund.com/2023/06/when-tailwinds-vanish/
1•ronfriedhaber•7m ago•0 comments

Returning to Zig

https://gracefulliberty.com/articles/return-to-zig/
1•kristoff_it•8m ago•0 comments

Why Reddit blocked unauthenticated JSON in 2026

https://medium.com/@tonywangcn/why-reddit-blocked-unauthenticated-json-in-2026-and-how-to-still-g...
2•tonywangcn•10m ago•0 comments

You probably don't need private PKI for internal infrastructure

https://www.certkit.io/blog/private-pki-internal-infrastructure
1•plopilop•10m ago•0 comments

Mid-tier US knives vs. cheap imports

https://www.paragon-knives.com/
1•bgzlsxaz•12m ago•0 comments

T1A Brings Its Full Data Stack to Dais 2026: 5 Products AndSubscription Giveaway

https://lakesentry.io/
1•tsyliya•15m ago•0 comments

Show HN: Fastembed-rs – Rust library for generating vector embeddings, reranking

https://github.com/Anush008/fastembed-rs
1•thoughtfullyso•19m ago•0 comments

Browser game about movie guessing

https://frameguesser.vercel.app/
1•mmschreiber•26m ago•0 comments

Nike Launches Sneaker Line with Russian Designer Who Backed Crimea Annexation

https://united24media.com/world/nike-launches-sneaker-line-with-russian-designer-who-backed-crime...
5•fodmap•27m ago•0 comments

Graphtatui: In terminal graph explorer made with ratatui

https://github.com/Sok205/graphtatui
2•sok205•29m ago•0 comments

Yield Curves and Volatility Surfaces Are Built in Modern Finance

https://medium.com/@DolphinDB_Inc/the-hidden-foundation-of-pricing-and-risk-how-ficc-curves-and-s...
2•Polly_Liu•30m ago•0 comments

CPMpy: Constraint Programming and Modeling library in Python, based on NumPy

https://github.com/CPMpy/cpmpy
1•tosh•31m ago•0 comments

Why Digital Twins Need Low-Latency Data Processing

https://medium.com/@DolphinDB_Inc/real-time-decision-making-how-ai-and-low-latency-computing-are-...
2•CrazyTomato•31m ago•0 comments

Githipedia – The Wiki for GitHub

https://github.com/Vendetaaaa/Githipedia
1•Vendeta•32m ago•1 comments

Show HN: I wrote a C++ ray tracer from scratch without AI

https://github.com/themartiano/luz
3•martiano•33m ago•1 comments

Ask HN: How do you handle browser tab overload?

1•formit34•33m ago•2 comments

Coversubstack-Zagreus=Whiterabbit.flexe

https://substack.com/@rootedinthought/note/c-276218913
1•dcmexpunksolar•37m ago•0 comments

LibAgar – Cross-platform GUI written in C

https://libagar.org/
2•0x0203•38m ago•0 comments

What are you looking for when reviewing LLM generated code?

2•gnunicorn•39m ago•1 comments

Ask HN: Developers, are you being forced into prompt-only engineering?

3•zerr•40m ago•0 comments

Fear about young adults' maturity is just a way of trying to control them (2023)

https://www.newstatesman.com/comment/2023/06/fear-about-young-adults-maturity-is-just-a-way-of-tr...
1•frereubu•41m ago•1 comments

Show HN: ELDC – Natural language identification, faster than FastText and CLD2

https://github.com/nitotm/eldc
2•nitotm•43m ago•0 comments

Anthropic flies staff to D.C. to clean up White House fight

https://www.axios.com/2026/06/14/anthropic-white-house-mythos-fable
8•dstala•44m ago•3 comments

Trailblazing investigative reporter Roger Cook dies

https://news.sky.com/story/trailblazing-investigative-reporter-roger-cook-dies-13554262
2•austinallegro•46m ago•0 comments

Searching for Guy Debord (2003)

https://brooklynrail.org/2003/10/express/searching-for-guy-debord/
1•robtherobber•47m ago•0 comments

Ask HN: Did you try Claude's "Fable 5" model before it was pulled?

3•aniokono•47m ago•1 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.