frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

DeepEval Open-Sourced for TypeScript

https://deepeval.com/blog/introducing-deepeval-typescript
1•jeffreyip•1m ago•0 comments

Ask HN: What's Our GTM for Gno.land?

1•jkwn•2m ago•0 comments

I put an API behind an x402 paywall for nine days: 1,835 callers, zero payments

https://saishav.substack.com/p/i-spent-nine-days-selling-to-ai-agents
1•sai-ag•6m ago•0 comments

LTX 2.5 Released

https://ltx.io/model/ltx-2-5
1•heck0045•6m ago•0 comments

The office doesn't fix loneliness at work

https://www.fastcompany.com/91564001/the-office-doesnt-fix-loneliness-at-work
1•mooreds•7m ago•0 comments

Zitron on CNBC talking Nvidia, unprofitable AI labs, and the Greater AI Bubble [video]

https://www.youtube.com/watch?v=8GWPjTDPVIM
1•SLHamlet•7m ago•0 comments

Our Bodies Are So Complicated and Confusing

https://www.patreon.com/CultureStudy/posts/our-bodies-are-159216402
1•mooreds•7m ago•0 comments

How does gender impact adoption of GenAI tools?

https://rdel.substack.com/p/rdel-148-how-does-gender-impact-adoption
1•mooreds•7m ago•0 comments

Profiling Rust with hotpath-rs: The Complete Guide

https://hotpath.rs/blog/profiling-rust-guide
1•linggen•9m ago•0 comments

Astronomers discover black hole 'star'

https://www.theguardian.com/science/2026/aug/12/astronomy-discovery-new-cosmic-object-black-hole-...
1•spopejoy•12m ago•0 comments

Always Go to the Funeral (2005)

https://www.npr.org/2005/08/08/4785079/always-go-to-the-funeral
1•downbad_•12m ago•0 comments

The most relaxing song in the world

https://journals.sagepub.com/doi/10.1177/03057356221081169
1•freeduck•12m ago•1 comments

Finland's Zero Homeless Strategy: Lessons from a Success Story (2021)

https://oecdecoscope.blog/2021/12/13/finlands-zero-homeless-strategy-lessons-from-a-success-story/
1•downbad_•13m ago•0 comments

The West has given China the keys to the medicine cabinet

https://www.ft.com/content/5924d083-b5a4-4f95-8c2d-400f2b914159
1•JumpCrisscross•13m ago•0 comments

Sub-Minute Techno-Economics

https://untangle.bio/
1•biobits•15m ago•1 comments

Persistent SARS-CoV-2 RNA and Gut Immune Dysfunction in Long Covid

https://biorxiv.org/cgi/content/short/2026.08.07.743616
1•thenerdhead•16m ago•0 comments

We migrated the database behind every Vercel build

https://vercel.com/blog/how-we-migrated-the-database-behind-every-vercel-build
2•j0selit0•18m ago•0 comments

Fibonada.py

https://gist.github.com/gregsadetsky/cdf5a52542cf3ba4c92bc836df6dc722
2•gregsadetsky•19m ago•0 comments

µ-Boosting Your CMake Productivity with Environment Variables

https://www.kdab.com/%C2%B5-boosting-your-cmake-productivity-with-environment-variables/
2•jandeboevrie•21m ago•0 comments

Apple Can't Delay App Store Fee Fight While Waiting on Supreme Court

https://www.macrumors.com/2026/08/11/app-store-epic-games-fee-fight-proceeds/
3•dabinat•24m ago•0 comments

U.S. and Ukrainian Forces Went Head-to-Head in an Exercise. Ukraine's Drones Won

https://www.wsj.com/politics/national-security/u-s-and-ukrainian-forces-went-head-to-head-in-an-e...
5•defly•25m ago•0 comments

World oil and gas demand could grow until 2050, IEA says after U.S. pressure

https://www.cbc.ca/news/climate/iea-energy-outlook-2025-9.6976107
1•xbmcuser•26m ago•0 comments

How Claude's watermarking (probably) works

https://johnjwang.com/post/2026/08/12/how-claude-watermarking-probably-works/
1•johnjwang•27m ago•0 comments

Delta: Multiplayer environment for coding agents from the Zed team

https://delta.dev/
1•rohitpaulk•27m ago•0 comments

Brazil Suspends Discord Livestreaming After Teenager's Death

https://www.bloomberg.com/news/articles/2026-08-12/brazil-suspends-discord-livestreaming-after-te...
2•wslh•27m ago•1 comments

Natural Language Processing Almost from Scratch

https://arxiv.org/abs/1103.0398
1•Anon84•28m ago•0 comments

AI coding startup Cognition in talks to raise at $40B valuation

https://techcrunch.com/2026/08/12/ai-coding-startup-cognition-reportedly-already-in-talks-to-rais...
2•ashurandi•29m ago•0 comments

How Silicon Valley makes its anointed fellow travelers unspeakably rich

https://prospect.org/2026/08/12/aug-2026-world-from-the-inside-baker-review/
3•dxs•30m ago•0 comments

A Hadamard matrix of order 668 has been found

https://twitter.com/sumeetrm/status/2087534215772479838
1•birriel•31m ago•0 comments

Show HN: Programmable timer web app (for gym workouts or stretching sessions)

https://timer.jotaen.net
1•jotaen•32m 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•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!