frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Your 'App' Could Have Been a Webpage (so I fixed it for you)

https://danq.me/2026/07/09/your-app-could-have-been-a-webpage/
1•buildfocus•3m ago•0 comments

Satya Nadella has issued a warning to companies using AI

https://techcrunch.com/2026/07/13/satya-nadella-has-issued-a-shocking-warning-to-companies-using-ai/
1•nlpnerd•3m ago•0 comments

Improving Windows Search Box, with less clutter and more control

https://blogs.windows.com/windows-insider/2026/07/13/improving-windows-search-box-with-less-clutt...
1•thm•3m ago•0 comments

Simulating everything, sort of: The promise and limits of world models

https://arstechnica.com/ai/2026/07/simulating-everything-sort-of-the-promise-and-limits-of-world-...
1•thm•6m ago•0 comments

The OpenAI Super App, ChatGPT = Codex, Whither Chat

https://stratechery.com/2026/the-openai-super-app-chatgpt-codex-whither-chat/
1•swolpers•6m ago•0 comments

Global Nobel Laureates Assembly on AI and Nuclear War

https://globalnobelassembly.org/
1•dn2k•7m ago•0 comments

Don't Use aria-label on Static Text Elements (2024)

https://benmyers.dev/blog/dont-use-aria-label-on-static-text-elements/
1•birdculture•7m ago•0 comments

The Joy of Extending Tailwind

https://dan-webnotes.com/posts/2026-07-14-joy-extending-tailwind/
1•dandep•11m ago•0 comments

Why 2 Degrees of Global Warming Means And6 Degrees in Europe

https://www.tobiasreithmeier.de/en/blog/why-2-degrees-global-warming-means-6-in-europe
2•JuriKeller•13m ago•0 comments

Improve Router Hygiene to Protect Against Russian State-Sponsored Targeting

https://www.cisa.gov/news-events/cybersecurity-advisories/aa26-194a
1•giuliomagnifico•14m ago•0 comments

The Unfair Judge: A Mechanistic Interpretability Account of LLM-as-Judge

https://arxiv.org/abs/2607.11871
1•sbulaev•19m ago•0 comments

Euclid discovers the most ancient quasar in the Universe

https://www.esa.int/Science_Exploration/Space_Science/Euclid/Euclid_discovers_the_most_ancient_qu...
2•emot•21m ago•0 comments

Vizro: Upload spreadsheets. Get answers in minutes

https://www.vizro.ai
1•welsenesbros•23m ago•0 comments

UK Tokenization Roadmap Puts £33B on the Table and a Clock on the Wall

https://www.disruptionbanking.com/2026/07/14/uk-tokenization-roadmap-puts-33-billion-on-the-table...
2•emsidisii•26m ago•0 comments

Mensfeld/code-on-incus: Give each AI agent its own isolated machine

https://github.com/mensfeld/code-on-incus
1•Tomte•30m ago•0 comments

Rethinking MCP Security: A Large-Scale Study of Runtime MCP Servers

https://arxiv.org/abs/2607.11086
1•sbulaev•32m ago•0 comments

Making Software: How to make a font

https://www.makingsoftware.com/chapters/how-to-make-a-font
2•Garbage•32m ago•0 comments

The bubble of the age; or, The fallacy of railway investment (1848) [pdf]

https://dn721608.ca.archive.org/0/items/bubbleofageorfal00smit/bubbleofageorfal00smit.pdf
1•rfv6723•32m ago•0 comments

Zig creator calls Bun's Claude Rust rewrite 'unreviewed slop'

https://www.theregister.com/devops/2026/07/14/zig-creator-calls-buns-claude-rust-rewrite-unreview...
1•giamma•34m ago•4 comments

The Noise Floor of Latent Dissent, Interview with Harry Halpin Founder of NymVPN

https://diffractionscollective.com/2026/04/30/the-noise-floor-of-revolt-harry-halpin/
1•hansvs•35m ago•1 comments

JPEG for ASTC

https://github.com/BinomialLLC/basis_universal/wiki/JPEG-for-ASTC
1•edflsafoiewq•38m ago•0 comments

Ask HN: US Equivalent of Anabin?

1•xqb64•41m ago•0 comments

Introduction to Mainframe Scripting Languages

https://zubairidrisaweda.medium.com/introduction-to-mainframe-scripting-languages-83c1edd86e3e
2•rbanffy•41m ago•0 comments

Can a Dozen Blue States Block the Paramount-Warner Merger?

https://www.wsj.com/business/media/can-a-dozen-blue-states-block-the-paramount-warner-merger-494e...
3•JumpCrisscross•41m ago•0 comments

OSHotspot – Linux WiFi hotspot manager (hostapd/dnsmasq/iptables)

https://github.com/King03-sam/OSHotspot
2•OLOJEDE•42m ago•0 comments

Ask HN: How do you manage your own recovery time?

1•julienreszka•45m ago•0 comments

Grok Build CLI accused of uploading Git repos to a Google Cloud bucket

https://twitter.com/i/status/2076689215258014069
1•maxloh•45m ago•0 comments

UTC and Atomic Time

https://en.wikipedia.org/wiki/Coordinated_Universal_Time
1•5701652400•48m ago•3 comments

Show HN: I audited my own eight repos. Half of them lied in the README

https://github.com/Wasserpuncher/readme-check
1•Wasserpuncher•50m ago•0 comments

Show HN: Retire Me – crowdfunding one designer's escape from sensible

https://www.retireme.xyz/
1•ArashLowni•50m 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!