Aydarbek

↗ HN profile [ 61.7 ms ] full profile
Karma
0
Created
()
Submissions
0
  1. Temporal Shrinking (alperenkeles.com)
  2. Flatpak.org Rewrite (blog.jimmac.eu)
  3. Hi HN, Most durability demos are “trust me”: a blog post, a benchmark chart, or a unit test. This is a live sandbox that tries to make durability auditable. Every visitor gets: a dedicated Docker container (no shared…

  4. Hi HN, I’m the author of a recent Show HN about a low-latency durable event log built directly on HTTP. I’m looking for 2–3 design partners to validate real-world needs around durability, correctness, and operational…

  5. I’m a solo technical founder building a curl-first, HTTP-native durable event log (Raft-based). A recent Show HN got ~90 GitHub stars and a few forks, which helped validate the technical wedge. I’m now trying to figure…

  6. Hi HN, I built Ayder — a single-binary, HTTP-native durable event log written in C. The wedge is simple: curl is the client (no JVM, no ZooKeeper, no thick client libs). There’s a 2-minute demo that starts with an…

  7. I’m researching patterns for edge / gateway telemetry where the network is unreliable (remote sites, industrial, fleets, etc.) and you need offline buffering + bounded disk + replay once connectivity returns. Questions…

  8. Hi HN — I built Ayder because Kafka in 2025 feels like starting a car with a hand crank. # That's it. You're streaming. curl -X POST localhost:1109/broker/topics/orders/produce -d '{"item":"widget"}' Single binary. Zero…

  9. Hi HN — I built Ayder, a single-binary durable event log / message bus in C. The idea: what if event streaming was just HTTP? # Produce curl -X POST 'localhost:1109/broker/topics/orders/produce' -d '{"item":"widget"}' #…