Essential Books for Programmers


Even super heroes need to read to stay on top of their game.

Books are a great source of knowledge and wisdom. But unfortunately, there are very few people reading books today. A programmer reading books is an even rarer occurrence, most often relying on the internet search results to find answers.

Technology is moving forward at a pace faster than anytime in the history of mankind. There are new programming languages and tools every few months, aspiring to be the silver bullet for all shortcoming of existing languages, tools and methodologies.

The truth is that many a great minds of the yester years have already encountered the very same problems and have figured out the best ways to solve them. The tactics to approach and solve the problems have been captured in some wonderful books.

Here's a select subset of these great books that developer in the industry should read.

The Pragmatic Programmer


A gem of a book! This is not your regular programming book with code, code and more code. In fact this is not about any particular programming language at all: the wisdom in this book applies to all programming languages.

The insights in this book span across a number of interesting areas such as "tracer bullets," a variety of exploratory programming, writing code that writes code, separating views from models, expensive tools do not produce better designs, developing a great team, managing expectations, avoiding duplicate knowledge etc.

Not only will this book change your coding habits, it will also change your personality as a programmer. It is filled with practical advice on getting the best of both you and your code.

Also included is a pamphlet that summarizes the tips and checklists.

Clean Code: A Handbook of Agile Software Craftsmanship


Ever looked at someone's code and went "Oh My God, What is this?" Rest assured, that someone hasn't read Clean Code.

An epic book on software craftsmanship. The book not only tells you how to write good code, but also an effective way to develop and approach software development. It is sure to change your outlook on work.

The book describes the principles, patterns, and practices of writing clean code. Several case studies of cleaning up code are valuable lessons to any developer.

Note that all examples in this book are in Java, although the learnings can be applied to any programming language.

Among the books listed in this post, this is a fairly new entrant and may resonate more with the younger developers.

The Clean Coder: A Code of Conduct for Professional Programmers


The second book from Rob Martin in this list. We recommend that you read this book after "Clean Code". Whilst "Clean Code" is about the code, this is about the "Coder".

The book explores topics that programmers often ignore.

You may not always agree with the author but it provides good food for thought. It might be not what you expect, but may just be what you need.

Clean Architecture: A Craftsman's Guide to Software Structure and Design


Refactoring: Improving the Design of Existing Code


No matter how hard you try, the code you deliver will not be the most optimal unless improvements are made to it. Refactoring is to be made even if it working as expected.

The book starts with general principles of refactoring: why and when to refactor, how to approach management about refactoring etc. The book then takes you through a tour of how make the improvements happen.

A must read book on anyone on how to improve your existing code. Note that all code examples are in Java, but it shouldn't prevent you from grabbing a copy today!

Working Effectively With Legacy Code


We all have to work on something we hate - for most, it is working with legacy code. Nothing is more real in any job than legacy code.

How to modify legacy code? How to identify parts of the code to refactor? How to break dependencies between code you want to refactor? How to make sure the new code is doing what is expected? How do you take small steps at a time to refactor legacy code?

They are just some of the key questions answered in this brilliant book. If I have to summarize the essence of the book in a line, it would be "Write unit tests, refactor code, make sure tests are passing."

Legacy code is not a myth; it is a living legend! Nothing in the software industry has survived the test of times better than Legacy code. -- Deepak Karanth

Programming Pearls


Computer programming has many faces. Fred Brooks paints the big picture in The Mythical Man Month; his essays underscore the crucial role of management in large software projects. At a finer grain, Steve McConnell teaches good programming style in Code Complete. The topics in those books are the key to good software and the hallmark of the professional programmer. Unfortunately, though, the workmanlike application of those sound engineering principles isn't always thrilling -- until the software is completed on time and works without surprise.

The columns in this book are about a more glamorous aspect of the profession: programming pearls whose origins lie beyond solid engineering, in the realm of insight and creativity. Just as natural pearls grow from grains of sand that have irritated oysters, these programming pearls have grown from real problems that have irritated real programmers. The programs are fun, and they teach important programming techniques and fundamental design principles.

Code Complete: A Practical Handbook of Software Construction


A mammoth piece of work, a must read for anyone who wants to read all about programming constructs and best practices. Truly an encyclopaedic book - 960 pages in its most recent revision! Don't let the length of the book deter you, you can consume it at your own pace. In the end, you will be thankful you read the book.

Every aspect of software development is explained in the book. Practical advice on everything ranging from code structure, code formatting, variable. method and class naming, all the way up to managing a team.

A wealth of references and additional materials covering specific topics in are provided and they are worth a read as well.

Only a small percentage of software developers would have read this book, so you surely have an advantage if you read this one. You can gain many a years worth of experience just by reading this book.

The Art of Computer Programming


This magnificent tour de force presents a comprehensive overview of a wide variety of algorithms and the analysis of them. Now in its third edition, The Art of Computer Programming... contains substantial revisions by the author and includes numerous new exercises.

