Search Results

6
votes

What are your weakness points?

IMHO, it's a stupid question to ask in an interview. I have done a lot of interviews as the interviewer and I would never ask that question. I think I would push it back to the interviewer …
0
votes

Which is better: shipping a buggy feature or not shipping the feature at all?

I would not expect coders to deliver known problems into test let alone to release to a customer. Mind you, I believe in zero tolerance of bugs. Interestingly I find that it is usually deve …
0
votes

What is your favorite hot-key in Eclipse?

CTRL-ALT-UP/DOWN ARROW to copy the line or selection is pretty cool. And one I miss in Netbeans, so if anyone knows the equivalent... …
12
votes

Java core API anti-Patterns. What is wrong?

Stack extends Vector! insanity. if I am using a stack object I expect users to be able to push and pop, and err, thats about it. The java Stack also has all the vector functionalit …