frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

AI Makes Better Software

https://www.hmans.dev/blog/ai-makes-better-software
1•czottmann•2s ago•0 comments

Why Your Boss Wants to Make Sure AI Can Read Your Slack Messages

https://www.wsj.com/tech/ai/why-your-boss-wants-to-make-sure-ai-can-read-your-slack-messages-b6c1...
1•cebert•7s ago•0 comments

Cortex – Local context retrieval for AI coding agents

https://github.com/DanielBlomma/cortex
1•dannepanne•1m ago•0 comments

Don't Screw the Crew

https://henryaj.substack.com/p/dont-screw-the-crew
1•devanian•5m ago•0 comments

Contributing to Open-Source in 2026

https://am17an.bearblog.dev/contributing-to-open-source-software-in-2026/
1•am17an•5m ago•0 comments

Show HN: Dotenv-Diff v3.4.0

https://github.com/Chrilleweb/dotenv-diff
1•chrillemn•7m ago•0 comments

Show HN: Mess Arts

https://messarts.org/
2•not_wowinter14•8m ago•0 comments

200B Tokens Later: A Month of Letting AI Agents Decompile MW2

https://momo5502.com/posts/2026-08-17-mw2-decompilation/
1•Gander5739•9m ago•0 comments

NIP-05 maps Nostr public keys to human-readable internet identifiers

https://nostrcompass.org/en/topics/nip-05/
1•Bluestein•11m ago•0 comments

The Prenatal Sex Steroid Theory of Autism – 2026 Jephcott Lecture [video]

https://www.youtube.com/watch?v=Zpd2r6ktO1Y
1•meindnoch•11m ago•0 comments

Trump Threatens to Raise Tariffs on Canadian Automobiles to 50%

https://moztako.me/trump-tariffs-on-canadian-automobiles/
1•Cacara•12m ago•0 comments

Quantum battery upends the rules of charging

https://www.bbc.com/future/article/20260824-this-quantum-battery-charges-faster-the-larger-it-gets
1•reconnecting•13m ago•0 comments

What Is a SQL Database Schema and How Do You Design One?

https://visualeaf.com/blog/what-is-a-sql-database-schema-and-how-do-you-design-one/
2•kyle_mongo•14m ago•0 comments

VirtuProbe Studio

https://virtuprobe.studio/
1•UseWok•14m ago•0 comments

I built a forgetting curve for an agent with one user

https://eris-system.dev/blog/forgetting-curve
1•hagbardCelin3•15m ago•0 comments

CRDT: Tree-Based Indexing (2022)

https://madebyevan.com/algos/crdt-tree-based-indexing/
1•thomasnowhere•17m ago•0 comments

French spies used malware from GitHub to hack EncroChat cryptophone network

https://www.computerweekly.com/news/366649396/Revealed-Cyber-spies-used-malware-from-GitHub-to-ha...
1•rithdmc•18m ago•0 comments

Show HN: Building a C Lexer from Scratch

https://github.com/Iya-lang/Ciyac
2•johnryzon123•18m ago•1 comments

Vigilance – Catch supply chain attacks without the noise or the work

https://vigihq.com/
1•fathermarz•19m ago•1 comments

EmoSend transfers files without receiving them

https://emosend.com/principles
1•entrep•20m ago•0 comments

We open-sourced Myli: a harness for AI design agents

https://github.com/EightPotions/Myli
1•yelboudouri•27m ago•0 comments

Up to 30x More Work per Watt: Nvidia Vera Rubin NVL72

https://blogs.nvidia.com/blog/vera-rubin-nvl72-efficiency-ai-agents/
2•hakkikonu•28m ago•0 comments

Anatomy of an Autonomous Attack: 5 Alarming A.I. Capabilities

https://www.nytimes.com/2026/08/24/science/openai-huggingface-alarming-capabilities.html
1•bookofjoe•29m ago•1 comments

From Natural Language to Executable Action

https://geoffreychen.com/from-natural-language-to-executable-action-the-structural-problem-in-age...
1•ankitg12•30m ago•0 comments

Suno introduces song download limits

https://suno.com/blog/suno-updates-tos
3•agluszak•33m ago•1 comments

The Threats to 'Swiss Made'

https://www.ft.com/content/db7494b8-c590-4a50-8644-211d154a8f7b
2•throwaway_20357•34m ago•2 comments

Why some US restaurants are banning tips

https://www.bbc.com/news/articles/c4g36yze692o
65•rock_artist•37m ago•56 comments

Show HN: SkillPreflight – score AI agent skills before installing them

https://github.com/agent-contracts/skill-preflight
1•807092862•39m ago•0 comments

The Interaction Tax: When Communication Erases Diversity in Multi-Agent Teams

https://arxiv.org/abs/2608.23541
1•sbulaev•40m ago•0 comments

The People Are Still There

https://emsh.cat/en/the-people-are-still-there/
1•embedding-shape•42m ago•1 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.