frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Case Study: AI Trainer Platform and Job Board [Months 1-6]

https://www.indiehackers.com/post/case-study-ai-trainer-platform-and-job-board-months-1-6-fcb5f25d54
1•interceptor666•2m ago•0 comments

Show HN: Nostalgia – A shareable Windows 98 desktop builder

https://nostalgia-stilloo.zocomputer.io/
1•tsachin•3m ago•0 comments

Stop screeching about immigration, and get smart about it

https://www.noahpinion.blog/p/stop-screeching-about-immigration
1•squirrel•3m ago•0 comments

Show HN: AI Toolbox supports Claude Opus 5

https://www.ai-toolbox.co
1•superduper5551•3m ago•0 comments

Ask HN: Good Data Classification Software?

1•ChrisRun•6m ago•0 comments

New Tariffs Cover 99.4% of U.S. Imports. Your Plan Doesn't

https://medium.com/@alanscottencinas/new-tariffs-cover-99-4-of-u-s-imports-your-plan-doesnt-cb3a7...
1•encinas88•11m ago•0 comments

Code mode can help smaller LLM models

https://instavm.io/blog/how-code-mode-can-help-smaller-llm-models
1•mkagenius•14m ago•0 comments

Show HN: The TERSE state language and protocol

https://github.com/terse-lang/terse
1•infiniteAdmin•15m ago•1 comments

WICG Proposal Draft: Web Smart Card API

https://wicg.github.io/web-smart-card/
1•ubavic•16m ago•0 comments

Geometric Median

https://en.wikipedia.org/wiki/Geometric_median
1•rzk•17m ago•0 comments

SIMD within a bignum in pure Python

https://www.da.vidbuchanan.co.uk/blog/python-swar.html
1•fanf2•18m ago•0 comments

Click to Pray, Click to Leak: The Pope's Official App Exposes 700K+ User Emails

https://bobdahacker.com/blog/click-to-pray
3•OuterVale•22m ago•0 comments

Sharecoin – GPU fork of Bitcoin with a randomness beacon

https://github.com/TVHeroes/Sharecoin
2•TVHeroes•30m ago•0 comments

I'm Running a Programming Contest

https://eieio.games/blog/im-running-the-icfp-programming-contest/
1•signa11•31m ago•0 comments

The interesting part of an Agent Harness is what you add on top

https://www.martinrichards.me/post/whats_inside_the_harness/
1•3uler•32m ago•1 comments

Why a philosopher turned down Anthropic (AI industry asking the wrong questions)

https://www.ft.com/content/bdb3b820-905b-431e-82c0-386535755af1
1•bishopsmother•32m ago•0 comments

Memory Safety's Hardest Problem

https://matklad.github.io/2026/07/20/memory-safety-hardest-problem.html
1•miniBill•35m ago•0 comments

Continuation-Centric Computing with Arca

https://www.usenix.org/conference/osdi26/presentation/srivatsan
1•matt_d•36m ago•0 comments

Vortex – a Bluetooth-first alternative to KDE Connect

https://github.com/zoir-dev/vortex
2•zoyirjon•38m ago•0 comments

Ask HN: Teach Me Something New

1•chistev•38m ago•1 comments

Trump lashes out at 'fake news' jokes about 2028 presidential run, in press gala

https://www.france24.com/en/americas/20260725-trump-lashes-out-at-fake-news-and-jokes-about-2028-...
1•JPLeRouzic•38m ago•0 comments

Attorney General Bonta Secures Deal Halting Warner Bros

https://oag.ca.gov/news/press-releases/attorney-general-bonta-secures-deal-halting-warner-bros-pa...
1•01-_-•39m ago•0 comments

Australia's Next Target in the War on Kids Online: Your VPN

https://www.techdirt.com/2026/07/20/australias-next-target-in-the-war-on-kids-online-your-vpn/
1•01-_-•39m ago•0 comments

Against Slop: An Interview with Meghan O'Gieblyn

https://substack.nybooks.com/p/against-slop-an-interview-with-meghan
1•Michelangelo11•41m ago•0 comments

QBE Build Script for Windows

https://codeberg.org/codemplasi/QBE-Compiler-Backend-for-windows
1•triilman•42m ago•1 comments

A Rubyist in Go Land: Your First Pokémon API Client

https://baweaver.com/writing/2026/07/24/a-rubyist-in-go-land-your-first-pokemon-api-client/
1•thunderbong•43m ago•0 comments

The Last Honest Movie Star [video]

https://www.youtube.com/watch?v=1leVuo5M6w4
2•7777777phil•43m ago•0 comments

Amazon cuts some jobs in its artificial general intelligence unit

https://www.cnbc.com/2026/07/22/amazon-lays-off-some-employees-in-its-agi-unit.html
5•mgh2•45m ago•0 comments

Show HN: TS Compiler Knowledge Graph reducing AI tokens about 90%

https://github.com/samchon/ttsc/tree/master/packages/graph
2•autobe•47m ago•0 comments

Canadian woman who was NATO intern arrested in Belgium on spying charge

https://www.reuters.com/world/china/canadian-woman-who-was-nato-intern-arrested-belgium-spying-ch...
4•doener•47m 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.