Tagged Questions

An Anti-pattern is a pattern that may be commonly used but is ineffective and/or counterproductive in practice.

learn more… | top users | synonyms (1)

161
votes
35answers
13k views

What to do about a 11000 lines C++ source file?

So we have this huge (is 11000 lines huge?) mainmodule.cpp source file in our project and every time I have to touch it I cringe :-) As this file is so central and large, it keeps accumulating more ...
122
votes
28answers
7k views

TDD Anti-patterns catalogue

anti-pattern : there must be at least two key elements present to formally distinguish an actual anti-pattern from a simple bad habit, bad practice, or bad idea: Some repeated pattern of action, ...
98
votes
41answers
11k views

What are the most common SQL anti-patterns?

All of us who work with relational databases have learned (or are learning) that SQL is different. Eliciting the desired results, and doing so efficiently, involves a tedious process partly ...
76
votes
37answers
15k views

What is the most EVIL code you have ever seen in a production enterprise environment? [closed]

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 ...
65
votes
12answers
4k views

Design patterns to avoid

A lot of people seem to agree, that the Singleton pattern has a number of drawbacks and some even suggest avoiding the pattern entirely. There's an excellent discussion here. Please direct any ...
54
votes
38answers
5k views

C# Antipatterns

Possible Duplicate: Common programming mistakes for .NET developers to avoid? To cut a long story short: I find the Java antipatterns an indispensable resource. For beginners as much as for ...
42
votes
14answers
3k views

What is the name of this bad practice / anti-pattern?

I'm trying to explain to my team why this is bad practice, and am looking for an anti-pattern reference to help in my explanation. This is a very large enterprise app, so here's a simple example to ...
37
votes
10answers
2k views

What anti-patterns exist for JavaScript?

I find that what not to do is a harder lesson to learn than what should be done. From my experience, what separates an expert from an intermediate is the ability to select from among various ...
31
votes
7answers
5k views

Are subversion externals an antipattern?

Subversion lets you embed working copies of other repositories using externals, allowing easy version control of third-party library software in your project. While these seem ideal for the reuse of ...
30
votes
27answers
5k views

What is your “favorite” anti pattern? [closed]

By favorite I mean the one that gets your goat the most, not the one you enjoy using the most. I'm fairly new to the concept of anti patterns and I'd like a list of do not do's. An explanation of why ...
29
votes
20answers
3k views

When are global variables acceptable?

Everyone here seems to hate global variables, but I see at least one very reasonable use for them: They are great for holding program parameters that are determined at program initialization and not ...
27
votes
17answers
2k views

Embedded systems worst practices?

What would you consider "worst practices" to follow when developing an embedded system? Some of my ideas of what not to do are: Avoid abstracting the hardware layer, instead spreading hardware ...
27
votes
28answers
5k views

Java core API anti-Patterns. What is wrong?

