frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

More Anthropic researchers warn of AI's perils as Musk terms fears a 'psyop'

https://www.theguardian.com/technology/2026/sep/10/anthropic-researchers-warn-ai-musk
1•lf88•3m ago•1 comments

Julia 1.13 Highlights

https://julialang.org/blog/2026/09/julia-1.13-highlights/
1•postflopclarity•4m ago•0 comments

The Rise and Fall of Crime

https://nicholasdecker.substack.com/p/the-rise-and-fall-of-crime
1•barry-cotter•4m ago•0 comments

Thelio Mira AI Linux Workstation: 192 GB GPU Memory

https://system76.com/workstations/thelio-mira-ai
3•jonifico•5m ago•0 comments

Satellite images before and after Nepal's devastating floods

https://artifactbin.dev/@vivek/7KRGdj-nepal-floods-before-and-after
1•nuwandavek•7m ago•0 comments

DreamLayer: OpenRouter for Image Models

https://dreamlayer.io/
1•mack77•7m ago•0 comments

Show HN: Papiers.ai, a new workspace for reading and research

https://papiers.ai/
1•smnair•8m ago•0 comments

The Cost of Cognitive Debt

https://ljtn.github.io/epiq/blog/cost-of-cognitive-debt.html
2•ionetan•11m ago•0 comments

Chonk Finder; cats as trading cards, and a re-ID problem

https://www.chonkfinder.app
1•jahmad077•13m ago•0 comments

The Elephant in the Context Window

https://twitter.com/ashwingop/status/2098000416491602360
1•porridgeraisin•14m ago•0 comments

California Tesla drivers could get $350 from class action settlement

https://ktla.com/news/california/tesla-driver-settlement-california-superchargers/
4•Bender•15m ago•0 comments

Hiring for Agentic Era?

1•Germinate1107•16m ago•0 comments

LinkedIn beats "BrowserGate" lawsuits over scanning users' Chrome extensions

https://arstechnica.com/tech-policy/2026/09/linkedin-beats-browsergate-lawsuits-over-scanning-use...
2•Bender•18m ago•1 comments

Act One Is Human

https://thelampproject.substack.com/p/act-one-is-human
1•sannhetssoker•18m ago•0 comments

Echoes and Inventions: A Modest Listener's Guide to 20th-Century Music

https://salemlola.substack.com/p/echoes-and-inventions-a-modest-listeners
1•paulpauper•19m ago•0 comments

Nine coding harnesses vs. your laptop

https://nasutton.notion.site/Nine-coding-harnesses-vs-your-laptop-3d139990182b80d59fa3cf500f0450b...
4•nasutton12•21m ago•0 comments

Show HN: Cadenya – An Agent Runtime

https://www.cadenya.com/
1•btables•23m ago•0 comments

Open Letter: Civil society coalition urges EU to kill the cookie banner

https://noyb.eu/en/open-letter-civil-society-coalition-urges-eu-kill-cookie-banner
2•latexr•24m ago•0 comments

Elon Musk attacks film-maker Alex Gibney about upcoming documentary about him

https://www.theguardian.com/technology/2026/sep/10/elon-musk-attacks-film-maker-behind-documentar...
4•bookofjoe•26m ago•1 comments

Does the Body Really Keep Score? One of Trauma's Most Contentious Debates

https://www.psychotherapynetworker.org/article/does-the-body-really-keep-score/
2•rendx•26m ago•1 comments

Boy developed "toasted skin" condition from using a laptop every day

https://arstechnica.com/health/2026/09/boy-developed-toasted-skin-condition-from-using-a-laptop-e...
3•furcyd•27m ago•0 comments

NSF Leadership in a New Golden Age of Science [pdf]

https://nsf-gov-resources.nsf.gov/files/Statement-NSF-Leadership-Golden-Age-Science.pdf
1•trauco•28m ago•0 comments

The New Scarcity: Presence

https://mayachristobel.substack.com/p/ahead-of-the-curve-the-new-scarcity
1•rendx•33m ago•0 comments

Show HN: Papiers.ai, a new workspace for reading and research

https://twitter.com/sighjith/status/2098147463114932696
1•smnair•33m ago•0 comments

On Binary Translation and Its Consequences

https://chipsandcheese.com/p/on-binary-translation-and-its-consequences
1•matt_d•33m ago•0 comments

Android can now securely migrate your logins between password managers

https://arstechnica.com/gadgets/2026/09/android-can-now-securely-migrate-your-logins-between-pass...
2•WaitWaitWha•34m ago•0 comments

Anthropic CEOs wife once asked Epstein to fund porn venture – now steers Claude

https://nypost.com/2026/08/14/business/anthropic-ceos-wife-once-asked-jeffrey-epstein-to-fund-por...
13•jitbit•37m ago•0 comments

Ask HN: If you are an agent builder, what memory platform are you using?

1•prats226•38m ago•0 comments

OpenAI puts Pro subscriptions on hold due to Astra demand

https://techcrunch.com/2026/09/10/openai-puts-pro-subscriptions-on-hold-due-to-astra-demand/
3•5555watch•39m ago•0 comments

San Francisco real estate market update [pdf]

https://vanguardpropertiesagenda.com/newsletter/SF_Market_Update_Sep_2026.pdf
1•kaycebasques•39m 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!