0
votes
Is mathematics necessary for programming?
About the only useful things you can learn at university are theoretical.
…
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.
…
2
votes
Reverse engineering war stories
I've had to reverse engineer a video-processing app, where I only had part of the source code. It took me weeks and weeks to even work out the control-flow, as it kept using CORBA to call itself, o …
1
vote
Do programmers need a union?
I think that it is interesting that there are some consistent issues that programmers complain about that no organisation addresses:
Lack of proper standards in colleagues, despite th …
-2
votes
What is a handler
Have you tried google and wikipedia?
In any case, a handler usually refers to some code that exists to handle an event - it will be called only when the event occurs.
…
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 …
0
votes
How to select a programming language for a project?
First of all, the components of code quality are familiarity with the task, with the language, and with the toolset available apart from the language. Once there is passable knowledge of a sane pro …
