4
votes
Get/Set in the c++ world, faux-pas?
Encapsulation is an OOP concept and it applies to all OOP languages. Public data members would break encapsulation. This may be fine if you have a very simple object which does not need encapsulat …
1
vote
What programming language should be taught in Computer Science 101?
As long as the student learns what a pointer is and how to approach problems mathematically the language doesn't matter much. Those two fundamentals are very important basic steps. Even in langua …
1
vote
What to include in a Utility Library
I'd suggest that instead of a "utility" library just make domain specific (graphics, authentication, validation, etc) libraries and only include them where they are needed. The key of course is de …
6
votes
What’s your favorite “programmer ignorance” pet peeve?
The idea that "intuitive" interfaces can actually exist. Sorry, but every interface is learned.
Although it is true that this idea usually comes to me from a business analyst...
…
0
votes
What real life bad habits has programming given you?
Every time I see a numeric series that is a power of two I have to count out the rest of that series up to 65536.
I refuse to do anything that can't be turned into an automated process. …
1
vote
Why are there no real competitors to Javascript?
Browser support. If its not an MS tech the it most likely will not go into IE. If it's not in IE then no one can use it. If it is an MS tech, then most likely only IE will have the right to use …
1
vote
What’s wrong with C++ compared to other languages?
The greatest pitfall of C++ is the all C++ code that has been written incorrectly. C++ is incredibly complicated and it doesn't offer much of a buffer from the complexity of writing code. Many th …
1
vote
What are the things Java got wrong?
GC
While GC is incredibly convenient, an unpredictable GC is not suitable for certain applications. One such example would be hard real time systems. In a hard real time …
