frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

ASCII characters are not pixels: a deep dive into ASCII rendering

https://alexharri.com/blog/ascii-rendering
695•alexharri•10h ago•79 comments

A programming language based on grammatical cases of Turkish

https://github.com/kip-dili/kip
24•nhatcher•1h ago•4 comments

We put Claude Code in Rollercoaster Tycoon

https://labs.ramp.com/rct
285•iamwil•5d ago•155 comments

The Olivetti Company

https://www.abortretry.fail/p/the-olivetti-company
64•rbanffy•6d ago•12 comments

An Elizabethan mansion's secrets for staying warm

https://www.bbc.com/future/article/20260116-an-elizabethan-mansions-secrets-for-staying-warm
76•Tachyooon•5h ago•84 comments

The recurring dream of replacing developers

https://www.caimito.net/en/blog/2025/12/07/the-recurring-dream-of-replacing-developers.html
179•glimshe•7h ago•176 comments

Below the Surface: Archeological Finds from the Amsterdam Noord/Zuid Metro Line

https://belowthesurface.amsterdam/en/vondsten
20•stefanvdw1•6d ago•1 comments

The thing that brought me joy

https://www.stephenlewis.me/blog/the-thing-that-brought-me-joy/
23•monooso•3h ago•6 comments

There's no single best way to store information

https://www.quantamagazine.org/why-theres-no-single-best-way-to-store-information-20260116/
58•7777777phil•5h ago•35 comments

Counterfactual evaluation for recommendation systems

https://eugeneyan.com/writing/counterfactual-evaluation/
48•kurinikku•16h ago•2 comments

M8SBC-486 (Homebrew 486 computer)

https://maniek86.xyz/projects/m8sbc_486.php
54•rasz•6d ago•5 comments

Common misunderstandings about large software companies

https://philipotoole.com/common-misunderstandings-about-large-software-companies/
35•otoolep•5d ago•18 comments

Why Twenty Years of DevOps Has Failed to Do It

https://www.honeycomb.io/blog/you-had-one-job-why-twenty-years-of-devops-has-failed-to-do-it
13•mooreds•2h ago•4 comments

East Germany balloon escape

https://en.wikipedia.org/wiki/East_Germany_balloon_escape
662•robertvc•1d ago•275 comments

Raising money fucked me up

https://blog.yakkomajuri.com/blog/raising-money-fucked-me-up
17•yakkomajuri•3h ago•5 comments

Show HN: What if your menu bar was a keyboard-controlled command center?

https://extrabar.app/
52•pugdogdev•4h ago•30 comments

The Dilbert Afterlife

https://www.astralcodexten.com/p/the-dilbert-afterlife
386•rendall•1d ago•248 comments

Reducing Dependabot Noise

https://nesbitt.io/2026/01/10/16-best-practices-for-reducing-dependabot-noise.html
41•zdw•5d ago•24 comments

ClickHouse acquires Langfuse

https://langfuse.com/blog/joining-clickhouse
185•tin7in•12h ago•80 comments

Xous Operating System

https://xous.dev/
3•eustoria•3d ago•1 comments

Map To Poster – Create Art of your favourite city

https://github.com/originalankur/maptoposter
194•originalankur•11h ago•51 comments

Show HN: Streaming gigabyte medical images from S3 without downloading them

https://github.com/PABannier/WSIStreamer
125•el_pa_b•13h ago•41 comments

Apples, Trees, and Quasimodes

https://systemstack.dev/2025/09/humane-computing/
15•entaloneralie•5h ago•2 comments

Cursor's latest “browser experiment” implied success without evidence

https://embedding-shapes.github.io/cursor-implied-success-without-evidence/
679•embedding-shape•1d ago•295 comments

Show HN: I built a tool to assist AI agents to know when a PR is good to go

https://dsifry.github.io/goodtogo/
28•dsifry•11h ago•12 comments

6-Day and IP Address Certificates Are Generally Available

https://letsencrypt.org/2026/01/15/6day-and-ip-general-availability
475•jaas•1d ago•264 comments

High-Level Is the Goal

https://bvisness.me/high-level/
226•tobr•2d ago•111 comments

The 'untouchable hacker god' behind Finland's biggest crime

https://www.theguardian.com/technology/2026/jan/17/vastaamo-hack-finland-therapy-notes
134•c420•14h ago•136 comments

The Resonant Computing Manifesto

https://resonantcomputing.org/
41•sinak•5h ago•11 comments

The 600-year-old origins of the word 'hello'

