frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: agent-asearch – Go CLI, 18 sources, session-based search for AI agents

https://github.com/izzzzzi/agent-asearch
1•izzzzzi•10m ago•0 comments

Space travel under constant acceleration

https://en.wikipedia.org/wiki/Space_travel_under_constant_acceleration
1•aragonite•11m ago•0 comments

Feeding People versus Saving Nature(1996)

https://api.mountainscholar.org/server/api/core/bitstreams/1c38c421-207d-4097-84fe-7f5ae5fbdacf/c...
1•num42•11m ago•0 comments

I design with Claude more than Figma now

https://blog.janestreet.com/i-design-with-claude-code-more-than-figma-now-index/
2•MrBuddyCasino•13m ago•0 comments

The circus freaks of open source

https://drewdevault.com/blog/Circus-freaks-of-FOSS/
2•keyle•21m ago•0 comments

Show HN: TabyAgent – A lighter and easier alternative to OpenClaw/Hermes

https://github.com/gpdir16/tabyAgent
1•df003•26m ago•0 comments

What we heard about Rust's challenges

https://blog.rust-lang.org/2026/03/20/rust-challenges/
1•fagnerbrack•28m ago•0 comments

Trusted Computing Frequently Asked Questions (2003)

https://www.cl.cam.ac.uk/archive/rja14/tcpa-faq-1.0.html
3•userbinator•32m ago•0 comments

Rl.cu: Training LLM RL with Pure CUDA

https://github.com/KJLdefeated/RL.cu
1•KJL0508•32m ago•0 comments

Enforcing the First as in BGP AS_PATHs

https://blog.cloudflare.com/enforce-first-as-bgp/
1•prydt•32m ago•0 comments

IdeasBerg – Every business idea from Greg Isenberg's videos, analyzed

https://ideasberg.com
1•pro_methe5•32m ago•0 comments

ETLs in the Era of AI and Sandboxes

https://zozo123.github.io/agentic-airbyte/
1•lol-lol-lol-2•34m ago•0 comments

Latting Observatory

https://en.wikipedia.org/wiki/Latting_Observatory
1•divbzero•34m ago•0 comments

Async hierarchical memory middleware for LLM agents

https://github.com/HtooTayZa/sawtooth-memory
2•Jackmann_01•35m ago•0 comments

Software developers admit that AI is rotting their brains

https://www.msn.com/en-us/news/technology/software-developers-admit-that-ai-is-rotting-their-brai...
2•galaxyLogic•44m ago•1 comments

Show HN: I built a local motion-event scanner for long camera videos

https://hp60.com/mofind/
1•givebest•47m ago•0 comments

Memories of the Past, Cyberpunk Nostalgia, and AI Slop

https://medium.com/@vektormemory/memories-of-the-past-cyberpunk-nostalgia-and-ai-slop-dff4a61e1435
1•vektormemory•51m ago•1 comments

I Tested The Law of Relative Motion at 80 km/h [video]

https://www.youtube.com/watch?v=jV96uhFWgmA
2•breve•52m ago•0 comments

Europe raised me to fail and here is why

https://twitter.com/georgewritess/status/2062907763353690237
7•ksec•55m ago•1 comments

Ghzinga: GitHub TUI to keep issues and PRs on the side while using agents

https://github.com/dutifuldev/ghzinga
1•hosolmaz•1h ago•0 comments

Unihemispheric Slow-Wave Sleep

https://en.wikipedia.org/wiki/Unihemispheric_slow-wave_sleep
1•thunderbong•1h ago•0 comments

Mobitty – mobile-first web terminal for agents

https://mobitty.dev/
1•weichensw•1h ago•0 comments

Build with Nitro on Vercel

https://vercel.com/kb/nitro
1•flashbrew•1h ago•0 comments

Why Aren't Pure Languages More Common in the Industry?

https://old.reddit.com/r/AskProgramming/comments/1tz10fm/why_arent_pure_languages_more_common_in_...
1•parallelminds•1h ago•0 comments

Narcissism of Small Differences

https://en.wikipedia.org/wiki/Narcissism_of_small_differences
1•gregsadetsky•1h ago•0 comments

Flow type checker being ported to rust

https://github.com/facebook/flow/blob/main/rust_port/rust_port_status.md
1•cod1r•1h ago•0 comments

Show HN: Markdown Editor and Reader for Mac

https://www.kitemarkdown.com/
2•antonynjoro•1h ago•0 comments

Porting Zircon (Fuchsia OS's kernel) C++ code to Rust

https://cs.opensource.google/fuchsia/fuchsia/+/main:zircon/skills/cpp-to-rust-coder/SKILL.md
2•s314•1h ago•1 comments

Declank – Remove AI Watermarks from Images

https://declank.skeptrune.com/
2•skeptrune•1h ago•0 comments

Introducing GAPs: GraphQL Auxiliary Proposals

https://graphql.org/blog/2026-06-01-announcing-gaps/
1•markl42•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!