frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

BlueSCSI Milestones

https://bluescsi.com/milestones
1•rbanffy•1m ago•0 comments

The Library of Ashurbanipal

https://www.historytoday.com/archive/feature/library-ashurbanipal
1•samizdis•2m ago•0 comments

Are You a Human?

https://www.newyorker.com/magazine/2026/08/17/are-you-a-human
1•littlexsparkee•2m ago•0 comments

OpenAI Daybreak Red

https://developers.openai.com/api/docs/models/daybreak-red-latest
1•_pdp_•2m ago•0 comments

Dyna-2: A 1M-Hour Scaling Law for World-Action Models

https://www.dyna.co/dyna-2
1•skylerwiernik•3m ago•0 comments

iMessage Agents

1•anr0•4m ago•0 comments

High-orbit satellites could light the way for travel to the moon

https://news.mit.edu/2026/high-orbit-satellites-could-light-way-for-travel-to-moon-0810
1•gnabgib•4m ago•0 comments

Working on documents with your AI chat

https://revise.io/blog/08-10-2026/working-on-documents-with-your-ai-chat
2•artursapek•5m ago•0 comments

Armenia just opened the region biggest AI factory, because Trump signed licence

https://thenextweb.com/news/firebird-armenia-ai-factory-export-licence-compute-diplomacy
3•rbanffy•7m ago•0 comments

The Beauty of Settled Science

https://www.astralcodexten.com/p/the-beauty-of-settled-science
2•toomuchtodo•7m ago•0 comments

Seas have hit hottest temperature on record for July

https://www.theguardian.com/environment/2026/aug/10/global-seas-hottest-temperature-july-scientists
3•cuoder•8m ago•0 comments

Spy cameras on Navy drones sent data to China

https://www.telegraph.co.uk/news/2026/08/09/spy-cameras-on-navy-drones-secretly-sent-data-to-china/
3•like_any_other•8m ago•1 comments

There are 25% more psychotherapy sessions at 53 minutes than at 52

https://www.trytwofold.com/insights/53-minute-billing-threshold
2•ragswag•9m ago•0 comments

Corals Spin Tiny Vortices to Get Oxygen, but Not If It's Too Hot

https://www.quantamagazine.org/corals-spin-tiny-vortices-to-get-oxygen-but-not-if-its-too-hot-202...
1•rbanffy•10m ago•0 comments

Anthropic just proved AI isn't getting better

https://www.youtube.com/watch?v=xWxFEZICuwU
3•kesor•11m ago•0 comments

Putting frontier cyber models in more trusted hands – OpenAI

https://openai.com/index/putting-frontier-cyber-models-in-more-trusted-hands/
2•speckx•11m ago•0 comments

Slopocop: ESLint for TypeScript Slop

https://github.com/LBognanni/slopocop
1•lorisdev•12m ago•1 comments

Claude Code no longer limits sessions to 200 spawned subagents

https://github.com/anthropics/claude-code/commit/66edf5358349356774812264b75b8ea792f0d0a3
1•bakigul•12m ago•0 comments

Attacker Takes over Zoom AI

https://www.promptarmor.com/resources/attacker-takes-over-zoom-ai
3•hackerBanana•13m ago•0 comments

NYT Report Good News for Flock, but Overlooks Seven Major Problems

https://ipvm.com/reports/nyt-flock
1•jhonovich•13m ago•0 comments

Claude Sonnet 5 introductory pricing made permanent

https://twitter.com/claudeai/status/2086891169217122586
3•bvogelzang•15m ago•2 comments

C64 Demo: The Lab by Elysium (6 June 2026) [video]

https://www.youtube.com/watch?v=9g91vnJ6Bz4
1•austinallegro•15m ago•0 comments

Show HN: Étincel trains Claude's voice for PR reviews and code comments

https://github.com/AIStoryHub/etincel
1•jeeps1911•16m ago•0 comments

Investors Want Quarterly Reports, Unfavorable Results and All

https://www.bloomberg.com/graphics/2026-semiannual-reporting-obscures-bad-results/
2•petethomas•18m ago•0 comments

Tech leaders say AI means less work; staff say they work up to 90 hours a week

https://www.bbc.com/news/articles/cvgx4yd1gl2o
7•billybuckwheat•19m ago•1 comments

Elon Musk and the Infinity Rebuy

