frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Google is quietly laying off staff in its cloud division

https://www.businessinsider.com/google-clouds-quiet-layoffs-hit-cybersecurity-teams-2026-6
1•yogthos•1m ago•0 comments

Meta weighs big equity raising after blockbuster Google deal

https://www.ft.com/content/e6df645d-1709-4a77-b15d-aa43a0209efd
1•JumpCrisscross•2m ago•0 comments

Show HN: What does YC Paxel do with your source code?

https://github.com/codesoda/paxel/tree/main/rootfs/rails
1•codesoda•6m ago•0 comments

Loupe: Revealing iOS Fingerprinting Signals

https://github.com/mysk-research/loupe
1•Hansenq•7m ago•0 comments

Linus Torvalds on AI

https://thenewstack.io/torvalds-ai-programming-productivity/
1•nreece•12m ago•0 comments

Error that we had to ignore

https://pvs-studio.com/en/blog/posts/js/1381/
1•thunderbong•13m ago•0 comments

The Ethical Dilemmas of AI

https://www.ft.com/content/d2c90246-11d7-4169-ac35-988de7fdb2af
1•1vuio0pswjnm7•22m ago•1 comments

AI slop has infiltrated the homes of the elderly

https://old.reddit.com/r/TrueOffMyChest/comments/1ty2veb/ai_slop_has_infiltrated_the_homes_of_the...
1•notRobot•26m ago•0 comments

Amazon Vinyl, a TypeScript streaming engine for HTML5 media

https://amazonmusic.github.io/vinyl/
1•nbilyk•35m ago•0 comments

Pre-Modern Armies for Worldbuilders, Part I: Why They Fight

https://acoup.blog/2026/06/05/collections-pre-modern-armies-for-worldbuilders-part-i-why-they-fight/
4•gostsamo•42m ago•0 comments

Claude-tinderbox: Search your Claude.ai conversation history locally via MCP

https://github.com/luckyrmp/tinderbox-archive
1•songwavepst•43m ago•0 comments

Bitcoin's star fades, as investors flock to lustre of AI and megacap IPOs

https://www.reuters.com/business/finance/bitcoins-star-fades-investors-flock-lustre-ai-megacap-ip...
2•1vuio0pswjnm7•45m ago•0 comments

Central Ohio Becomes Hub for Tech and Manufacturing

https://www.nytimes.com/2026/06/05/business/ohio-tech-manufacturing-hub.html
1•saikatsg•45m ago•0 comments

Language models transmit behavioural traits through hidden signals in data

https://www.nature.com/articles/s41586-026-10319-8
1•bushwart•46m ago•0 comments

Lockdown Mode

https://help.openai.com/en/articles/20001061-lockdown-mode
15•berlianta•47m ago•6 comments

Ubuntu 26.10 to Begin Laying Foundation for Context-Aware Desktop

https://www.phoronix.com/news/Ubuntu-26.10-Desktop-Features
2•dabinat•48m ago•0 comments

Show HN: Nimbril – 12 file tools that never upload (airplane-mode test)

https://nimbril.com
1•yapancha•48m ago•0 comments

Bitcoin cracks $60k, sinking to lowest level since October 2024

https://www.cnbc.com/2026/06/05/bitcoin-dismal-week-price-below-all-time-high-crypto-investors.html
2•1vuio0pswjnm7•51m ago•0 comments

MIT's Dr Fink got Sakharov Prize for defending human rights of scientists in US

https://www.aps.org/funding-recognition/prize/andrei-sakharov
2•osnium123•51m ago•1 comments

Costco sells such cheap gas

https://www.cnn.com/2026/05/31/business/costco-cheap-gas
3•Bender•54m ago•0 comments

Yet another Cisco SD-WAN 0-day under attack, and no patch in sight

https://www.theregister.com/security/2026/06/05/yet-another-cisco-sd-wan-0-day-under-attack-and-n...
2•Bender•55m ago•0 comments

C++: The Programming Language back cover raises questions not answered by front

https://devblogs.microsoft.com/oldnewthing/20260605-01/?p=112391
2•paulmooreparks•59m ago•0 comments

Quest 3 Accessory Turns Brain Activity into VR Avatar Control

https://roadtovr.com/quest-accessory-bci-brain-activity-avatar-control/
2•LorenDB•1h ago•0 comments

I turned a $59 Android phone into a self-healing cloud engine (Axiom SDK)

https://github.com/liberatedai-ui/axiom-sdk-wrapper
1•liberatedai•1h ago•0 comments

Scarcity is driving AI innovation outside Silicon Valley

https://restofworld.org/2026/scarcity-is-driving-ai-innovation-outside-silicon-valley/
3•i7l•1h ago•0 comments

The Fix for AI's Spending Problem Is Not Good for OpenAI and Anthropic [video]

https://www.youtube.com/watch?v=w1yB7ck36JA
1•mgh2•1h ago•0 comments

Starling – Managed-first .NET web browser engine, built from primitives

https://starlingbrowser.com
3•bj-rn•1h ago•0 comments

Show HN: NEP – Ethereum JSON-RPC transform that beats ZSTD by 12%

https://github.com/Louw115/nep-ethereum-compression
1•LBWasserman•1h ago•1 comments

The Future of Film May Just Be Old Movies (2024)

https://www.theringer.com/2024/10/23/movies/repertory-revival-cinema-old-movie-screenings-vidiots...
1•cocacola1•1h ago•0 comments

Thinking more about Netscape Time

https://thehistoryoftheweb.com/thinking-more-about-netscape-time/
1•Brajeshwar•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!