Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

479
votes
116answers
42k views

Common programming mistakes for .NET developers to avoid? [closed]

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 error unnecessarily.
130
votes
28answers
9k views

jQuery pitfalls to avoid [closed]

I am starting a project with jQuery. What pitfalls/errors/misconceptions/abuses/misuses did you have in your jQuery project?
117
votes
25answers
11k views

Common programming mistakes for Scala developers to avoid [closed]

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 developers to avoid? ...
115
votes
39answers
7k views

Common programming mistakes for PHP developers to avoid? [closed]

In the spirit of Common programming mistakes for .NET developers to avoid?, what are common mistakes PHP developers make? Using == when === should be used is a common one. What are some others ...
68
votes
25answers
4k views

What are the Ruby Gotchas a newbie should be warned about?

I have recently learned the Ruby programming language, and all in all it is a good language. But I was quite surprised to see that it was not as simple as I had expected. More precisely, the "rule ...
55
votes
54answers
3k views

Common programming mistakes for JavaScript developers to avoid? [closed]

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 avoid for ...
51
votes
29answers
4k views

Common programming mistakes for Java developers to avoid? [closed]

In the spirit of Common programming mistakes for .NET developers to avoid? Common programming mistakes for PHP developers to avoid? Common programming mistakes for JavaScript developers to avoid? ...
45
votes
35answers
4k views

Common pitfalls in Python [closed]

Possible Duplicate: Python 2.x gotcha’s and landmines Today I was bitten again by mutable default arguments after many years. I usually don't use mutable default arguments unless ...
39
votes
8answers
3k views

Common programming mistakes for Clojure developers to avoid [closed]

Following a masterful trend: Common programming mistakes for Scala developers to avoid? Common programming mistakes for Java developers to avoid? Common programming mistakes for JavaScript ...
29
votes
13answers
721 views

what is the most common mistake that you make while writing code in jquery?

Mine is that, I almost always forget to put a # before the id name of the element Example: $("ElementId") instead of $("#ElementId") Whats yours?
28
votes
11answers
2k views

Common programming mistakes for Go developers to avoid [closed]

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 developers to avoid? ...
25
votes
24answers
2k views

Common mistakes for CSS-designers to avoid? [closed]

What are some of the most common mistakes made by CSS-Designers?
17
votes
9answers
1k views

Common programming mistakes for F# developers to avoid

In the spirit of common-programming-mistake questions, I ask this question for F#. Some mistakes could be inherited from .NET framework: Common programming mistakes for .NET developers to avoid? ...
17
votes
13answers
647 views

Common programming mistakes for Groovy and Grails developers to avoid? [closed]

I've found the "common programming mistakes for x" to be very informative. So what mistakes should groovy and grails developers avoid?
17
votes
13answers
837 views

What are the most common misunderstandings of how things work in .Net?

In your experience, what do you see (or hear) as common misunderstandings about how things work in .Net? I'm not thinking of common programming mistakes, such as throw ex to rethrow an exception, ...
17
votes
8answers
1k views

Common Programming Mistakes for Ruby Developers to Avoid [closed]

Possible Duplicate: What are the Ruby Gotchas a newbie should be warned about? What are some common programming mistakes made by Ruby developers, and how can they be avoided? For example, ...
15
votes
1answer
3k views

MVVM-light + RIA Services best practices

I would like to start a collection of MVVM-light (w/ RIA Services) Best Practices. There are a number of items I have found to be helpful best practices or best approaches, but would like to hear ...
12
votes
5answers
1k views

Common programming mistakes for Haskell developers to avoid? [closed]

In the spirit of the other common mistakes in questions, what are the most common mistakes that Haskell programmers make? I've been teaching myself Haskell for a little while and I am starting to ...
10
votes
24answers
2k views

Your most common programming mistakes? [closed]

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, forgetting that I have ...
8
votes
6answers
560 views

Most Important Python Idioms

This question is inspired by several back-and-forths I've had recently about techniques that are or are not optimal for python programming. I may know other languages, but I am still learning in ...
8
votes
8answers
341 views

The common security issues that a beginner makes in php?

Yes, I'm a beginner. I wonder to know which are the main problems of security on a web site under PHP framework. Can someone give some link and/or some issue list? I would be very grateful, because ...
7
votes
3answers
177 views

Java development pitfalls for a .NET developer

What are common Java development pitfalls that one may encounter if they come from a .NET background?
7
votes
9answers
1k views

Common programming mistakes for ColdFusion programmer to avoid? [closed]

In the spirit of my other questions regarding "common programming mistakes ... to avoid" What are some common programming mistakes for a ColdFusion programmer to avoid?
7
votes
22answers
917 views

Common programming mistakes for SQL developers to avoid? [closed]

In the spirit of javascript .net What are the common mistakes we should avoid when programming in SQL?
6
votes
4answers
143 views

How to make Python warn about bad practice and likely mistakes?

Perl has the strict and warnings pragmas and a couple of CPAN modules for encouraging good style and reducing errors. Is there a Python counterpart that can help me avoid such problems and bad ...
4
votes
2answers
526 views

Common Programming Mistakes for Lift Developers to Avoid [closed]

In the spirit of Common programming mistakes for Scala developers to avoid and family. What are the best practices and common mistakes to avoid when developing for the lift / liftweb framework? ...
4
votes
6answers
645 views

Common Haskell pitfalls a newbie should be on a lookout for

I'm thinking of learning Haskell, so I was wondering what issues are often ran into by Haskell newbies (especially ones which haven't had much experience with functional programming). Any other kind ...
3
votes
3answers
142 views