https://davekarpf.substack.com/p/elon-musk-and-the-infinite-rebuy
5•highfrequency•19m ago•0 comments

Major Oak: Ancient 'Robin Hood' tree is dead, experts say

https://www.bbc.com/news/articles/clyer9m0jmko
3•speckx•23m ago•0 comments

SpaceX plan for rocket launch site on Louisiana coast sparks backlash

https://www.theguardian.com/us-news/2026/aug/10/spacex-rocket-launch-site-louisiana-backlash
3•jethronethro•23m ago•0 comments

Ask HN: What new tools are you using?

3•jjcm•26m ago•0 comments

Nvidia is pulling Wall Street into the AI buildout

https://thenextweb.com/news/nvidia-500-billion-wall-street-ai-infrastructure-funding-package
5•berkeleyjunk•26m ago•0 comments
Open in hackernews

Show HN: ReJot – Database replication framework aimed at developers

https://github.com/rejot-dev/rejot
9•WilcoKruijer•1y ago
Hi Hacker News! We're Jan & Wilco from ReJot (https://rejot.dev). With ReJot we're building a framework that turns the write-ahead log of your database into an asynchronous communication channel for your services. ReJot enables application developers to define how the database tables they own should be replicated to other databases. Something we wish we had at in our previous job at a large fintech.

There is a gap between building internal (REST) APIs and Kafka (event streaming) to share data between services.

Internal APIs start to break down when you have more than a couple services communicating. Their synchronous nature makes them brittle in a distributed system: failures cascade and latency adds up. Companies operating internal APIs at scale often face challenges like managing implicit schemas and versioning. They also need to write significant amounts of code to implement features like circuit breakers and internal load balancing.

Event streaming addresses these issues by using asynchronous communication, but it also introduces significant drawbacks. Kafka is known for its operational complexity and high cost. Engineers must manage outbox tables, outbox processors, and consumers, which makes the system more difficult to understand and maintain.

ReJot is the middle ground solution that re-uses a database system's write-ahead log as an asynchronous communication channel. The WAL is well-suited to double as an outbox, this has been proven by CDC systems like Debezium. ReJot is a lightweight addition to existing infrastructure, and even re-uses existing (relational) database systems to store messages (temporarily) before sending them to the destination/sink databases.

We're developer focused, as opposed to being infrastructure focused. Much like how developers define the database table schemas they use, we enable developers to say how their data should be published to others in the distributed system. This is done through something we call "Public Schemas", they consist of a schema and a (SQL) query. When an item in the underlying table changes, the query is executed to produce an object conforming to the schema. This data is then forwarded through ReJot, ready to be consumed by a different service using a "Consumer Schema". This is again a simple (SQL) query that contains an INSERT statement. All of this is defined from within the codebase of the application, much like how ORMs or query builders work.

In short, ReJot re-uses your database in two ways: by consuming the WAL, and also by using queries to encapsulate and integrate data. This makes ReJot a good middle-ground between the brittleness of synchronous communication and the complexity of event streaming.

Excited to hear what you think!

Comments

raoulritter•1y ago
I'm thinking that now with all these agent to agent frameworks this could potentially work for that. If you send off one agent you want them to keep up to date and sync / talk to each-other. Could your solution work for something like A2A by google or similar to enhance the synchronization across the different agents doing their tasks and prevent them from landing in a loop or similar.
WilcoKruijer•1y ago
I'm not too familiar with how people store the state of AI agents, but I do think there's some opportunity to use ReJot for this use case. Hooking up an agent to ReJot and giving them access to all available Public Schemas could be an interesting way of letting an agent explore and use the data in a distributed system.
jasonthorsness•1y ago
If the consumers stall, doesn't the WAL have to grow in unbounded fashion? Does it place any backpressure on the writers?
WilcoKruijer•1y ago
You're right. Since we don't want to put too much pressure on the source database, we do save the (transformed) WAL items in an intermediary database (we call this the event store), so the source can clear its WAL.

This does mean the intermediary database can grow in an unbounded fashion. The use case really determines if this is fine or not. Since our focus right now is on (micro)service communication, we think this is fine in most cases, as the throughput usually is not gigantic.

Since the event store is just a Postgres database, it's easy to set up partitions to only retain data for a certain amount of time. On the near-term roadmap we also have back-fill support which will make it easier to work with shorter retention windows.