frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Blackhole QuietBox, Tenstorrent's AI workstation reviewed

https://www.theregister.com/2025/11/27/tenstorrent_quietbox_review/
1•LorenDB•1m ago•0 comments

Show HN: Conversational Survey Tool

https://chattosurvey.com/
1•heshiebee•2m ago•0 comments

Show HN: Commits on Christmas – Check your holiday contribution streak

https://www.commit.holiday/
1•dohyun-ko•3m ago•0 comments

Show HN: Changelog-bot – Generate CHANGELOG.md from Git and release notes

https://github.com/nyaomaru/changelog-bot
2•nyaomaru•4m ago•0 comments

AI Is Hollowing Out Higher Education

https://www.project-syndicate.org/commentary/ai-will-not-save-higher-education-but-may-destroy-it...
1•DyslexicAtheist•5m ago•1 comments

They're Giving People $12,000 to Do Nothing in New York

https://medium.com/@anwarzaid76/theyre-giving-people-12-000-to-do-nothing-in-new-york-54c2d592b1a3
3•MindBreaker2605•8m ago•2 comments

Why Are Software Engineers (Not) Engineers?

https://brainbaking.com/post/2022/10/why-are-software-engineers-engineers/
1•BinaryIgor•10m ago•0 comments

It's Hard to Feel the AGI

https://tensorlabbet.com/2025/11/30/hard-to-feel-agi/
2•tarolangner•11m ago•0 comments

Why $30B in settlement money goes unclaimed – and how I started fixing it

https://claim.watch/
1•ma1or•13m ago•2 comments

Zig Book – An open, technical and introductory book for Zig

https://github.com/pedropark99/zig-book
3•rob•16m ago•0 comments

Show HN: Mitsuki, a Python web framework as fast as Node or Java

https://github.com/DavidLandup0/mitsuki
2•DavidLandup0•17m ago•0 comments

C64g.com removed from Google Search index

https://c64g.com
1•darqis•20m ago•1 comments

They Found Relatives on 23andMe–and Asked for a Cut of the Inheritance

https://www.wsj.com/personal-finance/they-found-relatives-on-23andmeand-asked-for-a-cut-of-the-in...
2•fortran77•21m ago•1 comments

Term-keys – Lossless keyboard input for Emacs

https://github.com/CyberShadow/term-keys
2•harryday•23m ago•0 comments

EWD 1094 – The undeserved status of the pigeon-hole principle (1991)

https://www.cs.utexas.edu/~EWD/transcriptions/EWD10xx/EWD1094.html
2•vismit2000•24m ago•0 comments

Advent of Code 2025

https://adventofcode.com/2025/about
4•vismit2000•24m ago•0 comments

Revisiting Jill of the Jungle, the last game Tim Sweeney designed

https://arstechnica.com/gaming/2025/11/revisiting-jill-of-the-jungle-the-last-game-tim-sweeney-de...
1•jamesbelchamber•25m ago•1 comments

Data Center Boom Sparks Gold Rush for Construction Workers

https://www.standardarena.co.ke/data-center-boom-sparks-gold-rush-for-construction-workers/
1•david_emmett•26m ago•0 comments

Show HN: Pinakes – Open-source library system with built-in public catalog

https://github.com/fabiodalez-dev/Pinakes
1•fabiodalez•27m ago•0 comments

OpenBSD: Free, Functional, and Secure

https://www.openbsd.org/
15•brynet•28m ago•1 comments

Show HN: Free and open-source platform to invest credit card rewards

https://github.com/henrynsmbl/micro-investing
1•hg30•30m ago•0 comments

I built a free FTC compliance scanner for creators in 10 hours

https://guardia-scan-suite.lovable.app
1•justicedevloper•31m ago•1 comments

Batman in subway makes people more helpful

https://science.slashdot.org/story/25/11/29/2233245/scientists-discover-people-act-more-altruisti...
1•Flundstrom2•33m ago•1 comments

From hiring at Gett to JobHire AI: building job search automation

https://medium.com/@dmitry_titov/the-job-search-process-is-outdated-how-getts-former-cpo-is-build...
1•Dmitry_Titov•33m ago•0 comments

Busting Legacy Code with AI Agents and Test Driven Development

https://yonatankra.com/busting-legacy-code-with-ai-agents/
1•krayonatan•41m ago•0 comments

Show HN: OgBlocks – It lets anyone create beautiful UIs with just copy and paste

https://ogblocks.dev/
1•thekarank•46m ago•0 comments

Crash Team Racing

https://en.wikipedia.org/wiki/Crash_Team_Racing
2•tosh•46m ago•0 comments

Show HN: A free metatag, sitemap and web manifest generator

https://metagen.top
1•wstaeblein•47m ago•0 comments

Schubfach: The smallest floating point double-to-string impleme

https://vitaut.net/posts/2025/smallest-dtoa/
2•fanf2•49m ago•0 comments

Show HN: SolveMyPainPoint – A single place to post and discover real problems

https://www.solvemypainpoint.com/
2•Chrizzby•49m 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!