"Management that doesn’t understand programming" Huh? My worst managers have programmers trying to break into management while keeping their hand in programming by telling me how I should structure my programs. My best managers were non-programmers who had deep understanding of the development process and thus would get out of the way while did my thing.
Top Things That Annoy Programmers
31–40 of 62 posts
Re: Top Things That Annoy Programmers
#3210. Requests that begin with, "All you have to do is...". 9. Deadlines fabricated by others. 8. Single character variable names. 7. Being spoonfed requirements on a need-to-know basis. 6. SQL Selects within iterations. 5. Requests that describe how, but not what. 4. Variable names that don't describe what they are. 3. Meetings without beer. 2. Dropping everything for the emergency du jour. 1. Top 10 Lists that infer…
Surely there's nothing wrong with single-character variable names, used appropriately.
Re: Top Things That Annoy Programmers
#33Being thought of as a "subordinate" (I mention this, because he talks about programmers as being subordinates). Am I the only person on earth that rails against this? I trade my time for money, but I am no-one's "subordinate". To me, a manager is someone who makes sure I can get my work done and checks on the overall progress. I guess I'm asking for a mighty downvoting but I really want to know if others think its ok…
You're not subordinate to anyone regarding your life as a whole. If you're not a fan of your boss, you can quit and then he won't have authority over you anymore.
Re: Top Things That Annoy Programmers
#34Earlier quoted context omitted.
Surely there's nothing wrong with single-character variable names, used appropriately.
What's an example of an appropriate single-char variable name, in your opinion?
for (int i=0; i<items.length; i++) { //do something small with items[i] }
Re: Top Things That Annoy Programmers
#35Re: Top Things That Annoy Programmers
#36Earlier quoted context omitted.
What's an example of an appropriate single-char variable name, in your opinion?
personally, I find this more than ok: for (int i=0; i<items.length; i++) { //do something small with items[i] }
However, I should confess that I usually write it as ii:
for (int ii = 0; ii Re: Top Things That Annoy Programmers
#37Re: Top Things That Annoy Programmers
#38Being thought of as a "subordinate" (I mention this, because he talks about programmers as being subordinates). Am I the only person on earth that rails against this? I trade my time for money, but I am no-one's "subordinate". To me, a manager is someone who makes sure I can get my work done and checks on the overall progress. I guess I'm asking for a mighty downvoting but I really want to know if others think its ok…
Re: Top Things That Annoy Programmers
#3910. Requests that begin with, "All you have to do is...". 9. Deadlines fabricated by others. 8. Single character variable names. 7. Being spoonfed requirements on a need-to-know basis. 6. SQL Selects within iterations. 5. Requests that describe how, but not what. 4. Variable names that don't describe what they are. 3. Meetings without beer. 2. Dropping everything for the emergency du jour. 1. Top 10 Lists that infer…