frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Please, Don't Screw Up Neuromancer

https://freddiedeboer.substack.com/p/please-dont-screw-up-neuromancer
1•paulpauper•1m ago•0 comments

Debating Housing and More with Steve Hilton

https://www.richardhanania.com/p/debating-housing-and-more-with-steve
1•paulpauper•1m ago•0 comments

I showed an AI an image it couldn't see – then caught it lying about what it saw

https://paulshepherd.com/conversations/session-1.html
1•LifeWithGlee•2m ago•0 comments

Paged Out – Issue #9

https://pagedout.institute/webview.php?issue=9&page=1
2•birdculture•2m ago•0 comments

Claude Opus 5: Model Welfare

https://thezvi.substack.com/p/claude-opus-5-model-welfare
1•paulpauper•2m ago•0 comments

Model Context Protocol Grows Up

https://techstrong.ai/articles/model-context-protocol-grows-up/
1•CrankyBear•3m ago•0 comments

Built Once, Serves Many: How We Rebuilt Experiment Analysis Platform at Roku

https://engineering.roku.com/built-once-serves-many-how-we-rebuilt-experiment-analysis-platform-a...
1•milindnandankar•3m ago•1 comments

Removing Apache Log Noise

https://j11g.com/removing-apache-log-noise
1•speckx•4m ago•0 comments

You Could Have Come Up with Kimi Delta Attention

https://blog.doubleword.ai/you-could-have-come-up-with-kimi-delta-attention
1•AnhTho_FR•4m ago•0 comments

Agentic Permissions Policy Algebra for Taint Confinement in LLM Agents

https://arxiv.org/abs/2607.24625
1•zhinit•5m ago•0 comments

Pay Gruber

https://ninjasandrobots.com/pay-gruber
2•nate•7m ago•0 comments

Mysterious Human Relative Was Bigger Than Previously Thought

https://nautil.us/mysterious-human-relative-was-bigger-than-previously-thought-1283071
1•Brajeshwar•9m ago•0 comments

How Do I Profile eBPF Code?

https://naveensrinivasan.com/posts/2026-07-22-how-do-i-profile-ebpf-code/
5•snaveen•10m ago•0 comments

Show HN: XY – Fast, composable, GPU-accelerated charts, written in Rust

https://github.com/reflex-dev/xy
10•apetuskey•11m ago•1 comments

'It sounds like someone set up a vacuum ': Michigan residents sue AI DC

https://www.tomshardware.com/tech-industry/data-centers/it-sounds-like-someone-set-up-a-vacuum-li...
2•LaSombra•12m ago•0 comments

The making of Don Matrelli's Legacy, a mod for Grand Prix Circuit (part I)

https://marnetto.net/2026/07/18/dml-making-of-1
1•speckx•12m ago•0 comments

Code for Real: Teach kids to program with drag and drop blocks

https://code-for-real.pages.dev/get
1•eappleby•12m ago•2 comments

Efficient code for inverting the (log) gamma function

https://www.johndcook.com/blog/2026/07/28/inverse-factorial-improved/
1•ibobev•14m ago•0 comments

Draft: Complete redesign ( 349) · GNOME / Document Scanner

https://gitlab.gnome.org/GNOME/simple-scan/-/merge_requests/349
1•LaSombra•14m ago•0 comments

A Crosswording Miscellany

https://quuxplusone.github.io/blog/2026/07/28/puzzle-miscellany/
1•ibobev•14m ago•0 comments

The inliner is yielding benefits for ZJIT

https://railsatscale.com/2026-07-28-the-inliner-is-yielding-benefits/
1•ibobev•14m ago•0 comments

Delayed Gratification – Proud to Be 'Last to Breaking News'

https://www.slow-journalism.com/
2•speerer•15m ago•0 comments

Building a long‑term base on the Moon will require extensive planning

https://theconversation.com/building-a-long-term-base-on-the-moon-will-require-extensive-planning...
2•DemiGuru•17m ago•1 comments

Show HN: Is your Odyssey screening cropped? A tool to check your theater format

https://niamey-seven.vercel.app
2•theanswa•17m ago•0 comments

Kimi K3 Architecture Overview and Notes

https://sebastianraschka.com/blog/2026/kimi-k3-architecture-notes.html
2•ModelForge•17m ago•0 comments

Sam Altman – How to Start a Startup [video]

https://www.youtube.com/watch?v=Vv3CEAS_w34
1•HelloUsername•18m ago•0 comments

Show HN: Open-source, Long-horizon cite-able memory for multi-agent systems

https://github.com/Vortx-AI/emem
2•avijeetsingh16•19m ago•0 comments

California cannot keep rewarding utilities after catastrophic wildfires

https://calmatters.org/commentary/2026/07/california-rewarding-utilities-after-wildfires/
2•cdrnsf•19m ago•2 comments

Zig's Incremental Compilation Internals

https://mlugg.co.uk/posts/incremental-compilation-internals/
4•garyhtou•19m ago•0 comments

Does every question mark deserve a Betteridge?

https://dynomight.net/betteridge/
2•surprisetalk•20m 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!