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- …
6
votes
What is the cost of a function call?
relative timings (shouldn't be off by more than a factor of 100 ;-)
memory-access in cache = 1
function call/return in cache = 2
memory-access out of cache = 10 .. 3 …
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 …
3
votes
Stategies for Rebuilding Legacy Applications
Michael Feathers: Working effectively with legacy code presents a number of techniques to work with, and replace, l …
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 …
