frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Unweight: We compressed an LLM 22% without sacrificing quality

https://blog.cloudflare.com/unweight-tensor-compression/
2•subset•4m ago•0 comments

Quantum-resistant cryptocurrency node built in Rust with FALCON-512 and RandomX

https://github.com/Kstyle12/qubit-topcoin
1•kstyle12•6m ago•0 comments

Cursor in talks to raise $2B+ at $50B valuation as enterprise growth surges

https://techcrunch.com/2026/04/17/sources-cursor-in-talks-to-raise-2b-at-50b-valuation-as-enterpr...
2•evo_9•13m ago•0 comments

I watch my parents meet a predator that hard work cannot beat

https://substack.com/home/post/p-194559908
1•kyanfeat•14m ago•0 comments

Operation Gladio

https://en.wikipedia.org/wiki/Operation_Gladio
1•Jimmc414•17m ago•0 comments

Friday Squid Blogging: New Giant Squid Video

https://www.schneier.com/blog/archives/2026/04/friday-squid-blogging-new-giant-squid-video-2.html
1•omer_k•22m ago•0 comments

Bodega Cats of New York

https://bodegacatsofnewyork.com
1•zdw•23m ago•0 comments

Objection.ai - The AI Tribunal of Truth

https://objection.ai/
1•kawera•24m ago•0 comments

White House and Anthropic hold meetings over Mythos model

https://www.bbc.com/news/articles/cyv10e1d13po
1•_josh_meyer_•33m ago•1 comments

The Business Plot of 1933

https://en.wikipedia.org/wiki/Business_Plot
3•Jimmc414•36m ago•0 comments

Channel decorrelation: 52.8% reduction across Kodak suite, no ML or codec mods [pdf]

https://github.com/PearsonZero/asymmetric-channel-decorrelation/blob/main/baetzel_2026_kodak_benc...
1•PearsonZero•43m ago•0 comments

The nine-to-five PhD: mere myth or an achievable goal?

https://www.nature.com/articles/d41586-026-00509-9
3•jyunwai•47m ago•0 comments

Effective Conversational AI Book: Detailed Review

https://noroinsight.com/effective-conversational-ai-book-review/
1•teleforce•52m ago•0 comments

Show HN: Small, an x402 powered writing site

https://getsmall.xyz/
2•trezm•59m ago•0 comments

Claude Experiment "PersMEM" Rep5: The Distributional Bias and the Third Instance

1•asixicle•1h ago•0 comments

Ketamine for negative and depressive symptoms in schizophrenia

https://www.frontiersin.org/journals/psychiatry/articles/10.3389/fpsyt.2026.1766485/full
1•PaulHoule•1h ago•0 comments

Human Accelerated Regions

https://en.wikipedia.org/wiki/Human_accelerated_regions
1•rolph•1h ago•0 comments

The rate trap: how one architecture decision kills flexibility

https://github.com/getlago/lago/wiki/The-rate-trap:-how-one-architecture-decision-kills-flexibility
1•danoandco•1h ago•0 comments

H.R.8250 Parents Decide Act – trying to force OS age verification US-wide

https://old.reddit.com/r/pcmasterrace/comments/1so9wm8/hr8250_parents_decide_act_this_is_bad/
4•LorenDB•1h ago•2 comments

Diving into Starlink's User Terminal Firmware

https://blog.quarkslab.com/starlink.html
4•techgq•1h ago•0 comments

New AI-generated videos of Iran war spread across social media

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

Traders place $760M bet on falling oil ahead of Hormuz announcement

https://www.reuters.com/sustainability/boards-policy-regulation/traders-place-760-million-bet-fal...
8•Jimmc414•1h ago•2 comments

Show HN: I made a calculator that works over disjoint sets of intervals

https://victorpoughon.github.io/interval-calculator/
2•fouronnes3•1h ago•1 comments

Casus Belli Engineering

https://marcosmagueta.com/blog/casus-belli-engineering/
5•b-man•1h ago•0 comments

The Bureaucrats Won't Be Toppled: Revolts No Longer Work

https://unherd.com/2025/09/why-the-bureaucrats-wont-be-toppled/
4•barry-cotter•1h ago•1 comments

Infinite Velocity

https://cube-drone.com/posts/2026/infinite_velocity/
2•tapoxi•1h ago•0 comments

Madison Square Garden's Surveillance Machine

https://www.wired.com/story/madison-square-garden-jim-dolan-surveillance-machine/
6•c420•1h ago•4 comments

Why LLMs Aren't Giving You the Result You Expect

https://akitaonrails.com/en/2026/04/15/how-to-talk-to-claude-code-effectively/
3•vinipolicena•1h ago•0 comments

The parking lot that's keeping the lights on

https://www.begiant.ca/stories/places/solar-parking-lots-energy-emissions
3•Teever•1h ago•0 comments

Reflecting on my own strange year at Uber

https://anon-ex-uber.medium.com/reflecting-on-my-own-strange-year-at-uber-e73165422245
17•anon-ex-uber•1h ago•1 comments
Open in hackernews

Decomposing Transactional Systems

https://transactional.blog/blog/2025-decomposing-transactional-systems
132•pongogogo•12mo ago

Comments

karmakaze•12mo 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•12mo 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•12mo 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•12mo 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•12mo 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•12mo 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•12mo 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•12mo ago
Hey Mark, I actually found this post via yours so thanks!