frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Meowdoku – a no-signup daily cat logic puzzle

https://meowdoku.pro/
1•trywork2026•2m ago•0 comments

Reporter gets $850000 in raid suit

https://marionrecord.com/direct/reporter_gets_850_000_in_raid_suit+5747zorn+5265706f7274657220676...
1•rdmuser•7m ago•1 comments

Agentic Proof-Oriented Programming

https://fstar-lang.org/tutorial/book/agentic/agentic.html#agentic-proof-oriented-programming
1•woggy•9m ago•0 comments

AI Hype Is Running into Reality

https://www.nytimes.com/2026/08/12/opinion/ai-bubble-economy-crash.html
1•ripe•12m ago•0 comments

Spherical Trigonometry

https://en.wikipedia.org/wiki/Spherical_trigonometry
1•kamaraju•19m ago•0 comments

Open Source libraries are evolving into reference implementations

https://jacobtomlinson.dev/posts/2026/open-source-libraries-are-evolving-into-reference-implement...
1•iyanuashiri•19m ago•0 comments

We put llms.txt on 83 websites. In 12 weeks OpenAI's crawler read it 7 times

https://www.ezy.ai/research/do-ai-bots-read-llms-txt
1•jamesmackie•22m ago•0 comments

Agentic Code Quality

https://twitter.com/addyosmani/status/2087427868343373919
2•samuel246•29m ago•0 comments

Steam Game Recommender, with a RAG System That Focuses on Explainability First

https://nextsteamgame.com
3•apeczon•30m ago•1 comments

Fideliya Pass

https://www.fideliyapass.com/
2•zakox•32m ago•0 comments

Anthropic in Talks to Buy World Model AI Startup Decart for $6B

https://www.bloomberg.com/news/articles/2026-08-13/anthropic-said-in-talks-to-buy-ai-startup-deca...
6•htrp•33m ago•0 comments

Video game lawyer says all her clients have anti-AI contracts

https://www.gamesradar.com/games/echoing-palworld-dev-video-game-lawyer-says-all-her-clients-have...
2•eatonphil•35m ago•0 comments

Lightweight Haar Wavelet Subband Pruning for LLMs

https://aclanthology.org/2026.findings-acl.798/
1•wslh•36m ago•0 comments

Why your LLM ignores what you asked for

https://github.com/CamjamPNG/skills
2•camjampng•37m ago•0 comments

Apple and AI: Siri the Early Years

https://thechipletter.substack.com/p/apple-and-ai-siri-the-early-years
1•chmaynard•42m ago•0 comments

Shot on iPhone. Now Prove It

https://blog.ppb1701.com/shot-on-iphone-now-prove-it
2•meetpateltech•44m ago•0 comments

When the Denominator Disappears: FDA's Next Evolution Should Be Causal Inference

https://www.realclearhealth.com/articles/2026/08/05/when_the_denominator_disappears_1198625.html
2•tmoertel•45m ago•0 comments

Show HN: Chatlens – Search and browse your ChatGPT and Claude chats offline

https://github.com/david-g-3654/chatlens
1•davai-g•46m ago•0 comments

Is Alibaba going back on their words on qwen3.8 27B? this page is now 404

https://modelscope.cn/models/Qwen/Qwen3.8-27B
1•yakisuragi•47m ago•0 comments

Greatest Concept Albums

https://www.rollingstone.com/music/music-lists/best-concept-albums-1234604040/
2•kaycebasques•50m ago•1 comments

The web's newest weapon against AI scrapers is a font

https://arstechnica.com/ai/2026/08/new-font-turns-ordinary-webpages-into-nonsense-for-ai-scrapers/
2•gpi•53m ago•0 comments

Proofs and Prompts

https://proofsandprompts.com/
1•nill0•56m ago•0 comments

The Machine Is My Session Band, but It Cannot Hear Me

https://expulvisinteractive.com/press/the-machine-is-my-session-band/
1•forgeforward•56m ago•0 comments

Stunning Eclipse turns daylight into darkness across Europe

https://www.bbc.co.uk/news/resources/idt-72837d31-18c9-43be-9863-fbd1bec82c7d
2•andsoitis•58m ago•0 comments

Whoop replacement noop 10.0 released

https://github.com/ryanbr/noop
3•mp3geek•1h ago•1 comments

Show HN: Interspectr – automated interview prep generated from a job posting

https://interspectr.com/
2•ShinApekusay•1h ago•0 comments

ICE plans to equip agents with gloves that can deliver electric shocks

https://www.bbc.com/news/articles/c20d292gdp4o
4•decimalenough•1h ago•1 comments

Show HN: A local RAG desktop app: piFlow

https://github.com/ifoxhz/piflow
1•ifoxhz•1h ago•1 comments

NagaAI – Cheaper AI Aggregator (Like Poe, OpenRouter, etc.)

https://naga.ac
1•peter_d_sherman•1h ago•0 comments

AMD Instinct MI455X Deep Dive: CDNA 5 Marks the Next Era of Instinct

https://www.servethehome.com/amd-instinct-mi455x-deep-dive-cdna-5-marks-the-next-era-of-instinct/
2•pella•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.