frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: `pbi`, an image aware pbcopy/paste for macOS command line users.

https://github.com/fragmede/pbi
1•fragmede•2m ago•0 comments

Maven Central introduces publishing limits

https://community.sonatype.com/t/maven-central-publishing-limits-what-high-volume-publishers-need...
1•justinblat•3m ago•0 comments

Looking to connect by helping founders find their first users

1•BonanKou•6m ago•0 comments

Someone at NPM needs see this – to stop the madness

https://www.youtube.com/watch?v=QIr58qqRyH8
1•ascended•6m ago•0 comments

Show HN: Protect your Go, Arch and AUR from Malware with a free firewall

https://www.vulnetix.com/features/package-firewall
1•ascended•9m ago•1 comments

I asked an online tracking company for my data and here's what I found (2018)

https://privacyinternational.org/long-read/2433/i-asked-online-tracking-company-all-my-data-and-h...
1•downbad_•10m ago•0 comments

Generative AI Is Having Its Herbalife Moment

https://www.whatwelo.st/p/generative-ai-is-having-its-herbalife
1•watermelon0•13m ago•0 comments

Show HN: Foldkit vs. React, the same pixel art editor implemented in both

https://foldkit.dev/react/foldkit-vs-react-side-by-side
2•devinjameson•17m ago•0 comments

The First Prompt: "Let There Be Light"

https://substack.com/@iancutzu/note/c-278921935
2•iancutzul•17m ago•0 comments

Markdown Comes to Liteparse

https://www.llamaindex.ai/blog/markdown-comes-to-liteparse
2•pierre•18m ago•1 comments

It Is Trivially Easy to Use Reddit to Manipulate AI Search

https://www.404media.co/it-is-trivially-easy-to-use-reddit-to-manipulate-ai-search-research-sugge...
4•cui•24m ago•0 comments

Don't Get Hacked!

https://www.cs.columbia.edu/~smb/homesec/
3•sohkamyung•29m ago•0 comments

Show HN: Validate your idea from Reddit and TikTok

https://draper.chat
3•tomchill•30m ago•0 comments

CVE Daily, RSS Feed Generation Back End

https://github.com/PredestinedPrivacy/cvedaily-rss
3•PredestinedPriv•31m ago•0 comments

"I scratched my own itch" isn't good enough (2025)

https://longform.asmartbear.com/scratched-my-own-itch/
3•ogundipeore•33m ago•0 comments

AI helped diagnose 18 children whose rare diseases had stumped doctors

https://www.nbcnews.com/tech/innovation/ai-boston-childrens-hospital-diagnose-rare-diseases-kids-...
3•mgh2•39m ago•0 comments

Phone Batteries Keep Getting Better. So Why Are We Always Charging?

https://www.cnet.com/tech/mobile/features/phone-battery-life-silicon-carbon-what-next/
3•giuliomagnifico•39m ago•0 comments

Vim Creator Bram Moolenaar's Forgotten Programming Language, Zimbu (2023)

https://thenewstack.io/vim-creator-bram-moolenaars-forgotten-programming-language-zimbu/
5•azhenley•44m ago•0 comments

The Chinese Room

https://plato.stanford.edu/entries/chinese-room/
3•goloco•47m ago•1 comments

DARPA Heavy Life Challenge

https://www.darpa.mil/research/challenges/lift
3•mhb•50m ago•0 comments

Amazon S3 annotations: attach rich, queryable context directly to objects

https://aws.amazon.com/blogs/aws/amazon-s3-annotations-attach-rich-queryable-context-directly-to-...
5•firasd•55m ago•0 comments

White House talks with Anthropic shift to setting AI security rules

https://www.politico.com/news/2026/06/18/white-house-talks-with-anthropic-shift-to-setting-ai-sec...
4•daniban•57m ago•1 comments

Why Global Chaos Can't Stop the World Cup [video]

https://www.youtube.com/watch?v=vn8w80Ms7-w
2•mgh2•57m ago•0 comments

Amazon employees say they're facing termination for backing data center limits

https://www.theverge.com/ai-artificial-intelligence/952180/amazon-seattle-data-center-moratorium-...
3•1vuio0pswjnm7•57m ago•0 comments

AI DevKit – The control plane for AI coding agents

https://ai-devkit.com/
2•hoangnnguyen•58m ago•0 comments

Meetup.com login appears to be exceeding its reCAPTCHA Enterprise quota

2•infl8ed•1h ago•0 comments

Why do politicians want AI to go faster?

https://www.irishtimes.com/technology/big-tech/2026/04/02/why-do-politicians-want-ai-to-go-faster/
2•1vuio0pswjnm7•1h ago•1 comments

Inside the Rage Machine [video]

https://www.bbc.com/video/docs/series/10294077
3•1vuio0pswjnm7•1h ago•1 comments

Show HN: A/B testing LLM silence with one system-prompt toggle

https://twitter.com/RayanPal_/status/2067816563995189631
9•rayanpal_•1h ago•0 comments

Show HN: Sakha – An AI employee – onboarding tool for businesses

https://www.sakha.one
2•ankleshh•1h 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.