frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Blotter, a live map of LAPD radio activity

https://blotter.fm
1•s_e__a___n•9m ago•1 comments

Show HN: Multi Kanban Task Board and MCP Server

https://github.com/dizlexic/moo-tasks
1•dizlexic•10m ago•0 comments

Show HN: AgentSwift – open-source iOS builder agent

https://github.com/hpennington/agentswift
2•hpen•10m ago•0 comments

Apple WWDC 2014 scrapped opening video

https://archive.org/details/apple-scrapped-wwdc-14-video
1•igregoryca•12m ago•0 comments

Why isn't AMD's MI300X competitive?

https://newsletter.semianalysis.com/p/mi300x-vs-h100-vs-h200-benchmark-part-1-training
1•colonCapitalDee•13m ago•0 comments

CertHound – open-source SSL/TLS certificate discovery and auto-renewal agent

https://github.com/deadbolthq/certhound-agent
1•keelw•14m ago•1 comments

Fidenae

https://en.wikipedia.org/wiki/Fidenae
1•pinkmuffinere•17m ago•1 comments

Microsoft TRELLIS.2: An Open-Source, 4B-Parameter, Image-to-3D Model [pdf]

https://arxiv.org/abs/2512.14692
1•thunderbong•20m ago•0 comments

Anthropic's pre-IPO valuation has officially hit $1T

https://xcancel.com/i/status/2048793675606659309
3•simonpure•21m ago•0 comments

Bettertrumpet: The volume mixer Windows never built

https://bettertrumpet.hiii.boo/
2•xammen•25m ago•1 comments

Turkey's underground city of 20k people (2022)

https://www.bbc.com/travel/article/20220810-derinkuyu-turkeys-underground-city-of-20000-people
4•thunderbong•34m ago•0 comments

The moderately easy problem of consciousness

https://www.noahpinion.blog/p/the-moderately-easy-problem-of-consciousness
2•nradclif•38m ago•0 comments

Anthropic's definition of safety is too narrow

https://jonathannen.com/anthropic-safety-too-narrow/
5•jwilliams•47m ago•0 comments

Engineering the Fashion Catalog of Summer 2026

https://rapidkt.com/pages/blog/engineering_the_fashion_catalog_of_summer_2026
3•greenpau•48m ago•1 comments

Show HN: 49Agents – Infinite canvas IDE for AI agents

https://github.com/49Agents/49Agents
4•alpadurza•48m ago•0 comments

The Man Behind AlphaGo Thinks AI Is Taking the Wrong Path

https://www.wired.com/story/david-silver-ai-ineffable-intelligence-reinforcement-learning/
1•fmihaila•49m ago•0 comments

Using native Rails rate-limits in production

https://amzcartshare.com/native-rails-rate-limits
1•hbroadbent•50m ago•0 comments

Agents can't choose between structure and flexibility

https://frontierai.substack.com/p/agents-cant-choose-between-structure
1•gmays•52m ago•0 comments

Ted Nyman – High Performance Git

https://gitperf.com/
2•gnabgib•53m ago•0 comments

FAA to begin collecting user fees for commercial launches

https://spacenews.com/faa-to-begin-collecting-user-fees-for-commercial-launches-and-reentries/
1•polalavik•1h ago•0 comments

Xiaomi MiMo-v2.5-Pro Open-Sourced: 1T Parameter Model

https://huggingface.co/XiaomiMiMo/MiMo-V2.5-Pro
3•gainsurier•1h ago•0 comments

Unreal Struggles with Renaming Stuff (and how to fix it)

https://larstofus.com/2026/04/26/how-unreal-struggles-with-with-renaming-stuff-and-how-to-fix-it/
2•caminanteblanco•1h ago•0 comments

portless – named .localhost URLs for Development

https://portless.sh/
2•bpierre•1h ago•0 comments

Google staff urge chief executive to block US Military AI use

https://www.ft.com/content/9270ce04-558c-44e8-816f-a40219cd5007
6•propagandist•1h ago•0 comments

Generative AI Vegetarianism

https://sboots.ca/2026/03/11/generative-ai-vegetarianism/
18•marvinborner•1h ago•23 comments

Google Staff Urge Pichai to Refuse Classified Military AI Work

https://www.bloomberg.com/news/articles/2026-04-27/google-staff-urge-pichai-to-refuse-classified-...
4•johnshades•1h ago•0 comments

People Using AI to Represent Themselves in Court Are Clogging the System

https://www.404media.co/people-using-ai-to-represent-themselves-in-court-are-clogging-the-system/
6•pavel_lishin•1h ago•0 comments

Professors Disturbed to Find Their Lectures Chopped Up and Turned into AI Slop

https://www.404media.co/asu-atomic-ai-modules-arizona-state-university/
4•pavel_lishin•1h ago•0 comments

AI App Builders vs. Traditional Development: Which Is Right for You?

https://aiappbuild-cb8b4jpw.manus.space/
1•nexus-build•1h ago•0 comments

To my students

http://ozark.hendrix.edu/~yorgey/forest/00FD/index.xml
228•marvinborner•1h ago•109 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!