frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

'Devastating blow': Atlassian lays off 1,600 workers ahead of AI push

https://www.theguardian.com/technology/2026/mar/12/atlassian-layoffs-software-technology-ai-push-...
1•birdculture•2m ago•0 comments

2026 State of SaaS Report

https://seedium.io/offers/saas-market-report-2026/
1•seedium_tech•9m ago•0 comments

Show HN: Outsmart – a 5-round betting game against the computer

https://labs.davidbauer.ch/outsmart/
2•davidbauer•14m ago•0 comments

Pi-Autoresearch

https://github.com/davebcn87/pi-autoresearch
2•tin7in•15m ago•0 comments

Show HN: A small macOS app to send push notifications to the iOS Simulator

https://github.com/gogson/ios-simulator-push-notifier
2•opafan•18m ago•0 comments

Real-time filters for the web using Lucene query syntax

https://firehose.com
2•perks_12•20m ago•0 comments

Vite+ Alpha: Unified Toolchain for the Web (MIT License)

https://voidzero.dev/posts/announcing-vite-plus-alpha
6•cpojer•21m ago•0 comments

Becoming a Forest Civilisation

1•rando77•21m ago•0 comments

Agent Experience: Sentry vs. TrackJS vs. RayGun

https://techstackups.com/comparisons/ax-sentry-vs-trackjs-raygun/
2•ritzaco•21m ago•0 comments

How to use storytelling to fit inline assembly into Rust

https://www.ralfj.de/blog/2026/03/13/inline-asm.html
2•ingve•23m ago•0 comments

Enterprise Digital Budgets Are Shifting Away from SaaS. Here's Where They Go

https://medium.com/@tbelbek/50-of-enterprise-digital-budgets-are-shifting-away-from-saas-heres-wh...
1•rdstrtwlkr•26m ago•0 comments

Substack Is at the Gambling Stage of Desperation

https://speterdavis.substack.com/p/substack-is-at-the-gambling-stage
1•Anon84•26m ago•0 comments

Wiz CEO Assaf Rappaport refused a $23B offer – then sold for $32B

https://techcrunch.com/2026/03/11/google-completes-32b-acquisition-of-wiz/
3•kaizenb•28m ago•1 comments

AI thinks your code is correct, but it can not prove it

https://predictablemachines.com/blog/ai-thinks-your-code-is-correct-but-it-can-not-prove-it/
3•jorgegalindo•29m ago•1 comments

Show HN: Catch Tap Toy

https://memalign.github.io/m/catch/index.html
1•memalign•30m ago•0 comments

Bucketsquatting Is (Finally) Dead

https://onecloudplease.com/blog/bucketsquatting-is-finally-dead
8•boyter•32m ago•0 comments

Utm-Builder – Bulk UTM Link Generator CLI for Marketers

1•mbinatorom•34m ago•0 comments

ManuscriptFormatter – Instant Standard Manuscript Format for Writers

1•mbinatorom•34m ago•0 comments

Curses-exec: interactive xargs for less

https://github.com/dnewcome/curses-exec
1•dnewcome•40m ago•2 comments

Ask Maps and Immersive Navigation: New AI Features in Google Maps

https://blog.google/products-and-platforms/products/maps/ask-maps-immersive-navigation/
1•yread•43m ago•0 comments

100 Jumps

https://100jumps.org/play/
6•pompomsheep•51m ago•1 comments

Black logos are taking over Silicon Valley

https://old.reddit.com/r/dataisbeautiful/comments/1rs2wzq/oc_black_logos_are_taking_over_silicon_...
2•ghghgfdfgh•55m ago•0 comments

A defense official reveals how AI chatbots could be used for targeting decisions

https://www.technologyreview.com/2026/03/12/1134243/defense-official-military-use-ai-chatbots-tar...
2•joozio•56m ago•0 comments

Show HN: CacheLens – Local-first cost tracking proxy for LLM APIs

https://github.com/stephenlthorn/cache-lens
1•stephenlthorn•58m ago•0 comments

Tracking and analysis of a hidden mesh network operating across iOS devices

https://lists.nanog.org/archives/list/nanog@lists.nanog.org/thread/YDTTFIWTVGTLOUNLUXL6VNKWOIEDJ37Q/
3•speckx•1h ago•0 comments

2025 State of Rust Survey Results

https://blog.rust-lang.org/2026/03/02/2025-State-Of-Rust-Survey-results/
2•olalonde•1h ago•0 comments

Lenovo ThinkStation PGX Review: The Nvidia GB10 128GB AI Workstation

https://www.servethehome.com/lenovo-thinkstation-pgx-review-the-nvidia-gb10-128gb-ai-workstation-...
1•teleforce•1h ago•0 comments

We are not alone: Our sun escaped together with stellar 'twins' from galaxy cent

https://phys.org/news/2026-03-sun-stellar-twins-galaxy-center.html
1•bookmtn•1h ago•0 comments

Dennis Ritchie, Ken Thompson And others on the Unix system [video]

https://www.youtube.com/watch?v=tc4ROCJYbm0
1•tzury•1h ago•0 comments

GitHub – REST API version 2026-03-10 is now available

https://github.blog/changelog/2026-03-12-rest-api-version-2026-03-10-is-now-available/
2•stevehipwell•1h ago•0 comments
Open in hackernews

Show HN: ReJot – Database replication framework aimed at developers

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