frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

MAI Transcribe 2

https://microsoft.ai/news/mai-transcribe-2-is-the-fastest-most-accurate-and-cheapest-speech-recog...
1•low_tech_punk•2m ago•0 comments

You Don't Need Initial-Scale in Your HTML

https://vale.rocks/micros/20260902-1350
2•birdculture•7m ago•0 comments

Porcine kidney xenotransplantation as a bridge to allotransplantation

https://doi.org/10.1016/S0140-6736(26)01295-X
1•sbulaev•7m ago•0 comments

Readers can't identify watermarked AI text

https://www.seangoedecke.com/readers-cant-identify-watermarked-ai-text/
2•gfysfm•8m ago•0 comments

Full Interview: Sam Altman on OpenAI, New AI Model, Governments and Global

https://www.youtube.com/watch?v=cRX84IvyVNU
1•gilfoyle_7•10m ago•0 comments

Show HN: I got BPM detection from 42% to 85% on GiantSteps with TempoCNN

https://www.audioforges.com/guides/bpm-detection-tempocnn
1•dipak8080•11m ago•0 comments

An Interview with OpenAI President Greg Brockman About Astra and Alignment

https://stratechery.com/2026/an-interview-with-openai-president-greg-brockman-about-astra-and-ali...
1•swolpers•12m ago•0 comments

Data from drones in Ukraine is fueling a new Wild West marketplace

https://www.technologyreview.com/2026/09/04/1143452/drone-data-wild-west/
1•joozio•13m ago•0 comments

Tgrep: Trigram-Indexed Grep

https://github.com/microsoft/tgrep
1•peterfication•14m ago•0 comments

Show HN: Sponsee – The Sponsorship CRM for Streamers

https://sponsee.app/
1•not_wowinter14•15m ago•0 comments

A Texas rancher grazes more than 8k sheep across solar farms

https://siliconcanals.com/b-a-texas-rancher-grazes-more-than-8000-sheep-across-solar-farms-and-th...
1•thinkcontext•15m ago•0 comments

Transplanted pig kidney works in US man's body for record 271 days

https://www.bbc.com/news/articles/c305qn2jeggo
1•vinni2•15m ago•0 comments

Smolts: A pedagogical IDE for a teaching language

https://eighty-twenty.org/2026/09/04/smolts
1•tonyg•16m ago•0 comments

Chinese businesses giving away AI tokens with coffee, credit cards, dumplings

https://restofworld.org/2026/china-ai-tokens-consumer-rewards-credit-cards-telcos-deepseek/
2•thm•16m ago•0 comments

Uber ceases operations in Nigeria, catching drivers and riders by surprise

https://www.washingtonpost.com/world/2026/09/03/uber-stops-operating-nigeria-uganda-surprising-dr...
1•Michelangelo11•16m ago•0 comments

O&O ShutUp10 – The antispy tool for Windows 10 and 11

https://www.oo-software.com/en/shutup10
1•embedding-shape•18m ago•0 comments

Collider: An Experimental Minecraft Server in 5500 lines Clojure

https://github.com/Nozistance/collider
1•tosh•19m ago•0 comments

Nvidia Agrees to Buy AI Platform Hugging Face for $13B

https://www.wsj.com/tech/ai/nvidia-agrees-to-buy-hugging-face-for-13-billion-11929060
1•santiago-pl•23m ago•0 comments

When the Compiler Is a PCB Factory

https://www.kevin.md/my-pcb-has-a-compiler.md/
1•Bluestein•26m ago•0 comments

US diesel prices hit a record high of $5.85 on average

https://apnews.com/article/gas-diesel-prices-us-iran-war-ebd01b9773365ee40550dcfd7d3ebf87
4•geox•32m ago•1 comments

Conserved water shapes the pathogenicity of missense variants in human proteins

https://academic.oup.com/mbe/advance-article/doi/10.1093/molbev/msag217/8776575
2•jkonc•33m ago•2 comments

NPM is experiencing elevated latency

https://github.com/npm/cli/issues/9950
2•mhfs•34m ago•1 comments

Motivating Myself for Exercise by Arbitrarily Withholding Rewards

https://blog.klungo.no/2026/09/04/motivating-myself-for-exercise-by-arbitrarily-withholding-rewards/
1•danielskogly•34m ago•0 comments

Avamorph – Change your avatar without losing anyone

https://ja.sperdeboer.nl/avamorph
1•eRzy•35m ago•0 comments

Show HN: A browser IDE that builds and deploys your project to a live URL

https://cloudeide.com/
1•laxmansubedi•35m ago•0 comments

Benchmarking Qwen3.8 27B quantizations: 4-bit holds up, 1-bit collapses

https://quesma.com/blog/qwen38-27b-quantizations-benchmarked/
2•stared•36m ago•1 comments

DeepSeek to use 160K+ of Huawei's Ascend 950DT chips at a Mongolia data center

https://bloomberg.com/news/articles/2026-09-04/deepseek-plans-big-huawei-ai-chip-order-to-power-n...
3•utiiiD•36m ago•0 comments

Before It's Lost – Rebuilding the Sega Saturn's Dev Environment on a Modern PC

https://www.yabasanshiro.com/blog/2026-08-02_before-it-is-lost
2•robin_reala•37m ago•0 comments

Peerseek – A Federated PeerTube Video Search Engine

https://polykit.rocks/peerseek-federated-peertube-search/
1•ColinWright•39m ago•0 comments

What if Zig and Rust could speak?

https://1matin.com/zig-vs-rust/
1•1matin•41m 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!