0
votes
What is your single most effective interview question?
What is your favorite part of software development and why?
…
7
votes
Is Eclipse the best IDE for Java?
Eclipse was the first IDE to move me off of XEmacs. However, when my employer offered to buy me a Intellij IDEA license if I wanted one it only took 3 days with an evaluation copy to convince me t …
0
votes
How many function parameters is too many?
It depends strongly on the types of the arguments. If they are all integers then 2 can be too many. (how do I remember which order?) If any argument accepts null, then the number drops drasticall …
1
vote
What is hard in Scheme but easy in Java?
Hiring a junior developer who already knows the language.
…
1
vote
What dead programming languages do you know?
It depends on you definition of "know". I studied PDP-8 assembler but never wrote substantial code in it. I'd probably be productive in less than a day. Similarly for about 5 other assembly lang …
1
vote
What type of programming tasks do you find most interesting/challenging?
What I enjoy most is solving hard problems in clear, maintainable ways.
What I mean by hard problems:
Concurrency.
Communications protocols.
Designing a syst …
5
votes
Pivotal Suboptimal Decisions in the History of Software
Gary Kildall not making a deal with IBM to license CP/M 86 to them, so they wouldn't use MS-DOS.
…
5
votes
VB6 lives forever like Cobol
COBOL is a public standard, with multiple implementations by multiple vendors on multiple hardware platforms.
VB6 is only supported by Microsoft, and they've already told you that they won' …
0
votes
Why do Programmers Love/Hate Objective-C?
It's a strange mix of a statically typed language (c) and a dynamically typed language (Smalltalk). That provides something for every developer to both love and hate.
…
1
vote
Should Java break backwards compatibility in future versions for the benefit of a cleaner language?
There are several types of backwards compatibility:
Can old source code compile with the new compiler?
This can be handled with tools that convert old constructs to new one …
0
votes
Why is Long.valueOf(0).equals(Integer.valueOf(0)) false?
Part of the Java language design was for Objects to never implicitly convert to other types, unlike C++. This was part of making Java a small, simple language. A reasonable portion of C++'s compl …
4
votes
The “Should be easy for a junior developer to understand” argument
Your goal should not be for your code to be easy to understand for a junior developer. Instead, it should be easy to understand for a maintainence programmer.
This means:
Loc …
1
vote
What programming language will be most influential in five years from now?
SQL.
Okay, that's probably not what you were really asking.
…
1
vote
How long does it take to become proficient in Java if you are new to programming?
It depends.
Do you have the correct type of intellect needed to break problems down into distinct steps? If so, you can learn to program.
Given that, Java is a reasonable starting …
4
votes