Although this book was conceived several decades ago, it is still a timeless classic. One of the book's greatest strengths is the wonderful collection of problems that accompany each chapter. The author has chosen problems carefully and indexed them according to difficulty. Solving a substantial number of these problems will help you gain a solid understanding of the issues surrounding the given topic. Furthermore, the exercises feature a variety of classic problems.

Structure and Interpretation of Computer Programs


I debated putting this one on the list. Is it really foundational? It depends on how solid of a foundation you want to have. If you want to have a really solid foundation, then the answer is a resounding “yes.”

I debated putting this one on the list. Is it really foundational? It depends on how solid of a foundation you want to have. If you want to have a really solid foundation, then the answer is a resounding “yes.”

The book is challenging. It deals with functional programming. It was written for the famous introductory programming course at MIT. I’d recommend you not only read this book, but also go through all the exercises in it. It will be a difficult journey, but you’ll come out the other side a much better programmer than you were before.

Design Patterns: Elements of Reusable Object-Oriented Software


This classical book is critical reading to really understand what design patterns are and become familiar with the most common design patterns you are likely to encounter in your career. It’s not a particularly easy read, and the descriptions and examples might be a bit difficult to follow—especially if you don’t have a solid grasp of UML—but it’s a book I consider a “must read.” If you are having trouble with this book, you might want to start with “Head First Design Patterns,” which teaches the design patterns in this book in a much more digestible way—still, there is no substitute for the original.

Compilers: Principles, Techniques, and Tools


This book is known as the dragon book—and for good reason.

It goes down deep into places where the dragons live: in the realm of compilers and operating systems.

Some of the information might be a bit dated, but if you are really interested in how compilers work and perhaps want to write your own, take a crack at this book.

Head First Design Patterns


The most non-technical looking book on programming! Each page contains doodles, pictures and other eye-catching stuff. That might give the impression that it is a light read, but that fact is that it is discussing quite a core topic about programming - Design patterns - and does a great job in covering the subject.

The book does not try to cover all the patterns that exist in the world, rather it covers every pattern that you might need to solve real world problems. It will help you create functional, elegant, reusable, and flexible software. The trade-off for each patterns have been clearly pointed out. Most books on design pattern talk about how to implement the pattern, but the authors of this book also explain the why and the how.

The latest edition of the book now includes updates for Java 8 - mainly the Lambda.

Introduction to Algorithms, Third Edition


This book is considered one of the best books on learning algorithms, and for good reason. It is a solid programming book for anyone interested in increasing their ability to write and understand algorithms, which is the core of writing code. If you are going to read any book on algorithms, start with this one for sure.

Cracking the Coding Interview: 189 Programming Questions and Solutions


Peopleware: Productive Projects and Teams


A stunning piece of work. This is not a book about programming. This is a book about managing and motivating programmers. It should be read by developers too. Many a times, developers, especially inexperienced ones don't understand the thought process of management.

Software development is a creative process. But most managers treat it as assembly line process. Developers are seen as interchangeable cogs in the machine. Managers generally see giving tight deadlines as the only way to increase motivation. They do not take interest in the work developers do and sadly, not try to understand the developers.

If you are a manager who wants quality and not only quantity, read this book now!

The authors explain how managers can enable their software teams to realize their potential in a sustainable manner.

Domain-Driven Design: Tackling Complexity in the Heart of Software


Buckle your seat belt, this is a difficult read. The first time I read this book, I didn’t get it. The second time I read it, I sort of got it. It wasn’t until my third pass through the book that it finally clicked all the way. This book will help you learn how to create a maintainable architecture that is based on domain modeling. Once you learn what is in this book, you can’t go back. You won’t think about software development architecture in the same way again.

Patterns of Enterprise Application Architecture


If you are doing any kind of enterprise application development, you’ll find this book extremely useful. It contains great information about how to design and build an enterprise application from start to finish. What I found most useful, though, were the many patterns contained in the book that are often seen in enterprise applications. This is a book I referenced all the time when I was building large enterprise applications for my job.

Agile Software Development, Principles, Patterns, and Practices


Yes, this is another Bob Martin book, and it is excellent. This book takes you through all the core tenets of Agile development without all the fluff. Not only that, but it also introduces the SOLID design principles that are fundamental to understanding how to write clean, maintainable code. This book was the book that convinced me to actually start doing pair programming.

Functional-Light JavaScript


"Functional-Light JavaScript" explores the core principles of functional programming (FP) as they are applied to JavaScript. But what makes this book different is that we approach these principles without drowning in all the heavy terminology. We look at a subset of FP foundational concepts that I call "Functional-Light Programming" (FLP) and apply it to JavaScript.

Note: Despite the word "Light" in the title, I do not consider or recommend this book as a "beginner", "easy", or "intro" book on the topic. This book is rigorous and full of gritty detail; it expects a solid foundation of JS knowledge before diving in. "Light" means limited in scope; instead of being more broad, this book goes much deeper into each topic than you typically find in other FP-JavaScript books.

