frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

An open-source solar vehicle

https://www.reddit.com/r/interestingasfuck/comments/1vcnvez/an_opensource_solar_vehicle/
1•moltean•1m ago•0 comments

Jerry and Marge Go Large

https://highline.huffingtonpost.com/articles/en/lotto-winners/
1•EndXA•6m ago•0 comments

Mechanical License

https://en.wikipedia.org/wiki/Mechanical_license
1•redbell•6m ago•0 comments

Why Is the U.S. Running So Low on Weapons?

https://www.theatlantic.com/ideas/2026/08/the-us-isnt-making-enough-weapons/688150/
1•Jtsummers•7m ago•0 comments

Token Arbitrage: Use Sol for coding, Luna for compaction, save 84%

https://dirac.run/posts/token-arbitrage-sol-vs-luna
1•GodelNumbering•9m ago•1 comments

Much of Philosophy Today Is Self-Indulgent

https://walterveit.substack.com/p/much-of-philosophy-today-is-self
1•barry-cotter•9m ago•0 comments

Show HN: A fail-closed evidence engine for norms used by AI agents

https://github.com/Angeliasrl/norms-mcp-engine
1•babelprotocol•10m ago•0 comments

Viagra may reduce cancer metastasis, study shows

https://medicalxpress.com/news/2026-07-viagra-cancer-metastasis.html
1•mhb•11m ago•0 comments

Inside An AI TikTok Shop Slop Factory That Shills Supplements Recalled by FDA

https://www.404media.co/inside-an-ai-tiktok-shop-slop-factory-that-shills-supplements-recalled-by...
1•bookofjoe•13m ago•0 comments

Show HN: Runthru – open-source Interactive Demos

https://github.com/marktolson/runthru
3•marktolson•13m ago•0 comments

Augmenting Long-Term Memory

https://augmentingcognition.com/ltm.html
1•olexsmir•14m ago•0 comments

Most Likely Future Filter: World Govt

https://www.overcomingbias.com/p/most-likely-future-filter-world-govt
1•surprisetalk•14m ago•0 comments

GitHub/gh-stack: GitHub Stacked PRs

https://github.com/github/gh-stack
1•sshah•17m ago•0 comments

Two Overlapping Circles

https://lemurintheattic.mataroa.blog/p/two-overlapping-circles/
1•xyztenet•22m ago•0 comments

WebExt Ship Kit: Build Once, Validate for Chrome, Edge, and Firefox

https://github.com/blueyferg/webext-ship-kit
1•clevercreator•22m ago•0 comments

IBM Claims Quantum Advantage with New Validation Techniques

https://spectrum.ieee.org/ibm-verifiable-quantum-advantage
1•Schlagbohrer•23m ago•1 comments

Show HN: Argot, a Rust AI guardrail based on your codebase AST patterns

https://argot.tmonier.com/
2•damienmeur•24m ago•0 comments

Promises, Kept

https://www.anuclei.com/blog/promises-kept-building-multisynapse
1•jequals5•25m ago•0 comments

VibeMenu – a local macOS menu-bar dashboard for Claude Code and Codex

https://github.com/Kirill-Chistov/VibeMenu
1•KirillChistov•27m ago•0 comments

GLM-5.3 Soon

https://github.com/zai-org/z-ai-sdk-java/commits/glm-5.3
4•OsamaJaber•27m ago•0 comments

Spriteloom – local AI pixel-art generator plugin for Aseprite

https://github.com/vkarach/spriteloom
1•vkarach•30m ago•0 comments

FlakeAudit, a CLI for evaluating Nix flake SBOMs against org policies

https://determinate.systems/blog/introducing-flakeaudit/
1•biggestlou•30m ago•0 comments

SecurityPolicy restrictions unenforced by default sandbox back end in PraisonAI

https://github.com/MervinPraison/PraisonAI/security/advisories/GHSA-5r6c-gj4g-r697
1•LHMisme•31m ago•0 comments

Linux 7.3 Adding Support for MCTP-over-USB v1.1

https://www.phoronix.com/news/Linux-7.3-MCTP-Over-USB-1.1
1•Bender•31m ago•0 comments

What You'd See During an AI World War [video]

https://www.youtube.com/watch?v=Gw_hnD7m00M
1•freakynit•31m ago•0 comments

VictorTaelin/Nanoproof

https://github.com/VictorTaelin/nanoproof
1•surprisetalk•35m ago•0 comments

Pavel Durov – Communication Technology and the Struggle for Freedom [video]

https://www.youtube.com/watch?v=1Yq_5aDdJ24
1•rzk•36m ago•0 comments

The AI bubble is popping; we just don't know it yet

https://www.theregister.com/ai-and-ml/2026/08/03/the-ai-bubble-is-already-popping-we-just-dont-kn...
25•Bender•37m ago•13 comments

ERP and MES Integration for US Pharma Manufacturers

https://geekyants.com/blog/erp-and-mes-integration-for-us-pharma-manufacturers-a-roadmap-to-achie...
2•varda_62892•39m ago•0 comments

The Grass Is Greener

https://www.bassfinity.com/blog/the-grass-is-greener-reading-summer-vegetation
1•jequals5•40m 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!