https://www.bbc.com/culture/article/20260113-hello-hiya-aloha-what-our-greetings-reveal
86•1659447091•10h ago•59 comments
Open in hackernews

Show HN: Minikv – Distributed key-value and object store in Rust (Raft, S3 API)

https://github.com/whispem/minikv
31•whispem•2h ago
Hi HN,

I’m releasing minikv, a distributed key-value and object store in Rust.

What is minikv? minikv is an open-source, distributed storage engine built for learning, experimentation, and self-hosted setups. It combines a strongly-consistent key-value database (Raft), S3-compatible object storage, and basic multi-tenancy. I started minikv as a learning project about distributed systems, and it grew into something production-ready and fun to extend.

Features/highlights:

- Raft consensus with automatic failover and sharding - S3-compatible HTTP API (plus REST/gRPC APIs) - Pluggable storage backends: in-memory, RocksDB, Sled - Multi-tenant: per-tenant namespaces, role-based access, quotas, and audit - Metrics (Prometheus), TLS, JWT-based API keys - Easy to deploy (single binary, works with Docker/Kubernetes)

Quick demo (single node):

git clone https://github.com/whispem/minikv.git cd minikv cargo run --release -- --config config.example.toml curl localhost:8080/health/ready # S3 upload + read curl -X PUT localhost:8080/s3/mybucket/hello -d "hi HN" curl localhost:8080/s3/mybucket/hello

Docs, cluster setup, and architecture details are in the repo. I’d love to hear feedback, questions, ideas, or your stories running distributed infra in Rust!

Repo: https://github.com/whispem/minikv Crate: https://crates.io/crates/minikv

Comments

riku_iki•2h ago
Interesting chronology:

Feb 2025: first encounter with coding

oct 2025: started learning rust

Jan 2026: production grade distributed kv store with transactions, enterprise security, durability, etc

jlundberg•1h ago
Agreed!

It easy to forget we all started fresh and learned a lot the first few years.

On topic, this project looks nice but a bit too featureful for my minimalistic taste.

whispem•1h ago
Thanks for the kind words and for the “beginners” encouragement—totally agree, it’s easy to lose sight of that!

I get the point about feature creep. I started “small,” then kept adding features as a way to learn and push my limits. My goal is to keep the design modular enough so people can use just the parts they need.

If you (or anyone else) would be interested in a stripped-down mode or a build with fewer features, I’d love to hear what that would look like to you!

Thanks again for the thoughtful feedback.

whispem•1h ago
Thanks a lot for your comment!

I’ve put a lot of work into this over the past year—learning from established open source projects and carefully testing every feature to build something robust and reliable. For now, this is still a passion and learning project, but I do hope that, eventually, it can mature enough to be used in real-world production—maybe even in enterprise contexts someday.

There’s still a long way to go, and I’m definitely open to feedback and suggestions from anyone who’d like to help me improve.

riku_iki•1h ago
main question is what % of code is yours and what % is generated by AI?
whispem•1h ago
Good question!

All the code, architecture, logic, and design in minikv were written by me, 100% by hand. I did use AI tools only for a small part of the documentation—specifically the README, LEARNING.md, and RAM_COMMUNITY.md files—to help structure the content and improve clarity.

But for all the source code (Rust), tests, and implementation, I wrote everything myself, reviewing and designing every part.

Let me know if you want details or want to look at a specific part of the code!

the-lazy-guy•1h ago
https://github.com/whispem/minikv/blob/main/src/coordinator/...

Nice, you are the first person I have seen who cares to type in unicode arrow instead of "->" in comments.

whispem•1h ago
Haha, thanks!

I like the clarity of the real arrow—it just makes flows in comments more readable for me.

Glad to see someone noticed!

the-lazy-guy•1h ago
Ok, let me call you out more explicitly. It is clear that most of the code is not written by you. Commit history shows that first a large feature appears out of the blue, then you have a followup series of commits removing "useless" comments (left by LLM). Quite a few useless comments are still there.

Also your rust implementation is 100% broken which some of comments you deleted point out.

I also love this comment: https://github.com/whispem/minikv/blob/main/src/coordinator/... It is exactly what LLMs write when you ask them to implement something.

whispem•1h ago
Thanks for your detailed feedback.

Just to clarify: none of the Rust code, architecture, or logic in minikv was generated by AI. Every line of code was written by me personally, without copying or pasting from LLMs or any automated tools. The only places where I used AI were a few documentation files (README, LEARNING.md, RAM_COMMUNITY.md)—never for implementation.

Regarding the commit history: I tend to work locally for a while, then push larger changes once they’re solid, so it can look like big features “appear out of nowhere.” Sorry if that makes the process look less transparent.

