Published onJune 6, 2023View count9 viewsRemove dead codeCode-TipsDiscover the benefits of removing dead code - improved maintainability, reduced risk of bugs, enhanced readability, and better performance.
Published onJune 5, 2023View count62 viewsAvoid Negative ConditionalsCode-TipsNegatives are harder to understand. Conditional functions should be expressed as positives every time.
Published onJune 1, 2023View count28 viewsLiskov Substitution Principle (LSP)Code-TipsDiscover the Liskov Substitution Principle (LSP) and its role in building reliable software. Guarantee seamless substitution of parent and child classes.
Published onJune 1, 2023View count17 viewsOpen-Closed Principle (OCP)Code-TipsLearn about the Open-Closed Principle (OCP) and its benefits. Extend functionality without modifying code, ensuring maintainability and reusability.
Published onMay 31, 2023View count27 viewsSingle Responsibility Principle (SRP)Code-TipsEach class should have a single responsibility. That means that there should be only one reason to change it. This is one of the SOLID principles.