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.
…
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
What should every programmer know?
Functional programming. It'll teach you to think about how elements of your programme fit together. Terribly useful in object oriented programming.
Learn the difference between a type and a …
0
votes
What is the best way of storing time?
Standard date representations should be just fine when combined with a measure of error in the date (e.g. 100 BC +/- 100years). You can't use YBP because the present is constantly moving forwards. …
0
votes
Seating plan software recommendations (does such a beast even exist?)
This sounds like a constraint satisfaction problem. You should probably check out logic programming systems that are also equipped with constraints-solvers. They're usually like prolog, only they a …
0
votes
Have you ever crashed the compiler?
One time when I used the generators example from the Python docs, it broke the version of Python we were using. The same week, one of my colleagues managed to misuse the FFI such that any calculati …
-1
votes
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 …
0
votes
When is Object Oriented not the correct solution?
Well, OOP is not especially orthogonal to anything (except perhaps other ways of getting polymorphism) so...uh...whatever.
…
0
votes
How do you handle exceptional cases
Well, if all it is is that you have two options that are special, and then anything else is dealt with in the same way, then store your options as strings, and if either of the two special ones app …
