frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Give Palantir up to $244M through 2028, says internal Defense Department memo

https://www.theregister.com/public-sector/2026/08/11/palantir-could-receive-244m-pentagon-no-bid-...
1•joebuckwilliams•21s ago•0 comments

Electricity Mid-Year Update 2026

https://www.iea.org/reports/electricity-mid-year-update-2026/executive-summary
1•measurablefunc•2m ago•0 comments

Ass Kicking Clause

https://hec.works/blog/ass-kicking-clause/
1•dividedcomet•3m ago•0 comments

Microsoft Plugs Nearly 400 Security Holes

https://krebsonsecurity.com/2026/08/microsoft-plugs-nearly-400-security-holes/
1•DemiGuru•3m ago•0 comments

Soniox Text-to-Speech v2

https://soniox.com/text-to-speech
1•easwee•4m ago•0 comments

How the "censorship-industrial complex" is changing the Internet and US policy

https://www.technologyreview.com/2026/08/11/1141635/how-the-censorship-industrial-complex-is-chan...
1•mdp2021•4m ago•0 comments

Pay a dollar. Your name goes up in moulded plastic

https://the-wall-lime.vercel.app/
1•Fungle•12m ago•0 comments

Ask HN: Anyone else getting unsolicited spam from "ApplyBoost"?

1•LoganDark•15m ago•0 comments

Suzanne: AI tool for designing and manufacturing physical products

https://www.suzanne3d.com/
3•Samanthajeanneb•16m ago•0 comments

We set up our cloud agent environment

https://cursor.com/blog/cloud-agent-environment
1•gmays•18m ago•0 comments

Show HN: Microfeed – open-source agentic CMS on Cloudflare

https://github.com/microfeed/microfeed
1•wenbin•19m ago•0 comments

Great Locomotive Chase

https://en.wikipedia.org/wiki/Great_Locomotive_Chase
2•lifeisstillgood•19m ago•0 comments

Recovery Key storage transition highlights Apple's privacy and obscurity

https://sixcolors.com/post/2026/08/recovery-key-storage-transition-hightlights-apples-privacy-and...
2•CharlesW•21m ago•0 comments

Towards Expert-Level Medical AI for Real-Time Video Consultations

https://arxiv.org/abs/2608.09861
2•tcp_handshaker•23m ago•0 comments

Meta glasses banned from courts in England and Wales

https://www.theguardian.com/technology/2026/aug/11/meta-glasses-banned-from-courts-in-england-and...
3•cdrnsf•24m ago•0 comments

Vibe coded UI CI runner for your agent

https://github.com/hamza221/ActUi
1•hamza22111•25m ago•0 comments

FDA report reveals where Taylor Farms sent its lettuce–and it raises questions

https://arstechnica.com/health/2026/08/less-than-2-5-of-taylor-farms-recalled-lettuce-went-to-tac...
5•tnash•26m ago•1 comments

Asked AI to do a mini math breakthrough. It did a mini breakthrough

https://github.com/learademacher/ai-refines-ai-zeta-bound
4•learademacher•28m ago•1 comments

Track data centers and power projects from the first permit to final completion

https://cleanview.co
1•skadamat•28m ago•0 comments

Spotify says it won't recommend music from 'AI Personas'

https://www.theverge.com/entertainment/977815/spotify-ai-persona-label-recommendations
3•ilamont•28m ago•0 comments

Temporal Shirt Sponsor for a Football Club (Crystal Palace)

https://temporal.io/blog/why-temporal-is-front-of-shirt-sponsor-crystal-palace
1•dzonga•28m ago•0 comments

A log of which repositories the UK Government has deleted

https://github.com/uk-gov-mirror/deleted-repo-report
2•mooreds•28m ago•0 comments

Best Agent Gateways for Healthcare Organizations 2026

https://www.mintmcp.com/blog/agent-gateways-healthcare-organizations
1•baroiall•29m ago•0 comments

Attestable: From Verifiability to Model-Weight Security

https://attestable.com/blog/model-weights-security
2•Caseee•29m ago•0 comments

Show HN: Log-decisions – an append-only decision journal for AI agents

https://github.com/swe-workflow/log-decisions
2•soulmachine•29m ago•0 comments

Emergent Introspective Awareness in Large Language Models

https://arxiv.org/abs/2601.01828
3•doener•31m ago•0 comments

AI Is Solving CTF Challenges in Minutes

https://www.simulationslabs.com/blogs/AI_Is_Solving_CTF_Challenges_in_Minutes
15•therepanic•31m ago•5 comments

Nvidia partners with money managers to create new asset class

https://www.youtube.com/watch?v=40BRC6puc6Y
2•tcp_handshaker•32m ago•0 comments

Default router passwords: the pattern is not the weakness

https://ssx360.com/research/001
2•ssx360•32m ago•0 comments

ChatGPT Cigarettes Trademark Abandoned

https://tmsearch.uspto.gov/search/search-results/97807667
2•CraftianAI•33m 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.