Tagged Questions

0
votes
0answers
12 views

Common Gotchas when using TransactionScope and MS DTC

I am just starting to work with using TransactionScope, I find that there are always unexpected things I run into that take forever to debug. I figure that having a consolidated …
5
votes
2answers
129 views

Corner Cases, Unexpected and Unusual Matlab

Over the years, reading others code, I encountered and collected some examples of Matlab syntax which can be at first unusual and counterintuitive. Please, feel free to comment or …
1
vote
4answers
67 views

Is Collections.copy broken (in OpenJDK 6)?

Sometimes I seem to be quite inefficient. When I was nearly finished typing this, I managed to find the appropriate bug report at Sun. I then thought well, might as well post it, h …
5
votes
9answers
370 views

What’s the biggest R-gotcha you’ve run across?

Is there a certain R-gotcha that had you really surprised one day? I think we'd all gain from sharing these. Here's mine: in list indexing, my.list[[1]] is not my.list[1]. Learned …
4
votes
5answers
177 views

What git gotchas have you been caught by?

The worst one I've been caught by was with git submodules. I had a submodule for a project on github. The project was unmaintained, and I wanted to submit patches, but couldn't, …
1
vote
1answer
149 views

Gotchas in JDK 6

Are there any gotchas in JDK 6 which did not exist in earlier versions? I am interested in finding out some surprising changes like the following one in the way Timestamp.valueOf() …
37
votes
35answers
4k views

What is the worst C#/.NET gotcha?

This question is similar to this one, but focused on C# and .NET. I was recently working with a DateTime object, and wrote something like this: DateTime dt = DateTime.Now; dt.A …
12
votes
29answers
963 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 …
8
votes
21answers
782 views

What is the most dangerous feature in Java?

Which feature of the Java-language is the source of the most misunderstandings and bugs in your experience? The scope of this question is about the language, not the class-library. …
9
votes
23answers
882 views

What are the pitfalls of a Java noob?

I've gone through a few Java questions on SO. And I must say the content here is pretty well written and the Java guys on SO can really pump out the answers. But what I always fou …
8
votes
6answers
345 views

Learning Scala.

What was your methodology to learn Scala? (exercises? small project? library? manual?) What surprises have you encountered when you have been learning Scala? Both subjectively pos …
4
votes
7answers
350 views

gotchas where Numpy differs from straight python ?

Folks, is there a collection of gotchas where Numpy differs from python, points that have puzzled and cost time ? "The horror of that moment I shall never never forget !" …
24
votes
17answers
1k 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 pr …
14
votes
13answers
1k views

What are some C++ related idioms, misconceptions, and gotchas that you’ve learnt from experience?

What are some C++ related idioms, misconceptions, and gotchas that you've learnt from experience? An example: class A { public: char s[1024]; char *p; A::A() { p …
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?

1 2 3 next
15 30 50 per page