frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

RLMs are the new reasoning models

https://raw.works/rlms-are-the-new-reasoning-models/
1•dnw•1m ago•0 comments

Gell-Mann AImnesia

https://huonw.github.io/blog/2026/04/gell-mann-aimnesia/
1•dbaupp•3m ago•0 comments

Mall Code

https://mall.merkoba.com
1•madprops•4m ago•0 comments

Anthropic says OpenClaw-style Claude CLI usage is allowed again

https://docs.openclaw.ai/providers/anthropic
1•jmsflknr•6m ago•0 comments

No Naked Singularity, Whatever the Physical Collapse

https://zenodo.org/records/16181570
2•jruohonen•7m ago•0 comments

Svelte-check-native: Blazing fast svelte-check built with Rust

https://github.com/harshmandan/svelte-check-native
1•thunderbong•9m ago•0 comments

US Utilities Plan $1.4T for AI Data Centers

https://tech-insider.org/us-utility-1-4-trillion-ai-data-center-energy-2026/
1•jackyli02•9m ago•0 comments

Theseus, a Static Windows Emulator

https://neugierig.org/software/blog/2026/04/theseus.html
1•matt_d•9m ago•0 comments

PageGuard – scan a URL, get compliance docs from the actual tech detected

https://www.getpageguard.com
1•Dhicks_builds•10m ago•0 comments

Smart Home for Beginners: Where to Start

https://aigadgetexpert.com/best-smart-home-beginners-2026
1•amghal•11m ago•0 comments

Jersey Mike's confidentially files for IPO

https://www.cnbc.com/2026/04/20/jersey-mikes-ipo.html
1•lxm•12m ago•0 comments

Pica: Better Font Management for macOS

https://pica.joshpuckett.me/
2•jbegley•16m ago•0 comments

Stb_AVIF: A pure C89, Libc-only AVIF decoder in stb-style single-header form

https://github.com/lenchan139/stb_avif
1•roytam87•17m ago•1 comments

Can you make a picture of a dog wearing a hat

https://dispatchesfromthefuture.substack.com/p/can-you-make-a-picture-of-a-dog-wearing
1•JoiDegn•18m ago•0 comments

Show HN: Local, agent-friendly double-entry bookkeeping and tax prep

https://github.com/andrewchilds/moneypit
1•andrewchilds•18m ago•0 comments

Substack added a scheduler. Here's why I kept building PubQ anyway

https://www.indiehackers.com/post/substack-added-a-scheduler-heres-why-i-kept-building-pubq-anywa...
1•rkapdi•20m ago•0 comments

Trump's Landman Iran Strategy [video]

https://www.youtube.com/watch?v=VZsm3Z2njAQ
1•keepamovin•21m ago•0 comments

They Built the 'Cursor for Hardware.' Now, Anthropic Wants In

https://www.wired.com/story/schematik-is-cursor-for-hardware-anthropic-wants-in-on-it/
1•CharlesW•21m ago•0 comments

My Linux Setup for Work and Life – NixOS, Niri, Helix [video]

https://www.youtube.com/watch?v=CeUOz_xtO-o
1•AnthOlei•21m ago•0 comments

Show HN: Kern – Agents that do the work and show it

https://github.com/oguzbilgic/kern-ai
1•obilgic•24m ago•0 comments

Sony implementing age verification for PlayStation users

https://twitter.com/CR1337/status/2046427329866694676
2•CR1337•28m ago•1 comments

The Ferrari of Espresso Machines Is Fueling a Hot Resale Market

https://www.nytimes.com/2026/04/20/dining/la-marzocco-espresso-machine.html
3•mitchbob•32m ago•1 comments

Voice to Instrument

1•starkiron•33m ago•0 comments

Wormhall

http://iladelf.org/wormhall/index.html
1•madprops•33m ago•0 comments

Claude Desktop Works with OpenCode Go

https://gist.github.com/avarayr/a9a35354aa6d7d8430ce0c27cd9aff3f
1•mikamika83•34m ago•0 comments

Mathematician Collapses All Functions to One Weird Formula [video]

https://www.youtube.com/watch?v=hwtqJaS42xk
2•darepublic•42m ago•0 comments

The SF Group Chat

https://twitter.com/daniel_dhawan/status/2041913527045386447
1•nowflux•45m ago•0 comments

It's not just one thing – it's another thing

https://techcrunch.com/2026/04/20/ai-writing-its-not-just-this-its-that-barrons/
1•davikr•46m ago•0 comments

Show HN: I built an AI that assigns YOU tasks

https://www.pause.build/
1•chaidhat•1h ago•4 comments

Apple iPhone texting changes: they fixed everything and changed nothing

https://webmatrices.com/post/apple-iphone-texting-changes-they-fixed-everything-and-changed-nothing
2•bishwasbh•1h 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•12mo 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•12mo 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•12mo 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•12mo ago
Hey Mark, I actually found this post via yours so thanks!