Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. The Lounge
  3. Which programming task do you hate most?

Which programming task do you hate most?

Scheduled Pinned Locked Moved The Lounge
databasecomsysadminjsonhelp
32 Posts 25 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • A Alvaro Mendez

    Finding/fixing a problem in somebody else's code. X| Regards, Alvaro

    J Offline
    J Offline
    Jim A Johnson
    wrote on last edited by
    #3

    Finding and fixing a fundamental design error in someone else's code!

    F M 2 Replies Last reply
    0
    • T Tomasz Sowinski

      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

      C Offline
      C Offline
      Cathy
      wrote on last edited by
      #4

      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)

      C 1 Reply Last reply
      0
      • T Tomasz Sowinski

        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

        S Offline
        S Offline
        Stan Shannon
        wrote on last edited by
        #5

        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.

        1 Reply Last reply
        0
        • T Tomasz Sowinski

          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

          L Offline
          L Offline
          Lost User
          wrote on last edited by
          #6

          I hate building user interfaces, but I have to do them also. - Thomas

          1 Reply Last reply
          0
          • T Tomasz Sowinski

            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

            S Offline
            S Offline
            Stuart van Weele
            wrote on last edited by
            #7

            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.

            1 Reply Last reply
            0
            • T Tomasz Sowinski

              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

              E Offline
              E Offline
              Eric Sanchez
              wrote on last edited by
              #8

              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.

              J J D 3 Replies Last reply
              0
              • E Eric Sanchez

                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.

                J Offline
                J Offline
                Jim A Johnson
                wrote on last edited by
                #9

                The solution for that one is trivial! #pragma warning(error : 4706) // Assignment in conditional

                C 1 Reply Last reply
                0
                • J Jim A Johnson

                  The solution for that one is trivial! #pragma warning(error : 4706) // Assignment in conditional

                  C Offline
                  C Offline
                  Christian Graus
                  wrote on last edited by
                  #10

                  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.

                  1 Reply Last reply
                  0
                  • C Cathy

                    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)

                    C Offline
                    C Offline
                    Christian Graus
                    wrote on last edited by
                    #11

                    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.

                    1 Reply Last reply
                    0
                    • E Eric Sanchez

                      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.

                      J Offline
                      J Offline
                      Jon Sagara
                      wrote on last edited by
                      #12

                      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

                      1 Reply Last reply
                      0
                      • T Tomasz Sowinski

                        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

                        A Offline
                        A Offline
                        Anders Molin
                        wrote on last edited by
                        #13

                        In one word: WebDevelopment (ASP/HTML), just hate it. - Anders Money talks, but all mine ever says is "Goodbye!"

                        F 1 Reply Last reply
                        0
                        • J Jim A Johnson

                          Finding and fixing a fundamental design error in someone else's code!

                          F Offline
                          F Offline
                          Farhan Noor Qureshi
                          wrote on last edited by
                          #14

                          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

                          1 Reply Last reply
                          0
                          • A Anders Molin

                            In one word: WebDevelopment (ASP/HTML), just hate it. - Anders Money talks, but all mine ever says is "Goodbye!"

                            F Offline
                            F Offline
                            Farhan Noor Qureshi
                            wrote on last edited by
                            #15

                            And making HTML look/work the same on Netscape X| (a.k.a. Cross browser coding) :) ;) ;P :-D :cool: Farhan Noor Qureshi

                            E 1 Reply Last reply
                            0
                            • T Tomasz Sowinski

                              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

                              M Offline
                              M Offline
                              Masaaki Onishi
                              wrote on last edited by
                              #16

                              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-

                              1 Reply Last reply
                              0
                              • F Farhan Noor Qureshi

                                And making HTML look/work the same on Netscape X| (a.k.a. Cross browser coding) :) ;) ;P :-D :cool: Farhan Noor Qureshi

                                E Offline
                                E Offline
                                Eric Sanchez
                                wrote on last edited by
                                #17

                                True, couldn't agree more.:)

                                G 1 Reply Last reply
                                0
                                • T Tomasz Sowinski

                                  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

                                  F Offline
                                  F Offline
                                  Franky Braem
                                  wrote on last edited by
                                  #18

                                  Planning, Planning, ... And tell my boss how much time I need

                                  D 1 Reply Last reply
                                  0
                                  • J Jim A Johnson

                                    Finding and fixing a fundamental design error in someone else's code!

                                    M Offline
                                    M Offline
                                    markkuk
                                    wrote on last edited by
                                    #19

                                    Working on someone else's code which contains fundamental design errors that you aren't allowed to fix!

                                    N 1 Reply Last reply
                                    0
                                    • M markkuk

                                      Working on someone else's code which contains fundamental design errors that you aren't allowed to fix!

                                      N Offline
                                      N Offline
                                      NormDroid
                                      wrote on last edited by
                                      #20

                                      I guess your a contractor, or a permie looking at a contractors code :) Norm

                                      1 Reply Last reply
                                      0
                                      • T Tomasz Sowinski

                                        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

                                        P Offline
                                        P Offline
                                        Paul Watson
                                        wrote on last edited by
                                        #21

                                        Making HTML cross browser and cross platform compliant i.e. Netscape. My other pet hate is extending other peoples code. Everyone has their own style of coding and it can be a nightmare. OF course I am sure other people hate extending my code too :) regards, Paul Watson Bluegrass Cape Town, South Africa "We would accomplish many more things if we did not think of them as impossible." - Chretien Malesherbes

                                        1 Reply Last reply
                                        0
                                        • T Tomasz Sowinski

                                          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

                                          D Offline
                                          D Offline
                                          Daniel Turini
                                          wrote on last edited by
                                          #22

                                          Everything that is close to programming but is not programming. Documenting, time & cost estimates, managing a group of programmers, charging customers. Everything else is fun. :cool: Furor fit laesa saepius patientia

                                          D P 2 Replies Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • World
                                          • Users
                                          • Groups