frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Integrate Cashfree Payments in less than 7 minutes

https://tech.cashfree.com/building-cashfree-agent-skills-a-task-aware-knowledge-layer-for-ai-codi...
1•shritama_saha•44s ago•0 comments

Gitea Runner 1.0.0 is released

https://blog.gitea.com/release-of-runner-1.0.0/
2•jandeboevrie•1m ago•0 comments

Second Circuit Sidesteps "Server Test" in Embedded Video Copyright

https://natlawreview.com/article/second-circuit-sidesteps-server-test-embedded-video-copyright-ru...
1•petethomas•7m ago•0 comments

Some deaf children are hearing again because of a new gene therapy

https://www.vox.com/future-perfect/487590/gene-therapy-crispr-deafness-food-and-drug-administration
1•yanis_t•8m ago•0 comments

A game-changer for good health? Scientists believe 'we are when we eat'

https://www.theguardian.com/commentisfree/2026/may/05/game-changer-good-health-scientists-we-are-...
1•akbarnama•8m ago•0 comments

Can language models rebuild programs from scratch?

https://programbench.com
2•beau•11m ago•1 comments

American History X was a hit but ego blew my career, says director

https://www.thetimes.com/culture/film/article/tony-kaye-edward-norton-american-history-x-zbwcg7chq
1•petethomas•13m ago•0 comments

The guide to RL environments: building and scaling them in the LLM era

https://huggingface.co/spaces/AdithyaSK/rl-environments-guide
2•babelfish•20m ago•0 comments

Show HN: Cargo-affect – Plan affected Rust workspace tests from a Git diff

https://github.com/lightsofapollo/cargo-affect
1•lightsofapollo•20m ago•0 comments

Pennsylvania sues Character.AI over claims chatbot posed as doctor

https://www.npr.org/2026/05/05/nx-s1-5812861/characterai-chatbot-medical-advice-pennsylvania-lawsuit
2•geox•27m ago•0 comments

Math Behind "AI Will Replace Engineers" Is Embarrassingly Wrong

https://www.youtube.com/watch?v=ItSLny8on5I
2•amcorvi•28m ago•0 comments

ReMarkable Paper Pure with Marker

https://www.aucklanddutyfree.co.nz/remarkable-paper-pure-with-marker.html
1•hboon•29m ago•0 comments

Carbon pollution is making food less nutritious and risking health of billions

https://www.washingtonpost.com/climate-environment/interactive/2026/carbon-pollution-diluting-key...
2•JeanKage•30m ago•0 comments

Apple settles lawsuit admitting Apple Intelligence isn't here yet

https://www.reuters.com/legal/litigation/apple-settles-lawsuit-over-late-siri-ai-features-250-mil...
3•oofbey•34m ago•0 comments

Show HN: I Built a Retro Survival RPG in Vanilla JavaScript

2•jasonkester•35m ago•0 comments

Behavior-Oriented Concurrency for Python

https://microsoft.github.io/bocpy/
3•mpweiher•36m ago•0 comments

Attackers are cashing in on fresh 'CopyFail' Linux flaw

https://www.theregister.com/2026/05/05/cisa_sounds_the_alarm_on/
3•pjmlp•46m ago•0 comments

The Schneider float32 byte order isn't in the spec, and other Modbus surprises

https://gist.github.com/PhilYeh1212/227a35b12236f1f37dfea0405b12be2b
2•PhilYeh75•49m ago•0 comments

Generative UI Browser

https://github.com/manupareekk/generative-ui-browser
2•manupareek•51m ago•0 comments

You built the product. Now test if people want it

https://www.viral.ad/
3•cjdesignstudio•55m ago•0 comments

Knitting Bullshit

https://katedaviesdesigns.com/2026/04/29/knitting-bullshit/
3•ColinEberhardt•56m ago•0 comments

Why LLM APIs Shouldn't Ship UTF-8", "Stop Wasting Bandwidth on LLM Text APIs

https://github.com/wdunn001/codec
3•Zombwaffle•58m ago•1 comments

CLI2API: Turn Your Claude Subscription into an OpenAI-Compatible API

https://github.com/zhusq20/CLI2API
1•zsqzz•58m ago•0 comments

An ode to swapping computer warez in the 80s

https://suno.com/song/79267d82-c558-4981-a7e5-3b0a7939dea9
1•JPolka•59m ago•2 comments

Software Development Job Postings on Indeed in the United States

https://fred.stlouisfed.org/series/IHLIDXUSTPSOFTDEVE
1•stefap2•1h ago•0 comments

Pyramid of the Capitalist System (1911)

https://publicdomainreview.org/collection/pyramid-of-the-capitalist-system/
3•prismatic•1h ago•0 comments

Show HN: App that marks each hour of your day as yours or lost to your phone

https://apps.apple.com/us/app/oh-my-hours/id6760450002
1•yarsanich•1h ago•0 comments

OpenAI favors more flexible datacenter deals

https://www.tomshardware.com/tech-industry/artificial-intelligence/openai-has-effectively-abandon...
1•gmays•1h ago•0 comments

Detection of an atmosphere on a trans-Neptunian object beyond Pluto

https://www.nature.com/articles/s41550-026-02846-1
1•tobr•1h ago•0 comments

Verification Test – Please Ignore

1•zhoykn•1h ago•0 comments
Open in hackernews

Show HN: ReJot – Database replication framework aimed at developers

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