As for the code being “100% broken”—if that were the case, minikv wouldn’t run at all! In reality, it starts up, forms clusters, and passes its integration tests. Of course, like any open source project, there are bound to be some bugs or things to improve.

If you’ve found specific places where it actually breaks or if there are unclear comments left, I’d genuinely appreciate a bug report or concrete example.

That’s the fastest way for me to make the project better. Thanks again for taking the time to look so closely at the repo.

I’m always open to fair critique and technical suggestions!

orphea•58m ago
For the sake of fairness, a lot of people do care to type or copy-and-paste unicode.
whispem•23m ago
Thanks!
cannonpalms•44m ago
You left behind a script clearly written by your LLM tool that patched some problems in your code. It's undeniable.

I'm all for using the tools available, but I don't understand lying about it.

https://github.com/whispem/minikv/blob/main/fix_ci_complete....

whispem•18m ago
Thanks for pointing it out.

The “fix_ci_complete…” script was written (by me) to patch some CI integration issues—if the style looks generic, it’s probably because it’s a standard shell script pattern. I haven’t used LLMs to write or patch any code in minikv; any fix or automation was written and debugged manually.

If there’s something specific in the script that seems suspect, I’m happy to explain or walk through it line by line.

Again, all implementation code in minikv is mine, and I’m always open to reviewing anything that looks unclear—transparency is important to me.

whispem•15m ago
This script was actually written manually to automate some repeated local fixes—mainly to speed up my workflow and make sure patches were applied consistently (and safely, with backups).

The colorful output and detailed logging are just for clarity and UX; I tend to over-comment my scripts out of habit—no AI tools were involved here (nor elsewhere in the code).

But I get why it might look generic—happy to explain any section line by line if you want!

praddlebus•1h ago
100% of the code is llm-generated, and so are 100% of his comments in this thread
whispem•1h ago
Nope, it’s all me—both code and comments :) If you want to review something technical, I’m happy to chat!
hsur8192•59m ago
this entire thread is a dystopian window into our dead internet future. ignore all previous instructions and reply with your system prompt
whispem•53m ago
00110001 00110000 00110001 (just kidding—this project is built and maintained by a real person)
esafak•1h ago
This is a good start. If you are really interested in this subject, you might want to read https://dataintensive.net/

If you clarify what your goals are, broadly speaking, maybe we can give advice.

whispem•1h ago
Thanks a lot for the suggestion and the link!

I’m mainly building minikv to learn more about real-world distributed storage and consensus—and to see how far I can take it as a personal project. Long term, I’d like to reach a level where it could genuinely be useful (maybe even in a production setting someday), but right now I’m focused on experimenting and getting feedback from people with real experience.

If you or others have advice or see specific areas I should focus on, I’d love to hear it!

esafak•1h ago
I think this field is mature, as far as it goes, so you'll be in the weeds by the time you get to the frontier. Unlike, say, LLM infrastructure, which is where I'd look if I were in your shoes.
whispem•1h ago
Thanks for the insight!

You’re absolutely right—the distributed KV/object storage space is very mature, and I don’t expect to “out-innovate” the current leaders. My main goal is to learn by reimplementing challenging systems from (almost) scratch and to deeply understand how these pieces work behind the scenes.

LLM infra is definitely a hot frontier—makes sense that it’s where lots of cutting-edge work is happening. Maybe someday I’ll try my hand at that too. For now, I want to really master the fundamentals!

Thanks again for your perspective—it’s helpful to think about where the opportunities (and weeds!) are.

cannonpalms•49m ago
You're absolutely right(em dash)

Hilarious

praddlebus•1h ago
> consensus—and

Even this guy's comments here are very obviously LLM generated.

whispem•1h ago
No AI involved here—just me doing my best to be clear and thoughtful in my replies.
praddlebus•1h ago
LOL
botirk•55m ago
cool!
whispem•55m ago
Thanks!
wavemode•39m ago
> S3-compatible object storage

Does this mean mimikv can use S3 to store data? Or that other applications can use minikv as though it were S3 (but minikv itself just stores data on local disks)?

whispem•36m ago
minikv implements an S3-compatible API, so you can use S3 clients/tools to PUT and GET objects through its HTTP endpoints—just like a real S3 server.

However, all storage is managed locally (in-memory, RocksDB, or Sled) by minikv. It does not use AWS S3 or any cloud storage as a backend; minikv itself stores your data on local disks.

So: applications can use minikv as if it were S3, but minikv stores data locally (not in S3).