Hacker News new | ask | show | jobs
by josephg 1430 days ago
Yeah I love this approach too. I’ve been learning CRDTs lately and I’ve gotten so much value from making tiny, inefficient reference implementations of things before diving in and optimizing. Toy implementations shake out all your misunderstandings of your design, and you can refactor like crazy. Going from simple code that works to complex code that works is much easier than creating the complex code correctly from scratch, in situ.
1 comments

Also I've discovered (and reported) so many bugs when I realized my very simple toy example was broken