frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

U.S. peace plan for Ukraine formulated months ago by Kremlin operative

https://theins.ru/en/politics/287159
1•ironyman•1m ago•0 comments

Show HN: Self-hosted RAG for docs and code (FastAPI, Docling, ChromaDB)

https://github.com/2dogsandanerd/Knowledge-Base-Self-Hosting-Kit
1•2dogsanerd•6m ago•1 comments

MasonEffect – Particle-based text morphing library (now supports Svelte)

1•fe-hyunsu•6m ago•0 comments

Taking Jaggedness Seriously

https://helentoner.substack.com/p/taking-jaggedness-seriously
1•imjacobclark•7m ago•0 comments

It Is Possible to Spend Too Much on AI

https://www.wsj.com/tech/it-really-is-possible-to-spend-too-much-on-ai-7bb68df1
2•1vuio0pswjnm7•9m ago•0 comments

The Battle over Africa's Great Untapped Resource: IP Addresses

https://www.wsj.com/business/telecom/africa-ip-addresses-china-3e543b9d
3•watchdogtimer•10m ago•0 comments

Is Linus Torvalds GitHub Account Hacked?

1•meel-hd•10m ago•0 comments

Statin-independent association between low LDL and risk of T2 diabetes

https://link.springer.com/article/10.1186/s12933-025-02964-6
1•guerby•11m ago•1 comments

(2018) How I created a database of all interesting Rush Hour configurations

https://www.michaelfogleman.com/rush/
1•xeonmc•13m ago•0 comments

Moodfx v1.0 IS LIVEAs a 19yo I think I just killed every $200/mo AI suite

https://moodfx-859986050194.us-west1.run.app/
1•Iam_Moody•14m ago•1 comments

Riding the autism bicycle to retraction town

https://nobreakthroughs.substack.com/p/riding-the-autism-bicycle-to-retraction
1•OgsyedIE•15m ago•0 comments

A brief history of NSA backdoors. (2013)

https://www.ethanheilman.com/x/12/index.html
2•fanf2•16m ago•0 comments

Soul Over AI – list of AI generated bands

https://souloverai.com/
1•starquake•18m ago•0 comments

Show HN: Slash commands to enforce collaborative AI workflows (Cursor/Claude)

https://github.com/markekvall/ai-workflow-hub
1•markekvall•18m ago•1 comments

A new look at an old dog: Bonn-Oberkassel reconsidered

https://www.sciencedirect.com/science/article/abs/pii/S0305440318300049
1•thunderbong•19m ago•0 comments

What Happens When Everyone Lives in Their Own Digital Reality?

https://twitter.com/SRKDAN/status/1994728281514676560
1•SRKD•24m ago•1 comments

Show HN: Bookmark Bar – Browser Hub (Open Any Bookmark in Any Browser on macOS)

https://apps.apple.com/us/app/bookmark-bar-browser-hub/id6755682496?mt=12
1•8mobile•30m ago•0 comments

Chainalysis Successful Deanonymization Attack on Monero

https://darkwebinformer.com/chainalysis-successful-deanonymization-attack-on-monero-2/
2•Anon84•31m ago•0 comments

The CRDT Dictionary: A Field Guide to Conflict-Free Replicated Data Types

https://www.iankduncan.com/engineering/2025-11-27-crdt-dictionary/
2•birdculture•33m ago•0 comments

You probably shouldn't block AI bots from your website

https://chronicles.mad-scientist.club/tales/you-probably-shouldnt-block-ai-bots-from-your-website/
2•smartmic•35m ago•0 comments

Langjam Gamejam: build a programming language and then make a game using it

https://langjamgamejam.com/
3•ingve•37m ago•0 comments

LLMs and the Human Condition

https://arxiv.org/abs/2402.08403
1•Anon84•37m ago•0 comments

Google CEO Sundar Pichai signals QC could be next big tech shift after AI

https://economictimes.indiatimes.com/tech/technology/google-ceo-sundar-pichai-signals-quantum-com...
2•donutloop•40m ago•0 comments

Show HN: Cuenv (CUE for to replace direnv, Just, and more)

https://github.com/cuenv/cuenv
1•rawkode•41m ago•0 comments

Chinese scientists create super stable building block for quantum computers

https://www.scmp.com/news/china/science/article/3334549/chinese-scientists-create-super-stable-bu...
2•donutloop•41m ago•0 comments

Show HN: A Low-Level Bluetooth Hid Remote for Blind Mobile UI Macroing

2•SEMIPREMIUM•48m ago•0 comments

Bee·bot is a multipurpose scanner

https://github.com/blacklanternsecurity/bbot
2•doener•48m ago•1 comments

Listen to Protons for Less Than $100

https://spectrum.ieee.org/listen-to-protons-diy-magnetometer
1•nullbyte808•54m ago•0 comments

Show HN: I built Magiclip – an all-in-one AI studio

https://magiclip.io/
2•kokau•54m ago•0 comments

Solid? Nope, Just Coupling and Cohesion

https://codeopinion.com/solid-nope-just-coupling-and-cohesion/
2•BinaryIgor•55m ago•0 comments
Open in hackernews

Decomposing Transactional Systems

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

Comments

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