0
votes
1answer
44 views
List of suspected Malicious patterns
I am doing an anti-virus project by disassembling its code and analyzing it.
So i want a list of the Suspected Malicious pattern codes, so i can observe which is suspected and whic …
23
votes
31answers
2k 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 beginn …
10
votes
5answers
216 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.
1
vote
6answers
127 views
Is it an anti-pattern to modify JavaScript’s built-in prototypes?
I understand from this post, that it's an anti-pattern to modify Object's prototype in JavaScript. I was curious, however, if it's widely considered to be an antipattern to modify …
63
votes
27answers
4k 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 pa …
9
votes
5answers
214 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 %( …
1
vote
2answers
121 views
jQuery (anti-)pattern: building selectors with string manipulation
Too often I find myself building selectors with string manipulation (split, search, replace, concat, +, join).
Good or bad?
9
votes
8answers
517 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?
15
votes
25answers
1k views
Java core API anti-Patterns. What is wrong?
Hi,
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 Som …
1
vote
6answers
213 views
how do you call this anti-pattern?
In the database you have a table with a bit field, let call that field Active
In the application you have a variable boolean, let call it NotActive
Everytime you get the field fr …
2
votes
8answers
211 views
Name for over-generalizing a function? Is this an anti-pattern?
What is the name for passing an argument to a function to select what the function does?
For example:
enum {
DoSomething,
...
};
void f(FunctionType a);
f(DoSomething);
.. …
16
votes
24answers
2k views
What is your “favorite” anti pattern?
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. A …
34
votes
30answers
3k 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 proc …
21
votes
31answers
2k views
What are the most commonly used anti-patterns?
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 …
9
votes
2answers
202 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 result …
