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 …
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 …
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 …
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
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 …
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 …
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
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 …
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:
…
4
votes
8answers
194 views
What is the best way to execute sequential methods?
Working on a project where a sequential set of methods must be run every x seconds. Right now I have the methods contained within another "parent method", and just sequentially call them right after …
3
votes
4answers
224 views
Elegantly reducing the number of dependencies in ASP.NET MVC controllers
We are developing what is becoming a sizable ASP.NET MVC project and a code smell is starting to raise its head.
Every controller has 5 or more dependencies, some of these dependencies are only used …
3
votes
9answers
304 views
What would you say to someone who wants to make everything a .NET control?
For example, we have some CSS rules to define our form layout. We use the following markup:
<div class="foo">
<label class="bar req">Name<em>*</em></label>
…
3
votes
12answers
524 views
Code Smell? - Adjusting variables with +- 1
I just wrote this method:
private String getNameOfFileFrom(String path)
{
int indexOfLastSeparator = path.lastIndexOf('/');
if (indexOfLastSeparator > -1)
{
return …
3
votes
6answers
233 views
Is referencing an implementing base type in an interface a code smell?
I'm faced with a design decision that doesn't smell to me, but gives me pause. Take a look at the following code sample:
public interface IGenerator
{
///<summary>
/// Combines two …
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 …
