Explore tweets tagged as #cleanCodeTips
CleanCodeTips #7. Use string literals for.✅ better readability.✅ and writing in multiple lines. #CleanCodeTips
4
2
18
CleanCodeTips #4. ❌ Avoid nested if-else blocks. 👉 Hard to understand. 👉 Not readable. ✅ Instead use early returns. 👉 Easy to understand. 👉 Better readability. #CleanCodeTips
1
4
26
CleanCodeTips #3. ✅ Stick to one naming convention. 🐫camelCase is the most commenly used notation. #CleanCodeTips
1
1
4
Clean code always looks like it was written by someone who cares ~ Robert C. Martin. #cleancode #code #cleancoder #tips #cleancodetips #coding #programming #comments #robertcmartin #quotes #programmingquotes #definedigitals #definedigitalslife
0
2
7
Java #CleanCodeTips! Don't use generic types without type parameters as it avoids the type checking and catching of unsafe code during the compilation, making everything visible during runtime!
0
2
3
Commented code: There is nothing more hateful than commented code. Do not do it!.//stay at home.#cleanCode #cleanCodeTips #developers #devs #StayAtHome #ElonMusk #nameRandom
0
1
1
Java #CleanCodeTips! Unused code fragments often go unnoticed during development and merge processes, impacting code readability and confidence in completion. Take the time to identify and remove these elements to maintain a clean and efficient codebase!
0
4
5
Don't skip trivial tests. They are easy to write and their documentary value is heigher than the cost to produce them. #cleancode #cleanCodeTips #developers
0
1
0
Avoid Negative Conditionals. Negatives are just a bit harder to understand than positives. So, when possible, conditionals shoulds be expressed as positives. #cleanCode #cleanCodeTips #developers #codigoLimpio #microsoft #randomHash
0
3
0
Código comentado: No hay nada más odioso que el código comentado. ¡No lo hagas! .// stay at home. #cleanCode #cleanCodeTips #developers #codigoLimpio
0
1
1
The Law of Demeter says that a method f of a class C ahould anly call the methods of these:.C. An object created by f. An object passed as an argument to f. An object held in an instance variable of C. #cleanCode #cleanCodeTips #developers #codigoLimpio
0
1
0
Methods that are never called should be discarded. Keeping dead code around is wasteful. Don’t be afraid to delete the function. Remember, your source code control system still.remembers it. #cleanCode #cleanCodeTips #codigoLimpio #developers
0
1
1