frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Why YC Companies Win

https://khaliqgant.com/blog/why-yc-companies-win/
1•khaliqgant•8s ago•0 comments

Alan Kay's answer to "Did the ENIAC have a BIOS"?

https://www.quora.com/Did-the-ENIAC-have-a-BIOS/answer/Alan-Kay-11
2•midnightfish•31s ago•0 comments

Show HN: Caspian – Desktop app to build and launch small vibe-coded projects

https://caspian.md
1•sshussain270•1m ago•0 comments

1.3M free proxies → only the ones that work open source

https://github.com/maximilianfeix/proxy-scraper
1•taventix•3m ago•1 comments

'Pink Slime' Is Infecting AI Chatbots Ahead of the Midterms

https://www.politico.com/news/magazine/2026/09/25/midterms-partisan-ai-chatbots-01092138
1•JumpCrisscross•3m ago•0 comments

Death Rates for Young American Adults Jumped 71% in Just over a Decade

https://studyfinds.com/death-rates-for-americans-ages-25-44-jumped-71-in-just-over-a-decade/
2•pseudolus•6m ago•2 comments

Bob Chapek Is So Not over Getting Fired from Disney

https://www.wsj.com/business/media/bob-chapek-is-so-not-over-getting-fired-from-disney-f96bafcc
1•ksec•7m ago•0 comments

You do not have to hand IT to the techbros

https://parsingphase.dev/tech/LLMs/ydnht.html
1•monkaiju•7m ago•0 comments

Show HN: Squint – Drag a box on your screen and ask AI about it

https://heysquint.com/
1•splurf•7m ago•0 comments

The state of SIMD in Rust in 2026

https://shnatsel.github.io/state-of-simd-rust-2026/
1•birdculture•8m ago•0 comments

Deepfates/imp: declarative self-improving language-model programs for Elixir

https://github.com/deepfates/imp
1•mpweiher•9m ago•0 comments

Amazon Blocks Meta's Muse AI Agent from Its Retail Site

https://www.bloomberg.com/news/articles/2026-09-21/amazon-blocks-meta-s-muse-ai-agent-from-its-re...
2•jcfrei•11m ago•0 comments

AI Companies Say They're Investigating Rogue Bot Incidents

https://www.motherjones.com/politics/2026/09/rest-assured-ai-companies-say-theyre-investigating-t...
2•cdrnsf•14m ago•0 comments

Show HN: Boonful – Claude Code can publish and sell what it builds

https://boonful.io
1•atifhub•15m ago•0 comments

Show HN: A bookshelf of rare company documents and out-of-print tech books

https://rare-books.vercel.app
2•miletus•21m ago•0 comments

XiaomiMiMo / MiMo-v2.6-RL-OSS (Agentic RL Environments)

https://huggingface.co/datasets/XiaomiMiMo/MiMo-V2.6-RL-oss
1•handfuloflight•21m ago•0 comments

The Anti-Cheat and Toxicity Detection (2025)

https://blog.grid.gg/the-ultimate-anti-cheat-and-toxicity-detection-powered-by-getgud-io-grid-bf0...
1•mooreds•21m ago•0 comments

We built DeepL's next-generation LLMs with FP8 for training and inference (2025)

https://www.deepl.com/en/blog/tech/next-generation-llm-fp8-training
1•mooreds•22m ago•0 comments

Heypcb: Figma for Hardware, with AI

https://heypcb.ai
1•handfuloflight•22m ago•0 comments

Program Integrity Is a Team Sport

https://pplfirst.com/blogs/program-integrity-is-a-team-sport/
1•mooreds•23m ago•0 comments

Totlajtol, a digital repository of colonial documents in Nahuatl, is presented

https://www.udg.mx/en/index.php/noticia/presentan-totlajtol-repositorio-digital-de-documentos-col...
2•bryanrasmussen•23m ago•0 comments

Claude Pop – I'm Upping My P(Doom) [video]

https://www.youtube.com/watch?v=8j-hR4fJywU
1•Cider9986•24m ago•0 comments

Two Paths to Math Everest

https://quantumformalism.substack.com/p/two-paths-to-math-everest
1•VStack•24m ago•0 comments

Open firmware for the Echo Show 5, first and 2nd gen: Alpine Linux

https://github.com/HuskerMinion/techo5
3•riddley•24m ago•0 comments

Quantized Reasoning Models Think They Need to Think Longer, but They Do Not

https://arxiv.org/abs/2606.00206
2•theanonymousone•24m ago•0 comments

DuckDB and Hugging Face: Querying Datasets Directly

https://duckdb.org/2026/09/25/hugging-face
1•theanonymousone•25m ago•0 comments

Scoop: Anthropic's Dario Amodei to Have White House Dinner with Trump

https://www.axios.com/2026/09/27/anthropic-trump-dario-amodei-dinner-invite
2•theanonymousone•25m ago•0 comments

We made our launch video with Claude Code (and open-sourced the tool)

https://kiln.tech/blog/we_made_our_launch_video_in_claude_code
1•scosman•26m ago•0 comments

Show HN: App2Api; App actions into API calls for LLMs

https://app2api.com/
1•flkdnfsnsf•27m ago•0 comments

Boeing flags 737 MAX software glitch affecting some automated approach functions

https://www.cnbc.com/2026/09/26/boeing-737-max-navigation-software-glitch.html
3•pseudolus•29m 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!