Maximiliano Contieri - Software Design

Maximiliano Contieri - Software Design

Follow
homeDesignCode SmellsBloggingProductivityAboutSupport Me
Tag

design principles

#design-principles

More content

Read more stories on Hashnode


Articles with this tag

Code Smell 94 - Too Many imports

Oct 14, 20212 min read 439 views

If your class relies on too many others, it will be coupled and fragile. A long import list is a good indicator. TL;DR: Don't import too...

Code Smell 94 - Too Many imports

Code Smell 72 - Return Codes

May 28, 20212 min read 447 views

APIs, Return codes, C Programming Language, We've all been there. TL;DR: Don't return codes to yourself. Raise Exceptions. Problems IFs Code...

Code Smell 72 - Return Codes

Code Smell 60 - Global Classes

Jan 31, 20212 min read 411 views

Classes are handy. We can call them and invoke them at any time. Is this good? TL;DR: Don't use your classes as a global point of...

Code Smell 60 - Global Classes