frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

What do we lose when AI does our work?

https://rickyyean.com/2026/05/04/what-do-we-lose-when-ai-does-our-work/
2•rickyyean•2m ago•0 comments

Best practices for password hashing and storage

https://datatracker.ietf.org/doc/draft-ietf-kitten-password-storage/10/
1•DASD•3m ago•0 comments

The Elite Overproduction Hypothesis (2025)

https://www.noahpinion.blog/p/the-elite-overproduction-hypothesis-994
1•ridiculous_leke•7m ago•0 comments

China is an engineers' country, but US and Germany are now lawyers' countries

https://www.globaltimes.cn/page/202605/1360255.shtml
1•e2e4•10m ago•1 comments

Quantum in Biology, Quantum for Biology, and Biology for Quantum

https://arxiv.org/abs/2605.00205
1•mathgenius•12m ago•0 comments

Filen deleted all of my data. A heads-up for others

https://www.reddit.com/r/DataHoarder/s/S592zuF3Ub
2•nixass•13m ago•0 comments

Apple confirms iOS 26.5 Messages app adds RCS end-to-end encryption

https://9to5mac.com/2026/05/04/apple-confirms-ios-26-5-messages-app-adds-rcs-end-to-end-encryption/
4•latchkey•14m ago•0 comments

The Effects of School Phone Bans: National Evidence from Lockable Pouches

https://www.nber.org/papers/w35132
2•goplayoutside•18m ago•1 comments

Zopfli Optimization – Free Bandwidth (2016)

https://blog.codinghorror.com/zopfli-optimization-literally-free-bandwidth/
1•tracker1•19m ago•1 comments

YouTube now has customizable multiview

https://www.androidauthority.com/youtube-tv-customizable-multiview-how-to-make-3660768/
1•andsoitis•19m ago•0 comments

Agent Skills

https://addyosmani.com/blog/agent-skills/
3•BOOSTERHIDROGEN•20m ago•0 comments

Ask HN: Data Storage on Fractals

1•zipotm•21m ago•0 comments

Finance OS – self-hosted personal finance tracker, no bank credentials required

https://github.com/aiden202023/finance-os
1•atlguys18•23m ago•0 comments

Show HN: Layers – AI skills for deep product design

https://layers.jamiemill.com/
2•jm25•25m ago•0 comments

Moop: A free and open-source image optimizer for macOS

https://zrubinrattet.github.io/moop/
1•thebigship•25m ago•0 comments

Trump's World Liberty Financial Sues Billionaire Justin Sun for Defamation

https://www.forbes.com/sites/alisondurkee/2026/05/04/trumps-world-liberty-financial-sues-billiona...
1•iamben•28m ago•0 comments

Deep Learning with Python – Read Online

https://deeplearningwithpython.io/
2•mathgenius•28m ago•0 comments

Warren Buffett Warns That Prediction Markets Are 'Gambling,' Not Investing

https://www.thenewstribune.com/money/warren-buffett-prediction-markets-gambling/
3•ppjim•30m ago•0 comments

MorphKatz – polymorphic x64 machine-code rewriter for Windows PEs

https://github.com/0xMohammedHassan/morphkatz
1•Motx•32m ago•0 comments

Exploring the behavior of a strung computational Stradivarius violin

https://www.nature.com/articles/s44384-026-00049-6
3•bookofjoe•32m ago•0 comments

Can agents replace the search stack?

https://softwaredoug.com/blog/2026/04/28/search-apis-replaced-by-agents.html
1•gmays•33m ago•0 comments

Canadian election databases use "canary traps"–and they work

https://arstechnica.com/tech-policy/2026/05/in-canada-a-canary-trap-springs-shut-and-ids-election...
3•ColinWright•34m ago•0 comments

Show HN: A customer feedback and public roadmap for digital products

https://insightswall.com
2•xcanchal•34m ago•0 comments

'Point of no return': New Orleans relocation must start now due to sea level

https://www.theguardian.com/us-news/2026/may/04/new-orleans-sea-levels-relocation-climate-crisis
7•dmm•34m ago•0 comments

What to Know Before Owning a Cleanroom

https://www.terrauniversal.com/photogallery/cleanrooms.php?video=22980
1•gregsadetsky•35m ago•0 comments

Evolving Verifiable Trust: Bringing Binary Transparency to the Android Ecosystem

https://blog.google/security/bringing-binary-transparency-to-the-android-ecosystem/
1•concinds•39m ago•0 comments

Welcome to Gas City

https://steve-yegge.medium.com/welcome-to-gas-city-57f564bb3607
15•teruakohatu•41m ago•21 comments

New kew v4.0 "Love is gonna save us edition" [video]

https://www.youtube.com/watch?v=Ql5ZKeaX2MQ
1•ravachol•43m ago•1 comments

Pulitzer Prize Winners 2026

https://www.pulitzer.org/prize-winners-by-year/2026
3•brightbeige•46m ago•1 comments

Individual efficiency vs. administrative efficiency (2024)

https://longform.asmartbear.com/tension-autonomy-admin/
1•mooreds•46m 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!