149
votes
239answers
23k views
Confessions of your worst WTF Moment. (What not to do.)
What wonderful advice can we learn from the "What not to do" school of hard knocks?
30
votes
41answers
2k views
Most regrettable design or programming decision you made?
I would like to hear what kind of design decisions you took and how did they backfire. Because of a bad design decision, I ended up having to support that bad decision forever (I a …
170
votes
75answers
14k views
Common programming mistakes for .NET developers to avoid?
What are some common mistakes made by .NET developers, and how can we avoid them?
For example, trying to open a file without checking whether or not it exists, or catching an err …
100
votes
109answers
18k views
What coding mistakes are a telltale giveaway of an inexperienced programmer?
More specifically, what types of mistakes do you most commonly see in code from really green (inexperienced, not the Al Gore kind) programmers?
31
votes
44answers
2k views
Common programming mistakes for JavaScript developers to avoid?
In the spirit of
Common programming mistakes for .NET
developers to avoid?,
Common programming mistakes for
PHP developers to avoid?
what are common mistakes we should …
38
votes
34answers
2k views
What are the most common security mistakes programmers make?
There are the obvious wtfs that make the headlines such as SQL injection, authentication in JavaScript but are there other more fundamental and common errors programmmers tend to m …
18
votes
13answers
843 views
Common programming mistakes for Scala developers to avoid
In the spirit of
Common programming mistakes for Java developers to avoid?
Common programming mistakes for JavaScript developers to avoid?
Common programming mistakes for .NET …
1
vote
3answers
136 views
How can I delete Perforce changelist items erroneously marked as in conflict?
I have a couple of .refresh files that have somehow found their way into my perforce default pending changelist and from there somehow started showing as being in conflict with the …
9
votes
26answers
1k views
What is the biggest coding error/mistake ever…
I have done a few silly things in my time as a developer and have therefore learnt the hard way in some respects. Here are a few examples:
Missing out the WHERE clause in a …
27
votes
21answers
2k views
The most significant project management mistakes
What would you say are the most significant mistakes made by a typical project manager?
By "most significant", I mean with a large negative impact on the project. And the context …
2
votes
4answers
114 views
How do you correct repetitive typing mistakes?
I find myself making repetitive mistakes typing keywords and sentences in my code comments. I notice its getting worse since my fingers just keep "practicing" incorrect words.
Is …
1
vote
1answer
91 views
Query strange behaviour. Google App Engine datastore.
I have a model like this:
class Group(db.Model):
name = db.StringProperty()
description = db.TextProperty()
Sometimes when executing queries like:
groups = Group.all().orde …
8
votes
21answers
1k views
Your most common programming mistakes?
I find myself repeating some mistakes over and over again. Some language-dependent, some not. Here are some of mine I could think of right away.
PHP:
Inside a class method, forg …
2
votes
0answers
123 views
Common mistakes for a Stack Overflow user to avoid? [closed]
In the spirit of all these common mistake questions...
0
votes
2answers
422 views
Django “login() takes exactly 1 argument (2 given)” error
I'm trying to store the user's ID in the session using django.contrib.auth.login . But it is not working not as expected.
I'm getting error login() takes exactly 1 argument (2 giv …
