Which programming task do you hate most?
-
Which programming task do you hate most? Debugging multithreaded programs? Ensuring that program runs on all Windows versions? Database access? Image processing? Parsing text files? Network stuff? Error handling? Talking to middle-level managers doesn't count :-D Tomasz Sowinski -- http://www.shooltz.com
-
Which programming task do you hate most? Debugging multithreaded programs? Ensuring that program runs on all Windows versions? Database access? Image processing? Parsing text files? Network stuff? Error handling? Talking to middle-level managers doesn't count :-D Tomasz Sowinski -- http://www.shooltz.com
Finding/fixing a problem in somebody else's code. X| Regards, Alvaro
-
Finding/fixing a problem in somebody else's code. X| Regards, Alvaro
Finding and fixing a fundamental design error in someone else's code!
-
Which programming task do you hate most? Debugging multithreaded programs? Ensuring that program runs on all Windows versions? Database access? Image processing? Parsing text files? Network stuff? Error handling? Talking to middle-level managers doesn't count :-D Tomasz Sowinski -- http://www.shooltz.com
-
Which programming task do you hate most? Debugging multithreaded programs? Ensuring that program runs on all Windows versions? Database access? Image processing? Parsing text files? Network stuff? Error handling? Talking to middle-level managers doesn't count :-D Tomasz Sowinski -- http://www.shooltz.com
Developing a complex but poorly defined UI for a large, diverse, demanding, opinionated user community. "I never met anyone I didn't like" Will Rogers.
-
Which programming task do you hate most? Debugging multithreaded programs? Ensuring that program runs on all Windows versions? Database access? Image processing? Parsing text files? Network stuff? Error handling? Talking to middle-level managers doesn't count :-D Tomasz Sowinski -- http://www.shooltz.com
-
Which programming task do you hate most? Debugging multithreaded programs? Ensuring that program runs on all Windows versions? Database access? Image processing? Parsing text files? Network stuff? Error handling? Talking to middle-level managers doesn't count :-D Tomasz Sowinski -- http://www.shooltz.com
Being buried in paperwork because ISO900 / CMM5 / GLP / Quality-Standard-Of-The-Day requires a complete paper trail of everything you did, or thought about doing, ever.
-
Which programming task do you hate most? Debugging multithreaded programs? Ensuring that program runs on all Windows versions? Database access? Image processing? Parsing text files? Network stuff? Error handling? Talking to middle-level managers doesn't count :-D Tomasz Sowinski -- http://www.shooltz.com
Debugging is what i hate most. Sometimes you have done all the work on the project you are working on and there is a small bug lurking behind the code. I've spent hours trying to figure out why something is not working and then find out that i forgot to use == instead of = in an if statement. Drives me crazy.
-
Debugging is what i hate most. Sometimes you have done all the work on the project you are working on and there is a small bug lurking behind the code. I've spent hours trying to figure out why something is not working and then find out that i forgot to use == instead of = in an if statement. Drives me crazy.
The solution for that one is trivial! #pragma warning(error : 4706) // Assignment in conditional
-
The solution for that one is trivial! #pragma warning(error : 4706) // Assignment in conditional
Better yet, treat ALL warnings as errors. I have NO warnings in my code, when I started here the project had something like 250. I spent a lot of my own time fixing that, because I couldn't convince the boss it was a problem ( the program compiles, it works &tc ). But VC++ doesn't ALWAYS warn you when you've made the ==/= mistake, because I still find at times I spend an hour looking for it. Christian As I learn the innermost secrets of the around me, they reward me in many ways to keep quiet. Men with pierced ears are better prepared for marriage. They've experienced pain and bought Jewellery.
-
Building the installation program and then testing it on all the different versions of Windows, with and without IE, Outlook, etc. (we need an icon here for sleeping)
I'm with you there - when install time comes here, we all fight over it ( you do it, no YOU do it ). The other one for me was printing code. Being the only non-3D guy here ( just never had time to learn it ), I do all the other stuff, and that included printing. Weeks of printouts and the boss saying stuff like "Increase the resolution" and "The aspect ratio isn't quite right, is it ?". We were printing from Direct3D, so increasing the resolution wasn't as dumb a request as it sounds. Christian As I learn the innermost secrets of the around me, they reward me in many ways to keep quiet. Men with pierced ears are better prepared for marriage. They've experienced pain and bought Jewellery.
-
Debugging is what i hate most. Sometimes you have done all the work on the project you are working on and there is a small bug lurking behind the code. I've spent hours trying to figure out why something is not working and then find out that i forgot to use == instead of = in an if statement. Drives me crazy.
The best way to minimize that bug is to put constants on the LHS of the == operator:
if ( MY_CONST == nSomeVar ) ...
Since you can't assign a value to a constant, the compiler will puke when you try to build. Jon Sagara Sagara Software -
Which programming task do you hate most? Debugging multithreaded programs? Ensuring that program runs on all Windows versions? Database access? Image processing? Parsing text files? Network stuff? Error handling? Talking to middle-level managers doesn't count :-D Tomasz Sowinski -- http://www.shooltz.com
In one word: WebDevelopment (ASP/HTML), just hate it. - Anders Money talks, but all mine ever says is "Goodbye!"
-
Finding and fixing a fundamental design error in someone else's code!
DITTO!!! and on top of that you come across really bizarre code like,
try
{
// do some stuff
}
catch (ExceptionTypeA* pEx)
{
throw new ExceptionTypeB(pEx->GetMessage()); // X|
}Also, I find a lot of code written by some body else that crashes *inside* catch block. X| :) ;) ;P :-D :cool: Farhan Noor Qureshi
-
In one word: WebDevelopment (ASP/HTML), just hate it. - Anders Money talks, but all mine ever says is "Goodbye!"
And making HTML look/work the same on Netscape X| (a.k.a. Cross browser coding) :) ;) ;P :-D :cool: Farhan Noor Qureshi
-
Which programming task do you hate most? Debugging multithreaded programs? Ensuring that program runs on all Windows versions? Database access? Image processing? Parsing text files? Network stuff? Error handling? Talking to middle-level managers doesn't count :-D Tomasz Sowinski -- http://www.shooltz.com
Hello, the codegurus around the world.;) I fixed a couple of bugs which Sr. developer (15-20 years exp) can't fix.:(( :(( In fact, my company never asked me to fix these bugs, but unless I try to fix these bugs, I can't complete my project.:(( So far, I feel that I'm lucky.:rolleyes: Have a nice day!
-Masaaki Onishi-
-
And making HTML look/work the same on Netscape X| (a.k.a. Cross browser coding) :) ;) ;P :-D :cool: Farhan Noor Qureshi
True, couldn't agree more.:)
-
Which programming task do you hate most? Debugging multithreaded programs? Ensuring that program runs on all Windows versions? Database access? Image processing? Parsing text files? Network stuff? Error handling? Talking to middle-level managers doesn't count :-D Tomasz Sowinski -- http://www.shooltz.com
Planning, Planning, ... And tell my boss how much time I need
-
Finding and fixing a fundamental design error in someone else's code!
-
Working on someone else's code which contains fundamental design errors that you aren't allowed to fix!