frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

SumUp down across Europe (again)

https://status.sumup.com/europe/incidents/01KW4PXNYDDPRXZQ3GS5ZQA6CY#updates
1•mittermayr•1m ago•0 comments

Tuta: They are bringing back ChatControl

https://mastodon.social/@Tutanota/116815262001889776
1•nickslaughter02•2m ago•1 comments

AI: The Falsity of Comparison

https://syntheticauth.ai/posts/ai-the-falsity-of-comparison
1•zerolayers•2m ago•0 comments

PixelSmash – Critical FFmpeg Vulnerability Turns Media Files into Weapons

https://jfrog.com/blog/pixelsmash-critical-ffmpeg-vulnerability-turns-media-files-into-weapons/
1•doener•4m ago•0 comments

Writing Down Harmonic Numbers

https://www.johndcook.com/blog/2026/06/26/writing-down-harmonic-numbers/
1•ibobev•9m ago•0 comments

Hart's Theorem

https://www.johndcook.com/blog/2026/06/25/harts-theorem/
1•ibobev•9m ago•0 comments

Incircles and Excircles of Pythagorean Triangles

https://www.johndcook.com/blog/2026/06/25/incircle-excircle/
1•ibobev•9m ago•0 comments

China's CXMT Is Set to Challenge DRAM Incumbents

https://newsletter.semianalysis.com/p/chinas-cxmt-is-set-to-challenge-dram
1•ma2kx•10m ago•0 comments

Primed for Malware: Stop Selling Compromised Android Devices

https://www.eff.org/deeplinks/2026/06/primed-malware-stop-selling-compromised-android-devices
2•leephillips•13m ago•0 comments

FBI: Russian hackers now target Signal backup recovery keys

https://www.bleepingcomputer.com/news/security/fbi-russian-hackers-now-target-signal-backup-recov...
1•Brajeshwar•14m ago•0 comments

Dr. Alan Kay on the meaning of "object-oriented programming"

https://notes.shixiangxi.com/en/docs/appendix/alan-kay-on-oop/
2•sxx0•14m ago•0 comments

Seven LAWS the animal farm revisted

https://www.mureka.ai/song-detail/4rkp25fs4iUJv4ej35LjrF?is_from_share=1
2•silvestromedia•15m ago•0 comments

Keep Your Windows Closed or Open During a Heatwave?

https://www.the-independent.com/life-style/health-and-families/windows-open-shut-closed-heatwave-...
1•dtj1123•15m ago•0 comments

Cybersecurity company 360, "China's version of Mythos" unveils

https://www.techradar.com/pro/security/chinese-cybersecurity-company-360-unveils-chinas-version-o...
1•Alifatisk•15m ago•0 comments

Show HN: I built a keyboard-first window switcher for macOS

https://github.com/gouwsxander/Reef
1•xandergouws•15m ago•0 comments

Show HN: FPGA design acceleration – idiomatic Python to synthesizable Verilog

https://holoso.digital
1•spym_•16m ago•0 comments

Show HN: GemmaTrans – On-device translation for macOS, built with MLX

https://github.com/Rand01ph/gemma-trans
1•Rand01ph•18m ago•0 comments

Impact of Screen Time, Media&Technology Use on Under 2s during first 1001 Days [pdf]

https://static1.squarespace.com/static/68230d36099adb5f88e3536f/t/6a3d5230859005198ef50f68/178240...
1•bookofjoe•19m ago•0 comments

Vessel – Agentless, local-first VPS control plane in Tauri and Rust

https://github.com/shihebamrii/vessel
2•shihebamrii•22m ago•0 comments

Zuckerberg's Increasingly Bizarre War on Whistleblowers

https://pluralistic.net/2026/06/27/zuckerstreisand-2/
7•HotGarbage•25m ago•0 comments

Show HN: Proton a Pure go, no CGO GUI library for building applications

https://protonlib.pages.dev/
2•CzaxTanmay•25m ago•0 comments

Corv: An SSH client for AI agents (and humans)

https://github.com/khalid-src/corv-client
2•khalid_0002•26m ago•1 comments

Show HN: Looking for help finishing up my privacy focused web scrapper

https://github.com/bilbywilby/god_stack
2•EddieMunsterrr•27m ago•0 comments

AI Anxiety Is Fueling Burnout Across Silicon Valley's Tech Workers

https://www.bloomberg.com/news/articles/2026-06-26/ai-anxiety-is-fueling-burnout-across-silicon-v...
4•littlexsparkee•27m ago•1 comments

Completion Rate Is a Vanity Metric

https://www.formaly.io/blog/completion-rate-is-a-vanity-metric
2•Arindam1729•27m ago•0 comments

Logical Physical Clocks and Consistent Snapshots in Globally Distributed DB [pdf]

https://cse.buffalo.edu/tech-reports/2014-04.pdf
2•teleforce•29m ago•0 comments

Show HN: The stock research terminal that remembers

https://finqos.com
2•marmmaz•32m ago•0 comments

Data Privacy while using API tools

3•11shyam11•32m ago•1 comments

Anonymous GitHub account mass-dropping undisclosed 0-days

https://github.com/bikini/exploitarium
7•binyu•33m ago•0 comments

Miglite – raw SQL migrations for Go projects

https://inhere.github.io/en/blog/2026/gookit-miglite-intro/
2•jxia•34m 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!