Categories
Coding Style

The Zen of Python

Beautiful is better than ugly. Explicit is better than implicit. Simple is better than complex. Complex is better than complicated. Flat is better than nested. Sparse is better than dense. Readability counts. Special cases aren’t special enough to break the rules. Although practicality beats purity. Errors should never pass silently. Unless explicitly silenced. In the […]

Categories
Coding Style

Clean Code Meaningful Names

Overview The following article is a summary of the tips given in choosing meaningful names for things in our code. The tips are taken from Robert C. Martin Called Clean Code. Clean Code. Chapter 2:  Meaningful Names. Why do we need Meaningful Names in our Code? Names are everywhere in software. Names are given to […]