An anti-pattern mimics [tag:design-patterns] in that it appears to be a solution to a problem, but in fact has negative effects.

learn more… | top users | synonyms (1)

0
votes
0answers
34 views

Are WCF callbacks an anti-pattern?

As far as I understand it one of the things servers are very good at is managing large numbers of incoming connections, allocating those connections resources as they become available and then ...
2
votes
1answer
46 views

Is modalilty an anti-pattern in MVVM?

There is an interesting post discussing communication patterns between view models. I recently struggled to implement a modal dialog in a WPF MVVM application, but there more I think about it the ...
1
vote
0answers
75 views

Using Ninject and binding a default implementation while avoiding the dreaded Service Locator anti-pattern

Is it possible and/or a good idea to use Ninject (or any other IoC container, for that matter) to create a default binding for situations in which an appropriate implementation does not exist, and ...
21
votes
1answer
1k views

Are there any documented anti-patterns for functional programming? [closed]

Next month I'm going to work on a new R&D project that will adopt a functional programming language (I voted for Haskell, but right now F# got more consensus). Now, I've played with such ...
0
votes
0answers
44 views

Django models anti-patterns [closed]

I have been using Django for a little over a year now. During this phase I have seen Django maturing from 1.3 to 1.5. Around this time frame I was fortunate to work with all sort of Database backends ...
0
votes
0answers
56 views

Display changes in ui before end of ajax request [closed]

