frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

'Huge Breakthrough' in the Math of Imbalance

https://www.quantamagazine.org/huge-breakthrough-in-the-math-of-imbalance-20260821/
1•pseudolus•1m ago•0 comments

Geometric ideas behind construction of complex structure on S^6 [pdf]

https://philip-engel.github.io/S6.pdf
1•ApesAreGreat•1m ago•0 comments

How much harder are discrete bandits?

https://louisabraham.github.io/articles/discrete-bandits
1•Bluestein•1m ago•0 comments

Feedback on Using Unified Builds

https://serge-sans-paille.github.io/pythran-stories/pros-and-cons-of-unified-build.html
1•serge-ss-paille•2m ago•0 comments

EasyContract – Upload any contract, get a risk analysis in seconds

https://easy-contract.app
1•vladimir_semch•2m ago•0 comments

Harvard Business School exploring European branch after Trump's visa threats

https://www.ft.com/content/4fbeebda-e40d-423a-8564-e410fbfb6e9f
1•Alien1Being•3m ago•0 comments

You could own AI.slop if applicant for new top-level domains get their way

https://www.theregister.com/networks/2026/08/27/you-could-own-aislop-if-applicant-for-new-global-...
1•nyku•3m ago•0 comments

Automating WhatsApp/telegram chats or personal chats with complete privacy

1•Shekar77•3m ago•0 comments

Why a room full of strangers can feel more human than anything on a screen

https://emsh.cat/en/the-people-are-still-there/
1•embedding-shape•5m ago•0 comments

Bug Translation Audio has someone screaming on it

https://kagifeedback.org/d/11343-audio-has-someone-screaming-on-it
1•alpineman•5m ago•0 comments

Why Diamond Transistors Are So Hard [video]

https://www.youtube.com/watch?v=NLmd5vL0zmk
1•lawrenceyan•6m ago•0 comments

Show HN: Running Linux GUI Apps on Android via Integrated TigerVNC and AOSP

https://github.com/openfde/openfde/blob/main/docs/Technical-Article01.md
1•aaaa5455555a•6m ago•1 comments

Anthropic Fix Your Auth

https://github.com/anthropics/claude-code/issues/79808
1•afterfiveguy•7m ago•1 comments

Google's anti-nausea Motion Assist dots rolling out on Android

https://arstechnica.com/gadgets/2026/08/google-begins-rolling-out-anti-motion-sickness-feature-on...
2•Bluestein•8m ago•0 comments

The people, the money and the ownership behind China's leading AI companies

https://wirescreen.ai/briefings/china-ai
2•chvid•10m ago•0 comments

My software development workflow is AI now & it feels exhausting and soulless

https://old.reddit.com/r/cscareerquestions/comments/1vi1i7m/my_entire_software_development_workfl...
2•bundie•16m ago•1 comments

Kalshi Partner Puts Parlay Loss Data Behind $40k Paywall

https://www.sportico.com/business/sports-betting/2026/kalshi-parlay-data-research-dune-access-123...
1•Bluestein•17m ago•0 comments

Sharedsky.app

https://sharedsky.app
1•rapttor_agency•17m ago•0 comments

Quantum Computing Failure Now Obvious [video]

https://www.youtube.com/watch?v=DX_oIQ-tA6M
1•mpweiher•18m ago•0 comments

Thinking Machines Lab Co-Founder Barret Zoph Joins Google

https://www.wsj.com/tech/ai/thinking-machines-lab-co-founder-barret-zoph-joins-google-49f594e6
2•tosh•22m ago•0 comments

Dante and the Tuscan Vernacular Gave Birth to the Italian Language

https://www.thecollector.com/dante-tuscan-vernacular-italian-language/
2•theanonymousone•24m ago•0 comments

CUDA Python 1.0: Stable APIs, One Foundation, Full Platform Access

https://developer.nvidia.com/blog/cuda-python-1-0-stable-apis-one-foundation-full-platform-access/
1•elashri•24m ago•0 comments

Ed Zitron on DOAC [video]

https://www.youtube.com/watch?v=Lf5oqGOCRCM
2•dhruv3006•25m ago•0 comments

LangChain-AI/deepagents: agent harness

https://github.com/langchain-ai/deepagents
1•OutOfHere•25m ago•0 comments

Nvidia NVLink Fusion Brings Nvhbm to Next-Generation AI Infrastructure

https://developer.nvidia.com/blog/nvidia-nvlink-fusion-brings-nvhbm-to-next-generation-ai-infrast...
1•elashri•26m ago•0 comments

SoundCloud will let artists sell music directly, without fees

https://dataconomy.com/2026/08/27/soundcloud-will-let-artists-sell-music-directly/
1•giuliomagnifico•26m ago•0 comments

Futurism Is Always Extreme

https://borretti.me/article/futurism-is-always-extreme
2•varjag•31m ago•0 comments

Mind sharing Google Colab pro or a VM?

1•mzubairtahir•31m ago•0 comments

Show HN: A 67-point scorer for engineers considering Canada

https://fswcalculator.com/
1•Sherry9695•31m ago•0 comments

How to Use DuckDB for Local Data Analysis

https://visualeaf.com/blog/how-to-use-duckdb-for-local-data-analysis/
2•kyle_mongo•32m 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!