frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

VSCode Window for Agents

https://code.visualstudio.com/docs/copilot/agents/agents-window
1•ratatougi•27s ago•0 comments

Removing the Modem and GPS from My 2024 RAV4 Hybrid

https://arkadiyt.com/2026/05/13/removing-the-modem-and-gps-from-my-rav4/
1•arkadiyt•43s ago•0 comments

Protein in Homo erectus teeth suggests Denisovans gave us some of their DNA

https://arstechnica.com/science/2026/05/protein-in-homo-erectus-teeth-suggests-denisovans-gave-us...
1•Brajeshwar•1m ago•0 comments

5× faster fast_blur in image-rs

https://apas.tel/blog/optimizing-image-rs-blur
1•art049•2m ago•0 comments

Until you get punched in the face

https://usefulfictions.substack.com/p/until-you-get-punched-in-the-face
1•Ariarule•4m ago•0 comments

Monoids in Public: Useful monoid structures in programming

https://blog.veritates.love/monoids_in_public.html
1•marvinborner•4m ago•0 comments

Diffflow, web monitor built with Rust + Svelte + AI

https://diffflow.com/
1•7rin0•5m ago•0 comments

"Being Poor," Ten Years on (2015)

https://whatever.scalzi.com/2015/09/03/being-poor-ten-years-on/
1•chistev•6m ago•1 comments

The Vibe Coding Hangover

https://checkmarx.com/blog/the-vibe-coding-hangover/
1•speckx•6m ago•0 comments

Four tech waves. Six companies. Here's what I'm building next

https://www.tamccann.com/four-tech-waves-six-companies-heres-what-im-building-next/
1•mahirsaid•6m ago•0 comments

Data readiness for agentic AI in financial services

https://www.technologyreview.com/2026/05/14/1137034/data-readiness-for-agentic-ai-in-financial-se...
1•joozio•7m ago•0 comments

Princeton scraps honor code and will supervise exams for first time in 133 years

https://www.independent.co.uk/news/world/americas/princeton-proctor-exams-ai-b2976111.html
2•madihaa•7m ago•0 comments

Next-gen pumps use film-based technology

https://www.foodprocessing.com.au/content/processing/article/next-gen-pumps-use-film-based-techno...
1•PaulHoule•8m ago•0 comments

Agents Can Reason. They Still Can't Search

https://dipkumar.dev/posts/agents/agent-search-problem/
4•askhn1234_12•9m ago•0 comments

Stop using user passwords for OpenStack automation

https://thobias.org/2026/05/10/openstack_app_credentials.html
1•cavanche•9m ago•0 comments

Steve Jobs Years at NeXT Shaped His Success as Apple CEO

https://spectrum.ieee.org/steve-jobs-next-computer
1•oldnetguy•10m ago•0 comments

US audit regulator weighs deep staff cuts to unit overseeing accounting firms

https://www.ft.com/content/f5c56c66-2896-4ef1-9a6a-49c59e76f23e
1•petethomas•10m ago•0 comments

Solar drone with jumbo jet wingspan broke a flight record–then it crashed

https://arstechnica.com/gadgets/2026/05/solar-drone-with-jumbo-jet-wingspan-broke-a-flight-record...
1•Brajeshwar•11m ago•0 comments

Apple-OpenAI Relationship Frays, Setting Up Possible Legal Fight

https://www.bloomberg.com/news/articles/2026-05-14/openai-apple-partnership-frays-setting-up-poss...
3•helsinkiandrew•11m ago•0 comments

Why Your AI Can Write a Novel but Still Struggles to Count to Fifty LLMHall

https://beeble.com/en/blog/why-your-ai-can-write-a-novel-but-still-struggles-to-count-to-fifty
1•odysseyk•14m ago•0 comments

Bay Area tech giant Cisco to cut jobs after record revenue

https://www.sfgate.com/bayarea/article/cisco-layoffs-bay-area-22257875.php
1•mikhael•14m ago•0 comments

Canada court quashes bid by Alberta separatists for independence referendum

https://www.theguardian.com/world/2026/may/14/alberta-separation-referendum-independence-petition...
1•Geekette•14m ago•0 comments

GitHub Copilot App

https://github.blog/changelog/2026-05-14-github-copilot-app-is-now-available-in-technical-preview/
2•hmokiguess•15m ago•0 comments

Show HN: nichy – a visualizer for Rust type memory layouts

https://niche.rs/
1•iridis•15m ago•0 comments

Silent Jungles

https://suziepetryk.com/blog/jungles.html
1•tancik•15m ago•0 comments

Erlang/OTP 29.0 Release

https://www.erlang.org/news/188
1•birdculture•16m ago•0 comments

Show HN: Sun – a Prolog generator for the 2026 solar eclipse

https://github.com/bergholt/triptych
1•kasperbergholt•16m ago•0 comments

Tic Tac Throne – a 3×3 grid game with checkers-class complexity

https://tic-tac-throw.vercel.app/
1•firesofmay•16m ago•0 comments

Nginx Rift Heap-based Buffer Overflow

https://depthfirst.com/nginx-rift
1•planb•17m ago•0 comments

The Sad Wives of AI

https://www.wired.com/story/meet-the-sad-wives-of-ai/
1•bryanrasmussen•19m ago•0 comments
Open in hackernews

Show HN: ReJot – Database replication framework aimed at developers

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