1
vote
What do you put on your cubicle walls?
ASCII dec/hex conversion chart ('man ascii' printout)
XML Character Entities (photocopied from an O'Reilly book)
Office phone system quick guide (how to set up call forwardi …
1
vote
How do you flag code so that you can come back later and work on it?
I use // TODO: or // HACK: as a reminder that something is unfinished with a note explaining why.
I often (read 'rarely') go back and finish those things due to time constraints.
However, when I'm …
2
votes
When is optimisation premature?
I try to only optimise when a performance issue is confirmed.
My definition of premature optimisation is 'effort wasted on code that is not known to be a performance problem.' There is mos …
0
votes
What is the best part of the military for a programmer?
Check out the schools and specialities that each force supports.
My experience (a few years out of date) was that the Air Force offered more opportunity for heads down programmers than the Navy as …
1
vote
Do most web ‘programmers’ (not designers) use wysiwyg editors or hand code their HTML?
Hand coded. I sometimes use the output of a WYSIWYG editor that someone else (a graphic designer) has used. But I always clean up the result and make it as clean and compliant as possible (while …
0
votes
Do you usually set the default value before or set it in the else?
I generally set the "default" value and use if statements to modify it.
If no default exists then only the if statements.
int timeout = 100;
if (moreTime) timeout = 1000;
int searc …
1
vote
Does the theological nature of computer programmers have an adverse impact on the state of the art of computer programing?
I think exactly the opposite is true of programmers..
I for one want to know the scientificly/mathematically proven best practices and will follow them (more or less) until something better …
0
votes
What are your criteria for choosing a framework or library?
I like tvanfosson's answer above.
Having poor documentation or a bad looking home page is a turn off but doesn't push me away as fast a buggy code or a poor API.
As for using third …
1
vote
Should you always read a book when picking up a new technology?
I prefer to try a new technology (often a new language or API) perhaps by running through a quick tutorial or a Hello World example before reading a how-to book. This frames my re …
0
votes
Do you compile and run code very often or write large code pieces at once?
I like do a lot of debug/trace logging (I seldom use the IDE's debugger) so I often run an incomplete piece of code to see that the log output is what I expected. I usually use unit tests (even if …
