frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Why Your Summer Wardrobe Should Include UV Protection, Linen Clothing

https://www.bloomberg.com/news/features/2026-08-14/why-your-summer-wardrobe-should-include-uv-pro...
1•petethomas•6m ago•0 comments

California Energy Storage System Survey

https://www.energy.ca.gov/data-reports/energy-almanac/california-electricity-data/california-ener...
1•toomuchtodo•10m ago•1 comments

Theory of Constraints

https://en.wikipedia.org/wiki/Theory_of_constraints
1•diatone•12m ago•1 comments

Destroying My Homelab with Kubernetes – Linux Society UNSW 2026 [video]

https://www.youtube.com/watch?v=U-xqxMQD2QE
2•l-mdev•12m ago•0 comments

Guiding Ships with Moire Patterns

https://tinkerings.org/2018/03/28/guiding-ships-with-moire-patterns/
1•Eridanus2•15m ago•0 comments

TrueStar – AI moderated expert interviews and multi-agent deep research

https://truestar.tech
1•vineetkia•18m ago•0 comments

CosmicOS: An open source Contact message

https://cosmicos.github.io/
2•paulfitz•20m ago•0 comments

We Can't Control the Bots

https://12gramsofcarbon.com/p/tech-things-we-cant-control-the-bots
2•theahura•26m ago•0 comments

Privacy is an underrated advantage in Slack apps

1•alance•30m ago•1 comments

Dots3-Note Preview

https://huggingface.co/dots-studio/dots3-note-prev
1•handfuloflight•32m ago•0 comments

One Moment – A temporary clipboard that lives only in the browser

https://onemoment.me/
1•diosnelayalag•36m ago•0 comments

Attention Through Arithmetic Intensity

https://changyi.fun/posts/attention-arithmetic-intensity/
2•jxmorris12•38m ago•0 comments

Snap Chart AI

https://www.snap-chart.ai/
2•trendyking•42m ago•0 comments

Privibe - LLM Cli Local+privacy+llama.cpp cache branch + Qwen3.x

https://github.com/alainnothere/privibe/tree/main
1•xlayn•48m ago•1 comments

Parts Pairing Kills Independent Repair (2023)

https://www.ifixit.com/News/69320/how-parts-pairing-kills-independent-repair
2•evolve2k•53m ago•0 comments

Show HN: Mic Drop, a real-time multiplayer karaoke game

https://www.micdrop.gg/
2•johnsillings•55m ago•2 comments

Why Buy It When You Can Print It? A DIY Nation Has a Fix for Broken Doodads

https://www.wsj.com/tech/why-buy-it-when-you-can-print-it-a-diy-nation-has-a-fix-for-broken-dooda...
1•mikhael•58m ago•0 comments

Show HN: I built a native app for coding agents with Rust and GPUI

https://waku.sh
2•0x142857•1h ago•0 comments

Jevons Paradox

https://en.wikipedia.org/wiki/Jevons_paradox
3•elsewhen•1h ago•1 comments

Just shared my experience building a full marketplace with Claude

https://initacademy.oyakoo.store/products/build-it-with-ai
1•zooboole•1h ago•0 comments

The AI Bubble Is on Its Last Legs

https://www.youtube.com/watch?v=szK9LIGvW1o
2•cable2600•1h ago•0 comments

So I scraped MIT's blog website, and it is false advertising

https://liamis.dev/blogs/MitWebscraper/MitWebscraper.html
2•ForgottenMail•1h ago•2 comments

An Idiot's Guide to Winning Elections

https://outlookzen.com/2026/08/15/an-idiots-guide-to-winning-elections/
3•whack•1h ago•0 comments

ChatGPT lost 22 points of web share in a year

https://aicharts.grok.me/c/market-share
17•echohive42•1h ago•32 comments

The complete AI SEO playbook: from zero to 4.6M impressions in 3 months

https://github.com/TraceCohenTech/ai-seo-playbook
2•t_cohen•1h ago•0 comments

Do Your Emojis Make You Look Old?

https://www.nytimes.com/interactive/2026/08/12/upshot/emoji-generations.html
3•momentmaker•1h ago•1 comments

Big Pickle on SWE Atlas – Codebase QnA

https://github.com/PhillipChaffee/big-pickle-swe-atlas
2•phillipchaffee•1h ago•0 comments

Timestamp and WACZ/WARC Script via ArchiveWeb.page

https://gist.github.com/atraining/2f5436d26cc80d66ed5ff1bf23865ddf
2•chelm•1h ago•1 comments

SynthID watermarking and removal methods are a joke

https://medium.com/@vektormemory/synthid-watermarking-and-removal-methods-are-a-joke-6ca5680e51ac
2•vektormemory•1h ago•1 comments

Tea5767-Radio-Tuner

https://github.com/turtushig22-blip/tea5767-radio-tuner
9•turtushig22•1h 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!