frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Ask HN: How do you detect breaking API changes in CI?

1•coffeecoderr•19s ago•0 comments

Sanders splits with Washington on AI arms race with China

https://www.axios.com/2026/04/30/bernie-sanders-ai-arms-race-china
1•1vuio0pswjnm7•3m ago•0 comments

NHS Goes to War Against Open Source

https://shkspr.mobi/blog/2026/05/nhs-goes-to-war-against-open-source/
1•edent•4m ago•0 comments

Silicon Valley Is Bracing for a Permanent Underclass

https://www.nytimes.com/2026/04/30/opinion/ai-labor-work-force-silicon-valley.html
1•thm•4m ago•0 comments

'Rogue' Cursor AI agent loses control and wipes company's database

https://abcnews.com/GMA/News/rogue-ai-agent-haywire-tech-company-ceo-bullish/story?id=132473181
2•01-_-•7m ago•0 comments

'We Know You Live Right Here': No Secrets in America's New Surveillance Dragnet

https://www.wsj.com/politics/policy/immigration-ice-arrests-surveillance-6f1cef64
2•impish9208•7m ago•1 comments

Show HN: Git-issues – Issue tracker that lives in your repo as Markdown

https://steviee.github.io/git-issues/
1•steviee•13m ago•1 comments

Why does it take so long to release black fan versions? (Noctua)

https://www.noctua.at/en/expertise/blog/how-can-it-take-so-long-to-release-black-fan-versions
1•Tiberium•14m ago•0 comments

A Letter from Dijkstra on APL

https://www.jsoftware.com/papers/Dijkstra_Letter.htm
2•tosh•15m ago•0 comments

A grounded conceptual model for ownership types in Rust

https://dl.acm.org/doi/10.1145/3796537
1•fanf2•15m ago•0 comments

Cleanroom software engineering: technology and process (1999)

https://dl.acm.org/doi/10.5555/307406
2•tosh•16m ago•0 comments

Questions and Perspectives Shape Solutions

https://pp-international.net/2026/04/tt5/
1•boiert•16m ago•0 comments

Claudemesh - Let your local Claude Code sessions find and talk to each other

https://www.npmjs.com/package/claudemesh
1•pro_methe5•19m ago•0 comments

Defend the rich: Enhanced Games founder turns to AI to challenge the media

https://www.smh.com.au/business/companies/defend-the-rich-enhanced-games-founder-turns-to-ai-to-c...
2•thedays•20m ago•2 comments

Speeding up agentic workflows with WebSockets in the Responses API

https://openai.com/index/speeding-up-agentic-workflows-with-websockets/
1•tosh•20m ago•0 comments

MCP context-forge GA version released

https://ibm.github.io/mcp-context-forge/1.0.0/
1•ssat728•21m ago•0 comments

Show HN: Site Mogging

https://sitemogging.com
3•jilles•24m ago•0 comments

Host your own Gmail (Clone) on Cloudflare for free

https://github.com/cloudflare/agentic-inbox
2•faangguyindia•25m ago•0 comments

SpaceX rocket set for unintentional Moon landing – well, a piece of it anyway

https://www.theregister.com/2026/05/01/spacex_debris_landing/
2•beardyw•25m ago•0 comments

So, About That AI Bubble

https://www.theatlantic.com/economy/2026/05/ai-bubble-revenue-anthropic/687022/
1•geox•25m ago•0 comments

California Police Can Start Ticketing Driverless Cars

https://www.nytimes.com/2026/04/30/us/california-ticket-driverless-car-violations.html
4•reaperducer•27m ago•0 comments

Show HN: BetterClaw – Compile a paragraph into a workflow that gates agent tools

2•infamous-oven•31m ago•0 comments

Supply Chain Security – Part 1

https://tinfoil.sh/blog/2026-05-01-supply-chain-client
1•3s•31m ago•0 comments

Warning over threat to birds after rat seen on Mousa

https://www.shetnews.co.uk/2026/04/30/warning-threat-birds-rat-seen/
2•latexr•32m ago•0 comments

A Deep Dive into Email Addresses

https://lasans.blog/articles/misc/email-addresses-deep-dive/
1•begoon•38m ago•0 comments

Fruit flies unexpectedly survived hypergravity and even reproduced

https://news.ucr.edu/articles/2026/04/30/under-crushing-hypergravity-flies-adapt-and-recover
2•giuliomagnifico•39m ago•1 comments

Show HN: "Woo", a multi-user world for agents

https://woo.hughpyle.workers.dev/
1•inguz•39m ago•0 comments

A new US phone network for Christians aims to block porn and gender-related con

https://www.technologyreview.com/2026/05/01/1136739/a-new-t-mobile-network-for-christians-aims-to...
1•joozio•46m ago•0 comments

Touch Typing Number Keys

https://susam.net/touch-typing-number-keys.html
2•susam•48m ago•0 comments

Apple accidentally left Claude.md files Apple Support app

https://xcancel.com/aaronp613/status/2049986504617820551
23•andruby•49m ago•2 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!