Simple But Powerful Coding Practices

In this series, I will describe some good practices that you can (and probably should) adopt immediately to write better code.

Article #1

Simple but powerful Coding Practices that you can adopt immediately: Consistent naming conventions

I already wrote about naming conventions in a past article but I wanna explore a little more because I think this topic is very important for every developer

Article #2

Simple but powerful Coding Practices that you can adopt immediately: Indentation & whitespace

Continuing the powerful coding practices series, today I will talk with two simple concepts that can greatly improve the readability of our code

Article #3

Simple but powerful Coding Practices that you can adopt immediately: Classes and Functions

Functions are one of the best and most essential tools we have to do our job as developers. Probably we all learned to use them to remove duplicated code, grouping instructions together to easy reuse. Classes are generally used to

Article #4

Simple but powerful Coding Practices that you can adopt immediately: Naming and DRY

Everyone can write code with the right focus to learn the basics. Good developers can write code that solves big problems in real life. But the best developers don't just write awesome code, their code is easily read and understood by other developers