Search Results

1
vote

Example of modern text editor architecutre

The ultimate text editor is, of course, emacs. I found The Craft of Text Editing, or, Emacs for the Modern World to be an excellent self- …
3
votes

Should I prepare my code for future changes?

Yes -- by doing less. You won't know what the future requirements for your code. The best preparation for the future is not to implement anything that's not needed right away, and …
1
vote

What is domain logic?

Domain logic applies to the problem domain, e.g. "order processing". Domain logic is about the entities you work with (the object model), and their relationships. Business logic contains r …
6
votes

How important for programming skills is to have nice gadgets?

New gadgets are useful if they expand your horizon. For example, i recently got myself an iPod touch; this has deeply changed my appreciation for touch-screen user interfaces -- i only kne …
0
votes

How important is platform independence?

"Platform independence" can mean different things to different people. For example, is "Windows XP" a different platform than "XP 64", or Vista, or Windows 7? It depends upon whether you write appl …
1
vote

What are the biggest design errors in popular languages or libraries?

Java "Calendar" API. It is error-prone and hard to use. To enumerate just a few of the problems: misleading name: a Calendar object is supposed to model a "calendar system", b …
0
votes

Best Practices: hasXXX() methods for possible null returning getXXX() methods.

There are 2 possible reasons for introducing hasXXX(): because hasXXX() communicates its intent better than getXXX() != null, und thus might be …
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 …