frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: VT Code – a terminal coding agent with a human-reviewed WebMCP editor

https://vinhnx.github.io/VTCode/
1•vinhnx•2m ago•0 comments

POWBlock is a universal bot/DDoS defense primitive for any server

https://github.com/8Protons/POWBlock
2•TsutomuSenkawa•5m ago•1 comments

Satellite images reveal scale of flood devastation in Nepal villages

https://www.bbc.com/news/articles/cd68vpjv21do
1•blondie9x•6m ago•0 comments

LoRA Primer

https://tinker-docs.thinkingmachines.ai/tinker/lora-primer/
1•tosh•7m ago•0 comments

Tech backlash reaches fever pitch as AI angst collides with social media fears

https://www.cnbc.com/2026/08/29/tech-backlash-ai-data-centers-elections.html
1•1vuio0pswjnm7•12m ago•0 comments

Meta's Newspaper Ad Blitz Ups Pressure on Social Media Rivals

https://www.bloomberg.com/news/articles/2026-08-28/meta-s-newspaper-ad-blitz-ups-pressure-on-soci...
1•1vuio0pswjnm7•14m ago•0 comments

Death, Dying, and the Memorialization of the Dead

https://macleki.org/stories/death-dying-and-the-memorialization-of-the-dead/
1•thunderbong•15m ago•0 comments

Show HN: Pico-Faces – A diffusion transformer image generator on a RP Pico 2 MCU

https://github.com/cpldcpu/pico-faces
4•cpldcpu•16m ago•0 comments

What It Took to Dismantle the Most Powerful Company in the World (NYT)

https://www.nytimes.com/2026/08/28/opinion/ai-power-lobbying-military-britain-east-india-company....
1•scrollop•22m ago•1 comments

Have an Agent Babysit Your Deployments

https://blog.exe.dev/athena-deploys-exe
1•gk1•26m ago•0 comments

Cod Wars

https://en.wikipedia.org/wiki/Cod_Wars
1•tosh•28m ago•0 comments

Show HN: Laser Graffiti

https://laser.consti.de
4•con•29m ago•1 comments

Berlin is being blackmailed by hackers, mayor says

https://www.bbc.co.uk/news/articles/cm2q7gv3l5qo
2•vinni2•32m ago•0 comments

Show HN: Stumpzlib – search book catalogs and drop files into Stump

https://github.com/tuckerwales/stumpzlib
3•tuckerwales•32m ago•0 comments

Skopo – a Chrome new tab limited to three priorities

https://chromewebstore.google.com/detail/skopo/nfhmabcoalbnedaimhcikokeimimejbd
1•tazumi•32m ago•0 comments

Softwares that are not tools

https://harssh.substack.com/p/softwares-that-are-not-tools
2•harhargange•35m ago•0 comments

Mycoria

https://mycoria.org/
1•Velocifyer•38m ago•0 comments

Ask HN: Best way to archive 25 years of emails

1•astatine•38m ago•1 comments

VertiPaq: The in-memory, columnar query engine powering Microsoft analytics

https://www.ssp.sh/brain/vertipaq/
2•zazuke•40m ago•0 comments

Cross-model peer review for coding agents

https://github.com/makedirectory/ModelPeer
1•cromka•42m ago•0 comments

Influencer Solitaire

https://store.steampowered.com/app/4609800/Influencer_Solitaire/
1•doener•43m ago•0 comments

When Fruit Is Scarce, These Monkeys Hunt Animals

https://www.smithsonianmag.com/smart-news/when-fruit-is-scarce-these-monkeys-hunt-animals-the-beh...
1•cisc•43m ago•0 comments

AI Hallucination Cases Database

https://www.damiencharlotin.com/hallucinations/
2•Tomte•50m ago•0 comments

Uber Solved DB Overload: From Static Rate-Limiting to Intelligent Load Mgmt

https://www.uber.com/in/en/blog/from-static-rate-limiting-to-intelligent-load-management/
1•porridgeraisin•51m ago•0 comments

A local bridge for bidirectional collaboration between Claude Code and Codex

https://github.com/raysonmeng/agent-bridge
1•cromka•51m ago•1 comments

I compile one document layout into both PDF pages and editable PowerPoint slides

1•demchaav•53m ago•0 comments

Twitter Viewer Service Discontinued

https://twitterwebviewer.com/en
1•throw0101a•53m ago•3 comments

Black Rock City Census

https://blackrockcitycensus.org/
1•bushwart•55m ago•0 comments

AniTroves Is Back Live

2•anitroves•59m ago•0 comments

My Net Worth Calculator

https://www.mynetworthcalculator.com/?demo=1
1•lankinen•59m 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!