Ask HN: Best codebases to study to learn software design?
1–10 of 94 posts
Re: Ask HN: Best codebases to study to learn software design?
#2* https://news.ycombinator.com/item?id=36370684
* https://news.ycombinator.com/item?id=30752540
* https://news.ycombinator.com/item?id=9896369 (Python specific)
Re: Ask HN: Best codebases to study to learn software design?
#3It's been asked a few times, here are some links to get you started: * https://news.ycombinator.com/item?id=36370684 * https://news.ycombinator.com/item?id=30752540 * https://news.ycombinator.com/item?id=9896369 (Python specific)
Re: Ask HN: Best codebases to study to learn software design?
#4I think there was another one with a similar name but I can't think of it's name.
0: https://www.spinellis.gr/codereading/, check the TOC https://www.spinellis.gr/codereading/toc.html
Re: Ask HN: Best codebases to study to learn software design?
#5Re: Ask HN: Best codebases to study to learn software design?
#6Re: Ask HN: Best codebases to study to learn software design?
#7Re: Ask HN: Best codebases to study to learn software design?
#8Re: Ask HN: Best codebases to study to learn software design?
#9Re: Ask HN: Best codebases to study to learn software design?
#10Software exists precisely because there is still a messy layer connecting user requirements to actions on a computer. If there was not messiness then we could just automate it all. Approaching software from some sort of Platonic ideal of what software should be will frequently lead to bad decisions on it's own.
When you start to see how certain pressures lead to certain paths you learn to recognize the wrong decisions that are often good at the time, and avoid them. At the same time, you need to learn to develop methods that work quickly and effectively. By far the biggest real challenge in real world software is time constraints. This is almost never discussed in theoretical views of software, but the truth is you're always going to be writing code under pressure to ship. You will come across situations where you do not have time to do what you want to do or think is best.
Good software is software that runs and solves the user need, but you will come to realize that there are design solutions that will make successfully running happen more often. The best way to find these is to study the real software you're writing.