Is-it an anti-pattern to display changes in ui before the end of the ajax request? For example: User click on "like" on a post The ui display that you have liked it in real-time (and increment the ...
2
votes
2answers
56 views

Are void return methods that change the state of their argument an anti-pattern?

Are methods that return void but change the state of their arguments (ie. provide a hidden or implicit return value) generally a bad practice? I find them difficult to mock, which suggests they are ...
0
votes
4answers
106 views

Is use of delegate parameters a bad code smell? [closed]

This is a contrived example: public class Item : IFoobar { public int State { get; set; } public void ChangeState() { State++; } public ...
5
votes
3answers
75 views

Are single implementer interfaces for unit testing an antipattern?

In regards to unit testing, I was taught that production code shouldn't have test-related code in it. Well, I feel like I'm breaking that rule every time I try to unit test. I have a class internal ...
-2
votes
2answers
37 views

Django runserver style restart from within a django app

Pls read no further if you're squeamish or pious about django!... It turns out one of the several reasons you shouldn't use django "runserver" development server in production is it's horrible with ...
0
votes
1answer
36 views

NSManagedObjectContext Category

I am frequently setting up fetch requests in multiple classes to retrieve 'allRecipes', or a 'lastModifiedDate' from core data (plus a few other results). It would be convenient to use a specialized ...
2
votes
2answers
129 views

How do you refactor a God class?

Does anyone know the best way to refactor a God-object? Its not as simple as breaking it into a number of smaller classes, because there is a high method coupling. If I pull out one method, i usually ...
5
votes
3answers
581 views

Is Ext JS's MVC an anti-pattern?

I work in a team of 25 developers. We use ExtJS MVC pattern of Sencha. But we believe that their definition of MVC is misleading. Maybe we might call their MVC an anti-pattern too. AMAIK, in MVC ...
3
votes
3answers
448 views

Rich Domain Model and ORM

Martin Fowler considers Anemic Domain Model as an anti-pattern. Rolling the Persistence Model as the Domain Model seems severely off too due to Object Relational Impedence Missmatch. For persistence ...
2
votes
4answers
136 views

Property initialisation anti-pattern

Now and again I end up with code along these lines, where I create some objects then loop through them to initialise some properties using another class... ThingRepository thingRepos = new ...
3
votes
4answers
199 views

the significance of java RMI please? [closed]

Why do people use RMI, or when should I use RMI? I read those tutorials about RMI on oracle's website.But it doesn't provides enough practical examples. To my understanding, a software should have ...
3
votes
4answers
132 views

Change value of parameter inside method, is this an anti-pattern?

So something like this public void MyMethod(object parameter) //.... BuildSomething(parameter); BuildLayers(parameter); BuildOtherStuff(parameter); } public void BuildSomething(object ...
5
votes
2answers
180 views

Why is “call super” considered an anti-pattern according to Wikipedia? [closed]

Wikipedia classifies "call super" as an anti-pattern, and I don't really understand why. The pattern is used pretty frequently in objective-C/cocoa; for example init/dealloc, drawrect, awakefromnib ...
2
votes
2answers
102 views

Consumer/Producer “timely” queue

I've implemented an consumer/producer priority queue, where the priority is actually a time stamp representing when the item should be delivered. It works pretty well but I would like to know if any ...
-1
votes
1answer
72 views

Is this BaseBeen anti-pattern? [closed]

I have an utility library with the class ConsoleApp, which has only static method like GetIntValue(string name) to ask user to enter the integer value of the parameter with specified name, or ...
8
votes
4answers
212 views

Java antipattern name? Objects containing objects containing… etc

Is there a name or a particular rule for objects that contain objects that contain... and so on. I'm working with a complex system that often has objects running 5-10 layers deep. One reason I'm ...
7
votes
1answer
170 views

C++ Help on refactoring a monster class

I have a C background and am a newb on C++. I have a basic design question. I have a class (I'll call it "chef" b/c the problem I have seems very analogous to this, both in terms of complexity and ...
3
votes
2answers
217 views

GWT ClientFactory: Isn't this just a big blob/monolith?

The GWT ClientFactory seems to be a budding new design pattern for GWT apps, and although is not officially a part of the GWT API, is encouraged by GWT and is found in countless GWT/MVP examples. I ...
0
votes
2answers
200 views

Poltergeist antipattern example

I'm trying to understand what is Poltergeist antipattern, and how does it differ from Command or Delegate patterns. I've read: http://en.wikipedia.org/wiki/Poltergeist_(computer_science) ...
1
vote
1answer
133 views

Is there a common name for this code smell?

I refer to it as the "delivery boy". I've seen several variants of it but the issue is that a class has dependency for the sole purpose of passing it on to collaborators and never using the dependency ...
2
votes
5answers
187 views

Why is Singleton considered an anti-pattern? [duplicate]

Possible Duplicate: Singleton Design Pattern: Pitfalls Singleton anti-pattern I've heard recently that Singleton is an anti-pattern. I know it has to do with the fact making a class ...
0
votes
1answer
79 views

Is accessing child class from parent class considered anti-pattern

E.g. public abstract class Foo { public Bar f1() { return new Bar(); } } and public class Bar extends Foo { } From the design point of view, do you agree this design is ...
0
votes
2answers
141 views

Is Singleton an Anti-pattern?

Is Singleton an anti-pattern? If yes, then Dependency Injection in Spring also Anti-pattern (because Spring promotes Singleton bean which is default)?
0
votes
2answers
117 views

Anemic object or overworked constructor?

I'm working on a meal planning application. I have a MealSchedule which is a list of things that I want to eat on various days. That MealSchedule will eventually get turned into a MealPlan which is ...
2
votes
2answers
673 views

Why does Prism encourage use of the Service Locator anti-pattern? [closed]

As I move from MVC to doing some WPF with Prism, I buy a Prism book and once again i'm shocked to still see the Service Locator which is a known anti-pattern. I have read the books like Dependency ...
0
votes
0answers
14 views

Where to store associations of time intervals with projects, tasks and persons?

I have a problem how to get information about a parent node in a hierarchical data template in a child node (TreeView). I saw here, that there is FindAncestor which provides this. However, I think ...
1
vote
1answer
191 views

Decorator pattern vs. Call super anti-pattern

Let's have a simple Decorator example: struct IStuff { virtual void Info()=0; virtual ~IStuff() { } }; class Ugly : public IStuff { public: void Info() { cout << "Ugly"; } }; class ...
3
votes
4answers
169 views

Why defining properties in the prototype is considered an antipattern

I often see this pattern to define javascript objects function Person(name) { this.name = name; } Person.prototype.describe = function () { return "Person called "+this.name; }; And in this ...
8
votes
4answers
422 views

If Singletons are so bad, why does Scala have language support for them? [duplicate]

Possible Duplicate: Why are singleton objects more object orientated? Why does Scala have language support for the Singleton anti-pattern? If Scala had inherited the static keyword from ...
0
votes
0answers
48 views

Modal dialogs for exceptions on mobile apps - is there an anti-pattern? Too much blocking. Alternative? [closed]

Is there a best practice anti-pattern for modal dialogs on mobile web apps? It's a real show stopper. Android preferred. What's a better code pattern? Inline message, but how?
3
votes
2answers
110 views

Parent registering child's method: how to avoid the design anti-patterns?

struct Base { void foo(??? fn) { // do something with fn } }; struct A : Base { A() : Base() { ... } void aa() { ... } void aaa() { ... } }; struct B : Base { B() : Base() { ... } ...
10
votes
4answers
472 views

Why is “element.innerHTML+=” bad code?

I have been told not to append stuff using element.innerHTML += ... like this: var str = "<div>hello world</div>"; var elm = document.getElementById("targetID"); elm.innerHTML += str; ...
4
votes
3answers
211 views

Is replacing a list element an anti-pattern?

I have a module that works on paths represented as lists. Most of the functions do typical recursive list processing, but now I need one that sometimes mutates a path. So, I wrote this replace ...
0
votes
1answer
127 views

Guilty of unsound programming

I was reading Robert Rossney's entry on "What's the most unsound program you've had to maintain?" found at: (What's the most unsound program you've had to maintain?) when I realized that I ...
5
votes
3answers
189 views

DI Control-Freak anti-pattern: Having trouble understanding

I'm reading Dependency Injection in .NET by Mark Seemann and I can not for the life of me get my head wrapped around this: Although the new keyword is a code smell when it comes to VOLATILE ...
3
votes
1answer
388 views

Confused over using IOC container, service locator and factory

Suppose I have a BaseForm which depends on an ILogger or IResourceManager or something like that. Currently it resolves the correct implementation of the required service using the service locator ...
0
votes
2answers
610 views

Is MEF a Service locator?

I'm trying to design the architecture for a new LOB MVVM project utilising Caliburn Micro and nHibernate and am now at the point of looking into DI and IOC. A lot of the examples for bootstrapping ...
1
vote
2answers
203 views

Is it anti-pattern?

I often see the code like this: public abstract class AbstractDataReader { public void Read() { var reader = new StreamReader(FileName); ........ } protected abstract ...
0
votes
0answers
49 views

Singleton creating [duplicate]

Possible Duplicate: Extending singletons in PHP Can Singleton create instance of inherited class? class Singleton { public function getInstance() { if ( ! $this->instance) { ...
0
votes
0answers
117 views

What are the popular javascript antipatterns? [closed]

I am fairly new to Javascript and building one website with jquery. I tried to follow best practices as much as I could. Now want to know about some javascript antipatterns just to make sure that what ...
0
votes
2answers
102 views

Is this an anti pattern? If so why? If not why not?

I'm working on a bit of code where we're creating object models but the models have generic keys. For example class myContact { var key; var value; } And then in the code instantiating them as ...
4
votes
4answers
1k views

How to replace nested switch statements

I got asked to write a little PHP script that takes some POSTed input from a few drop down boxes which give some selectable criteria and at the end, spits out one or more string variables containing ...
0
votes
4answers
105 views

Good and bad ways to use operation contracts.

Hi I have been reading some lecture notes and I cant work out why this method: [OperationContract] Student PostStudent (Student student); Is good. And this method is bad: [OperationContract] void ...
20
votes
5answers
5k views

Any reason not to use + to concatenate two strings?

A common antipattern in Python is to concatenate a sequence of strings using + in a loop. This is bad because the Python interpreter has to create a new string object for each iteration, and it ends ...
0
votes
4answers
131 views

Pattern or antipattern: Using property of value as key in Dictionary/Hashmap

I wonder if it is good practice to use a property of the value as key in an Hashmap. In Java it looks like: private HashMap<String, VariableCondition> m_conditions = new HashMap<String, ...

1 2 3 4 5