DEV Community

Cover image for The Books That Made All The Difference To Me As A Developer
Antonin J. (they/them)
Antonin J. (they/them)

Posted on • Updated on • Originally published at antjanus.com

The Books That Made All The Difference To Me As A Developer

This question pops up on every form of media out there. "What books should I read to be a better developer?". I've answered this a ton of times. On Twitter, on Dev.To, Reddit, and everywhere else.

I figured it might be a good idea to put the list in a single post I can always link to.

Note: I am using Amazon affiliate links where I link to the books.

Clean Code: A Handbook of Agile Software Craftsmanship

I NO LONGER RECOMMEND THIS BOOK

The author has a lot of problematic views about race, women, etc. Please do not buy this book or contribute to the author.

The Pragmatic Programmer: From Journeman To Master

I'm still about halfway through this book. This book is amazing for anyone starting out a career in development -- and anyone well into it. I found it shows and explains various scenarios you'd find in the real world and then it discusses strategies to tackle them. It features tons of ideas about how to keep your code clearly separated, how to think about concurrency, how to address code that needs to clean itself up, and so on.

Probably my favorite part of the book is the discussion around what "prototypes" are for, how to use them, and so on. And then it discusses the idea of a "tracer bullet" (which I've discussed in my post My Experience Running Development At A Startup) and totally won me over and changed how I do development.

Game Programming Patterns - GMP free to read on the web

Before I get into it, you might be thinking, but why game programming? I'm a web developer and this book is just as relevant to web devs as it is for game devs. This book is by far the best resource I've found that discusses common (and well-known) programming patterns -- from their advantages, to their drawbacks, trade-offs, and their details. All neatly written to be easy to understand.

There are quite a few that I absolutely recommend reading about:

  1. Object pool
  2. Dirty Flag
  3. Singleton -- because that's how your node imports work!
  4. Observer

I also suggest reading the game loop and update method patterns if you're into gaming.

Non-Violent Communication

This might seem off-beat but despite being a non-programming book, I found it extremely useful in terms of communication and applying empathy to my work. Not only that, but I found it useful in my interactions with my teammates and my other co-workers. It covers a few key concepts:

  1. how to ensure both parties are in full understanding of a concept
  2. applying empathy in stressful situations
  3. value of honesty
  4. value of expressing your own needs

All of those have been key in my career in one way or another. Here's a dirty secret: my own team focused on communication with each other and with our manager heavily. Improved communication lead to greater job satisfaction (personally) but it also lead to better code, feature releases, better conversations around development roadmaps, and so much more. We didn't use NVC but we did make big changes into how we're organized

Books I haven't Read (Yet)

I have a stack of books in my GoodReads that I want to read, and even a longer stack of books I keep in my head. I can't personally vouch for these but I do see these come up over and over again on Twitter, here, and elsewhere:

CSS Secrets

A book that made waves when it dropped, CSS Secrets by Lea Verou is a book focusing on techniques and tips and programmatic solutions to your CSS problems and how to practically write CSS. If you're not sure this is for you, check out one of her many talks.

Refactoring UI

Refactoring UI by Adam Wathan and Steve Shoger has been making rounds on my radar and I think it's a worthwhile book to look into. I haven't personally had time to check it out but I've heard of Adam's courses that people love and I have closely followed the development of Tailwind CSS which is his CSS framework.

Got any books you'd like to recommend?

Oldest comments (28)

Collapse
 
johnpaulada profile image
John Paul Ada

Refactoring UI is absolutely fantastic! My only complaint is that there isn't more! I hope they update it and send out the update to the people who bought the previous version for free.

Collapse
 
hpj1992 profile image
Harshit

Clean Code

I am currently reading this book. Only 50% done. But many things have stayed with me:

  • Always test your code. You will not have confidence in your code if you have not done enough testing.
  • Learn to say no.
  • What it means to say "Yes"
  • Meaning of professional developer.
  • Take care of your health.
Collapse
 
antjanus profile image
Antonin J. (they/them)

So I'm not as concerned about 100% coverage and I'm not a big fan of TDD. I think those two principles I'm moving away from over the years.

Health is huge though. Good sleep, good diet, and a good keyboard go really far.

Collapse
 
hpj1992 profile image
Harshit

I did not meant to point 100% coverage or TDD. We can debate later on.

But code needs to be tested for sure. Manually or automated for sure. - That was my point.

Collapse
 
joecannatti profile image
Joe Cannatti

I haven't read Clean Code in years, but I'm wondering if you can recall the parts that you mentioned you no longer agree with. I'm curious about what ideas the industry has moved beyond since that book one came out.

Collapse
 
scotthannen profile image
Scott Hannen

Code Complete - lots of language-agnostic principles and guidelines. It's exactly what I wanted to know about development when I started, but I didn't discover it until years later.

Collapse
 
primercuervo profile image
Nicolas Cuervo

The "Game Programming Patterns" sounds interesting, but for the short review you mention (and the objective you want to fulfill with this book) I'd suggest rather "Design Patterns: Elements of Reusable Object-Oriented Software", which might be a bit less application specific

Collapse
 
antjanus profile image
Antonin J. (they/them)

GMP is by far the easiest resource to read on design patterns that I've read. I'm sure there are plenty of others but the language and examples in the book are fantastic. I've been recommending it for years.

Collapse
 
lampewebdev profile image
Michael "lampe" Lazarski

Listening to Non-Violent Communication right now !

Thanks for the info!

Collapse
 
thomasjunkos profile image
Thomas Junkツ
Collapse
 
y0mbo profile image
John Uhri

These are the books that made a difference in my career, although some are getting dated:

Clean Code
Code Complete
Peopleware - about people more than code, dated I think.
Joel on Software - a compendium of the best posts from Joel's blog. Kind of dated now.

Collapse
 
rgeraldporter profile image
Rob Porter

Very pleasantly surprised to see Rosenberg's NVC book here. It is indeed helpful as a programmer, I've found as well. Also recommend books on Servant Leadership, though I can't recall off the top of my head right now which one of those I read.

Another recommendation: Pragmatic Thinking & Learning (also by the Pragmatic Programmer folks). pragprog.com/book/ahptl/pragmatic-...

Also, because the industry is for some reason obsessed with pulling all-nighters and producing burnouts: Why We Sleep is a great book that will make anyone have second thoughts about ever pulling an all-nighter ever again: goodreads.com/book/show/34466963-w...

Collapse
 
codemouse92 profile image
Jason C. McDonald

+1 to "Game Programming Patterns"!

I recommend adding "Dreaming in Code" by Scott Rosenberg to your list. That was a defining book in my own career.

Collapse
 
burdettelamar profile image
Burdette Lamar

I've enjoyed Steve McConnell's Code Complete.

Collapse
 
antjanus profile image
Antonin J. (they/them)

ah! That's been on my list for a while :)

Collapse
 
ryantenorio profile image
Ryan

I have read Clean Code before and after coming off a year of leave I am looking forward to re-reading it! The other book I have just started is The Phoenix Project, which is a tale of DevOps/IT success in the form of a novel.

Collapse
 
rachelsoderberg profile image
Rachel Soderberg

I'm also reading Clean Code and it's opened my eyes to a number of things I wish I'd known going into the major application I built at work over the last few months. I've been able to go back and refactor some things, but it would be too much work to revamp all of it.

Lessons for the future, I suppose!

Collapse
 
jcabraham profile image
Jim Abraham

When you start to work on bigger projects, you should read the classic tome, "The Mythical Man Month" by Fred Brooks. Still relevant today.

Collapse
 
jcabraham profile image
Jim Abraham

Also still essential: "Programming Pearls" by Jon Bentley.