18
votes
30answers
2k views
How many parameters are too many?
Routines can have parameters, that's no news. You can define as many parameters as you may need, but too many of them will make your routine difficult to understand and maintain.
…
19
votes
20answers
3k views
What is the most EVIL code you have ever seen in a production enterprise environment?
What is the most evil or dangerous code fragment you have ever seen in a production environment at a company? I've never encountered production code that I would consider to be de …
1
vote
5answers
102 views
deadline shortcuts
Most of the time I write very maintainable and well design code(even at home). However I just wrote db + msword report app for my friend and code is really bad - lots of code dupli …
12
votes
14answers
2k views
Is there a name for this anti-pattern/code smell?
Let me start by saying that I do not advocate this approach, but I saw it recently and I was wondering if there was a name for it I could use to point the guilty party to. So here …
5
votes
9answers
564 views
Code deodorant: practices to avoid code smells
Excessive use of magic numbers or string literals in code is something of a code smell; not necessarily wrong but worth considering carefully. However, one can set up your editor/ …
11
votes
17answers
573 views
Persuading developers to fix smelly but working code?
In our company, developers always have dozens of important tasks assigned and tight deadlines in which to complete them.
In this environment, a code review often shows that their …
11
votes
11answers
600 views
Why use tuples instead of objects?
The codebase where I work has an object called Pair where A and B are the types of the first and second values in the Pair. I find this object to be offensive, because it gets use …
14
votes
14answers
768 views
Best way to relate code smells to a non technical audience?
I have been asked to present examples of code issues that were found during a code review.
My audience is mostly non-technical and I want to try to express the issues in such a w …
3
votes
13answers
572 views
What do you think when a Boolean “if” has three resulting code paths?
(Background: from a previous job, a co-worker and I would end up discussing the bug pile during lunch. We began to develop a topic called "bug of the week". I doubt I have material …
8
votes
17answers
1k views
My Java factory method smells. How do I fix it?
There's something very unsatisfactory about this code:
/*
Given a command string in which the first 8 characters are the command name
padded on the right with whitespace, construc …
2
votes
8answers
420 views
does this switch statement smell bad?
Switch(some case) {
case 1:
// compute something ...
return something;
break;
case 2:
// compute something ...
return …
5
votes
3answers
311 views
Too many “pattern suffixes” - design smell?
I just found myself creating a class called "InstructionBuilderFactoryMapFactory". That's 4 "pattern suffixes" on one class. It immediately reminded me of this:
http://www.jroll …
2
votes
9answers
257 views
Smaller methods vs. Clear recursion method
I'm reading Robert Martin's book "Clean Code" and most of what I've read makes sense and I'm trying to apply as much as I possibly can. One of the simplest most basic things he tal …
2
votes
13answers
521 views
Is the use of protected methods a bad thing?
A friend of mine has just posited that protected methods (yes, methods) constitute a code smell. That is, they're indicative of potential bad programming practice.
My gut says he' …
3
votes
10answers
408 views
“Code Smells” in non OO forms…
So, we saw the post on Code Smells and how to fix them...but what about for us NON object oriented folk? I use embedded C a LOT and while all the responses to the said post were g …
