frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Cider cross-platform Apple Music experience

https://cider.sh/
1•hmokiguess•1m ago•0 comments

Show HN: AI agent that edits videos from natural language commands

https://twitter.com/yonatanbd/status/2041156418183500091
1•yonatan06•3m ago•0 comments

Hershey's Promises to Use Only Real Chocolate After Backlash

https://www.nytimes.com/2026/04/02/business/hershey-reeses-recipe-real-chocolate.html
1•mikhael•4m ago•0 comments

Corporate Accountability – Some Retired Clown Challenging McDonald's CEO

https://eattheburgerchris.com/
1•drkica•4m ago•1 comments

Catherine Lacey

https://www.catherinelacey.com
1•bookofjoe•5m ago•0 comments

Garmin – Give My Data

https://github.com/nrvim/garmin-givemydata
1•ArlenBales•5m ago•0 comments

Stop Writing Guard Clauses Like It's 2010

https://dotnetfiddle.substack.com/p/stop-writing-guard-clauses-like-its
1•refactormonkey•6m ago•0 comments

Old economy software x New economy software

https://ctts.substack.com/p/old-economy-software-x-new-economy
1•threefiftyone96•6m ago•0 comments

Show HN: mva-melding-java – Java library for Norwegian VAT filing via Altinn 3

1•guanghu•7m ago•0 comments

Boxsh: A sandboxed POSIX shell with concurrent JSON-line RPC mode

https://github.com/xicilion/boxsh
1•progyoung•7m ago•0 comments

JSIR: A High-Level IR for JavaScript

https://discourse.llvm.org/t/rfc-jsir-a-high-level-ir-for-javascript/90456
1•michaelkrem•8m ago•0 comments

Sourcehut disrupted due to DDoS attack [Apr 6, 2026]

https://status.sr.ht/issues/2026-04-06-ddos-attack/
1•alakra•8m ago•0 comments

The Federal Government Is Rushing Toward AI: Three Cautionary Tales

https://www.propublica.org/article/federal-government-ai-cautionary-tales
1•benwerd•12m ago•0 comments

I Won't Download Your App. The Web Version Is A-OK

https://www.0xsid.com/blog/wont-download-your-app
20•ssiddharth•13m ago•5 comments

A Closed-Loop Px_ISO Framework for Staged Day-Ahead Energy in Power Markets

https://www.mdpi.com/2227-9717/14/6/1027
1•PaulHoule•13m ago•0 comments

Show HN: Ephemeral messaging that protects your privacy from people in your life

https://voidlogue.com/
1•wycliffogembo87•14m ago•0 comments

Sam Altman May Control Our Future–Can He Be Trusted?

https://www.reddit.com/r/TrueReddit/s/sF3UUl7Dfv
1•Alex3917•14m ago•0 comments

Show HN: Flyable Artemis simulator (Svelte and rk4)

https://spacefomo.com/artemis
1•hackiku•14m ago•0 comments

AI Inference Cost Crisis 2026: Why Your AI Bill Is Exploding

https://oplexa.com/ai-inference-cost-crisis-2026/
1•igor_ryabenkiy•15m ago•0 comments

Falcon Perception

https://huggingface.co/blog/tiiuae/falcon-perception
1•ibobev•15m ago•0 comments

Holo3: Breaking the Computer Use Frontier

https://huggingface.co/blog/Hcompany/holo3
1•ibobev•15m ago•0 comments

Welcome Gemma 4: Frontier multimodal intelligence on device

https://huggingface.co/blog/gemma4
1•ibobev•15m ago•0 comments

Device Bound Session Credentials Now Available on Windows

https://developer.chrome.com/blog/dbsc-windows-announcement
1•ddadon10•16m ago•0 comments

Used EV sales spike alongside gas prices

https://arstechnica.com/cars/2026/04/used-ev-sales-spike-alongside-gas-prices/
1•voxadam•16m ago•0 comments

Obsidian sync tool for S3 compatible services and Bunny.net

https://github.com/gayanhewa/s3-compatible-directory-sync
1•filepod•18m ago•1 comments

The Indian fast food experience

https://smileplease.mataroa.blog/blog/the-indian-fast-food-experience/
2•Imustaskforhelp•18m ago•0 comments

Show HN: Contributor License Agreement Bot for GitHub – Next.js and Postgres

https://cla.fiveonefour.com
1•Callicles•19m ago•0 comments

Harmeet Dhillon is getting a Justice Department promotion

https://www.politico.com/news/2026/04/06/harmeet-dhillon-doj-ag-california-00855561
1•Tomte•19m ago•0 comments

Show HN: Rocky and Caveman Speak in Claurst CLI Save Big Token Amaze Amaze Amaze

https://github.com/Kuberwastaken/claurst
3•kuberwastaken•20m ago•0 comments

What Happens on the Emergency Docket

https://www.scotusblog.com/2026/04/what-actually-happens-on-the-emergency-docket/
1•Tomte•21m ago•0 comments
Open in hackernews

Decomposing Transactional Systems

https://transactional.blog/blog/2025-decomposing-transactional-systems
132•pongogogo•11mo ago

Comments

karmakaze•11mo 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•11mo 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•11mo 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•11mo 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•11mo 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•11mo 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•11mo 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•11mo ago
Hey Mark, I actually found this post via yours so thanks!