frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Some thoughts on HTML's proposed previewsrc attribute

https://shkspr.mobi/blog/2026/09/some-thoughts-on-htmls-proposed-previewsrc-attribute/
1•Brajeshwar•22s ago•0 comments

Space-going mirrors could offer daylight on demand

https://www.economist.com/science-and-technology/2026/09/23/space-going-mirrors-could-offer-dayli...
1•Brajeshwar•46s ago•0 comments

What to Ask A.I. Leaders

https://www.nytimes.com/2026/09/24/opinion/congress-ai-sam-altman.html
1•sonabinu•55s ago•0 comments

Learn about Google's Project Suncatcher to put ML infrastructure in space

https://blog.google/innovation-and-ai/models-and-research/google-research/google-project-suncatch...
1•xnx•2m ago•0 comments

WalShadow: Replicating Postgres from Physical WAL

https://thebuild.com/blog/the-shadow-knows/
1•nightshade999•4m ago•0 comments

Bad bot traffic is growing 9 times faster than human web traffic

https://www.fastcompany.com/91611155/bad-bot-traffic-is-growing-9-times-faster-than-human-web-tra...
1•ent101•4m ago•1 comments

Our EU AI Act compliance engine has zero LLM calls, and CI blocks adding any

https://opencomplai.com/blog/no-llm-in-compliance-decisions
2•ythouma•4m ago•0 comments

Show HN: Secure and Private Decentralized Messaging over Git and WebRTC

https://glitr.io/docs/technical/roadmap/
2•Screen8774•5m ago•0 comments

Hard Stop: Out-of-band kernel preemption for rogue AI agents

https://github.com/joseluispino/hardstop
1•joseluispino•5m ago•0 comments

In Defence of the Solitary Practitioner and Self-Initiation

https://forbiddentexts.substack.com/p/in-defence-of-the-solitary-practitioner
1•PaulHoule•5m ago•0 comments

Flock, Axon dodge Senate hearing after invite from Chair Josh Hawley

https://www.cnbc.com/2026/09/23/flock-axon-senate-hearing-josh-hawley.html
1•mooreds•5m ago•0 comments

Apple Charging Guide

https://randsinrepose.com/archives/apple-charging-guide/
1•mooreds•6m ago•0 comments

Show HN: ComfyUI Extension for OpenRouter Models

https://github.com/stefanionescu/comfyui-openrouter
1•dr__stoney•6m ago•1 comments

Meta made a Tamagotchi-like wearable for its Muse AI agent

https://techcrunch.com/2026/09/23/meta-made-a-tamagotchi-like-wearable-for-its-muse-ai-agent/
1•wslh•7m ago•0 comments

Show HN: Kana – A terminal agent where the human stays in the loop

https://github.com/longyijdos/kana
1•longyijdos•7m ago•0 comments

I judged my mum for using AI, until I caught myself doing worse

https://www.0xsid.com/blog/intellectual-fitness
2•ssiddharth•8m ago•0 comments

Bugpocalypse, or reporting bugs in an AI age

https://www.qemu.org/2026/09/23/bugs/
1•stsquad•10m ago•1 comments

Scan for Good: Wiz and DeepMind use AI to help protect critical infrastructure

https://www.wiz.io/blog/scan-for-good-critical-ai-exposures
2•galnagli•10m ago•0 comments

Oracle sent 'force majeure' notice about data center project

https://www.cnbc.com/2026/09/24/oracle-data-center-force-majeure.html
3•cramer4next•11m ago•0 comments

KubeSolo – Ultra-lightweight, single-node Kubernetes from Portainer

https://kubesolo.io/
1•itherseed•11m ago•1 comments

Show HN: I built a Tooling gateway for Claude Code that manages Approvals for me

https://github.com/dommar04/ai-coding-gateway
1•apichap•12m ago•0 comments

Is A.I. Above the Law?

https://www.newyorker.com/magazine/2026/09/28/is-ai-above-the-law
2•pseudolus•13m ago•1 comments

Show HN: Agnetlearn; From first principles to reliable agents

https://agentlearn.dev/
1•init0•13m ago•0 comments

Fire breaks out at Starlink station in Poland, Russians suspected

https://www.pravda.com.ua/eng/news/2026/09/24/8054905/
1•uxhacker•14m ago•0 comments

The Group Chat Where World Leaders Are Racing to Create AI Controls

https://www.wsj.com/tech/ai/the-group-chat-where-world-leaders-are-racing-to-create-ai-controls-8...
1•thm•15m ago•0 comments

Two and a half years without a gallbladder

https://tracydurnell.com/2026/09/16/two-and-a-half-years-without-a-gallbladder/
1•surprisetalk•15m ago•1 comments

Trump's US no longer a reliable ally, warns Belgium in leaked document

https://www.ft.com/content/bec22e6b-1267-4d9f-a192-60763a0797c3
2•doener•16m ago•1 comments

RSI and the Beginning of History

https://www.avidfayaz.com/writings/rsi/rsi-and-the-beginning-of-history
1•Bluestein•16m ago•0 comments

Measure Distant Asteroids with a DIY Rig

https://spectrum.ieee.org/asteroid-shadow
1•sohkamyung•17m ago•0 comments

Show HN: Cbjev – typed decisions about text from one encoder pass

https://github.com/tomek7667/cbjev
1•tomek7667•17m 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!