Earlier quoted context omitted.
When arguing against small classes and methods by default, he's in good company: http://number-none.com/blow/john_carmack_on_inlined_code.htm... Prior HN discussion: https://news.ycombinator.com/item?id=12120752
There are also numerous people which promote the excessive use of small classes and methods like for example Kent Beck or Robert Martin. As always, there probably is no "right" answer, it really depends on context.
Ask HN: Best books under 200 pages for developers?
91–100 of 106 posts
Re: Ask HN: Best books under 200 pages for developers?
#92Re: Ask HN: Best books under 200 pages for developers?
#93"The Elements of Style", by Strunk & White. 92 pages. For example, page 19: "Put statements in positive form." Code is improved if booleans are put in positive form, such as replace: if (!featureIsDisabled()) ... with: if (hasFeature()) ... You might laugh, but I see the first form all the time. Sometimes I go on a refactoring mission to remove as many negations, nots, and bangs from the code as possible.
Re: Ask HN: Best books under 200 pages for developers?
#94(Not a dig at your question, it just came to mind.)
Re: Ask HN: Best books under 200 pages for developers?
#95So You Think You Know C And 10 More Short Essays on Programming Languages: https://wordsandbuttons.online/SYTYKC.pdf
Re: Ask HN: Best books under 200 pages for developers?
#96There's a whole series of ebooks by Syncfusion that are exactly what you're describing. Matter fact I think they call them the "Succintly" ebooks series because they tend to introduce a technology or topic in a short 100-200 pages. Check em out here: https://www.syncfusion.com/ebooks
At 2.5k a year, I'd rather pay for Pluralsight or something similar. That's an amazingly huge price for an individual-focused training.
I just downloaded a free book. In the intro it says:
> Free forever. Syncfusion will be working to produce books on several topics. The books will always be free. Any updates we publish will also be free.
Re: Ask HN: Best books under 200 pages for developers?
#97The 22 immutable laws of marketing by Al Ries and Jack Trout. Software is ultimately for humans. Understanding products, marketing and selling help you build better tools for humans and see how products (be it open source, programming languages, retail products, etc) work in the marketplace and not run down paths of "well this is the most popular they must be the best" ... Solid marketing foundations are probably one…
I find law 12. the law of line extension speaks to the current apple product line. There used to be a single phone they made, today there are 4 to choose from.
Re: Ask HN: Best books under 200 pages for developers?
#98Re: Ask HN: Best books under 200 pages for developers?
#99264 pages, although including code snippets and a few diagrams.
Re: Ask HN: Best books under 200 pages for developers?
#100For those of you who claim to start and finish a book in a weekend, are you spending literally the entire weekend doing nothing by reading? Do you take breaks? Do you speed read? Do you take notes? What's your strategy?