Search Results

0
votes

When should you start optimising code?

As you are writing code it is important to be aware of the cost implications of each action that you write, i.e. the cost in terms of CPU cycles, database access, File IO etc. I am frequently amaze …
1
vote

What’s the difference between game development and business development?

Business software has to be reliable, maintainable, consistent, not be too annoyingly slow, and can build on lots of already written stuff, such as databases, controls, forms etc. A games …
4
votes

Interface vs Base class

Explained well in this Java World article Personally I tend to use interfaces to defi …
2
votes

OOP: Where to stop Abstracting

Perhaps this question should be where to start abstracting. The example you quote is a classic example of not enough thought about what the objects actually are, as they ar …
2
votes

To Buy or To Build That is The Question

If you can justify that the application will gain significant competitive advantage then it is worth investing the time. However hard it is for us to admit - sometimes it is better to star …