frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Carrot Disclosure

https://dustri.org/b/carrot-disclosure.html
1•pabs3•20s ago•0 comments

From Convergence to Confidence: Push-Button Verification for RDTs

https://kcsrk.info/verification/rdts/lean/2026/04/28/from-convergence-to-confidence/
2•matt_d•4m ago•0 comments

Show HN: Agents in Whisper Memos

https://whispermemos.com/agents
1•Void_•6m ago•0 comments

Space meteor showers visualization powered by SpaceKit.js

https://www.meteorshowers.org/
1•axbyte•10m ago•0 comments

Despite everything, a small praise of GitHub

https://davidpoblador.com/blog/despite-everything-a-small-praise-of-github.html
3•nirvanis•14m ago•0 comments

Paper Age

https://marcin.cylke.com.pl/til/2026-04-28-til-paper-age/
5•janisz•14m ago•0 comments

Workers Training Meta's AI Could Be Laid Off

https://www.wired.com/story/meta-covalen-ai-workers-layoffs/
8•tijana3290•17m ago•0 comments

The Site for Prevention of Laptop Sales

https://lars.ingebrigtsen.no/2026/03/23/the-site-for-prevention-of-laptop-sales/
2•internet_points•19m ago•0 comments

The Downfall and Enshittification of Microsoft in 2026

https://caio.ca/blog/the-downfall-and-enshittification-of-microsoft.html
7•birdculture•21m ago•0 comments

Britain's Solar Revolution Is Here; We Should Be Shouting It from the Rooftops

https://bylinetimes.com/2026/04/22/britains-solar-revolution-is-here-and-we-should-be-shouting-it...
6•robtherobber•21m ago•0 comments

Show HN: C# based Kubernetes Operator to deploy SurrealDB

https://github.com/stevefan1999-personal/surrealdb-operator
4•stevefan1999•27m ago•1 comments

Wire to Replace Signal as Standard in the Bundestag

https://www.heise.de/en/news/Digital-Sovereignty-Wire-to-Replace-Signal-as-Standard-in-the-Bundes...
13•raffael_de•31m ago•5 comments

Why Codex works better than Claude Code for my production monolith

7•anophelon•32m ago•1 comments

ListingBot – One click, 100 directories, zero hassle

https://listingbott.com/
4•listingbott•37m ago•0 comments

Meta found in breach of EU law for failing to keep children off platforms

https://www.theguardian.com/technology/2026/apr/29/meta-found-in-breach-of-eu-law-for-failing-to-...
12•geox•40m ago•0 comments

RSME: A Reactive Stability Mutation Encryption

https://zenodo.org/records/19712564
4•RanggaS•40m ago•0 comments

Study Finds a Third of New Websites Are AI-Generated

https://www.404media.co/study-finds-a-third-of-new-websites-are-ai-generated/
5•thm•43m ago•0 comments

Who's on call? How Opus 4.6 helped us calculate this 2,500x faster

https://incident.io/blog/whos-on-call-how-claude-helped-us-calculate-this-2-500-x-faster
5•boryrain•46m ago•0 comments

Show HN: TiGrIS, a tiling compiler that fits ML models onto embedded devices

https://github.com/raws-labs/tigris
6•asteinh•51m ago•0 comments

ANP – A binary protocol for AI agent-to-agent price negotiation (no LLM tokens)

https://github.com/victornominista/anp
4•VC83•54m ago•0 comments

Rebuilding the Data Stack for AI

https://www.technologyreview.com/2026/04/27/1136322/rebuilding-the-data-stack-for-ai/
4•joozio•59m ago•0 comments

Sovereign Tech Standards network: financial support for open source maintainers

https://www.sovereign.tech/programs/standards
9•mgajdo•59m ago•1 comments

Anthropic's Champion Kit for engineers pushing Claude Code at their company

https://code.claude.com/docs/en/champion-kit
6•ashadh•59m ago•0 comments

India's major airlines on 'verge of closing down' as high fuel costs sting

https://www.scmp.com/news/asia/south-asia/article/3351782/indias-major-airlines-verge-closing-dow...
6•TMWNN•1h ago•0 comments

A Podcast with Talkie, a 13B model trained only on pre-1931 text

https://the-coming-age-aqx87j.jellypod.com
3•bilater•1h ago•1 comments

The UK's Answer to DARPA Wants to Rewire the Human Brain

