frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Runtime Guards for AI Agents

https://guard-sdk.js.org/
1•apvarun•49s ago•0 comments

Devs know AI code is riddled with holes, but ship it anyway

https://www.theregister.com/devops/2026/06/09/devs-know-ai-code-is-riddled-with-holes-but-ship-it...
3•speckx•6m ago•0 comments

FDA allows popular sunscreen ingredient long used in Europe and Asia

https://www.nbcnews.com/health/health-news/bemotrizinol-fda-allows-sunscreen-ingredient-popular-e...
2•jameslk•9m ago•0 comments

Ask HN: Favorite text heavy blogs the are a joy to read

1•joshmarinacci•9m ago•0 comments

The Massachusetts Dept of Public Health wants to hide public genealogy records

https://mailchi.mp/reclaimtherecords/we-massively-need-your-help-massachusetts-public-access
1•toomuchtodo•9m ago•1 comments

XML and JSON in 2026

https://www.tbray.org/ongoing/When/202x/2026/06/01/XML-and-JSON-in-2026
2•smartmic•10m ago•0 comments

What Yahoo killed when it bought Maktoob

https://lr0.org/blog/p/yahoo/
2•edent•11m ago•0 comments

Fable 5 on Vending-Bench: Misbehaving, with Plausible Deniability

https://andonlabs.com/blog/fruitcake-vending-bench
2•lukaspetersson•12m ago•1 comments

Why anecdotal evidence is better than studies

https://greyenlightenment.com/2026/05/23/why-anecdotal-evidence-is-better-than-studies/
1•paulpauper•12m ago•0 comments

Hitachi Ltd, Part II – By Bradford Morgan White

https://www.abortretry.fail/p/hitachi-ltd-part-ii
1•rbanffy•15m ago•0 comments

Fuck|Thank You

https://pawelgrzybek.com/fuck-thank-you/
1•speckx•15m ago•0 comments

Show HN: I applied Lyapunov stability theory to detect when LLM agents spiral

https://github.com/vishal-dehurdle/state-harness
1•visha1v•17m ago•0 comments

Authorization via Gmail and Apple ID Banned in Russia

1•levleontiev•17m ago•0 comments

Advanced AI Safety Addendum

https://cloud.google.com/terms/advanced-ai-safety-addendum
1•hmokiguess•18m ago•0 comments

2 Kinds of People

https://2kindsofpeople.tumblr.com/
2•smartmic•19m ago•0 comments

Ultrafast machine learning on FPGAs via Kolmogorov-Arnold Networks

https://aarushgupta.io/posts/kan-fpga/
2•ag2718•22m ago•0 comments

Ask HN: What do you use for throwaway email inboxes in CI pipelines?

2•devdoc83•26m ago•0 comments

Famed historian Gordon S. Wood struck, killed in East Providence

https://www.wpri.com/news/local-news/providence/famed-historian-gordon-s-wood-struck-killed-in-ea...
1•speckx•29m ago•0 comments

The problem with generative AI (it's a dream machine)

https://metayeti.net/blog/the-problem-with-generative-ai
3•metayeti•30m ago•0 comments

Stack Overflow for Agents

https://agents.stackoverflow.com/
3•onatm•31m ago•2 comments

Why Does It Take Years to Get a Patriot Missile from Factory to Front Line?

https://www.wsj.com/world/why-does-it-take-years-to-get-a-patriot-missile-from-factory-to-front-l...
1•JumpCrisscross•31m ago•0 comments

Are these enhanced AI images on NYT?

https://www.nytimes.com/2026/06/09/us/tradwife-ballerina-farm-utah.html
1•boringg•32m ago•2 comments

Geblang 1.15 – the ergonomic, statically typed language

https://github.com/dwgebler/geblang
1•dwgebler•32m ago•0 comments

Apple's Siri-AI, or more shouting into the void about "private" agents

https://blog.cryptographyengineering.com/2026/06/09/apples-siri-ai-or-more-shouting-into-the-void...
2•cdrnsf•33m ago•0 comments

May I recommend thinking of Emacs as your Fortress of Solitude

https://martinsos.com/posts/may-recommend-emacs-home-base
1•lr0•33m ago•0 comments

Need honest feedback on non-launched idea

1•truehannan•34m ago•1 comments

Implementing Monads with Async Zig

https://platypro.net/blog/2026-04-25_monad/
1•carlsverre•35m ago•0 comments

The Wrong Apocalypse [pdf]

https://ionanalytics.com/wp-content/uploads/2026/02/The_Wrong_Apocalypse.pdf
1•monkeydust•37m ago•0 comments

FDA Expands Sunscreen Options for the First Time in 20 Years to Add Bemotrizinol

https://www.fda.gov/news-events/press-announcements/fda-expands-sunscreen-options-first-time-20-y...
3•OutOfHere•37m ago•3 comments

Meta ordered by EU to allow rival AI chatbots back on WhatsApp for free

https://www.reuters.com/world/eu-regulators-order-meta-allow-rival-ai-chatbots-free-access-whatsa...
9•onemoresoop•39m 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!