Search Results

2
votes

Is it a good idea to put Easter Eggs in applications?

No. If you want to write something cool, write it, and release it separately, rather than wasting time and making the codebase unnecessarily (and confusingly) bloated. …
1
vote

Do you use a single editor (well)?

Yep, Xemacs all the way. I don't know why people say that Emacs is hard to learn - it's self documenting, and it has a command line where you can tab-expand the command you're typing (tryin …
0
votes

What are Code Smells? What is the best way to correct them?

Any code that is repeated, or any instance when a variable is assigned more than once. Both are appropriate in certain circumstances, and given the constraints of the environment, but still …
1
vote

How often should you refactor?

Absolutely as soon as it seems expedient. If you don't the pain builds up. Since switching to Squeak (which I now seem to mention every post) I've realised that lots of design questions du …
1
vote

Working on multiple projects

Try to allocate at least a half a day as a block per project. Maintain proper to-do lists and divide the work into sensible packages. Have an idea of how it all fits together with deadlines. …
0
votes

Is Object-Oriented Modeling different from Object-Oriented Programming?

Well, given that code is a means of communicating, object-oriented programming in an object-oriented programming language is a form of modelling. One can however model at a more abstract le …
2
votes

Proprietary system documentation ‘leaks’ and how to stop them?

Not trying to prevent third party technologies from being compatible with yours. Seriously, if you lack the confidence to let third parties make replacements that are compatible, then think …
6
votes

What is a “Unit”?

A unit is any element that can be tested in isolation. Thus, one will almost always be testing methods in an OO environment, and some class behaviours where there is close coupling between methods …