https://www.wired.com/story/kathleen-fisher-jacques-carolan-aria-wired-health/
3•beardyw•1h ago•0 comments

Specification-Driven Development framework for agent-native development

https://specdd.ai
5•addvilz•1h ago•0 comments

Low-Compilation-Cost Register Allocation in LLVM-Based Binary Translation

https://dl.acm.org/doi/abs/10.1145/3767295.3803591
14•matt_d•1h ago•0 comments

Germany Overtakes US in Ammunition Production Capacity

https://www.newsweek.com/germany-overtakes-us-in-ammunition-production-capacity-11886409
56•vrganj•1h ago•32 comments

Ask HN: What are you doing during inference?

7•petesergeant•1h ago•2 comments
Open in hackernews

Decomposing Transactional Systems

https://transactional.blog/blog/2025-decomposing-transactional-systems
132•pongogogo•1y ago

Comments

karmakaze•1y ago
> commit version is chosen — the time at which the database claims all reads and writes occurred atomically.

This post doesn't mention transaction isolation specifically though it does say "How does this end up being equal to SERIALIZABLE MySQL?" So maybe I'm supposed to consider this post only for 'Every transactional system' running with SERIALIZABLE transaction isolation. I don't particularly care about that. I do care that the database I use clearly states what its isolation names mean in detail and that it does exactly what it says. e.g. I don't expect MySQL SERIALIZABLE to exactly mean the same as any other database that uses the same term.

mjb•1y ago
MySQL Serializable is pretty similar to serializable in other databases, in terms of the observable anomalies. There's a good set of tests here: https://github.com/ept/hermitage

> So maybe I'm supposed to consider this post only for 'Every transactional system' running with SERIALIZABLE transaction isolation.

No, it's a general point about the nature of transactions in DBMSs, and the different implementation choices. As the article says, there are some variations (e.g. MVCC at levels lower than serializable inherently has two 'order' steps).

karmakaze•1y ago
I'm not seeing the mention of two 'order' steps. Are you referring to the larger part of what I quoted?

> MVCC databases may assign two versions: an initial read version, and a final commit version. In this case, we’re mainly focused on the specific point at which the commit version is chosen — the time at which the database claims all reads and writes occurred atomically.

For non-SERIALIZABLE isolation there may be no such "time at which the database claims all reads and writes occurred atomically", which is how I took the rest of the post to mean when running with SERIALIZABLE isolation.

transactional•1y ago
(Hi! Post author here.)

It is written with a lean towards serializable, partly because there's a wide variety of easy examples to pull which all implement serializable, but the ideas mostly extend to non-serializable as well. Non-serializable but still MVCC will also place all of their writes as having happened at a single commit timestamp, they just don't try to serialize the reads there, and that's fine. When looking at non-serializable not MVCC databases, it's still useful to just try to answer how the system does each of the four parts in isolation. Maybe I should have been more direct that you're welcome to bend/break the mental model in whatever ways are helpful to understand some database.

The line specifically about MySQL running at serializable was because it was in the Spanner section, and Spanner is a (strictly) serializable database.

karmakaze•1y ago
Thanks for the clarifications and diagrams. I can see how using something like Spanner from the outset makes sense to use and stick with serializable isolation. With other SQL dbs, I've mostly seen repeatable read, read committed, and even read uncommitted used in the name of performance. Read committed works fine but you have to design everything for it from the start with thoughtful write and read sequences.

Moving to serializable should be easy but isn't in the case of Spanner and the like because you can't make 100+ of sub-millisecond queries to respond to an API request if that's how your app evolved.

The way I imagine the future is to bring the code closer to the data like stored procedures, but maybe in a new way like modern languages compiled to run (and if necessary retry) in a shard of the database.

mjb•1y ago
This is great, really worth reading if you're interested in transactions.

I liked it so much I wrote up how the model applies to Amazon Aurora DSQL at https://brooker.co.za/blog/2025/04/17/decomposing.html It's interesting because of DSQL's distributed nature, and the decoupling between durability and application to storage in our architecture.

maniacalhack0r•1y ago
DSQL is so cool - have been following since the release and once it supports more of the postgres feature set + extensions it’ll be a killer. Fantastic architecture deep dive at ReInvent as well.
pongogogo•1y ago
Hey Mark, I actually found this post via yours so thanks!