frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

OpenAI Degrading Their Models, Also for Paid Users

https://old.reddit.com/r/codex/comments/1wkwdfl/the_end_of_the_codex_era_ive_completely_lost/
1•theanonymousone•3m ago•0 comments

Bot-free self-hosted analytics with GoatCounter on NixOS

https://vincent.bernat.ch/en/blog/2026-goatcounter
1•zorrn•3m ago•0 comments

Bull Beats Out HPE for Next-Gen Lumi AI Supercomputer

https://www.nextplatform.com/hpc/2026/09/17/bull-beats-out-hpe-for-next-gen-lumi-ai-supercomputer...
1•rbanffy•3m ago•0 comments

We reviewed package-manager ambiguity in 10 public repos

https://www.zfinia.com/research/crosscheck-field-validation
1•Aussie155•6m ago•0 comments

A folding stepladder from fence timber

https://blog.oxplot.com/a-folding-stepladder-from-fence-timber/
1•oxplot•7m ago•0 comments

You could have built Jev

https://sgnt.ai/p/jev/
1•andsoitis•8m ago•0 comments

What Sun Got Wrong

https://bcantrill.dtrace.org/2026/09/20/what-sun-got-wrong/
2•tosh•9m ago•0 comments

How Notion handles concurrent editing with CRDTs

https://www.notion.com/blog/how-notion-handles-concurrent-editing-with-crdts
2•signa11•13m ago•0 comments

Faraday Learns to Reason

https://medium.com/@vektormemory/vektor-v1-9-4-real-tools-for-desk-chat-faraday-learns-to-reason-...
2•vektormemory•17m ago•0 comments

Far-left party wins Berlin election, pledging to nationalise housing

https://www.reuters.com/world/far-left-party-wins-berlin-election-pledging-nationalise-housing-20...
4•theanonymousone•19m ago•0 comments

AurionMail: E2EE suite (CryptPad and Mail) with user-friendly single-password UX

https://aurionmail.github.io/docs/
1•polo46•23m ago•0 comments

Polars 2.0.0rc2

https://pypi.org/project/polars/2.0.0rc2/
1•vismit2000•25m ago•0 comments

Show HN: I wrote the code and let an LLM review it

https://blog.jaysinh.dev/2026/09/20/i-wrote-the-mcp-server-and-let-an-llm-review-it.html
1•jaysinhp•28m ago•0 comments

Where Motion Is Mistaken for Movement

https://medium.com/@gurvinder372/article-21-where-motion-is-mistaken-for-movement-396f1628874b
1•gps372•30m ago•0 comments

DeltaTensors: Git for model fine-tunes that also saves you storage

1•AaravGaur•30m ago•0 comments

Compsci grads facing recession-like job prospects thanks to AI

https://www.theregister.com/ai-and-ml/2026/09/18/compsci-grads-facing-recession-like-job-prospect...
1•pjmlp•31m ago•0 comments

A Cute Proof That Makes e Natural

https://poshenloh.com/e
2•andsoitis•35m ago•0 comments

Proof That Computers Can't Do Everything (The Halting Problem) [video]

https://www.youtube.com/watch?v=92WHN-pAFCs
2•suopspaces•35m ago•0 comments

Lithography Machines (Proposal)

https://drive.google.com/file/d/1KFCqKrN5tmhv_GLbPZZ1Y44OcP_5UUrG/view?usp=drivesdk
2•Maquinasdelitog•38m ago•0 comments

Turn any Llama-server into a jev system one endpoint

https://github.com/khimaros/verdict
2•khimaros•42m ago•0 comments

GSoC 2026: Port the Enlightenment desktop environment to NetBSD, part 2

https://blog.netbsd.org/tnf/entry/gsoc2026_enlightenment_2
2•jaypatelani•45m ago•0 comments

TXR: An Original, New Programming Language for Convenient Data Munging

https://www.nongnu.org/txr/
2•andsoitis•46m ago•0 comments

Meta's Muse Is Better at Surveilling Than Helping Me

https://www.wired.com/story/metas-muse-is-better-at-surveilling-than-helping-me/
3•sbulaev•48m ago•0 comments

OSS, security and Funding: libjpeg-turbo

4•ternaus•55m ago•2 comments

Grit your teeth and ship it

https://www.seangoedecke.com/grit-your-teeth-and-ship-it/
4•sph•57m ago•1 comments

GoldenEye 007 Native PC Port

https://jkdansereau.github.io/goldeneye-pc-port/
3•shscs911•57m ago•0 comments

Covert Caches: When Is a Cache, a Cache?

https://parallelprogrammer.substack.com/p/covert-caches
2•matt_d•1h ago•0 comments

Mini-AGI – dynamic continual learning model trained from scratch on 8GB VRAM

https://github.com/volotat/mini-AGI/
4•volotat•1h ago•1 comments

A build graph that rolls dice

https://fzakaria.com/2026/09/20/a-build-graph-that-rolls-dice
2•ghuntley•1h ago•0 comments

Hawking by Graham Farmelo review – the dark side of genius

https://www.theguardian.com/books/2026/sep/07/hawking-by-graham-farmelo-review-the-dark-side-of-g...
2•SLHamlet•1h 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.