frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Quantum-audit – CLI to scan NPM deps for quantum-vulnerable crypto

https://quantum-audit-site.vercel.app
1•Heavensinfinite•32s ago•0 comments

Meta found to breach EU laws with 'addictive' Instagram, Facebook designs

https://www.cnbc.com/2026/07/10/meta-instagram-facebook-addictive-design-breach-eu-laws.html
1•1vuio0pswjnm7•1m ago•0 comments

The Company That Owns AOL Gets a Million Job Applications–and Rejects 99.9%

https://www.wsj.com/business/bending-spoons-jobs-hiring-stock-eaed2b8e
1•JumpCrisscross•2m ago•0 comments

MDN has a page that shows every web API update as it hits each browser

https://developer.mozilla.org/en-US/plus/updates
2•luispa•13m ago•0 comments

Overview of 2026 wrench (physical) attacks on crypto holders

https://www.certik.com/blog/2026-wrench-attacks-overview
2•decimalenough•15m ago•0 comments

NYT article on opening of dachau (1933)

https://www.nytimes.com/1933/07/27/archives/nazi-prison-camps-to-be-permanent-building-going-on-a...
2•marysminefnuf•17m ago•0 comments

Scutoid Papercraft

https://www.patreon.com/vihart/posts/scutoid-and-111945080
2•ry-gr•18m ago•0 comments

Using a Vision Pro to help install a POE doorbell

https://old.reddit.com/r/Ubiquiti/comments/1ut1atj/how_i_retrofit_poe_doorbells/
2•js2•20m ago•0 comments

I've been building this alone for months. Roast it before I lose any more time

https://peakd.io
2•GroguMaster•26m ago•0 comments

Plain Text Sports

https://plaintextsports.com/
2•bwoah•27m ago•0 comments

Hacked Paxel as tribute for my YC Startup School 26' application

https://obaid.wtf/jotbook/2026/07/11/yc-startup-school-26-application-i-hacked-paxel.html
3•wtfobaid•30m ago•1 comments

Paxel has been hacked

https://twitter.com/wtfobaid/status/2075742915226435755
2•wtfobaid•31m ago•0 comments

FreeCAD in the Browser

https://magik.net/freecad/
6•cui•36m ago•4 comments

Choosing the Right AI Agent Memory Strategy: A Decision-Tree Approach

https://machinelearningmastery.com/choosing-the-right-ai-agent-memory-strategy-a-decision-tree-ap...
2•eigenBasis•36m ago•0 comments

UNIGRID's sodium-ion home battery debuts in Europe, US is next

https://electrek.co/2026/07/10/unigrid-sodium-ion-home-battery-debuts-in-europe-us/
4•Bender•37m ago•0 comments

Email Verification Protocol – Chrome for Developers

https://developer.chrome.com/blog/email-verification-protocol-origin-trial
3•dmmalam•37m ago•0 comments

Meta pulls new AI image feature after days of backlash

https://www.bbc.com/news/articles/c2dy6e8klw0o
3•cdrnsf•39m ago•1 comments

Porting Doom to the Casio Loopy [Throaty Mumbo] [video]

https://www.youtube.com/watch?v=nDe06uY5C40
2•mrinfinite•39m ago•0 comments

Hannah Montana Linux v26.0

https://gitlab.com/DecaCagle/hannahmontanalinux26
2•birdculture•40m ago•0 comments

The iconic blue IKEA FRAKTA bag comes with a free lifetime warranty

https://ikeamuseum.com/en/explore/the-story-of-ikea/beloved-bag/
4•teleforce•41m ago•1 comments

Frog bacterium wiped out cancer tumors in mice with a single dose

https://www.sciencedaily.com/releases/2026/07/260709160655.htm
7•dcyfr•48m ago•0 comments

Boeing's Graveyard. Investigation is not detergent

https://zboralski.substack.com/p/boeings-graveyard
3•kugutsumen•49m ago•0 comments

Show HN: We beat Cloudflare's bot detection (open-source stealth browser)

https://tilion.dev/blog/cloudflare-blocks-agents
4•armanluthra_•54m ago•0 comments

Guardrails Against Duplicated Code

https://www.technology.org/2026/07/03/dupehound-deterministic-guardrails-against-ai-code-duplicat...
2•rafaepta•55m ago•0 comments

Atlassian ordered to reinstate engineer sacked over Slack clash with leadership

https://www.hcamag.com/nz/news/general/atlassian-ordered-to-reinstate-engineer-sacked-over-slack-...
8•toomanyrichies•58m ago•1 comments

SF Farmers Market allows laundering food stamps for drug purchases

https://thevoicesf.org/snap-to-cash-how-food-assistance-vouchers-were-traded-for-cash-at-the-hear...
5•AcesoUnderGlass•59m ago•1 comments

Metamaterial Antennas Enhance MRI of the Eye and Occipital Brain

https://advanced.onlinelibrary.wiley.com/doi/10.1002/adma.202517760
3•bookofjoe•1h ago•0 comments

AI2Web: Open protocol to make any website work with every AI agent

https://ai2web.dev/
3•rolandfarkas•1h ago•0 comments

One Wikipedia page costs your AI agent 68,000 tokens

6•arhamislam5766•1h ago•1 comments

Maura Gillison, who linked HPV to head and neck cancer, dies at 61

https://cancerletter.com/obituary/20260702_2/
3•tortilla•1h 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!