Tagged Questions
The pitfalls tag has no wiki summary.
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?
54
votes
29answers
6k views
What C++ pitfalls should I avoid? [closed]
I remember first learning about vectors in the STL and after some time, I wanted to use a vector of bools for one of my projects. After seeing some strange behavior and doing some research, I learned ...
24
votes
13answers
876 views
(Common) WPF pitfalls
I want to gather a list of WPF pitfalls. Issues with WPF that are not that well known and either have some serious design consequences or some major inconveniences.
One topic per answer.
List:
WPF ...
21
votes
13answers
1k views
Pitfalls of code coverage
I'm looking for real world examples of some bad side effects of code coverage.
I noticed this happening at work recently because of a policy to achieve 100% code coverage. Code quality has been ...
20
votes
22answers
2k views
What are common concurrency pitfalls?
I'm looking into educating our team on concurrency. What are the most common pitfalls developers fall into surrounding concurrency. For instance, in .Net the keyword static opens the door to a lot of ...
16
votes
5answers
562 views
What are hidden performance pitfalls in haskell?
I know, that I am not the first one who asks this, but I think my question may be different. I am asking for the non-obvious things. For instance, it took me a long time to understand, that ...
13
votes
15answers
1k views
What are the top javascript pitfalls?
I'm planing on giving an introduction talk on JavaScript and in the preparation process I wondered what the top pitfalls are that rookies fall into.
I know I've had a few gotchas before I fully ...
13
votes
14answers
5k views
When is it ok to use a global variable in C?
Apparently there's a lot of variety in opinions out there, ranging from, "Never! Always encapsulate (even if it's with a mere macro!)" to "It's no big deal - use them when it's more convenient than ...
12
votes
8answers
2k views
What code have you written with #pragma you found useful?
I've never understood the need of #pragma once when #ifndef #define #endif always works.
I've seen the usage of #pragma comment to link with other files, but setting up the compiler settings was ...
11
votes
2answers
153 views
Overloading with Short and int
Why this code will print int?
public static void main(String[] args) {
short s = 5;
A(s);
}
public static void A(int a){
System.out.println("int");
}
public static void A(Short a){
...
9
votes
11answers
2k views
MS Access as Enterprise Software?
Something that I often run into with my users is their desire to aquire solutions quickly means that they sometimes have said "Heck, I'll just roll up my sleeves and do it in Access - it's installed ...
8
votes
11answers
537 views
When can optimizations done by the compiler destroy my C++ code?
When can optimizations done by the compiler cause my C++ code to exhibit wrong behaviour which would not be present had those optimizations not been performed? For example, not using volatile in ...
8
votes
4answers
327 views
Pointers for a C# Developer Learning Ruby on Rails
I've spent the majority of my professional career developing in C#. To broaden my abilities I've recently begun learning Ruby on Rails. Thus far I've found scaffolding a basic CRUD app in RoR to be ...
8
votes
15answers
1k views
PHP quirks and pitfalls
I've realized that, although most of my experience consists in writing PHP applications, I find myself making "beginner mistakes" from time to time. This because PHP is a language that has grown very ...
8
votes
7answers
1k views
What are the most common mistakes made in WPF development?
This question intends to provide a list of solutions to common pitfalls, "gotcha's", or design issues when developing WPF applications. This can also include proper design-patterns as long as there is ...
7
votes
12answers
585 views
Things to avoid in Python [closed]
Possible Duplicate:
Common pitfalls in Python
Hello all,
inspired by this question Fastest way to learn Python? I've read the Dive into Python 3 webpage. I learned the basics, wrote a few ...
6
votes
5answers
343 views
Pitfalls for OO Programmer Learning the Functional Way?
I've been programming Java for a few years now, and I've dabbled in functional programming now and again. I'm thinking I should learn how to do the functional thing properly after having 'fun' with ...
5
votes
1answer
77 views
How can I satisfy my woes with R's `:` operator?
R's : operator has some well-known gotchas:
a = c(1, 2, 3)
set.zero = function(n) a[1:n] <<- 0
set.zero(0)
# `a` is now c(0, 2, 3)
I could just write a function that solves this by making 1:0 ...
5
votes
3answers
199 views
Transitioning from .NET to Lisp. Has anybody here done it?
I use ASP.NET during my day job, but I'm always looking to expand my programming knowledge. I've tinkered with everything from Ruby to 6502 assembly language, and now I want to learn Lisp. I guess I ...
4
votes
3answers
523 views
LINQ to SQL pitfalls
What are the major pitfalls that would make you think twice about using LINQ to SQL in an enterprise/non-trivial system?
I know it lacks the power and flexibility of NHibernate, but I'm not clear on ...
4
votes
6answers
862 views
Ruby on Rails: Common pitfalls/gotchas
There is a similar question about Ruby in general but I am soon to be starting out using Ruby on Rails to develop a website or two.
What are the common pitfalls/gotchas that are specific to Rails.
3
votes
5answers
216 views
Pitfalls of number values in Python, “How deep?”
I'm a fairly green programmer, and I'm learning Python right now. I'm up to chapter 17 in "Learn to Think Like a Computer Scientist" (Classes and Methods), and I just wrote my first doctest that ...
3
votes
5answers
265 views
Regex common pitfalls/gotchas (Java flavor)
Are there common patterns that people often use regex for (Java flavor) that is usually:
incorrect due to various corner cases (but works "most of the time")
correct but very slow
etc...
Also, ...
3
votes
5answers
548 views
Common Pitfalls in BASH programming
I am not able to find this particular discussion in SO.
What are all the common mistakes and pitfalls in the BASH programming / shell scripting?
PS: Please close if this has been discussed already.
...
3
votes
12answers
652 views
Programming by guessing/hoping
The Visual Studio IDE gives the developer almost instant feedback as to whether or not a block of code is correct or a program runs correctly. This usually leads to programming by guessing... The ...
2
votes
2answers
458 views
Objective-C Dot Syntax and Init
I have read a number of snippets that mention you should never use dot-notation within your init or dealloc methods. However, I can never seem to find out why. One post did mention in passing that it ...
2
votes
3answers
206 views
Common MVC 2 Pitfalls
I'm surprised this hasn't been asked before...or maybe I just don't see it.
Anyway, I'm finally straying from the comfort of ASP.NET Web Forms and exploring the world of MVC2. I've done the nerdinner ...
2
votes
1answer
37 views
Which articles I've should read before starting to make my custom drawn winforms app?
I'm currently developing a windows forms application with a lot of user controls. Some of them are just custom drawn buttons or panels and some of them are a compositions of these buttons and panels ...
2
votes
1answer
111 views
What are the pitfalls to watch out for when upgrading MediaWiki?
We've got MediaWiki 1.13.2 and we'll soon be upgrading to the latest & greatest version (probably 1.16). We've got lots of extensions installed (for which we'll probably also need to get the ...
2
votes
5answers
98 views
Library implementation pitfalls
What practices should developers avoid when implementing libraries?
For example, libraries should not use the following (or default usage should be disabled):
System.err
System.out
...
2
votes
8answers
735 views
How do different languages handle the “dangling else”?
I often see the dangling else handled as:
if (x > 0)
if (y > 0)
print "hello"
else
print "world"
the parser or interpreter will actually match the else with the closest if statement, ...
2
votes
4answers
477 views
What are the common mistakes that causes the code in Java is not thread safe? [closed]
Duplicate: What is the most frequent concurrency problem you’ve encountered in Java?
I've been thinking of list of common programming mistakes/pitfalls that causes the code in Java is not thread ...
2
votes
3answers
1k views
Any tips for managing a project with basecamp?
I'm going to be using basecamp for the first time on new project. Does anyone have any good tips / pitfalls for using basecamp. For example, can you end up spending more time playing with the to-do ...
1
vote
1answer
104 views
Are there any pitfalls to using extended pattern matching (extglob) in Bash?
I just learnt about Bash's extended pattern matching functionality and find it to be very useful. I am curious why this is disabled by default and thus did some searching around hoping to come up with ...
1
vote
2answers
48 views
advice, best practices and common pitfalls of concurrent read/writes on the same file: Java
My goal is a rudimentary FTP server. Only not obeying FTP, but still doing the same fundamental thing - taking in and giving out files. The scenario I need to tackle is starting serving a downloader ...
1
vote
3answers
214 views
Multiple characters in a character constant
Some C compilers permit multiple characters in a character constant.
This means that writing 'yes' instead of "yes" may well go undetected.
Source: C traps and pitfalls
Can anyone give an ...
1
vote
3answers
1k views
Apache Velocity performance pitfalls?
We are using Apache Velocity for website templates and some of them are getting complex. Have you noticed any performance issues with certain Velocity features? And how did you get around them?
1
vote
3answers
1k views
What are disadvantages of JavaFX and Silverlight?
JavaFX is a new technology introduced by Sun. I would like to know what are the limitations and pitfalls of JavaFX and silverlight.........
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 ...
1
vote
9answers
879 views
C macro pitfalls [closed]
Duplicate:
Good Programming Practices for Macro Definitions (#define) in C
C (and by extension C++) macros are laden with pitfalls and practical problems when not implemented properly.
Take, ...
1
vote
2answers
809 views
What are the Pitfalls of using a shared static WCF Proxy Client?
I am considering using a Shared (read static) WCF proxy client for a high throughput application. I believe there is a performance gain in doing this, but I have not benchmarked this as yet.
Are ...
0
votes
1answer
25 views
Where is/are the usability bug/s in my portfolio?
I have a portfolio for "after hours" work; it's at:
http://jonathanhayward.com/portfolio
It is designed to provide multiple ways of accessing a site: there's a column of buttons to the left; ...
0
votes
7answers
260 views
Java Null pitfalls - how to prevent them [closed]
What was the worst case of null you had to figure out and how did you deal with it since then?
0
votes
1answer
281 views
Iphone store image (pitfalls ?)
I have an application
that loads images from the net and stores it on the app's documents directory
so when the users starts up the application and doesn't have internet they still can use the ...
0
votes
4answers
298 views
Store data series in file or database if I want to do row level math operations?
I'm developing an app that handle sets of financial series data (input as csv or open document), one set could be say 10's x 1000's up to double precision numbers (Simplifying, but thats what ...
0
votes
3answers
170 views
Are there any good resources for transitioning from Java/C# to PHP
OK, so I see that there are a few articles for transitioning from PHP to Java, but I am going the other way around.
I have experience with developing with C# and Java applications (these languages ...