frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Borrow Checking in Nim 3.0

https://github.com/nim-lang/nimony/issues/1517
1•k__•1m ago•0 comments

Mineclonia 0.117.0

https://codeberg.org/mineclonia/mineclonia/releases/tag/0.117.0
1•dither8•3m ago•0 comments

Is Matrix Multiplication Ugly?

https://mathenchant.wordpress.com/2025/11/21/is-matrix-multiplication-ugly/
1•jamespropp•4m ago•1 comments

Cloud Run Jobs Losing Root Access – Breaking Change

https://console.cloud.google.com/security/advisorynotifications/details/organizations/67792656005...
1•tonymet•6m ago•2 comments

LAPD Helicopter Tracker with Real-Time Operating Costs

https://lapdhelicoptertracker.com/
3•polalavik•10m ago•0 comments

Tailwind for React Native with zero-runtime overhead

https://github.com/mgcrea/react-native-tailwind
1•olouv•18m ago•0 comments

Trump's Devastating Plan for Ukraine

https://www.theatlantic.com/ideas/2025/11/trump-sell-out-ukraine/684996/
7•consumer451•19m ago•2 comments

She Has Taken 30 Years to Write a 7-Part Novel About 1 Day. It's a Sensation

https://www.nytimes.com/2025/11/18/magazine/solvej-balle-calculation-of-volume.html
4•mykowebhn•20m ago•2 comments

AI Bubble – how it all ends

1•AJTSheppard•22m ago•1 comments

Iran's Capital Is Moving. The Reason Is an Ecological Catastrophe

https://www.scientificamerican.com/article/irans-capital-has-run-out-of-water-forcing-it-to-move/
2•ceejayoz•23m ago•2 comments

Epstein Geopolitics

https://www.un-diplomatic.com/p/epstein-geopolitics
6•amunozo•28m ago•0 comments

OSS Friday Update

https://noteflakes.com/articles/2025-11-21-friday-update
1•todsacerdoti•32m ago•0 comments

Optery's Open-Source Data Broker Directory

https://github.com/optery/optery-data-brokers-directory
1•882542F3884314B•37m ago•0 comments

The Great Cholesterol Scam and the Dangers of Statins

https://www.midwesterndoctor.com/p/the-great-cholesterol-scam-and-the
1•bilsbie•43m ago•2 comments

Ask HN: Current state of Android USB tethering?

4•namesarehard•45m ago•0 comments

Microsoft Doesn't Want You to Know This.. (3 Min Video)

https://www.youtube.com/watch?v=iuIdBfjL62s
1•rmason•46m ago•0 comments

Show HN: VulNinja – multi cloud security made easy

https://vul.ninja
1•rjameshsv•51m ago•0 comments

The Untold History of Arduino

https://arduinohistory.github.io/
3•davikr•52m ago•0 comments

How to Fix a Typewriter and Your Life

https://www.nytimes.com/interactive/2025/11/20/us/typewriter-repair-seattle-bremerton.html
2•jaden•53m ago•0 comments

Harvard Law School Library's Nuremberg Trials Project

https://nuremberg.law.harvard.edu
2•urodriguezpomba•54m ago•1 comments

Gitlogue – A cinematic Git commit replay tool for the terminal

https://github.com/unhappychoice/gitlogue
1•inesranzo•56m ago•0 comments

Virus / Zarch (Amiga) Speedrun in 1:20:53 (World Record?) [video]

https://www.youtube.com/watch?v=rc4HhHSiH1E
2•doener•1h ago•0 comments

Your Codebase Is Probably Fighting Claude (Part 1)

https://ambient-code.ai/2025/11/21/your-codebase-is-probably-fighting-claude-part-1/
1•jeremyeder•1h ago•1 comments

I Tried Apple Intelligence in 2025 [video]

https://www.youtube.com/watch?v=S2nNAYnPFTQ
4•busymom0•1h ago•1 comments

What the Epstein Emails Reveal

https://www.thefp.com/p/what-the-epstein-emails-reveal
9•wslh•1h ago•0 comments

How to reverse-engineer your competitor's customer acquisition strategy

https://customeracquisitionengine.com/posts/10-ways-to-reverse-engineer-your-competitors-customer...
1•superamped•1h ago•0 comments

ClickHouse Fiddle – A SQL Playground for ClickHouse

https://clickhouse.com/blog/clickhouse-fiddle-sql-playground
1•saisrirampur•1h ago•0 comments

Suno is a Walking Dead. Suno is the new Napster 2.0

https://jperla.com/blog/suno-walking-dead
2•ljlolel•1h ago•1 comments

Designing allosteric modulators to change GPCR G protein subtype selectivity

https://www.nature.com/articles/s41586-025-09643-2
1•PaulHoule•1h ago•0 comments

We are Arduino. We are open. We're not going anywhere

https://blog.arduino.cc/2025/11/21/the-arduino-terms-of-service-and-privacy-policy-update-setting...
3•manchoz•1h ago•1 comments
Open in hackernews

GenAI-Accelerated TLA+ Challenge

https://foundation.tlapl.us/challenge/index.html
35•lemmster•6mo ago

Comments

Taikonerd•6mo 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•6mo 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•6mo 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•6mo ago
Then you need to be able to formally prove the equivalence of various TLA+ programs (maybe that's a solved problem?)
omneity•6mo 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•6mo 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•6mo 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•6mo 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•6mo 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_•6mo 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•6mo 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•6mo 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_•6mo 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•6mo 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•6mo 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•6mo ago
Interesting. I've always wanted to formalize the US Constitution into TLA+ in order to find loopholes.