Live data from Hacker News

Show HN: Advent of Distributed Systems

aods.cryingpotato.com

11–20 of 24 posts

Re: Show HN: Advent of Distributed Systems

#11

This looks really cool! I'd love to get into more systems-design AoC problems rather than DSA puzzles for a change. feedback: I was a bit confused as to why the answer to the first week was prefilled, was that intentional? Also, the buttons 1-6 aren't working for me (I'm on 2021 M1 Pro w/ Firefox 120.0.1)

Thanks for trying it out! I prefilled the answer for week 1 was to help people understand the boilerplate needed better, but maybe that was giving too much away. I'll try putting something more minimal in. Unfortunately you can't use the buttons inside the iframe because of CORS issues. Not sure if there's any easy workaround for that :(

I got confused by the buttons as well.

> I'll try putting something more minimal in.

That would be great, do please add the boilerplate to all the weeks not just week one, because starting from a completely blank page is also challenging, especially for people who aren't familiar with Go all that much.

Re: Show HN: Advent of Distributed Systems

#12
I wish there was a good way to learn distributed systems between dense lectures on MIT OCW and stringing together libraries with raft/paxos already implemented in it or using aws/azure "services"

Kind of like this codecrafters.io where i get a working KV Store/Blob Storage/Kafka Stream out at the end. Code crafters sounded good in the beginning, but it looks too beginner friendly (their web server example is just writing hard coded text back to a socket and i'm sure the other examples are just as shallow).

If anyone has any examples of this, lemme know.

Re: Show HN: Advent of Distributed Systems

#13

I wish there was a good way to learn distributed systems between dense lectures on MIT OCW and stringing together libraries with raft/paxos already implemented in it or using aws/azure "services" Kind of like this codecrafters.io where i get a working KV Store/Blob Storage/Kafka Stream out at the end. Code crafters sounded good in the beginning, but it looks too beginner friendly (their web server example is just wri…

I took a Distributed Systems course at Georgia Tech's OMSCS program this spring, which used a learning framework from the University of Washington: https://github.com/emichael/dslabs

You make a key-value store using multiple techniques, from a basic single-node KV store, to a primary/replica, to PAXOS, to sharded PAXOS (which is essentially what AWS DynamoDB is, minus all of the features they've added since launch).

It's written in modern Java, and the tests that validate your implementation are very thorough.

I learned a ton from this, although I gave up at the last milestone because my grade was satisfactory in the class :)

Alternatively, you could enroll in the OMSCS and take the course yourself. It's only $600 per class at a top-10 school! The application is very easy and they accept anyone who has a reasonable chance of completing the degree. If you have any questions about the program feel free to email me (check my profile) https://omscs.gatech.edu/

Re: Show HN: Advent of Distributed Systems

#15

I wish there was a good way to learn distributed systems between dense lectures on MIT OCW and stringing together libraries with raft/paxos already implemented in it or using aws/azure "services" Kind of like this codecrafters.io where i get a working KV Store/Blob Storage/Kafka Stream out at the end. Code crafters sounded good in the beginning, but it looks too beginner friendly (their web server example is just wri…

I took a Distributed Systems course at Georgia Tech's OMSCS program this spring, which used a learning framework from the University of Washington: https://github.com/emichael/dslabs You make a key-value store using multiple techniques, from a basic single-node KV store, to a primary/replica, to PAXOS, to sharded PAXOS (which is essentially what AWS DynamoDB is, minus all of the features they've added since launch).…

Is there any way to take the class without registering at a self pace?

Re: Show HN: Advent of Distributed Systems

#16

Earlier quoted context omitted.

I took a Distributed Systems course at Georgia Tech's OMSCS program this spring, which used a learning framework from the University of Washington: https://github.com/emichael/dslabs You make a key-value store using multiple techniques, from a basic single-node KV store, to a primary/replica, to PAXOS, to sharded PAXOS (which is essentially what AWS DynamoDB is, minus all of the features they've added since launch).…

Is there any way to take the class without registering at a self pace?

The class was essentially just the project in that repo plus some video lectures. Supposedly these lectures from MIT [0] are similar. Alternatively you could just read the course textbook [1] which I think is pretty good.

Here's the course page [2] if you want to see more details, the syllabus, etc., and some student reviews [3] if you want more context. Many students found the course difficult -- it's one of the hardest rated courses in the program and rated it rather unfairly IMO -- it's a difficult subject but the course itself is about as approachable as you can make distributed systems.

[0]: https://www.youtube.com/playlist?list=PLrw6a1wE39_tb2fErI4-W...

[1]: https://book.mixu.net/distsys/

[2]: https://omscs.gatech.edu/cs-7210-distributed-computing

[3]: https://www.omscentral.com/courses/distributed-computing/rev...

Re: Show HN: Advent of Distributed Systems

#17
When I clicked this it took me straight into a page with code and an explanation with a bunch of assumed knowledge. It's not very self-explanatory.

When I came back here, it the additional context of your text post made everything make sense. Can I recommend that you start with that on the page itself? Even a quick explanatory modal with a "don't show this again" checkbox would help a lot.

Post reply on HN