Clean Code Tip: Avoid mental mappings
Mental mappings are a good way to write shorter code that you, and only you, can understand. Prefer clarity over brevity!

Search for a command to run...
Series
Mental mappings are a good way to write shorter code that you, and only you, can understand. Prefer clarity over brevity!

The most important trait of Tests? They must be correct. The second one? They must be readable. The AAA pattern helps you write better tests.

Is it true that we should always avoid comments in our code? In my opinion, no: let's see when adding comments is not only good but necessary.

Having too many 'using's, or imports, is a good indicator that your class does too many things. You should work to reduce the number of dependencies o

You surely take care of your code to make it easy to read and understand, right? RIGHT?? Well done! 👏 But most of the developers tend to write good production code (the one actually executed by your system), but very poor test code. Production code ...

Smaller functions help us write better code, but have also a nice side effect: they help us to understand where an exception was thrown.
