#design-principles
Read more stories on Hashnode
Articles with this tag
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...
APIs, Return codes, C Programming Language, We've all been there. TL;DR: Don't return codes to yourself. Raise Exceptions. Problems IFs Code...
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...