45
votes
25answers
2k views
jQuery pitfalls to avoid
I am starting a project with jQuery.
What pitfalls/errors/misconceptions/abuses/misuses did you have in your jQuery project?
13
votes
22answers
955 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 t …
1
vote
3answers
108 views
Pitfalls in multithreaded programming [closed]
Possible Duplicate:
What are common concurrency pitfalls?
What are the pitfalls to be considered while doing multithreaded programming in any programming language, esp Jav …
1
vote
5answers
138 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 …
0
votes
3answers
127 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 …
12
votes
29answers
964 views
Python - Things one MUST avoid
Today I was bitten again by "Mutable default arguments" after many years. I usually don't use mutable default arguments unless needed but I think with time I forgot about that, and …
5
votes
2answers
69 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 …
1
vote
3answers
119 views
Pitfalls to be remembered while programming Android application
Are there pitfalls or the points to remember while programming for Android? I think the list will include topics on Multithreading, Persistent Storage etc
2
votes
5answers
82 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.o …
0
votes
4answers
105 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 …
3
votes
5answers
286 views
Common Python pitfalls a new user should avoid? [closed]
Possible Duplicate:
python - things one MUST avoid
What are the most common issues programmers who are new to Python run into? How would one avoid them?
-4
votes
2answers
222 views
Python differences: a+= [b] vs a = a + [b] …
Edited: Why is there a different output in these two cases?
class foo:
bar = []
def __init__(self,x):
self.bar += [x]
class foo2:
bar = []
def __init__(sel …
4
votes
14answers
350 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 …
6
votes
10answers
689 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 Acces …
2
votes
6answers
397 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 …
