frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

Sudo: Local Privilege Escalation via chroot option

https://www.sudo.ws/security/advisories/chroot_bug/
1•mistercheph•52s ago•0 comments

Traceroute Lies. A Typical Misinterpretation of Output (2017)

https://movingpackets.net/2017/10/06/misinterpreting-traceroute/
1•tanelpoder•2m ago•1 comments

Propagation Networks (2009) [pdf]

https://dspace.mit.edu/bitstream/handle/1721.1/49525/MIT-CSAIL-TR-2009-053.pdf
1•gone35•7m ago•0 comments

Are Young People Having Enough Sex?

https://www.newyorker.com/magazine/2025/06/30/the-case-against-the-sexual-revolution-louise-perry-book-review-the-second-coming-carter-sherman
2•tysone•9m ago•0 comments

RFK Jr. Says AI Will Approve New Drugs at FDA ‘Very, Very Quickly’

https://gizmodo.com/rfk-jr-says-ai-will-approve-new-drugs-at-fda-very-very-quickly-2000622778
1•archagon•11m ago•0 comments

2 days of PHP taught me more about the web than 3 weeks of React

https://twitter.com/_trish_xD/status/1940046685608321370
1•bundie•11m ago•0 comments

NoteGen mobile devices are now available for early access

https://notegen.top
1•461229817•16m ago•0 comments

Trump's Handwritten Message to the Fed: Why Startups Should Pay Attention

https://masatoshinishimura.com/trumps-handwritten-message-to-the-fed-why-startups-should-pay-attention/
1•massanishi•17m ago•0 comments

iOS Activation Flaw Enables Pre-User Device Compromise and Identity Exposure

https://seclists.org/fulldisclosure/2025/Jun/27
2•pabs3•17m ago•0 comments

Kal Is Out at the Sun

https://kaltoons.substack.com/p/kal-is-out-at-the-sun
2•thunderbong•18m ago•0 comments

I tried to make new friends in my 30s

https://www.theguardian.com/lifeandstyle/2025/jul/01/adult-loneliness-making-friends-as-a-grown-up
1•legerdemain•19m ago•0 comments

Apple Direct Wireless Link

https://owlink.org/wiki/
2•gone35•19m ago•0 comments

Pulse Up – no algorithms, anonymously, real-time

https://www.indiehackers.com/post/pulse-up-no-algorithms-anonymously-real-time-drzHRm8UHg8PdbQLOXIC
1•pulseup•22m ago•0 comments

Holograph- Visual Programming with Propagator Networks

https://www.holograph.so/
2•dennishansen•25m ago•0 comments

Expand Your Worldview at Int'l Café

https://www.intl.cafe/
1•japappa•33m ago•0 comments

Apple

https://www.apple.com/
2•behnamoh•34m ago•1 comments

Sell your own data for $10 Dollars

https://momentarily.online/
1•Lovishotherdays•35m ago•1 comments

Radxa Unveils Intel N150 SoM and Carrier Board Supporting Six M.2 or U.2 Slots

https://linuxgizmos.com/radxa-unveils-intel-n150-som-and-carrier-board-with-dual-ethernet-and-support-for-six-m-2-or-u-2-devices/
2•chsum•36m ago•0 comments

The "Michael Angelakos Is Passion Pit" Residencies

https://passionpitmusic.substack.com/p/on-the-michael-angelakos-is-passion
1•JojoFatsani•41m ago•0 comments

Clamp / Median / Range

https://dotat.at/@/2025-07-02-cmp.html
2•Bogdanp•42m ago•0 comments

America's Mobile Security Crisis: It's Time for a Secure, Private Alternative

https://puri.sm/posts/americas-mobile-security-crisis-why-its-time-for-a-secure-private-alternative/
7•jethronethro•51m ago•0 comments

RFK Jr.'s health department calls Nature "junk science," cancels subscriptions

https://arstechnica.com/health/2025/07/rfk-jr-s-health-department-calls-nature-junk-science-cancels-subscriptions/
33•duxup•59m ago•9 comments

The Path to Medical Superintelligence

https://microsoft.ai/new/the-path-to-medical-superintelligence/
2•jonbaer•1h ago•0 comments

State of the Spack community: the Road to Version 1.0 [video]

https://indico.fnal.gov/event/69557/
1•teleforce•1h ago•0 comments

Product-Market Fit Is Retrospective Fiction

https://www.thebrokevc.com/p/product-market-fit-is-retrospective-fiction-7c36
2•joanwestenberg•1h ago•0 comments

People are using AI to 'sit' with them while they trip on psychedelics

https://www.technologyreview.com/2025/07/01/1119513/ai-sit-trip-psychedelics/
3•pseudolus•1h ago•0 comments

The Hamburger Menu Is No Longer a Hamburger Menu

https://www.datagubbe.se/dimburger/
6•zdw•1h ago•0 comments

Does education increase intelligence and does it matter? (2024)

https://theinfinitesimal.substack.com/p/does-education-increase-intelligence
1•johntfella•1h ago•0 comments

Hot acetic acid enables full recycling of carbon fiber composite materials

https://phys.org/news/2025-06-hot-acetic-acid-enables-full.html
4•PaulHoule•1h ago•0 comments

The End of the Arctic? Ocean Could Be Ice Free by 2015

https://www.thedailybeast.com/the-end-of-the-arctic-ocean-could-be-ice-free-by-2015/
2•bilsbie•1h ago•0 comments
Open in hackernews

Decomposing Transactional Systems

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

Comments

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