frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Norway's $2T Wealth Fund Has Become an Election Football

https://www.bloomberg.com/news/articles/2025-09-04/norway-election-trump-ally-takes-on-world-s-bi...
1•alephnerd•2m ago•0 comments

Building the Perfect Linux PC with Linus Torvalds

https://youtu.be/mfv0V1SxbNA?si=ASyHL7YiMtdOCVen
4•tiernano•4m ago•0 comments

Hacking on the ReMarkable 2

https://sgt.hootr.club/blog/hacking-on-the-remarkable-2/
1•todsacerdoti•14m ago•0 comments

By my count, Linux has 11% of the desktop market. Here's how I got that number

https://www.zdnet.com/article/why-people-keep-flocking-to-linux-in-2025-and-its-not-just-to-escap...
3•breve•16m ago•0 comments

Subversion beats Perforce in handling large files, and it's not even close

https://www.liamfoot.com/subversion-beats-perforce-in-handling-large-files-and-its-not-even-close
2•prmph•19m ago•1 comments

Kv.js: Advanced in-memory caching for JavaScript

https://www.npmjs.com/package/@heyputer/kv.js
1•ent101•22m ago•0 comments

Reverse Engineering the Next.js Job Interview Malware (Hidden in Next.config.js)

https://dzentota.medium.com/reverse-engineering-the-next-js-job-interview-malware-targeting-lastp...
2•dzentota•22m ago•1 comments

Oxylipins from Soybean Oil Driving Obesity

https://www.jlr.org/article/S0022-2275(25)00195-6/fulltext
1•Noaidi•23m ago•0 comments

Dangerous Streets: Using ML to Prioritize Cyclist Safety

https://joshfonseca.com/blogs/dangerous-streets
2•m-hodges•24m ago•0 comments

$1000 bounty to add a feature to coolify

https://github.com/coollabsio/coolify/issues/7423
3•jimmydin7•24m ago•0 comments

Golden Dome (orbital weapon system)

https://en.wikipedia.org/wiki/Golden_Dome_(missile_defense_system)
2•exomonk•27m ago•0 comments

GhidrAssist and GhidrAssistMCP LLM plugins reached v1.0

2•jtang613•27m ago•0 comments

Training Foundation Models on a Full-Stack AMD Platform

https://arxiv.org/abs/2511.17127
1•ngaut•28m ago•0 comments

Can bigger-is-better 'scaling laws' keep AI improving forever?

https://theconversation.com/can-bigger-is-better-scaling-laws-keep-ai-improving-forever-history-s...
6•devonnull•29m ago•0 comments

I can't tell if this photo is real or AI and that terrifies me

https://twitter.com/immasiddx/status/1992979078220263720
1•bakigul•31m ago•2 comments

AI rendering of Roman war scenes from Trajan's Column

https://trajancolumn.com
1•unix-junkie•31m ago•0 comments

Show HN: Sportfoli – A Simple, Clean Sports Profile Builder for Athletes

https://www.sportfoli.com/
1•ethjdev•32m ago•0 comments

Mystery foot belongs to ancient human relative

https://www.france24.com/en/live-news/20251127-mystery-foot-belongs-to-ancient-human-relative-sci...
1•gmays•34m ago•0 comments

Show HN: Boing #2

https://boing.playcode.io
1•ianberdin•37m ago•1 comments

LLM – Unit Economics

https://robonomics.substack.com/p/llm-unit-economics
1•gmays•39m ago•0 comments

Tell HN: Happy LLM Day

3•christina97•40m ago•4 comments

Horizontal Volume Control in Apple Music – But Why?

https://iamvishnu.com/posts/horizontal-volume-control-apple-music
5•vishnuharidas•40m ago•0 comments

Show HN: Revolut for International Calls at cheap rates

https://callpronto.app
1•daolm•42m ago•0 comments

The Song of the Western Men

https://www.trelawnysarmy.org/ta/tawestmn.html
1•dash2•43m ago•0 comments

Why some memories last a lifetime while others fade fast

https://www.sciencedaily.com/releases/2025/11/251130050712.htm
1•saikatsg•43m ago•0 comments

New 3D scan reveals a hidden network of moai carvers on Easter Island

https://www.sciencedaily.com/releases/2025/11/251130050717.htm
1•saikatsg•44m ago•0 comments

Türkiye's Kızılelma writes history as it proves air-to-air capability

https://www.dailysabah.com/business/defense/turkiyes-kizilelma-writes-history-as-it-proves-air-to...
1•sahin•46m ago•0 comments

Africa's forests are now emitting more CO2 than they absorb

https://www.newscientist.com/article/2506287-africas-forests-are-now-emitting-more-co2-than-they-...
2•measurablefunc•50m ago•0 comments

It's time to lock in and let your winter arc begin

https://www.bbc.com/news/articles/cm2w79447vvo
3•jethronethro•55m ago•0 comments

Show HN: A fun password strength meter I made for my teenage kids and friends

https://passwordcat.top
2•wstaeblein•57m ago•0 comments
Open in hackernews

Show HN: ReJot – Database replication framework aimed at developers

https://github.com/rejot-dev/rejot
9•WilcoKruijer•6mo 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•6mo 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•6mo 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•6mo ago
If the consumers stall, doesn't the WAL have to grow in unbounded fashion? Does it place any backpressure on the writers?
WilcoKruijer•6mo 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.