Maximiliano Contieri - Software Design

Maximiliano Contieri - Software Design

Follow
homeDesignCode SmellsBloggingProductivityAboutSupport Me
Tag

variables

#variables

More content

Read more stories on Hashnode


Articles with this tag

Code Smell 83 - Variables Reassignment

Jul 14, 20212 min read 619 views

Variable reuse is something we see in big chunks of code. TL;DR: Don't reuse variable names. You break readability and refactor chances and gain...

Code Smell 83 - Variables Reassignment

Code Smell 81 - Result

Jun 19, 20212 min read 432 views

result = ??? TL;DR: Use good names always. Result is always a very bad name. Problems Readability Solutions Rename result. If you don't know how...

Code Smell 81 - Result

What exactly is a name? — Part I: The Quest

Sep 4, 20208 min read 799 views

We all agree: a good name is always the most important thing. Let’s find them. We all use names for programming, it doesn’t matter if the language is...

What exactly is a name? — Part I: The Quest