frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

A Deep Dive on China's "LineShine" All-CPU, Exaflops-Class Supercomputer

https://www.nextplatform.com/hpc/2026/06/25/a-deep-dive-on-chinas-lineshine-all-cpu-exaflops-clas...
1•jonbaer•6m ago•0 comments

Anthropic's philosopher answers your questions [video]

https://www.youtube.com/watch?v=I9aGC6Ui3eE
2•binyu•8m ago•1 comments

Om Malik – Silicon Valley Has an Empathy Vacuum (Nov 2016)

https://www.newyorker.com/business/currency/silicon-valley-has-an-empathy-vacuum
2•rmason•11m ago•0 comments

Van Halen test

https://en.wikipedia.org/wiki/Van_Halen_test
3•teleforce•13m ago•0 comments

Show HN: FastPlay, a fast minimal Windows video player built in Rust

https://github.com/CalvinSturm/FastPlay
1•CalvinSturm•15m ago•0 comments

Investors bet on AI again after Micron reports 346% sales jump

https://www.cnn.com/2026/06/25/business/micron-results-ai-stocks-volatility
1•dabinat•17m ago•0 comments

Steve Jobs felt certain Apple would never have existed without making blue boxes

https://macdailynews.com/2024/06/19/steve-jobs-felt-certain-apple-would-never-have-existed-withou...
1•SockThief•20m ago•0 comments

Popular Adblock for YouTube extension contains remote code execution

https://www.island.io/blog/badblocker-11-million-users-one-server-call-away-from-compromise
2•fastest963•26m ago•0 comments

Claude AI's link handling and fix

https://www.FoolQuest.com/
2•Aaron_Agassi•27m ago•0 comments

Show HN: A field recording of the underground. The engineers and producers

https://2inch.fm/
2•shawnzam•28m ago•1 comments

Wall Street Embraces the Dollar as Warsh's Fed Activates Bulls

https://www.bloomberg.com/news/articles/2026-06-25/wall-street-embraces-the-dollar-as-warsh-s-fed...
3•petethomas•29m ago•0 comments

Tropius: Detect AI Tropes in Prose

https://tangled.org/desertthunder.dev/tropius
2•birdculture•32m ago•0 comments

Ask HN: Anyone Here Work for Google? Specifically on the Google SMB Newsletter?

2•VladVladikoff•35m ago•0 comments

Trump administration asks to hold OpenAI's next model

https://www.axios.com/2026/06/25/trump-administration-openai-gpt-model-release
5•dramebaaz•37m ago•0 comments

Show HN: Replyt – Track which Reddit discussions become customers

https://replyt.co
4•hectorguedea•37m ago•0 comments

Ask HN: Norway bans AI in elementary schools

3•mellosty•40m ago•3 comments

This isn't a PPT. Repo speaks

2•hblqzj•44m ago•0 comments

Show HN: Pw-whip, a bridge between PipeWire and WHIP

https://github.com/jech/pw-whip/
3•jech•47m ago•0 comments

Poll

6•krapp•47m ago•2 comments

Deep Dive into IBM's new NanoStack 0.7nm Process Node for Chips – 666 MTr/mm2

https://morethanmoore.substack.com/p/ibms-announces-07nm-process-node
4•IanCutress•48m ago•0 comments

Hollywood-backed nonprofit launches machine-readable AI consent registry

https://rslmedia.org/
2•navs•50m ago•0 comments

The Garbage Collection Handbook: The Art of Automatic Memory Management (2nd Ed)

https://gchandbook.org/
9•teleforce•54m ago•1 comments

AI doesn't take jobs. It takes tasks

https://www.nextgig.rocks/dash/how-ai-changes-jobs
4•poseidon_sg•56m ago•1 comments

How do you tackle a backlog of deferred maintenance you didn't create?

3•zeelex•57m ago•0 comments

Elasto Mania Ported to WebAssembly

https://joshumax.github.io/elma-web/
2•joshumax•1h ago•0 comments

Show HN: HoprLabs – a Python lab for prototyping AI math ideas

https://github.com/TangibleResearch/HoprLabs
3•reboy•1h ago•0 comments

Oracle workforce shrinks by about 21,000 employees amid AI adoption

https://finance.yahoo.com/technology/ai/articles/oracle-workforce-shrinks-13-204431510.html
3•akyuu•1h ago•0 comments

Ford could bring F1-inspired 'skunkworks' EVs to Europe

https://www.autocar.co.uk/car-news/electric-cars/ford-could-bring-f1-inspired-skunkworks-evs-europe
3•breve•1h ago•0 comments

Show HN: DeepSeek Flash inverted the economics of agent products

https://www.rtrvr.ai/blog/code-as-plan-deepseek-flash-text-only-browser-agent
8•arjunchint•1h ago•0 comments

Om Malik

https://en.wikipedia.org/wiki/Om_Malik
2•emot•1h 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.