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.
  • 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
                        • 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

                          G Offline
                          G Offline
                          GogglesPisano
                          wrote on last edited by
                          #23

                          Time and cost estimates -- nothing frightens me more than when my manager walks into my office and begins his sentence with "Um, how hard would it be...".:eek:

                          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
                            Michael P Butler
                            wrote on last edited by
                            #24

                            I hate the actual typing in of the code. I love the design and specification side of it and working out classes and objects etc. I really hate the typing of the code, especially if it is boring stuff like read data from a recordset or setting the columns of a list control. Luckily I'm starting to build up a good library of code and templates help a great deal too. I just hate the typing :-) Michael :-)

                            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
                              Steven Hicks n 1
                              wrote on last edited by
                              #25

                              I can not stand debugging one of my programs when it works on my comp, but it doesn't work correctly on someone else's. Visit Ltpb.8m.com Surf the web faster than ever: http://www.404Browser.com

                              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

                                J Offline
                                J Offline
                                John Fisher
                                wrote on last edited by
                                #26

                                I like most parts of programming (since solving problems is the whole reason I like it). However, I really don't like the times where I'm told to write such-and-such an application, but finding out how it's supposed to look and behave is worse than pulling teeth with scotch tape. When that happens, I generally have to scrap a bunch of code and re-write it later since I didn't know about one "little" thing it needed to do. John

                                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

                                  J Offline
                                  J Offline
                                  Jarek G
                                  wrote on last edited by
                                  #27

                                  Well how about this! Correcting tests for 40 students "code written down on paper" X| Explaining the same stuff over and over again :eek: Grading projects :confused: "Imagination is more important than knowledge, for knowledge is limited while imagination embraces the entire world." -Albert Einstein

                                  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.

                                    D Offline
                                    D Offline
                                    Djibril
                                    wrote on last edited by
                                    #28

                                    That's right. But I took a habit that helps from making such an error: int i; if ( 0 == i ) { // do some stuff } By mistake, if you type "if ( 0 = i )", it won't compile. Where there is a WISH, there is a WILL.

                                    1 Reply Last reply
                                    0
                                    • F Franky Braem

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

                                      D Offline
                                      D Offline
                                      Djibril
                                      wrote on last edited by
                                      #29

                                      Oh I hate this. I hate planning and telling how much time I need. Where there is a WISH, there is a WILL.

                                      1 Reply Last reply
                                      0
                                      • D Daniel Turini

                                        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 Offline
                                        D Offline
                                        Djibril
                                        wrote on last edited by
                                        #30

                                        say it again ! :( Where there is a WISH, there is a WILL.

                                        1 Reply Last reply
                                        0
                                        • E Eric Sanchez

                                          True, couldn't agree more.:)

                                          G Offline
                                          G Offline
                                          George Chastain
                                          wrote on last edited by
                                          #31

                                          You would think that SOMEDAY they all might reach a point of fully supporting some standards so cross-browser development wouldn't be such a B-I itch. :) Then, there is that ever present worry of, "well, all of my target audience may not have the latest browser anyway." WillCodeForMoney

                                          1 Reply 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