New to Python programming, could somebody please explain the fault with this program?

I am very new to Python programming, I am writing a simple fighting game at the moment (text based) that is extremely simple as I'm just learning the basics at the moment. I have placed the code for ...
3
votes
8answers
287 views

How do you find which link was clicked?

How do I get a reference to the clicked link to delete the correct row? <tr> <td>c1r1</td> <td>c2r1</td> <td><a ...
3
votes
4answers
227 views

Common mistakes with Boost [closed]

I'm already experienced with C++ (C, OOP, the STL, et al.), and I'm looking to start delving into the Boost libraries. What are some common mishaps you've seen? Pitfalls you've been snagged by? ...
2
votes
2answers
22 views

How can I cause a build error due to mismatch between sproc and calling code?

I have a .NET class (for discussion, ClassA) that calls a SQL Server stored procedure (for discussion, fooSproc), processing the results with a SqlDataReader. The rows are processed, and the columns ...
2
votes
5answers
406 views

Why is using a common-lookup table to restrict the status of entity wrong?

According to Five Simple Database Design Errors You Should Avoid by Anith Sen, using a common-lookup table to store the possible statuses for an entity is a common mistake. Edit + Answer: The figures ...
2
votes
2answers
163 views

Register all GUI components as Observers or pass current object to next object as a constructor argument?

First, I'd like to say that I think this is a common issue and there may be a simple or common solution that I am unaware of. Many have probably encountered a similar problem. Thanks for reading. I ...
2
votes
6answers
1k views

Should useless type qualifiers on return types be used, for clarity?

Our static analysis tool complains about a "useless type qualifier on return type" when we have prototypes in header files such as: const int foo(); We defined it this way because the function is ...
1
vote
0answers
94 views

What are common Silverlight specific mistakes/pitfalls developers should avoid? [closed]

What are some common mistakes/pitfalls, specific to Silverlight development, that developers should avoid? Here is a compilation of input from users on both StackOverflow and ...
1
vote
2answers
319 views

Stupid mistakes in C. Break, Switch, If. 1990 Crash of Telephone Network [closed]

I was hesitating to ask this, since it seems very easy. What is wrong in this pseudocode? In the switching software (written in C), there was; a long "do... while" construct, which contained a ...
1
vote
1answer
257 views

Python and xml : Reading data from xml file

I have a simple python, in which i have defined styledoc as follows styledoc = libxml2.parseDoc(""" <xsl:stylesheet version='1.0' xmlns:xsl='http://www.w3.org/1999/XSL/Transform' ...
1
vote
2answers
206 views

How would I scan the first line of a text file for two integers, omitting any strings?

I have to search the first line of a text file for two Int values that will be the dimensions of a 2D array. Here is what I have so far...Thanks! try { Scanner scan = new Scanner(f); ...
1
vote
4answers
208 views

What not to do in PHP? [closed]

Possible Duplicate: Common programming mistakes for PHP developers to avoid? PHP is hated by a lot of programmers and even more hated is how the code is written by sloppy PHP coders. What, ...
1
vote
9answers
230 views

Helping new or inexperienced programmers overcome common mistakes [closed]

Possible Duplicate: How to help a struggling newbie do a better job? What is the best way you have found for helping a new or inexperienced programmers overcome common mistakes?
1
vote
4answers
112 views

What to avoid in php/mysql/ajax when relying on heavy reads/writes

i was wondering what the main things were to avoid when creating an webapplication that relies on heavy reads and writes every second. Think of online gaming where money is involved. For example you ...
0
votes
1answer
120 views

Help me find mistake in greatest common divisor algorithm in python

So I have written function gcd(a, b) if b <> 0 gcd (b, a % b) else return a print gcd (12, 9) so it goes: gcd(12, 9) 9 <> 0 means TRUE gcd(9, 12 % 9 = 3) 3 <> 0 means ...
0
votes
3answers
157 views

Avoid accidental commit of certain changes to a file in Subversion

The problem I just accidentally committed a change to a file that was only meant to help debug a problem. As a result, I rather messed up the current version of our software, because I accidentally ...
0
votes
4answers
105 views

your list php mistakes that newbies make [closed]

Possible Duplicate: Common programming mistakes for PHP developers to avoid? We've all been there, been coding for a few months and getting our habits established, but not all of them might ...
0
votes
1answer
72 views

Extreme Misuse/Mishandling of Velocity — Not Sure Where To Start

Working on a legacy project that includes a fair amount of velocity. Not sure on what I can safely post on her (copyrights and all) but I'll try to be an clear and concise as I can. We have several ...
0
votes
0answers
322 views

What are the most common causes of errors in javascript and how to fix them? [closed]

Possible Duplicate: Common programming mistakes for JavaScript developers to avoid? This is kind of a subjective question, but I am hoping the well-tenured programmers might know of ...
0
votes
2answers
169 views

Parent-child table layout

I'm currently planning a piece of software for dogbreeders and I'm in doubt about my datadesign...whether I'm doing something smart or stupid :) The plan at the moment is one holistic "dog" table ...
-1
votes
2answers
68 views

What classic programming mistakes can make a website crash? [closed]

Question I would like to know the most classic way a Java website can crash, fail... I am talking exclusively about programming mistakes (not server/network/filesystem... problems). Context My ...
-1
votes
2answers
160 views

How to recover a dropped MongoDB database?

If somebody accidentally dropped a MongoDB database but executing db.dropDatabase(), how can he recover the database? Dropping a database in MongoDB is simple, and the command db.dropDatabase() won't ...