frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Why AI Detection Fails for Academic Integrity

https://arxiv.org/abs/2608.11256
1•Anon84•1m ago•0 comments

Agile Design and Implementation of a Systolic Array-Based CNN Accelerator (2024) [pdf]

https://www.ijerm.com/download_data/IJERM1103012.pdf
1•peter_d_sherman•6m ago•0 comments

The computer use verification skill that every agent needs

https://twitter.com/zachlloydtweets/status/2084411777354277027
1•gmays•8m ago•0 comments

Show HN: Self-hosted tunnels: local directory/port, your domain, HTTPS, passkeys

https://github.com/schappim/mygrok
1•schappim•9m ago•0 comments

iCloud+ Hide My Email addresses will remain on icloud.com

https://developer.apple.com/news/?id=1ptvdtcm
16•K7PJP•10m ago•3 comments

Supreme Court Allows Trump Plan to Restrict Mail-In Voting, for Now

https://www.nytimes.com/2026/08/24/us/politics/supreme-court-trump-mail-ballots.html
2•mikhael•10m ago•0 comments

France readies high school phone ban for new term

https://www.lemonde.fr/en/france/article/2026/08/24/france-readies-high-school-phone-ban-from-new...
2•geox•14m ago•0 comments

Life Policies Shouldn't Be Funding the Boss's Trophy Assets

https://www.bloomberg.com/opinion/articles/2026-08-24/life-policies-shouldn-t-be-funding-the-boss...
1•petethomas•14m ago•0 comments

Show HN: My friend built a Gleam server – let's try to take it down

https://kms.andrewpavlov.org/
1•harakternik•15m ago•0 comments

Trump Admin Moves to Impose More Than $100K Fee for H-1B Worker Visas

https://sg.news.yahoo.com/trump-administration-moves-impose-more-131727979.html
3•dsmark•17m ago•1 comments

MetaRoCE: A New RDMA Transport Built for AI-Scale Ethernet

https://engineering.fb.com/2026/08/24/networking-traffic/metaroce-rdma-transport-ai-ethernet/
2•sbulaev•17m ago•0 comments

Moon

https://ciechanow.ski/moon/
3•simonebrunozzi•18m ago•0 comments

AI text watermarking and quality loss

https://blog.keyvan.net/p/ai-text-watermarking-and-quality
1•k1m•18m ago•0 comments

See what your content is worth to AI agents

https://index.parallel.ai/
1•martialg•18m ago•0 comments

Vector search in PostgreSQL: deduplicating speakers with pgvector and HNSW

https://rvier.fr/posts/deduplicating-speakers-with-pgvector-and-hnsw-EN
1•brvier•20m ago•0 comments

What Codex Sends to the Model

https://www.0xkato.xyz/what-codex-actually-sends-to-the-model/
1•gmays•22m ago•0 comments

Introduction to Variable Fonts on the Web

https://web.dev/articles/variable-fonts
2•Topfi•26m ago•0 comments

Show HN: I calculated how much of every Indian price is tax and duty

https://thodasa.com
1•bhaumiktandan•26m ago•0 comments

PostgreSQL WAL as a source of truth on S3

https://neon.com/blog/wal-s3-lakebase-storage-for-the-era-of-agents
2•miladibra•26m ago•0 comments

The Chaos Machine: Prediction markets and the triumph of crypto-anarchy

https://harpers.org/archive/2026/09/the-chaos-machine-finn-brunton-crypto-anarchism/
2•YPGolyadkin•28m ago•0 comments

Elon House

https://www.elon-house.com/
1•nicolasmery•30m ago•1 comments

Ask HN: When you search for jobs do you prefer a generalist or a niche job board

1•rrmdp•30m ago•0 comments

SpaceX Shares Sink on AI Spending Plans

https://www.wsj.com/tech/ai/spacex-says-spending-spree-is-supercharging-ai-revenues-ea750ff3
1•gmays•31m ago•0 comments

Autonomy and Innovation

https://stratechery.com/2026/autonomy-and-innovation/
2•bmulholland•32m ago•0 comments

This Post Was Written by a Human

https://ratio53.com/posts/this-post-was-written-by-a-human/
2•mxschll•34m ago•1 comments

I love my modded new 3ds XL

http://crystalpvp.ru/boze/
1•Preston67•35m ago•0 comments

Text Diffusion – Brendan O'Donoghue, Google DeepMind [video]

https://www.youtube.com/watch?v=r305-aQTaU0
1•simulacra8•35m ago•0 comments

How I Read Books

3•nomilk•37m ago•2 comments

India Country Brief: The Anthropic Economic Index

https://www.anthropic.com/research/india-brief-economic-index
1•malshe•37m ago•0 comments

Kompresly – a free image compresor app

https://play.google.com/store/apps/details?id=com.kompresly.app&hl=en_US
1•granga•40m 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.