frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

WrathBench − an Agent Workbench for World of Warcraft

https://wrathbench.shard.page/
2•stymaar•2m ago•0 comments

Big Tech uses guarantees to keep $300B AI exposure off balance sheets

https://www.ft.com/content/7f11afae-c4e3-4054-a65b-873f3647f563
4•sbulaev•7m ago•0 comments

Densha de Go

https://en.wikipedia.org/wiki/Densha_de_Go!
4•tosh•7m ago•0 comments

The First Nolan Movie: The Odyssey and the world after men change it

https://www.firstrand.co.za/perspectives/article.html?article=the-first-nolan-movie
3•theDillinger•12m ago•0 comments

The Shaky Evidence That Flock Cameras Reduce Crime Rates

https://reason.com/2026/09/18/the-shaky-evidence-that-flock-cameras-reduce-crime-rates/
3•pseudolus•16m ago•0 comments

Claude Code is getting native AGENTS.md support

https://github.com/anthropics/claude-code/tree/main/mods/agents-md
3•thisisfatih•16m ago•0 comments

Open-source AI PR reviewer that helps you ship

https://nitpicker.dev/
2•Bluestein•18m ago•0 comments

An Agent's Breath. The Heart Beats by Itself, Breathing Is a Choice

https://piotrzientara.pl/agent-breath/
3•piotrzientara•21m ago•0 comments

If you are browsing in Chrome / Firefox in desktop you should try this extension

https://chromewebstore.google.com/detail/digital-shield-tab-suspen/pkonihncnkmbejhhjadaognganhinnhc
2•digitaShida•23m ago•1 comments

The Cornetto Ice Cream Cone Framework for Prompting

https://hazn.com/cornetto
2•hazn•25m ago•0 comments

Ternary-Bonsai-8B-Gguf

https://huggingface.co/prism-ml/Ternary-Bonsai-8B-gguf
2•Bluestein•25m ago•0 comments

How Efficient Is Each Type of EV Charger? (2024)

https://insideevs.com/features/711659/ev-charger-efficiency-losses/
2•cisc•25m ago•0 comments

Show Your Work

https://jagasantagostino.com/blog/show-your-work
2•andsoitis•28m ago•0 comments

Tactile controls in a digital world (2024)

https://jenson.org/airpod/
2•andsoitis•33m ago•0 comments

Ask HN: What to focus on in this age of AI

2•yernarak•37m ago•1 comments

If AI coding is lowering your code quality, you're not managing quality right

https://www.i-kh.net/p/if-ai-coding-is-lowering-your-code
17•bucket2015•37m ago•11 comments

Humans Are the Only Real Agents

https://aboard.com/humans-are-the-only-real-agents/
2•k1m•39m ago•0 comments

velocity content marketing

https://www.briefiq.io/blog/what-is-content-velocity-in-seo-and-why-it-matters/
2•infofusioninnov•39m ago•0 comments

The Ma of a New Machine

https://jenson.org/ma/
2•andsoitis•45m ago•0 comments

Germany's green developers hit a wall: Insolvencies, tighter credit

https://www.briefs.co/news/germany-s-green-developers-hit-a-wall-insolvencies-tighter-c/
2•leonidasrup•49m ago•0 comments

Apache Cassandra 6 Accord transactions: What you need to know

https://www.instaclustr.com/blog/apache-cassandra-6-accord-transactions-what-you-need-to-know/
3•lewisl9029•50m ago•0 comments

Underclass: An OpenAI-compatible pooling proxy that pins sessions to one account

https://github.com/ghuntley/underclass
2•ghuntley•50m ago•0 comments

Romanian Crime Rings Are Draining U.S. Welfare Accounts

https://www.wsj.com/us-news/how-romanian-crime-rings-are-draining-u-s-welfare-accounts-c9750d32
3•impish9208•50m ago•1 comments

Scott Jenson: Are we going to use the same Desktop UX forever? [video]

https://www.youtube.com/watch?v=V7AfAcQwLW0
3•Topfi•50m ago•1 comments

Post Messages via Get

https://swarmmemo.com/
4•montenegrohugo•51m ago•1 comments

Doomsday: Friday, 13 November, A.D. 2026 (1960)

https://www.science.org/doi/10.1126/science.132.3436.1291
5•Metacelsus•52m ago•1 comments

DQuic: Extending QUIC for P2P and Multipath Transport

https://docs.dhttp.net/en/docs/protocol/dquic
2•Arya_xiaofan•53m ago•1 comments

Ask HN: If frontier models were free, would we produce better or worse software?

2•kandros•55m ago•0 comments

I'm Tired of the AI Tone

https://sagivo.com/blog/im-tired-of-the-ai-tone
22•sagivo•56m ago•17 comments

The Many Faces of Information Geometry [2023]

https://chinougea.medium.com/the-many-faces-of-information-geometry-89f6654c1cb4
3•the-mitr•1h ago•0 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!