Search Results

6
votes

Hardest Programming discipline?

Real-time embedded-device programming. …
2
votes

What is stopping you from using static analysis tools?

I regularly use FindBugs, since it seldom delivers false positives. Most other tools show hundreds of warnings, many of questionable utility Many tools don't have the abilit …
2
votes

Are we in a functional programming fad?

Elements of functional programming slowly creep into "mainstream" languages, as raw computing power and available memory size increases. The first functional feature to become generally ac …
11
votes

Why Java programs?

Java is vastly easier to work with, especially when developing large programs. Debugging: Java generates nice Stacktraces Stability: You can catch every exception De …
0
votes

Arrays, What’s the point?

How then would you store the pixels of an image, if not as a 2-dimensional array? Or the characters in a string? One might argue that an array is simply a specialized Map where the …
15
votes

Will emacs make me a better programmer?

The best programmers use vi or emacs, because the most experienced programmers are the best, and 20 years ago, there wasn't much choice except vi and emacs. After having started with vi (ca …
0
votes

Why aren’t more applications written in multiple languages?

For many classes of applications, there simply is no need for "classic" multi-language projects (involving a high-level language and a low-level language), and the extra complexity cost is signific …