frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Use Gmail's 'Manage Subscriptions' Tool to Cut Down on Inbox Clutter

https://www.wired.com/story/gmail-manage-subscriptions-cut-down-on-inbox-clutter/
1•joozio•20s ago•0 comments

I Deleted My Second Brain

https://bulletjournal.com/blogs/bulletjournalist/i-deleted-my-second-brain
1•zdkaster•3m ago•1 comments

Create a digital wardrobe from your Google Photos

https://blog.google/products-and-platforms/products/photos/google-photos-wardrobe-feature/
1•TechTechTech•3m ago•0 comments

1.4 GW: battery storage at former Grohnde nuclear power plant

https://www.heise.de/en/news/1-4-GW-Huge-battery-storage-at-former-Grohnde-nuclear-power-plant-11...
1•pantalaimon•4m ago•0 comments

Show HN: A simple stereogram viewer with zoom and pan

https://github.com/cbbldtgthr/stereogram-viewer
1•cbbldtgthr•4m ago•0 comments

Building reliability into uncertain event delivery (2022)

https://zendesk.engineering/building-reliability-into-uncertain-event-delivery-a09db0750ef9
1•tibbar•7m ago•0 comments

What a chatbot support loop and a meditation hall have in common

https://pilgrima.ge/p/the-swan-in-the-next-room
1•momentmaker•9m ago•0 comments

Mm – Unix tools (find/cat/grep) rebuilt for the multimodal era

https://www.vlm.run/open-source/mm
1•cpnwaugha•13m ago•0 comments

Realtime Faux-Raytraced Interactive 125,000 hair particles on Web

https://imosspro.vercel.app/
2•ldhieu•13m ago•1 comments

Show HN: PortScout – TUI to find and kill processes occupying your ports

https://github.com/abhaikollara/portscout
3•TheThirdTuring•17m ago•0 comments

Considering a Sphere

https://www.solipsys.co.uk/new/ConsideringASphere.html?zd30hn
3•ColinWright•18m ago•0 comments

How to Disable Firefox's New Emoji Picker

https://emsh.cat/en/how-to-disable-firefoxs-emoji-picker/
3•embedding-shape•23m ago•0 comments

The Difference Between "Replicable" and "Not Replicable" Is Not Replicable

https://arxiv.org/abs/2604.26268
4•sebg•25m ago•0 comments

The A.I. Fear Keeping Silicon Valley Up at Night

https://www.nytimes.com/2026/04/30/opinion/ai-labor-work-force-silicon-valley.html
3•pretext•26m ago•0 comments

Collio Is the AI Coworker That Delivers Finished Work, Not Just Instructions

https://collio.chat/
2•serin-ai•26m ago•2 comments

Make HN great again: Neovim vs. IDEs

3•vtemian•32m ago•2 comments

Near-100% test coverage did not catch a CVE in my Go library

https://blog.reqproof.com/p/i-had-near-100-test-coverage-it-didnt
2•LeonidBugaev•37m ago•0 comments

Show HN: Throwaway – open-source disposable email checker and API

https://github.com/sslboard/throwaway
3•weddpros•38m ago•0 comments

Semantic VCS for AI driven development

https://github.com/theswiftway/nool-cli
2•theswiftway•39m ago•1 comments

Granite 4.1: IBM's 8B Model Matching 32B MoE

https://firethering.com/granite-4-1-ibm-open-source-model-family/
41•steveharing1•41m ago•6 comments

What Code Review Can't See (and Bad Data Always Finds)

https://blog.dochia.dev/blog/code_review_rarely_find_bugs/
3•ludovicianul•44m ago•0 comments

Australia ran the experiment on AI economics

https://drdavidwbell.substack.com/p/where-the-jobs-go
3•drdavidwbell•48m ago•0 comments

Cart before horse: On India and vehicle-to-vehicle communication technology

https://www.thehindu.com/opinion/editorial/cart-before-horse-on-india-and-vehicle-to-vehicle-comm...
2•thisislife2•48m ago•0 comments

Detection toolkit for CopyFail(CVE-2026-31431)

https://github.com/kadir/copy-fail-CVE-2026-31431-IOC
2•nofool•49m ago•1 comments

PostgreSQL Is Not Slow. Your Queries Are

https://stormatics.tech/blogs/postgresql-is-not-slow-your-queries-are
8•dbaxame11•51m ago•0 comments

Show HN: Mnheme Evolves – Personality and Free Will Enter the System

https://medium.com/@aatel.license/mnheme-evolves-personality-and-free-will-enter-the-system-66258...
2•aatel-license•55m ago•0 comments

Rise of the Blood Populist

https://www.theatlantic.com/ideas/2026/04/blood-populists-political-violence-ideology/686995/
2•JumpCrisscross•56m ago•0 comments

TypeScript framework for building non-blocking AI agents

https://github.com/jigjoy-ai/mozaik
2•mijura•56m ago•0 comments

Stop letting AI generate broken SVG spaghetti

https://github.com/stellarshenson/claude-code-plugins
3•stellars•57m ago•0 comments

No action taken against PimEyes: noyb lawsuit against Hamburg DPA

https://noyb.eu/en/no-action-taken-against-pimeyes-noyb-lawsuit-against-hamburg-dpa
4•hacka22•59m 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!