Let's face it: unless you're already a member of the FP cool kids club (I'm not!), a statement like, "a monad is just a monoid in the category of endofunctors", just doesn't mean anything useful to us.

That's not to say the terms are meaningless or that FPrs are bad for using them. Once you graduate from Functional-Light, you'll maybe/hopefully want to study FP more formally, and you'll certainly have plenty of exposure to what they mean and why.

But I want you to be able to apply some of the fundamentals of FP to your JavaScript now, because I believe it will help you write better, more reasonable code.

by Kyle Simpson

Check out Functional-Light JavaScript on GitHub.

You Don’t Know JS


There are a lot of JavaScript books out there, and a lot of them are really big. You Don’t Know JS isn’t a huge textbook– it’s a series of six small books, all dedicated to a specific topic in JavaScript. There’s no fluff, just the essential core information.

These are perfect if you’re a beginner, because Kyle Simpson does a great job of explaining concepts in a way that’s easy to understand. And the best part is, you can read them all online for free on GitHub! Of course, if you like physical books (which I find handy to have next to the computer) you can order them online.

Check out You Don’t Know JS Yet on GitHub.

Don’t Make Me Think


Heard of terms like UX (user experience) or user design, but have no clue what they mean? This book is a great introduction into the world of making websites that people love using. It explains the basics of how visitors to your website behave and what about websites can frustrate them.

Bottom line: don’t design websites that your visitors will hate.

The Mythical Man-month: Essays on Software Engineering


A classic, considered the Bible by many in the Software Industry. It was first published in the 1970's, but probably every word rings more truer today than it ever did before!

Ever heard these before. It all came from this book!

"All programmers are optimists: All will go well."

"Adding manpower to a late software project makes it later."

"Bearing of a child takes nine months, no matter how many women are assigned."

"An omelette, promised in two minutes, when not ready in two minutes, the customer has two choices - wait or eat it half-cooked. Software customers also have the same choices."

It is unfortunate that we are making the same mistakes in software development year after year. A must read for every project manager and developer.

As the title says, it is a collection of essays. A damn good one at that. The only downside of the book is the references to 25-year-old technologies. But that takes nothing away from the meat of the book.

Soft Skills: The Software Developer's Life Manual


Again, this is not a book about programming. But every programmer should read this.

A great book on managing "other" aspects of developers life. It's about everything there could be in your life - It’s about your career, life, body, mind, and believe it or not - soul as well.

The author himself has followed these techniques and is quite successful at that. His website says that he was able to quit his day job in his early 30's. The author has culminated his life's experiences in neatly divided short chapters on Career, Marketing yourself, Learning, Productivity, Finances, Fitness and Spirit. Each chapter is short enough to be read on a coffee break, that makes it a fairly light read.

You will be a much more satisfied and happier person if you follow the suggestions in this book, not just as a programmer, but as your whole self.

The Passionate Programmer: Creating a Remarkable Career in Software Development


This book was one of the main programming books that influenced me to treat my career in software development as a business rather than just something I did. The book is full of all kinds of wisdom about how to increase your skills, maximize your time, keep your career and passion alive, and more. I highly recommend reading this book if you want to move beyond programming as just a job.

Code: The Hidden Language of Computer Hardware and Software (Developer Best Practices)


This is a fascinating book. Again, it’s not explicitly a programming book, but it is all about how computers work at the very lowest level. After reading this book you'll understand what the code you are writing is actually doing and how a CPU actually executes your code. This is both a fun and fascinating read.

How to Win Friends and Influence People


I really can’t praise this book enough. Yes, it has nothing to do with programming. You might be surprised to find this on a programming books list, but this is a life-changing book. As a software developer, you will deal with people during your entire career. If you learn how to deal with them effectively, you’ll have a much better go of it. So, I highly recommend reading this book. This book changed my life and set me on the path I am on now.

Deep Work


This book has truly changed the way that I approach work. While most people lead extremely busy lives and constantly try to do and achieve more, Newport has taken the complete opposite approach of “less is more.”

As the topic of the book implies, he talks a lot about how he personally has developed a practice of ultra-focused deep work over the years (and his accomplishments are quite impressive). Newport also advocates for cutting out elements from your life that don’t lead you toward your most important goals.

This book is applicable to web developers and anyone whose work would benefit from long stretches of complete mental focus. I highly, highly recommend it to anyone to read, in any field.

The Power of Habit


The Power of Habit is another book that can be applied to working more efficiently and honestly improving your life habits. Duhigg writes eloquently about how habits (both good and bad) are formed and broken, often without our realization.

He uses real world, scientific examples to illustrate these concepts in a very persuasive approach. If you’re interested in stopping bad habits, picking up good ones, and increasing your willpower (which he argues can be developed like any other skill!) then you’ll likely benefit from this book.

The Complete Software Developer’s Career Guide


I wrote this book primarily because there just wasn’t a good book out there—or really any book for that matter—that told software developers everything they needed to know about how to have a successful career in software development and to answer all the common questions I get like:


Source I - Source II - Source III - Source IV

Lorem Ipsum

Hi, I'm Lorem Ipsum, a Software Developer from Earth, Milky Way. You can follow me on Twitter or Instagram, see some of my work on GitHub, or read more about me on LinkedIn.
Please feel free to reach me at loremipsum@gmail.com.