frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The Subprime AI Crisis Is Here

https://www.wheresyoured.at/the-subprime-ai-crisis-is-here/
1•dmitrygr•21s ago•0 comments

Why Millennials Love Prenups

https://www.newyorker.com/magazine/2025/12/29/why-millennials-love-prenups
2•randycupertino•49s ago•0 comments

Run Linux containers on Android, no root required

https://github.com/ExTV/Podroid
1•politelemon•1m ago•0 comments

How the Claude Mythos leak happened

https://iter.ca/post/claude-cms/
1•smitop•2m ago•0 comments

The house is a work of art: Frank Lloyd Wright

https://aeon.co/essays/frank-lloyd-wright-as-a-mirror-of-the-american-condition
2•midnightfish•3m ago•0 comments

SpaceX Files FCC Complaint over Ariane 64 Amazon Leo Launch

https://europeanspaceflight.com/spacex-files-fcc-complaint-over-ariane-64-amazon-leo-launch/
1•riffraff•4m ago•0 comments

Just 'English with Hanzi'

https://www.oldnorthwhale.com/p/why-modern-chinese-is-just-english
2•scour•5m ago•0 comments

Show HN: Open-source benchmark for transcription APIs on meeting audio

https://github.com/micdarau/meeting-transcription-bench
1•eyepaqio•6m ago•0 comments

The Cloud is a Scam (2019) [video]

https://www.youtube.com/watch?v=SCclo-eg0T8
1•mooreds•7m ago•0 comments

Did Impacts from Meteors Help Start Life on Earth?

https://www.rutgers.edu/news/did-impacts-meteors-help-start-life-earth
1•geox•12m ago•0 comments

Floating Point from Scratch

https://essenceia.github.io/projects/floating_dragon/
1•random__duck•13m ago•0 comments

'Call A Boomer' phonebooth fosters cross-country, multi-generational connections

https://dailyfreepress.com/03/27/14/218929/call-a-boomer-phonebooth-fosters-cross-country-multi-g...
1•gnabgib•15m ago•0 comments

Why Developers Are Switching to BaaS in 2026

https://www.dropinks.com/what-is-baas/
1•dropinksblog•18m ago•0 comments

AI Trainer Mercor Offers to Pay People for Prior Work–Work Employers Might Own

https://www.wsj.com/tech/ai/ai-training-data-mercor-offers-ed37d2a1
1•latchkey•20m ago•1 comments

Smarter Live Streaming at Scale: Rolling Out VBR for All Netflix Live Events

https://netflixtechblog.com/smarter-live-streaming-at-scale-rolling-out-vbr-for-all-netflix-live-...
1•andsoitis•20m ago•0 comments

Google AI Pro now comes with 5 TB of storage, no price increase

https://9to5google.com/2026/04/01/google-ai-pro-5-tb/
1•jskherman•20m ago•0 comments

US labor market posts largest jobs gain in 15 months

https://www.reuters.com/world/us/us-employment-growth-rebounded-march-unemployment-rate-falls-43-...
1•baal80spam•20m ago•0 comments

Show HN: Nitterium – A privacy-focused Android app and wrapper for Nitter

https://github.com/kaleedtc/Nitterium
1•k_Tc•21m ago•0 comments

Show HN: agenteval – static analysis for AI coding instruction file

https://github.com/lukasmetzler/agenteval
2•lukasm1703•22m ago•0 comments

Math at Project Gutenberg (April 2026 newsletter)

https://www.gutenberg.org/newsletter/
1•petethomas•23m ago•0 comments

Sandbox Strategy Game for AI

https://villagewars.xyz/
2•Stefan_Golas•24m ago•0 comments

Show HN: Relay – Your AI, out there representing you (24/7)

https://relay.signupfunnel.com
1•hankimprod•24m ago•1 comments

10-19x faster alternative to TurboQuant via Clifford rotors (44x fewer params)

https://github.com/tonbistudio/turboquant-pytorch/pull/4
2•hochmartinez•26m ago•0 comments

Phillips App Reverse Engenierd

https://github.com/LeonCzech/phillps-tv-2020plus-control-from-pc/tree/main
1•minetest15•28m ago•0 comments

Emotion Concepts and Their Function in a Large Language Model

https://transformer-circuits.pub/2026/emotions/index.html
4•majkinetor•29m ago•0 comments

Claude AI finds Vim, Emacs RCE bugs that trigger on file open

https://www.bleepingcomputer.com/news/security/claude-ai-finds-vim-emacs-rce-bugs-that-trigger-on...
5•akyuu•33m ago•0 comments

Benchmarks on SPSCQueue (andrvv) x9 faster than rigtorp

https://github.com/ANDRVV/SPSCQueue
1•andrvv•35m ago•0 comments

I Gave an Claude Its Own Radio Station – It Won't Stop Broadcasting (It's Fine)

https://www.khaledeltokhy.com/claude-show
4•eltokh7•38m ago•0 comments

Show HN: TinyOS – A minimalist RTOS for Cortex-M written in C

https://github.com/cmc-labo/tinyos-rtos
11•hpscript•39m ago•2 comments

When AI becomes Pierre Menard, author of your code

https://blog.adafruit.com/2026/04/03/when-ai-becomes-pierre-menard-author-of-your-code/
2•ptorrone•43m 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!