Forwarded from Leonn的博客 (Saved Messages)
063014052892.txt
1.4 MB
在隔壁买的一堆资源. 以网课和各种教程为主, 就不刷屏了, 有兴趣的自行下载搜索. 资源基本储存于百度网盘.
How To Take Smart Notes With Org-mode · Jethro Kuan
https://blog.jethro.dev/posts/how_to_take_smart_notes_org/
https://blog.jethro.dev/posts/how_to_take_smart_notes_org/
Forwarded from Hacker News (yahnc_bot)
Show HN: The Coding Career Handbook https://www.learninpublic.org/?from=Hacker%20News
Learn in Public
The Coding Career Handbook
450+ pages of the best advice I have ever written, with Career
Guides, Principles, Strategies, and Tactics for the Junior-to-Senior
developer.
Guides, Principles, Strategies, and Tactics for the Junior-to-Senior
developer.
在平时的工作中,大部分程序员都是边写代码边做设计,边思考边 重构,并不会严格地按照步骤,先做完类的设计再去写代码。而且,如果想一下子就把类设 计得很好、很合理,也是比较难的。过度追求完美主义,只会导致迟迟下不了手,连第一行 代码也敲不出来。所以,我的习惯是,先完全不考虑设计和代码质量,先把功能完成,先把 基本的流程走通,哪怕所有的代码都写在一个类中也无所谓。然后,我们再针对这个 MVP 代码(最小原型代码)做优化重构,比如,将代码中比较独立的代码块抽离出来,定义成独 立的类或函数。