0
votes
DIVs vs. TABLEs a rebuttal please
Tables are supported even in crusty old HTML v1.0 browsers. If your target market includes people using embedded browsers in mobile phones from the 1990s, that might be a good reason to go with tab …
1
vote
First programming language
There's definitely a notion of "simpler" versus "harder" languages, there's just very little consensus on which languages are which...
Most of the old-school nerds I know started off with e …
0
votes
Can you imagine to still develop software within the next 20 years?
Well, I'm already at more than 20 years of full-time employment as a programmer, so... Yes.
As others have mentioned, "keeping up" isn't really a problem, if you stay interested and active. …
0
votes
Why should I have two monitors?
It's very helpful when attempting to debug an application with a GUI to have two monitors - one for the application being debugged, one for the debugger/IDE. You can do the same thing on one large …
106
votes
What Easter Eggs have you placed in code?
One application I worked on had an entirely too long "about" dialog text. I rearranged things to put the most useful information at the top, gradually reducing the text size, until at the very bott …
1
vote
1
vote
What do you do if you cannot resolve a bug?
Lots of great answers here. One thing that's worked for me in the past is to ask "what can I do to make it totally obvious when this problem has occured?".
For example, if the problem is a …
3
votes
UNIX shell written in a reasonable language?
Tclsh is pretty nice (assuming you like Tcl, of course).
…
14
votes
When, if ever, is “number of lines of code” a useful metric?
It's a terrible metric, but as other people have noted, it gives you a (very) rough idea of the overall complexity of a system. If you're comparing two projects, A and B, and A is 10,000 lines of c …
1
vote
Best way to design for localization of strings
I don't know much about how this is normally done on Windows, but the way localized strings are handled in Apple's …
56
votes
What is the best comment in source code you have ever encountered?
// I know the line below is wrong, but it came that way from our IP vendor, and
// the driver won't work if you "fix" it. I've had to revert this change 4 times
// now. Leave it alone, or …
5
votes
What programming languages do you consider indispensable in your experience?
Lua or Tcl (or Lisp), to get an appreciation for what you can do in a language with minimal syntax. Smalltalk, because "everything is an object" is a pretty cool place to visit, as well.
…
29
votes
Tips on how to inoffensively help an older co-worker to become a developer instead of a code-monkey?
I recommend instituting code and design reviews (for everybody, not just him). At the very least, quick "buddy checks" before checking in new code. Practice the …
0
votes
Best cubicle toys for programming
I'm a fan of physical toys as a way to break out of a rut, and let your mind wander for a while. I had a magnetic "stick and ball" building set out in our common area for a while, though it seems t …
3
votes
Best cubicle toys for programming
If you're in an office that doesn't provide a dry-erase board for every developer, you might consider buying a cubicle-mountable whiteboard and pen set for each. That's the non-computer tool I use …
