frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Reverse Engineering Google's TPUs

https://gherkinlabs.com/reverse-engineering-google-tpus
1•goldenarm•21s ago•0 comments

Disclock – Discord timestamp converter with timezone preview

https://disclock.io/
1•louisdc•3m ago•0 comments

Recursive Self-Improvement (RSI)

https://github.com/theseus-labs-rsi/awesome-rsi
1•jonbaer•4m ago•0 comments

This Year I Vibecoded My Taxes

https://capocasa.dev/this-year-i-vibecoded-my-taxes
1•capocasa•5m ago•0 comments

Ask HN: What do you run behind Kafka for log collection and search?

1•whsoul•6m ago•0 comments

Show HN: A web based 4-channel Music Tracker

https://johnoestmannmusic.com/1000-SOS/0007/
1•soundworlds•7m ago•0 comments

Show HN: Build Morocco

https://build-morocco.vercel.app/
1•saadmrb•8m ago•0 comments

When code costs nothing to generate, open source is the only defensible moat

https://joost.blog/open-source-agency/
1•amoriz•9m ago•1 comments

Ultrastorage: Supercharged LocalStorage

https://github.com/yangshun/ultrastorage
1•doppp•9m ago•0 comments

The Last AI Built by Humans: Toward Genuine Recursive Self-Improvement

https://arxiv.org/abs/2609.11873
1•jonbaer•12m ago•0 comments

We are all Product Engineers Now

https://seldo.com/posts/we-are-all-product-engineers-now/
1•max-ch•12m ago•1 comments

GPT-6 Astra solves puzzles

https://quesma.com/blog/gpt-6-astra-solves-puzzles/
1•stared•12m ago•0 comments

How does call center headset noise canceling filter out keyboard sounds?

1•beienchina•13m ago•0 comments

How Good Are Frontier Models at Physics? Expert Re-Grading Reveals Broken

https://arxiv.org/abs/2609.13009
1•sbulaev•14m ago•0 comments

MPs and Lords call for new law to address AI threat to human rights

https://www.bbc.co.uk/news/articles/cwyzvgj70y4o
2•chrisjj•26m ago•0 comments

OpenArch – PyTorch implementations of modern LLM architectures

https://github.com/anuj0456/OpenArch
2•anuj0456•26m ago•2 comments

Tesla owners to get insurance discount if they use self-driving

https://www.afr.com/companies/transport/tesla-owners-to-get-insurance-discount-if-they-use-self-d...
2•Alien1Being•29m ago•1 comments

1.8x faster than GitHub Actions

https://ogirardot.writizzy.blog/p/rickub-1-8-faster-then-github-actions
1•ssaboum•29m ago•1 comments

Would you like to be a helpful idiot to our AI overlords? [video]

https://www.youtube.com/watch?v=CZB7wlYbknM
1•gilfoyle_7•34m ago•0 comments

An open-source diagram skill for designer

https://github.com/cathrynlavery/diagram-design
1•Nina_antalpha•36m ago•0 comments

Is PDF a Problem for AI?

https://pdf4wcag.com/blog-news/is-pdf-a-problem-for-ai
1•JilBill•43m ago•1 comments

Finding All Solutions to LinkedIn-Queens Puzzle

https://wyounas.github.io/model-checking/puzzles/2026/06/06/finding-all-solutions-to-linkedin-que...
1•simplegeek•46m ago•0 comments

SpaceX sues to block release of tax-break records for its Texas Terafab project

https://www.businessinsider.com/spacex-terafab-tax-break-records-ai-transparency-texas-2026-9
6•snikolaev•46m ago•0 comments

Show HN: 1080p is 920px tall – 1k real browser viewports

https://screensize.net/reports/viewport-stats
3•zenpe•46m ago•0 comments

Language Makes Power Feel Like Common Sense

https://linguistically.substack.com/p/antonio-gramsci-how-language-makes
1•akbarnama•47m ago•0 comments

Australian insurer offers discount to self-driving car owners

https://www.smh.com.au/business/consumer-affairs/humans-make-mistakes-insurer-offers-discount-to-...
2•Alien1Being•48m ago•0 comments

Human bottleneck will not let AI replace any jobs

2•jatindavis05•50m ago•0 comments

Open-source project: Use ChatGPT Web models directly in Codex

https://github.com/miuuyy/codex-chatgpt-web
1•Moon_Y•54m ago•0 comments

Confessions of an Unrepentant Slop Snob

https://charity.wtf/p/confessions-of-an-unrepentant-slop
2•BerislavLopac•56m ago•0 comments

Show HN: Descles, response level LLM message control with HITL approval flows

https://www.descles.com/
1•chiatzen•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.