[Clean Code] Clean Code Debate !

In this series of posts , I try to share with you some of my highlights on Clean Code Chapters. Lots of people argue about the necessity of applying clean code principles and whether spending time on refactoring is an important step of the software development process or just a waste…

[CleanCode] Meaningful Names [Part 2]

In this series of posts , I would try to share with you some of my highlights on Clean Code Chapters. In this post my focus would be on Chapter 2. This is the second post discussing Chapter 2 so if you didn't read the first one , please go and check…

[CleanCode] Meaningful Names [Part 1]

In this series of posts , I would try to share with you some of my highlights on Clean Code Chapters. Names are everywhere in software. We name our variables, our functions, our arguments, classes, and packages.Because we do so much of it, we’d better do it well. What…

[Clean Code] Some thoughts about Clean Code ?

In this series of posts , I would try to share with you some of my highlights on Clean Code Chapters. In this post my focus would be on chapter 1. We can define Clean code as code that always looks like it was written by someone who cares. "I like…

[Clean Code] Designing Classes

In this series of posts , I would try to share with you some of my highlights on Clean Code Chapters. In this post , I will try to share with you my own highlights on Classes Design chapter on Clean Code. * Classes should be small. * Classes should be smaller than that…