1
vote
5answers
114 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 …
1
vote
4answers
108 views
C style logic and refactoring
I love languages that evaluate a single expression both as a value and as a boolean value. For example A = 1 evaluates to true, and so does 1. If this practice is very common to the developers in my …
2
votes
9answers
264 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 …
2
votes
9answers
479 views
does this switch statement smell bad?
Switch(some case) {
case 1:
// compute something ...
return something;
break;
case 2:
// compute something ...
return something;
…
2
votes
13answers
549 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 …
11
votes
12answers
643 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 …
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 …
2
votes
10answers
412 views
Anything wrong with this kind/type of coding style?
Is there anything wrong with the below code? It is java codes, but somehow it looked like a C program to me. If there is something incorrect with the OO implementation, can you tell me the name of the …
2
votes
7answers
153 views
Are there any valid arguments for using unnamed constants?
A commonly used term is "Magic numbers". As discussed in a related question, this is considered a code smell. I assume the same would go for string constants, although the term "Magic strings" is not …
3
votes
9answers
305 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>
…
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 …
0
votes
1answer
123 views
Any way to reconcile Feature Envy with Long Parameter List?
I have been thinking about the Feature Envy smell lately. Suppose I have an object called DomainObject, that responds to a message "exportTo:someExport". This is basically the DomainObject's way to …
1
vote
3answers
445 views
How can I get rid of this smell? (refactoring switch statement)
Yesterday i was playing with jQGrid plugin and ASP.NET. Everything turned out well, my grid is working now, but i have two methods, that make my code smell.
smelly methods:
private …
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 …
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 …
