frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Arrayref v0.3.10 and v0.3.11 compromised on crates.io

1•stevefan1999•1m ago•0 comments

Show HN: Ollama served my 40k-context model at 4k, silently

https://github.com/Bigbonus/ollama-context-window-check
1•satoshiakiyama•3m ago•0 comments

Nutrition standards for AI-designed foods across borders

https://www.worldsolve.org/?view=problem&id=5047
1•pep-6067•6m ago•0 comments

"everyone I know is canceling software and rebuilding internally"

https://twitter.com/frantzfries/status/2090114938723344644
1•nreece•9m ago•0 comments

Show HN: Editor UI toolkit for building AI writing workflows

https://imperavi.com/redactor/ai-assistant/
1•lessio•9m ago•0 comments

The Future of Computing: Logic or Biology (2003) [pdf]

https://www.microsoft.com/en-us/research/wp-content/uploads/2016/12/The-Future-of-Computing.pdf
1•nz•13m ago•0 comments

Show HN: Worldarchitect.ai – AI TTRPG GM with rules and campaign sharing

https://worldarchitect.ai/shared/t3hKKtzBKCKlvg5vCnlW_2hxwH3UmzjFq56yi6hQN2Q
1•jleechan2015•15m ago•2 comments

UnlimitedNIM – Proxy that makes Nvidia Nim's 40 RPM feel unlimited

https://github.com/shivnathtathe/UnlimitedNIM
1•shivnathtathe•15m ago•0 comments

Founder of Chinese property giant Evergrande sentenced to life in prison

https://www.bbc.com/news/articles/cd0x9mjjmgjo
4•ZeljkoS•17m ago•0 comments

A proposed browser standard for provider-agnostic AI inference

https://github.com/SamSamskies/inference-provider-api
1•fiatjaf•18m ago•0 comments

Show HN: A Company Ethics Search Engine for 5500 Companies

https://mashinii.com
1•smashini•20m ago•1 comments

Two ways to make Opus 5 concise

https://hjerpbakk.com/blog/2026/08/20/making-opus-5-concise
2•Sankra•22m ago•1 comments

Environment Embodied Intelligence

https://camerongordon0.substack.com/p/environment-embodied-intelligence
1•iciac•23m ago•0 comments

Willow and poplar trees are making air quality in cities worse by releasing VOCs

https://www.nature.com/articles/d41586-026-02586-2
1•giuliomagnifico•24m ago•0 comments

At Beijing AI-themed bar, DeepSeek tokens come with the pints

https://www.reuters.com/world/asia-pacific/beijing-ai-themed-bar-deepseek-tokens-come-with-pints-...
1•earthpyy•27m ago•0 comments

Raycast 2.0 Released

https://www.raycast.com/new
3•jbverschoor•30m ago•0 comments

Oh My OpenCode Slim

https://fabiobiffi.com/2026/oh-my-opencode-slim-free-multi-agent-programming-with-opencode-big-pi...
1•fabiobiffi•31m ago•0 comments

Raycast 2.0 Released

https://www.raycast.com/index
1•jbverschoor•32m ago•1 comments

World Solve: A citable list of 4,094 world problems for startups and researchers

https://www.worldsolve.org/
1•pep-6067•32m ago•0 comments

The ST-412 10MB full height 5.25" HDD

https://www.redhill.net.au/d/1.php
1•walrus01•34m ago•1 comments

Meditation isn't just one thing

https://nimishg.substack.com/p/meditation-isnt-just-one-thing
2•i_dont_know_•35m ago•1 comments

AI Coding Agents Adoption Trends

https://blog.jetbrains.com/research/2026/08/ai-coding-agent-adoption-2026/
1•nreece•39m ago•0 comments

Moderna pins hopes on mRNA 'game-changer' for cancer vaccines

https://www.ft.com/content/cd52173f-5863-4996-93b2-c4adb81ad210
1•TooSmugToFail•40m ago•0 comments

Fungi found on coconut husks can decompose plastic, sunscreen

https://www.hawaii.edu/news/2026/05/11/coconut-fungi-decompose-plastic/
5•thunderbong•45m ago•0 comments

Spotify Soloist, official terminal client for headless and DIY setups

https://developer.spotify.com/blog/2026-08-13-introducing-spotify-soloist
2•mdrzn•46m ago•0 comments

I've built an iOS Lockscreen Calendar inspired by an old jailbreak Cydia tweak

https://apps.apple.com/de/app/lockcal/id6794340782
1•daymir•47m ago•1 comments

Offline RAG on iOS with Spatial Integration

1•CartoType•51m ago•0 comments

How does a USB keyboard work? (2021) [video]

https://www.youtube.com/watch?v=wdgULBpRoXk
1•nesk_•52m ago•0 comments

Show HN: An attempt to do a healthy screentime app for toddlers

https://tadidum.com/
1•animeshjain•52m ago•0 comments

Sensor Watch

https://www.sensorwatch.net/
1•matheusmoreira•53m 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!