“I don’t understand this method. I should ask the person who wrote this.” “Hey! Your change broke the functionality I […]
Tag: # codequality
Setup recomendado para Laravel apps
Initialize Git after create a new laravel project you must initialize git after install Husky to make it work properly: […]
Ugliest piece of code you have to write every day
Introduction We all write code that we are not proud of. Sometimes we are in a rush, sometimes we say […]
Why You Should Use IntelliJ IDEA!
An Uncomfortable Confession! I’ll start with a confession – I was a Vim (text editor) lover and disliked IDEs. As […]
Java Code Quality Tools Recommended by Developers
The best way to protect your Java code from avoidable bugs is to use static code analysis tools that can […]
Why is he so different from his parents? – Liskov’s Substitution Principle
Liskov’s substitution principle (LSP) can be described as Instances of a derived class must be usable through the interface of […]
The five SOLID principles and why you should use them in your codebase
SOLID outlines a group of guidelines that developers can use to simplify and clarify their code. While they are certainly […]
PHP Static Analysis Tools Review
Photo by Ben on Unsplash thank you Performing PHP static analysis will help maintain your code quality over time, particularly […]
If it works, don’t change it – Open Closed Principle
The Open Closed Principle states that Software entities (classes, modules, functions, etc.) should be open for extension, but closed for […]
Its not a Swiss Army Knife – Single Responsibility Principle
The Single responsibility principle (SRP) can be explained in two parts: A class should have only one reason to change. […]