frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Computer scientists clear a path to stream 3D 'volumetric' video

https://www.brown.edu/news/2026-05-28/volumetric-video
2•geox•5m ago•0 comments

A SpaceX/Tesla merger could trigger Musk's $1T pay package automatically

https://electrek.co/2026/05/31/a-spacex-tesla-merger-could-trigger-musks-1t-pay-package-automatic...
4•MilnerRoute•9m ago•1 comments

Nearly Half of Home Insurance Claims Result in Zero Payout

https://www.wsj.com/finance/the-home-insurance-coin-flip-nearly-half-of-claims-result-in-zero-pay...
3•bookofjoe•10m ago•1 comments

No one wants to go to your URL

https://twitter.com/mahendrakerr/status/2061170896090644706
1•rohanmahen•11m ago•1 comments

[Tip] ILOVEYOU Worm Sendmail Rules (2000)

https://undeadly.org/cgi?action=article;sid=20000505050138
1•jruohonen•12m ago•0 comments

The Ghost Who Solved a Theorem

https://abakcus.com/articles/thomason-trobaugh
1•Michelangelo11•12m ago•0 comments

Tolkien explains why the Fellowship didn't fly the Eagles to Mordor [video]

https://www.youtube.com/watch?v=1-Uz0LMbWpI
1•ViktorRay•12m ago•0 comments

GLP-1 Weight Loss Drugs Could Stop Cancer Progressing, Says New Study

https://www.forbes.com/sites/victoriaforster/2026/05/25/glp-1-weight-loss-drugs-could-stop-cancer...
1•theanonymousone•12m ago•0 comments

Do GPUs Need New Tabular File Formats?

https://arxiv.org/abs/2602.17335
2•matt_d•12m ago•0 comments

Cheap software won't make engineering cheap

https://johnjwang.com/post/2026/05/31/cheap-software-wont-make-engineering-cheap/
2•johnjwang•13m ago•0 comments

Operation Jailbreak uses lessons from Ukraine to help weapons talk to each other

https://www.ft.com/content/1699e348-02d5-491a-9924-1d5914d540f7
1•uxhacker•16m ago•0 comments

The Redundancy of English (1951) [pdf]

http://medientheorie.com/doc/shannon_redundancy.pdf
1•aragonite•20m ago•0 comments

UK's rudest chalk figure gets a glow-up to stop it fading in the rain

https://www.bbc.com/news/articles/cpvppe84lnvo
2•gnabgib•22m ago•0 comments

The UI problem of AI coding agents

https://cate.cero-ai.com/blog/ui-problem-ai-coding-agents
2•Imbiss•22m ago•0 comments

Silenced Words

https://www.silencedwords.com/
1•Towaway69•23m ago•1 comments

China's Robotics Dream Began in 1972

https://www.chinatalk.media/p/chinas-father-of-robotics
1•momentmaker•24m ago•0 comments

Show HN: Find YC startups relevant to you

https://platoseed.com/
1•nerdlogic•26m ago•0 comments

Police in China Sure Love Smart Glasses

https://gizmodo.com/police-in-china-sure-love-smart-glasses-2000763598
3•gnabgib•26m ago•0 comments

Building Rust Procedural Macros from the Grounds Up

https://www.learnix-os.com/ch02-03-implementing-the-bitfields-proc-macro.html
1•Sagi21805•27m ago•1 comments

'Backrooms' Stuns with $81M Debut

https://variety.com/2026/film/box-office/backrooms-box-office-record-opening-weekend-obsession-ju...
8•mindcrime•28m ago•0 comments

Show HN: Fluiq – detect prompt injection, PII, Crescendo attack 2 line of Python

https://getfluiq.com/
1•SaurabhKumbhar•29m ago•0 comments

Show HN: CakeML-based self-verifying, self-improving system

https://emberian.github.io/svenvs/
2•cmrx64•31m ago•0 comments

Most Products Don't Need That Much Engineering

https://comuniq.xyz/post?t=1183
1•01-_-•33m ago•0 comments

Is that song AI-generated? UChicago scientists create tool to check

https://news.uchicago.edu/story/song-ai-generated-uchicago-scientists-create-browser-extension-check
4•paulpauper•33m ago•1 comments

I Tried to Sell My House with a Chatbot

https://www.nytimes.com/2026/05/28/technology/sell-house-with-ai-no-realtor.html
2•paulpauper•35m ago•0 comments

The Cost of More

https://jasperinsweden.substack.com/p/the-cost-of-more
1•imartin2k•36m ago•0 comments

Thiel's move signals billionaires seeking a 'plan B' abroad

https://www.businessinsider.com/peter-thiel-argentina-billionaire-moving-abroad-2026-5
4•e2e4•37m ago•2 comments

Show HN: Sports Regime Lab – NBA regime analytics

https://sports.kezelon.com/
1•optimalutopia•37m ago•0 comments

AI Slop Is a Choice

https://building138.com/ai-slop-is-a-choice
2•usernamed7•38m ago•0 comments

Atomdrift is open-source malware detection for the software supply chain

https://atomdrift.org/
1•campuscodi•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!