https://hashnode.com/posts/code-smell-and-cargo-cult/64308e30a6c11fdcd3800ae2
Discussion on "Code Smell and cargo cult" | Hashnode
Discussion on "Code Smell and cargo cult". What is code smell? Code smell means that if a code looks awful then it most likely it is buggy and hard to...
code smellcargo cultdiscussionhashnode
https://dev.to/mcsee/code-smell-295-string-concatenation-1hpi
Code Smell 295 - String Concatenation - DEV Community
Untangling the string mess in your code TL;DR: Avoid string concatenation for complex strings, use... Tagged with webdev, programming, beginners, r.
code smellstring concatenation295devcommunity
https://dev.to/mcsee/code-smell-166-low-level-errors-on-user-interface-4iid
Code Smell 166 - Low-Level Errors on User Interface - DEV Community
Fatal error: Uncaught Error: Class 'logs_queries_web' not found in /var/www/html/query-line.php:78... Tagged with webdev, beginners, programming, php.
code smelllow leveluser interface166
https://dev.to/mcsee/code-smell-72-return-codes-19p7
Code Smell 72 - Return Codes - DEV Community
APIs, Return codes, C Programming Language, We've all been there. TL;DR: Don't return codes... Tagged with webdev, programming, codenewbie, tutorial.
code smellreturn codes72devcommunity
https://dev.to/mcsee/code-smell-42-warnings-strict-mode-off-c4d
Code Smell 42 - Warnings/Strict Mode Off - DEV Community
Compilers and warnings lights are there for help. Don't ignore them. Problems Missed... Tagged with oop, codenewbie, webdev, tutorial.
code smellstrict mode42warningsdev
https://dev.to/mcsee/code-smell-79-theresult-429k
Code Smell 79 - TheResult - DEV Community
If a name is already used, we can always prefix it with 'the'. TL;DR: don't prefix your... Tagged with webdev, programming, oop, tutorial.
code smell79devcommunity
https://dev.to/mcsee/code-smell-302-misleading-status-codes-10dd
Code Smell 302 - Misleading Status Codes - DEV Community
When your API says "Everything is fine!" but returns errors TL;DR: Returning a successful HTTP... Tagged with webdev, programming, beginners, api.
code smellstatus codes302misleadingdev
https://dev.to/thinkster/code-smell-output-parameters-36j0
Code Smell: Output Parameters - DEV Community
Output parameters are simple. They are parameters passed into a function or method call that are modi... Tagged with codesmells, productivity, webdev,...
code smelloutputparametersdevcommunity
https://www.proprofs.com/quiz-school/quizzes/pp-code-smell-identification-quiz
Code Smell Identification Quiz for Developers - Quiz & Trivia
May 2, 2026 - Learn to identify code smells and improve your refactoring skills. Test your knowledge of common code quality issues and design patterns.
code smellfor developersidentificationquiztrivia
https://www.ionos.com/digitalguide/websites/web-development/code-smell/
What is code smell? - IONOS
Code smells are superficial features of code that indicate systemic problems. They are often mass beginner errors within a codebase.
what iscode smellionos
https://dev.to/mcsee/code-smell-120-sequential-ids-egm
Code Smell 120 - Sequential IDs - DEV Community
Most IDS are code smells. Sequential IDs are also a vulnerability TL;DR: Don't expose obvious...
code smell120sequentialidsdev
https://www.freecodecamp.org/news/do-not-allow-bad-smells-in-your-java-code-4e8ad244393/
Make your Java code smell nice and fresh
Aug 19, 2024 - By Marco Massenzio A few years ago I joined a startup working on a cloud enterprise service that was originally built by an offshore team. The chosen...
make yourjava codesmellnicefresh
https://dev.to/mcsee/code-smell-190-unnecessary-properties-2an8
Code Smell 190 - Unnecessary Properties - DEV Community
Stop thinking of data as attributes. They are only needed to back your behavior TL;DR: Don't focus... Tagged with webdev, beginners, programming, python.
code smell190unnecessarypropertiesdev
https://dev.to/producthackers/code-smell-shotgun-surgery-2k30
Code Smell | Shotgun surgery - DEV Community
Hello, today we are back with the code smells refactoring series and in this case we are going to... Tagged with codequality, refactorit.
code smellshotgun surgerydevcommunity
https://dev.to/mcsee/code-smell-58-yo-yo-problem-ej9
Code Smell 58 - Yo-yo Problem - DEV Community
Searching for a concrete method implementation? Go back and forth, up and down. TL;DR: Don't ab(use)... Tagged with codenewbie, codesmell, tutorial, webdev.
code smell58yoproblemdev
https://dev.to/mcsee/code-smell-254-mystery-guest-4lbg
Code Smell 254 - Mystery Guest - DEV Community
You assert that something happened, but why? TL;DR: Be explicit when creating tests to ensure... Tagged with webdev, beginners, programming, tutorial.
code smellmystery guest254devcommunity
https://betterstack.com/community/guides/scaling-ruby/reef-explained/
Reek: Ruby Code Smell Detection Made Simple | Better Stack Community
Learn how to use Reek, the Ruby code smell detector that automatically identifies design problems like long methods, feature envy, and data clumps. Complete...
code smellmade simplebetter stackreekruby
https://dev.to/mcsee/code-smell-113-data-naming-1bm9
Code Smell 113 - Data Naming - DEV Community
Use entity domain names to model entity domain objects. TL;DR: Don't name your variables as... Tagged with oop, webdev, database, refactoring.
code smell113datanamingdev
https://dev.to/mcsee/code-smell-106-production-dependent-code-3f47
Code Smell 106 - Production Dependent Code - DEV Community
Don't add IFs checking for production environment. TL;DR: Avoid adding conditionals related to... Tagged with webdev, cleancode, oop, tutorial.
code smell106productiondependentdev
https://dev.to/mcsee/code-smell-17-global-functions-4b82
Code Smell 17 - Global Functions - DEV Community
Discouraged by Object-Oriented Programmings, Many mixed languages support it. And developers abuse... Tagged with codenewbie, development, tutorial.
code smellglobal functions17devcommunity
https://dev.to/mcsee/code-smell-319-hardcoded-stateless-properties-3b7k
Code Smell 319 - Hardcoded Stateless Properties - DEV Community
Don't turn collaborators into permanent roommates TL;DR: You should avoid storing stateless utility... Tagged with ai, code, programming.
code smell319hardcodedstatelessproperties
https://dev.to/mcsee/code-smell-232-reusable-code-44p5
Code Smell 232 - Reusable Code - DEV Community
Don't Repeat Yourself. Don't Repeat Yourself TL;DR: You can find missing abstractions by looking at... Tagged with javascript, programming, webdev, tutorial.
code smell232reusabledevcommunity
https://dev.to/mcsee/code-smell-158-variables-not-variable-39ke
Code Smell 158 - Variables not Variable - DEV Community
You assign a value to a variable and use it, but never change it TL;DR: Be declarative on... Tagged with webdev, beginners, programming, tutorial.
code smell158variablesdevcommunity