#code-smell
Read more stories on Hashnode
Articles with this tag
Learn about the code smell of misplaced responsibility and how it can affect your codebase. · Misplaced responsibility is a code smell that refers to a...
Programs are meant to be read by humans and only incidentally for computers to execute. - Donald Knuth · Introduction What is a lengthy method, first of...
Don't use magic numbers without explanation. · Introduction A Magic Number is a hard-coded value that may change at a later stage, but that can be...
Don't use objects as data structures. ( Class with no behaviour/functionality apart from getters and setters ) · Introduction A key goal of Object...