Live data from Hacker News

Books for Software Engineers in 2023

grantisom.com

101–110 of 127 posts

Re: Books for Software Engineers in 2023

#101

A Philosophy of Software Design is excellent, I dislike almost all programming books but that one is great.

Agreed, it's a good book, although everything in it isn't great. I think he goes overboard when it comes to comments for example. Probably most famous for the concept of "deep modules" (the interface should be a lot simpler than the implementation), which I like. I also really liked the idea about defining errors out of existence, e.g. a substring method can be defined in a way that it never needs to throw any exceptions.

I've written a longer review of it here:

https://henrikwarne.com/2021/07/12/book-review-a-philosophy-...

Re: Books for Software Engineers in 2023

#103

I'd also read the books from Teach Yourself CS ( https://teachyourselfcs.com ): - Structure and Interpretation of Computer Programs - Computer Systems: A Programmer's Perspective - The Algorithm Design Manual - Mathematics for Computer Science - Operating Systems: Three Easy Pieces - Computer Networking: A Top-Down Approach - Readings in Database Systems - Crafting Interpreters - Designing Data-Intensive Applications…

A word of warning to anyone reading "The Algorithm Design Manual", there is an error on nearly every other page. https://www3.cs.stonybrook.edu/~skiena/algorist/book/errata https://www3.cs.stonybrook.edu/~skiena/algorist/book/errata-...

This is astonishing. I was considering ordering that book, thank you.

Re: Books for Software Engineers in 2023

#104
post #39

SICP shouldn’t be on this list. Few people actually read it and most just worship it unread like a bible. It was Hilfinger’s assigned text in 61A at Berkeley but without any assigned readings. On the other hand, The Little Schemer which has a lot of the important ideas from SICP might be on a list such as this. But it’s too accessible to warrant much respect.

THIS PLACE IS RESERVED FOR JELLY BEAN STAINS . . . . . The whole The Little|Seasoned|Reasoned Schemer plus its other variants The Little ML'er|Java|Prover|Typer are some of the most mind bending books that you will ever read ever. And it is not the just the end result. Reading these books well will teach you socratic method of teaching/learning, which is great in itself. And will help you teach yourself a wide variet…

I love these books! I re-do them every few years (well close to 10 years after I've read my copy for the first time). Great great fun.

Re: Books for Software Engineers in 2023

#105

I'd also read the books from Teach Yourself CS ( https://teachyourselfcs.com ): - Structure and Interpretation of Computer Programs - Computer Systems: A Programmer's Perspective - The Algorithm Design Manual - Mathematics for Computer Science - Operating Systems: Three Easy Pieces - Computer Networking: A Top-Down Approach - Readings in Database Systems - Crafting Interpreters - Designing Data-Intensive Applications…

A word of warning to anyone reading "The Algorithm Design Manual", there is an error on nearly every other page. https://www3.cs.stonybrook.edu/~skiena/algorist/book/errata https://www3.cs.stonybrook.edu/~skiena/algorist/book/errata-...

To be fair, the second link you provided is for the 3rd edition and lists something like 20 errors (including typos, etc.) for a book of approximately 800 pages.

Re: Books for Software Engineers in 2023

#106

I'd also read the books from Teach Yourself CS ( https://teachyourselfcs.com ): - Structure and Interpretation of Computer Programs - Computer Systems: A Programmer's Perspective - The Algorithm Design Manual - Mathematics for Computer Science - Operating Systems: Three Easy Pieces - Computer Networking: A Top-Down Approach - Readings in Database Systems - Crafting Interpreters - Designing Data-Intensive Applications…

As the author of Teach Yourself CS I would definitely suggest against trying to fit this in a year! Maybe aim for CS:APP and 1-2 others, and if you have time for more that's a bonus. Most of these are books to work through, not "read".

Do you think the list could be updated & there are now some better resources for some of the subjects?

Re: Books for Software Engineers in 2023

#107

Are there any books regarding the history of programming? Going from Visual Basic to Vim to all the fancy languages we have today. Or anything on how what we write as code gets translated into binary and what happens to our computers when the code processes?

Check out "Code: The Hidden Language of Computer Hardware and Software" by Charles Petzold. It goes back to the earliest days of computation (Charles Babbage, etc.) and then shows how it evolved into computers we have today.

It doesn’t talk about programming language history a lot, but shows how assembly works.

Re: Books for Software Engineers in 2023

#108

Reading books is great! And curating a list is useful and fun. But you have to be pretty careful when you say things are a "must" since that's... pretty hard to prove (and can just make people feel bad). And the proof has already been pointed out as not true in this thread. Unless we all want to start evaluating eachother's programming ability virtually. Again, lists and reading is great! And it's probably better to…

1,000% agree.

I can not stand the dogmas: You "must" read this, you "have" to use this IDE/text editor, you will perish a slow painful death if you program in language X and not language Y.

Read what you want, use what you want, please share with me what you like and don't like but please do not tell me what I must do and I must use.

Re: Books for Software Engineers in 2023

#109
I find that the practice of "software engineering" has a fuzzy distinction to "computer science." I highly recommend the following books that helped me out on that journey:

- Continuous Delivery by Jez Humble and Dave Farley

- The Pragmatic Programmer by Andy Hunt and Dave Thomas

- A History of Modern Computing by Paul E. Ceruzzi

- Version Control with Git by Prem Ponuthorai and Jon Loeliger

- and SICP. Understanding it is like accessing a new dimension of power.

Re: Books for Software Engineers in 2023

#110

Are there any books regarding the history of programming? Going from Visual Basic to Vim to all the fancy languages we have today. Or anything on how what we write as code gets translated into binary and what happens to our computers when the code processes?

And here I thought software developers were allergic to history
Post reply on HN