frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: How do you guys keep your journey diaries?

https://journeydiaries.vercel.app/
1•dutay05•2m ago•0 comments

Drawbridge – Design Editor for Claude Code and Cursor

https://github.com/breschio/drawbridge
1•javatuts•3m ago•0 comments

Spotify deletes 500K Malcolm Todd streams for suspected prediction manipulation

https://mashable.com/tech/spotify-deletes-malcolm-todd-streams-manipulation-prediction-markets
1•gnabgib•4m ago•0 comments

President pardons 9 for Clean Air violations for 'fixing their car'

https://www.msn.com/en-us/news/crime/trump-pardons-9-for-clean-air-violations-for-fixing-their-ca...
2•OutOfHere•7m ago•0 comments

Writing Blogs or News Articles? Free and Fast Word Counter -Accurate and Private

https://fastwordcount.com/
1•rajkverma123•9m ago•0 comments

I Accidentally Started a Small Business Three Weeks Ago

https://extelligence.substack.com/p/i-accidentally-started-a-small-business
1•shpat•15m ago•0 comments

Sea Surface Temperature, Live

https://www.maps.com/earth-in-action/sea-surface-temperature/
1•akashwadhwani35•16m ago•0 comments

Global earthquake detection and warning using Android phones (2025)

https://www.science.org/doi/10.1126/science.ads4779
1•whycome•23m ago•0 comments

America Is More

https://thelisowe.substack.com/p/america-is-more
1•Mockapapella•28m ago•0 comments

Android phones knew Venezuela earthquake was coming

https://www.youtube.com/watch?v=Hi432PXwAZE
1•whycome•28m ago•0 comments

The Preemptive Draw and Preemptive Grip in the Cash-in-Transit Sector

https://gutsgatesguards.wordpress.com/2026/06/23/the-preemptive-draw-and-preemptive-grip-in-the-c...
1•stmw•31m ago•0 comments

In AI-exposed jobs, the youngest workers are losing ground

https://www.randalolson.com/2026/06/22/ai-jobs-hit-youngest-workers/
1•samspenc•37m ago•0 comments

The tool layer for developers and AI agents

https://www.utilix.tech/
1•negiadventures•49m ago•1 comments

Homelab Chronicles: A Dusty Gaming PC and a 2AM Basement Spiral

https://www.droppedasbaby.com/posts/hl1/
1•offbyone42•53m ago•0 comments

University of Oxford Is Older Than the Aztec Empire and Other Facts of History

https://www.smithsonianmag.com/smart-news/university-oxford-older-than-aztec-empire-other-facts-w...
25•thunderbong•54m ago•0 comments

The Log Is the Agent

https://arxiv.org/abs/2605.21997
2•iacguy•54m ago•0 comments

Backon – Python retry (zero deps, circuit breaker, async native)

https://github.com/Llucs/backon
3•Llucs•57m ago•0 comments

Show HN: Local MCP – Claude/ChatGPT read your iMessage, Teams, files on-device

https://www.local-mcp.com/en
2•lanchuske•1h ago•0 comments

Behind the scenes: Seattle Times' World Cup photo team takes the pitch

https://www.seattletimes.com/seattle-news/world-cup-seattle/behind-the-scenes-seattle-times-world...
2•ynac•1h ago•0 comments

Ask HN: Instagram blocked my new account what can I do?

2•coreyp_1•1h ago•3 comments

[STORY] Samsara

https://slatestarcodex.com/2019/11/04/samsara/
3•barry-cotter•1h ago•0 comments

Pg_stat_ch: PostgreSQL Query Telemetry Exporter to ClickHouse

https://github.com/ClickHouse/pg_stat_ch
2•saisrirampur•1h ago•0 comments

Ancient Coins: What About Spartan Coins?

https://coinweek.com/ancient-spartan-coins/
2•thunderbong•1h ago•0 comments

Baby Belt Pro – DIY open-source belt 3D printer

https://www.printcepts.com/babybeltpro
2•kmmbvnr_•1h ago•0 comments

Show HN: Minesweeper.free – Play minesweeper online free

https://minesweeper.free/
2•nadermx•1h ago•0 comments

New DNA technology leads to identification of Revolutionary War soldier

https://www.cbsnews.com/news/revolutionary-war-soldier-identified-john-doe-technology-camden/
2•jnord•1h ago•0 comments

Would You Let A.I. Michael Caine Read You the 'Odyssey'?

https://www.nytimes.com/2026/06/23/books/michael-caine-odyssey-ai.html
3•bookofjoe•1h ago•1 comments

You Feel Exhausted Without Having "Done" Anything Physically

https://facilethings.com/blog/en/decision-fatigue
4•vinhnx•1h ago•0 comments

If you're a button, you have one job

https://unsung.aresluna.org/if-youre-a-button-you-have-one-job/
16•nozzlegear•1h ago•1 comments

A rate-control scroll gesture for mobile reading

https://github.com/somekiwiplease/ThumbStick
2•somekiwiplease•2h 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!