0
votes
One piece of advice
Beware the myth of the perfect code... it doesn't exist and never shall exist.
I'd also add that design patterns are something I should have picked up sooner than I did.
JB
…
1
vote
What kind of code overview documentation do you write?
There should be a specification document that has the necessary details on what was coded and why it was coded. If it is a large piece of code, e.g. thousands of lines of code or more, then it may …
0
votes
Are Tests Valid Documentation?
No, well written unit tests can help supplement documentation by giving concrete examples but the unit tests are rarely comprehensive and manageable, e.g. even for a simple temperature conversion p …
6
votes
What skills are worth learning for a programming career and/or resume?
Here are my top few suggestions:
1) Make sure you know how you learn. Do you prefer examples, abstract concepts, learning visually or orally, etc. Chances are you will likely have to lear …
1
vote
What is the biggest problem with software development?
Not understanding that we don't know how long some things will take to produce as rarely is the initial design perfect. The idea here is that we can give a hypothetical solution but as that comes …
2
votes
How do you vent stress as a programmer?
Just to echo a few other answers here:
1) Talk with other programmers. We all have our war stories to tell and co-miserate with each other about it. To some extent sites like the daily WT …
1
vote
What was the most refreshing idea which benefitted you in your programming career?
Design patterns which are my secret weapon in writing code sometimes
…
2
votes
Perks for new programmers
Casual dress code
Free pop (This was one that I really liked back in the dot-com days and miss it sooo much)
Flextime and telecommuting
Configure there own machine w/dual monitors and a budget
Bene …
0
votes
How to write a self reproducing code (prints the source on exec)?
One idea to think about encoding and how to give something a double meaning so that it can be used to output something in a couple of forms. There is also the cavaet that this type of problem come …
0
votes
Why did you become a programmer?
I figured it made sense given the degree I graduated with from university after noticing that my grades weren't quite good enough to go to grad school, graduating average being 75% and most of the …
1
vote
Working in a Startup (or a small company)
As has been said by others, there are advantages and disadvantages to starting at a startup. In my case, I started at a startup and was there for just over 6 years. My experiences were the follow …
1
vote
What was the biggest lesson you learned in your career as an IT professional?
Realize that specifications are going to change. This is simply a quirk of being human in that there are those frilly elements in the UI that will likely get changed on a whim that one has to be p …
1
vote
What is the one programming skill you have always wanted to master but haven’t had time?
Parallel programming computational complexity. I'm curious how this gets measured and what techniques are there for determining optimal efficiency of sorting n elements over m processors and other …
1
vote
Can you imagine to still develop software within the next 20 years?
There will likely be some new languages, development methodologies and IDEs between now and 30 years from now. Think about what it meant to write software even 10 years ago before .Net, ASP, and a …
0
votes
What should every programmer know?
I'll add my own bits:
Basic understanding of Software Development Life Cycle, generally the phases of requirements gathering, analysis and design, implementation, testing and maint …