Despite that the work of the guys from SUN with the Java core API is awesome, as they are humans, they are not infallible. I have read in several books some criticism about Some huge mistakes that (my ...
25
votes
33answers
3k views

What are the most commonly used anti-patterns? [closed]

I'm just wondering what are some of the classic mistakes we all make. I think before working on writing good code, you must learn to recognize bad code... especially when it's YOUR code!
23
votes
16answers
2k views

Python-specific antipatterns and bad practices

What python-specific antipatterns do you know? Could you also give an example, please.
21
votes
8answers
5k views

Why are Data Transfer Objects an anti-pattern?

I've recently overheard people saying that DTOs are an anti-pattern. Can someone please explain why? What are the alternatives?
20
votes
14answers
916 views

Where did variable = null as “object destroying” come from?

Working on a number of legacy systems written in various versions of .NET, across many different companies, I keep finding examples of the following pattern: public void FooBar() { object foo = ...
18
votes
14answers
2k views

What's the most unsound program you've had to maintain?

I periodically am called upon to do maintenance work on a system that was built by a real rocket surgeon. There's so much wrong with it that it's hard to know where to start. No, wait, I'll start ...
17
votes
6answers
1k views

Python: is using “..%(var)s..” % locals() a good practice?

I discovered this pattern (or anti-pattern) and I am very happy with it. I feel it is very agile: def example(): age = ... name = ... print "hello %(name)s you are %(age)s years old" % ...
17
votes
12answers
896 views

Antipatterns with ASP.NET [closed]

What are the most common Antipatterns you see in ASP.NET applications and how should we avoid them?
16
votes
19answers
1k views

When can a design pattern make your software worse?

When can a design pattern make your software worse? I have seen a program where they used the facade pattern between the GUI and logic. They considered that no objects may be transported over this, ...
16
votes
5answers
496 views

What are common antipatterns of using Git?

As a Git newbie, I realized that I have been using it as if it were Subversion. e.g. always working on master, not committing locally before pulling changes etc. This often results in avoidable ...
15
votes
8answers
711 views

How to convince people that a single class with 11975 lines of code is bad? (isn't it?)

I have a dejavu feeling when reading [What to do about a 11000 lines C++ source file?] post, but I don't think I can start taking action on my own since I do not have the authority to take action. So ...
15
votes
12answers
1k views

Misused design patterns

Are there, in the canonical Gang of Four list, any design patterns that you often find misused, misunderstood or overused (other than the highly debated Singleton)? In other words, is there a design ...
15
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 ...
14
votes
4answers
345 views

I'm in an anti-pattern and I want to get out

I am developing a java webapp, using jsp/jquery/ejb/jboss. I have a web-form that enables the user to select any combination of 100 fields (all from different unrelated tables/objects) from the ...
14
votes
3answers
976 views

anemic domain model versus domain model

Being confused again after reading about this anti-pattern and the many concerns about it here on SO. If I have a domain model and capture the data that must be persisted in a data transfer object, ...
13
votes
5answers
1k views

Dependency Injection best practices and anti-patterns

I'm relatively unskilled in Dependency Injection, and I'd like to learn some best practices and anti-patterns to use and avoid respectively when using DI.
12
votes
2answers
197 views

The “Enum as immutable rich-object”: is this an anti-pattern?

I've often seen and used enums with attached attributes to do some basic things such as providing a display name or description: public enum Movement { [DisplayName("Turned Right")] ...
12
votes
10answers
7k views

Singleton with Arguments in Java

I was reading the Singleton article on Wikipedia and I came across this example: public class Singleton { // Private constructor prevents instantiation from other classes private Singleton() ...
12
votes
6answers
823 views

What are the PHP-specific antipatterns that you know of?

PHP as a Blunt Instrument I hear PHP getting bashed around a lot lately. In quite a few projects, I have seen insane php code bases - so bad you really wonder if the person was on hallucinogenic ...
12
votes
4answers
980 views

Avoiding parallel inheritance hierarchies

I have two parallel inheritance chains: Vehicle <- Car <- Truck <- etc. VehicleXMLFormatter <- CarXMLFormatter <- TruckXMLFormatter <- etc. My ...
12
votes
9answers
843 views

Process Smells

We're generally familiar with code smells here, but just as damaging if not more so are when the business side of things - as much as it falls within our domain - is going wrong. As examples, the ...
12
votes
8answers
918 views

What lessons have you learned about using a wiki as a development tool?

I'd asked a question a while back about ways to encourage my team to collaborate. The tool we use is a wiki. Since this is the first time we are using the wiki (formally and as a team), we are ...
11
votes
7answers
505 views

Bad real-world database schemas

Our masters thesis project is creating a database schema analyzer. As a foundation to this, we are working on quantifying bad database design. Our supervisor has tasked us with analyzing a real world ...
10
votes
3answers
166 views

PHP string constants overuse?

I have two particular cases where I disagree with a coworker, whether constants should be used or not. We use a homemade framework working roughly like Symfony 1.x. Initial code was, in a routing ...
10
votes
6answers
278 views

Is Domain Anaemia appropriate in a Service Oriented Architecture?

I want to be clear on this. When I say domain anaemia, I mean intentional domain anaemia, not accidental. In a world where most of our business logic is hidden away behind a bunch of services, is a ...
10
votes
17answers
5k views

Can the Diamond Problem be really solved?

A typical problem in OO programming is the diamond problem. I have parent class A with two sub-classes B and C. A has an abstract method, B and C implement it. Now I have a sub-class D, that inherits ...
9
votes
2answers
193 views

“Master” associative table?

Consider a model for matching clients and sevices. Clients may be both providers of and consumers of services at various times. Clients may be individuals or groups (companies), the latter having ...
9
votes
9answers
762 views

What is an Anti-Pattern?

I am Studying about Patterns and Anti-patterns . I have a clear idea about Patterns. but I am not getting Anti-Patterns. Web Definitions and Wikipedia is confusing me a lot. can anybody explain me in ...
9
votes
19answers
1k views

Performance anti patterns

I am currently working for a client who are petrified of changing lousy un-testable and un-maintainable code because of "performance reasons". It is clear that there are many misconceptions running ...
8
votes
1answer
253 views

Creating custom events - Object Sender or Typed Sender?

I searched through the archives and I found lots of questions about what sender is and why you should use the pattern but I didn't see anything about a custom event and the type if sender. Say I am ...
8
votes
6answers
394 views

Is this an anti-pattern?

The situation is this: You have two classes that both implement the same interface and both classes work together to complete some business process. For example networkUserManager and ...
8
votes
12answers
536 views

What are some specific legitimate uses for singletons? [closed]

Possible Duplicate: On Design Patterns: When to use the Singleton? This question is not about whether or not singletons are "considered harmful" in general. I just want to know, from your ...
8
votes
9answers
975 views

Is INTERPRETER an anti-pattern?

To me, the Interpreter patten sounds very much like an anti-pattern known as Greenspun's tenth rule: Any sufficiently complicated C or Fortran program contains an ad hoc, informally-specified, ...
8
votes
13answers
562 views

When do you know you're dealing with an anti-pattern?

I'm looking to see how other programmers find anti-patterns, "code-smells", etc. In particular, what things start setting you off when you're looking at code that tells you, something has gone ...
8
votes
7answers
772 views

Need refactoring ideas for Arrow Anti-Pattern

I have inherited a monster. It is masquerading as a .NET 1.1 application processes text files that conform to Healthcare Claim Payment (ANSI 835) standards, but it's a monster. The information being ...
7
votes
3answers
308 views

Abuse of Closures? Violations of various principles? Or ok?

Edit: fixed several syntax and consistency issues to make the code a little more apparent and close to what I actually am doing. I've got some code that looks like this: SomeClass someClass; var ...
7
votes
3answers
394 views

Why is it “wrong to require rubygems”?

According to this post, requiring rubygems is an antipattern. require 'rubygems' The argument seems to boil down to this: When I use your library, deploy your app, or run your tests I may not ...
7
votes
7answers
2k views

Is global constants an anti-pattern?

I've always thought having a class just for the sake of holding constants is a bad design. But recently, I've tried googling for it and found only that having an interface as a constants is bad an ...

1 2 3 4