19
votes
31answers
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.
Of course, you could …
20
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 deliberately malicious …
1
vote
5answers
113 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 duplication and …
2
votes
9answers
477 views
does this switch statement smell bad?
Switch(some case) {
case 1:
// compute something ...
return something;
break;
case 2:
// compute something ...
return something;
…
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 goes.
Now you have …
11
votes
17answers
581 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 program will execute …
14
votes
14answers
778 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 way that I convey the …
11
votes
11answers
623 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 used instead of an …
5
votes
9answers
574 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/IDE to highlight …
3
votes
13answers
584 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 for 52 posts a …
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, construct the appropriate …
5
votes
3answers
322 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:
…
2
votes
9answers
261 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 talks about is that …
3
votes
10answers
418 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 great, I wondered if …
2
votes
13answers
546 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's wrong, but I'm …
