frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Did my old job only exist because of fraud?

https://david.newgas.net/did-my-old-job-only-exist-because-of-fraud/
1•advisedwang•1m ago•0 comments

Jonathan Blow on why LLMs cannot program [video]

https://www.youtube.com/watch?v=DdjUDpU-as0
1•andy99•6m ago•0 comments

The Anatomy of an AI-Native Org

https://ajeygore.in/content/the-anatomy-of-an-ai-native-org
10•kiyanwang•8m ago•0 comments

"My 1992 view of the problems of computer programming in 1992"

https://blog.plover.com/prog/fortran-i.html
1•pavel_lishin•8m ago•0 comments

FDA advisors unanimously vote to approve Moderna's mRNA after agency drama

https://arstechnica.com/health/2026/06/fda-advisors-unanimously-vote-to-approve-modernas-mrna-aft...
3•worik•12m ago•0 comments

Apertus – Open Foundation Model for Sovereign AI

https://apertvs.ai/
7•T-A•12m ago•0 comments

PowerFox Browser

https://powerfox.jazzzny.me/
3•thisislife2•19m ago•0 comments

MsgMaster – an AI that turns your chaotic inbox into a prioritized workflow

https://msgmaster.ca/
2•isaaclaskine•19m ago•0 comments

Building a chill multiplayer gaming website

https://playfrooti.com/
2•hardikvora•19m ago•1 comments

Energy Security, Not Climate Goals, Is Now Driving the Clean Power Boom

https://oilprice.com/Alternative-Energy/Renewable-Energy/Energy-Security-Not-Climate-Goals-Is-Now...
3•rustoo•23m ago•0 comments

Ask HN: Is the hard part of adult friendship the second hangout?

3•thehgz•25m ago•1 comments

NSA chief says Mythos breached 'almost all' classified systems in hours

https://bankwatch.ca/2026/06/21/nsa-chief-says-mythos-breached-almost-all-classified-systems-in-h...
10•devonnull•26m ago•4 comments

Everything Is Logarithms

https://alexkritchevsky.com/2026/05/25/everything-is-logarithms.html
6•E-Reverance•32m ago•0 comments

Securing the Future of AI Agents

https://deepmind.google/blog/securing-the-future-of-ai-agents/
3•gmays•32m ago•0 comments

How Donkey Kong Smashed King Kong (Universal vs. Nintendo)

https://www.gamingalexandria.com/wp/2026/06/how-donkey-kong-smashed-king-kong-universal-v-nintendo/
2•wicket•34m ago•0 comments

Stop wasting tokens and re explaining your project between sessions

https://github.com/raiyanyahya/recall
5•mateenah•37m ago•2 comments

Forward to Hell? Misusing Transparent DNS Forwarders for Amplification Attacks

https://labs.ripe.net/author/mkoch/forward-to-hell-on-misusing-transparent-dns-forwarders-for-amp...
2•zdw•38m ago•0 comments

Compression in ClickHouse

https://clickhouse.com/docs/data-compression/compression-in-clickhouse
2•tosh•38m ago•0 comments

Ozempic Came from a Monster – and It's Not Alone

https://www.sciencealert.com/ozempic-literally-came-from-a-monster-and-its-not-alone
3•thunderbong•40m ago•0 comments

Two Roads Through Two Chinatowns

https://sundaylongread.com/2026/01/23/philadelphia-chinatown-pittsburgh-history/
1•NaOH•40m ago•0 comments

LHA

https://en.wikipedia.org/wiki/LHA_(file_format)
2•tosh•40m ago•0 comments

Show HN: Annotate.js – Turn anywebsite into Figma style reviewboard

https://reviewjs.github.io/annotate/
1•aagosh•42m ago•0 comments

Golomb Coding

https://en.wikipedia.org/wiki/Golomb_coding
2•tosh•43m ago•0 comments

There is minimal downside to switching to open models

https://www.marble.onl/posts/cancel_claude.html
2•amarble•46m ago•0 comments

RestockAlerts: The easiest way to score coveted Hermes handbags

https://restockalerts.com/
1•fqiao•47m ago•0 comments

Development Dependencies Considered Harmful

https://bergie.iki.fi/blog/dependency-hell/
1•bergie•49m ago•0 comments

QueryLoL – open-source League of Legends companion built with Tauri

https://ishtartec.github.io/query-lol-desktop/
1•ixen•51m ago•0 comments

Conduit – Self-hosted Bitcoin Lightning payments for AI agents

https://github.com/Jake1848/conduit
1•conduitbtc•54m ago•0 comments

AuraText – a Windows overlay that brings AI into any text field URL

https://auratxt.com/
1•yashra4j•55m ago•0 comments

Tool to help find a good available domain name

https://domaincomb.com/
2•gw5815•57m 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.