frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

PagedAttention is more than virtual memory

https://thecomputersciencebook.com/posts/pagedattention-is-more-than-virtual-memory/
1•bambataa•2m ago•0 comments

Margin is an open annotation layer for the web

https://margin.at/
1•doener•4m ago•0 comments

Sill: Top news shared by the people you trust

https://sill.social
1•doener•5m ago•0 comments

The nerds are building a new internet, and I could feel it in the room

https://timtrautmann.com/blog/the-nerds-are-building-a-new-internet-and-i-could-feel-it-in-the-room/
1•doener•5m ago•0 comments

Arson targeting Keir Starmer properties originated in Russia

https://www.ft.com/content/dd79d6eb-44e4-4365-8c6e-a4fd64b211c8
1•iamflimflam1•7m ago•0 comments

TSME no longer available on AMD consumer CPUs

https://arstechnica.com/
3•esarbe•8m ago•1 comments

DMARCbis to DMARC: Spec updates and new RFCs

https://www.valimail.com/blog/dmarc-spec-updates-rfcs/
1•w3ll_w3ll_w3ll•11m ago•0 comments

What Happens When Your Domain Expires

https://urlwatch.io/blog/what-happens-when-domain-expires.php
1•rajkverma123•15m ago•0 comments

Agent-Friendly Interfaces Are a Token-Efficiency Strategy

https://nokv.io/blog/agents-want-filesystems/
1•wchwawa•17m ago•0 comments

SpaceX IPO Is a Giant Unworkable Con

https://karlbode.com/the-spacex-ipo-is-a-giant-unworkable-con-orchestrated-by-an-overt-white-supr...
3•only_in_america•17m ago•0 comments

Linux Optimization Shows +5% For EXT4, XFS After Moving Around 2 Lines Of Code

https://www.phoronix.com/news/Linux-7.2-IOmap-EXT4-XFS
1•t-3•21m ago•0 comments

The first trillionaire is a killer

https://www.theverge.com/tech/949259/the-worlds-first-trillionaire-is-a-killer
5•ksec•22m ago•1 comments

Seth Rogen Knows the Secret to Marriage – and Being Rich in Hollywood

https://www.nytimes.com/2026/06/13/magazine/seth-rogen-interview.html
1•Michelangelo11•24m ago•0 comments

The Most Important Scientist You've Never Heard of (2017)

https://www.mentalfloss.com/science/environment/clair-patterson-scientist-who-determined-age-eart...
1•RetroTechie•25m ago•0 comments

Framework Computer Making Progress on Coreboot support

https://www.phoronix.com/news/Framework-Intel-Coreboot-2026
2•cromka•26m ago•0 comments

Show HN: Langusta – an AI voice tutor for practicing spoken languages (PWA)

https://langusta.me/
2•grajo•26m ago•0 comments

Rate AI coding agents and gain reputation

https://elolup.com/
3•reStrugly•29m ago•2 comments

Is Mistral cooking something big or is it pure meme/psyops?

https://twitter.com/arthurmensch/status/2066456715650793956
2•PL_Venard•30m ago•0 comments

AI and National Security – Something Doesn't Add Up

https://paulbrownok.substack.com/p/ai-and-national-security-something
1•pjb88•30m ago•0 comments

FoxBox – Native MCP support for sending and receiving SMS from AI agents

https://www.smsfoxbox.it/ai-agent-ready-sms-api/
2•kantadev•34m ago•0 comments

Discover the most interesting, weird and Websites of the Internet

https://cloudhiker.net
1•vismit2000•37m ago•0 comments

ANIP – open protocol so websites can talk directly to AI agents

https://github.com/shivanshmah14/anip
2•Shivanshmah14•39m ago•0 comments

How to Write Computer Programs [pdf]

https://www.dyalog.com/uploads/documents/Papers/declarative_prog.pdf
1•tosh•43m ago•0 comments

Show HN: Ghostty in-browser with real client-side back end

https://ghosttyplayground.com/
1•leebeef•43m ago•0 comments

20 years of Intel Macs: Why Apple switched, and why it switched again

https://arstechnica.com/gadgets/2026/06/20-years-of-intel-macs-why-apple-switched-and-why-it-swit...
1•rbanffy•44m ago•0 comments

The End of Refugee Resettlement

https://www.newyorker.com/news/letter-from-jordan/the-end-of-refugee-resettlement
2•littlexsparkee•46m ago•0 comments

Typst 0.15 Is Out

https://typst.app/blog/2026/typst-0.15/
1•semantecture•50m ago•1 comments

We Built NeuroAutomata: protein variant effect prediction

https://axonagentic.ai/blog/why-we-built-neuroautomata
1•rhokstar•50m ago•0 comments

The Most Interesting Articles on Wikipedia

https://www.mostdiscussed.com
1•vismit2000•53m ago•0 comments

Are Memories Transferable – Or Edible?

https://www.quantamagazine.org/are-memories-transferable-or-edible-20260605/
2•doener•54m 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!