frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

From $66 to $26,384 a Month: Everything I Learned Building My First iPhone App

https://twitter.com/synopsi/status/2084744044392190064
1•samaysharma•1m ago•0 comments

Paul Graham's Complete Startup Advice Simplified

https://www.youtube.com/watch?v=JNoD4jKXmSs
1•llama4•1m ago•0 comments

Wildfire Survivors Push Back Against Newsom-Led Utility Bailout

https://prospect.org/2026/08/28/wildfire-survivors-push-back-against-newsom-led-utility-bailout/
1•hn_acker•2m ago•0 comments

PDF tools where your file never leaves the browser tab

https://pdfpix.com/
1•samaysharma•3m ago•0 comments

5 years running a Tor guard relay: the cost of relaying 1 PB

https://metalhearf.fr/posts/tor-guard-relay-5-years-cost/
1•Metalhearf•4m ago•0 comments

Are We at War with AI Agent "Civilizations"?

https://calnewport.com/are-we-at-war-with-ai-agent-civilizations/
1•hechimstol•6m ago•0 comments

I made a lamp you can make yourself [video]

https://www.youtube.com/watch?v=ipVFRH6TQfM
1•bwidlar•7m ago•0 comments

OpenAI hack shows emergent AI risks

https://www.semafor.com/article/08/30/2026/openai-hack-shows-emergent-ai-risks
1•docmechanic•7m ago•0 comments

Making Agent API Calls 10x Faster with Cached Definitions

https://borkert.dev/posts/cached-definitions.html
2•dpweb•8m ago•0 comments

How to Capture Attention

https://twitter.com/spakhm/status/2094455284546556350
1•tosh•8m ago•0 comments

Logitech Mobi Fold

https://www.logitech.com/en-us/shop/p/mobi-fold-mouse
1•stefanv•10m ago•0 comments

Central bankers discussing impact of AI agents on financial markets

https://www.reuters.com/business/finance/jackson-hole-global-central-bankers-glimpse-dystopian-ai...
1•kaycebasques•10m ago•0 comments

Adaptation, Again

https://hypersubject.net/posts/on-adaptation,-again
2•speckx•12m ago•0 comments

Show HN: Rta-Smriti – local-first project memory for coding agents

https://github.com/sulabhdubey/rta-smriti-brain
2•SulabhDubey•13m ago•0 comments

What Are You Coding?

https://blog.sebastiansastre.co/posts/what-are-you-coding/
2•sebastianconcpt•13m ago•0 comments

Rebuilding Linear's delta sync read path

https://linear.app/now/rebuilding-delta-sync-read-path
2•FinnLobsien•13m ago•0 comments

ravynOS: Pre-alpha open-source OS based on Darwin, FreeBSD, Apple open-source

https://ravynos.com/
4•Bluestein•14m ago•0 comments

Show HN: D5s, an AI coworking space for people and agents

https://www.d5s.tech
3•mhog_hn•16m ago•0 comments

Morrow, a social network built around interests

https://morrow.fyi
1•levyathan•16m ago•1 comments

The Computer Museum of America reclamation project

https://computer-museum.org/wp/
2•rbanffy•18m ago•0 comments

Amazon's AI Scraping Exposed: How to Protect Your Products

https://www.smamarketing.net/blog/amazon-ai-scraping-exposed
1•speckx•19m ago•0 comments

Whose Name Comes Up?

https://vis.csh.ac.at/whosenamecomesup/
1•gmays•21m ago•0 comments

Why the best AI tech stack is from 1995

https://kentnguyen.com/blog/why-the-best-ai-tech-stack-is-from-1995/
1•kentnguyen•21m ago•0 comments

Let's talk about structured logging

https://medium.com/@mzaks/lets-talk-about-structured-logging-455a16e00934
1•mzaks•22m ago•0 comments

Ernst and Young Is Giving $100M in Bonuses to Staff for 'Human' Skills

https://www.wsj.com/business/ernst-young-is-giving-100-million-in-bonuses-to-staff-for-human-skil...
2•codechicago277•22m ago•0 comments

Intent, a high-scale coding agent orchestrator, is now open source

https://www.intentapp.dev/
1•spullara•24m ago•0 comments

TX Politicians Realize Billions in Taxpayer Broadband Grants Have Been Hijacked

https://www.techdirt.com/2026/08/31/texas-politicians-slowly-realize-elon-musk-hijacked-billions-...
4•Teever•24m ago•0 comments

Oral History Interviews (OHI): Roman, Nancy Grace on 1980 August 19

https://repository.aip.org/node/128553
1•Bluestein•24m ago•0 comments

Postgres 19: How Our Advice Has Changed Since We Wrote It

https://www.crunchydata.com/blog/postgres-19-how-our-advice-has-changed-since-we-wrote-it
5•tosh•24m ago•0 comments

Show HN: I benchmark local LLMs on real bugs from my own repo's Git history

https://informant.reiners.io/gauntlet
1•sysadmin420•25m ago•1 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!