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. Program Compiled successfully, 0 errors

Program Compiled successfully, 0 errors

Scheduled Pinned Locked Moved The Lounge
27 Posts 20 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.
  • V VijayPd

    Most happiest moment for programmers

    M Offline
    M Offline
    Maximilien
    wrote on last edited by
    #2

    Nope. "Payment received" is the happiest moment. :rolleyes:

    I'd rather be phishing!

    V M D 3 Replies Last reply
    0
    • V VijayPd

      Most happiest moment for programmers

      S Offline
      S Offline
      Slacker007
      wrote on last edited by
      #3

      Compilation means nothing to me; that can be the easy part. I am more worried about what compiled, that is still broken. Even with proper testing, bugs/errors gets through the cracks...never fails.

      1 Reply Last reply
      0
      • M Maximilien

        Nope. "Payment received" is the happiest moment. :rolleyes:

        I'd rather be phishing!

        V Offline
        V Offline
        VijayPd
        wrote on last edited by
        #4

        Maximilien, Superb dude.Mine also :laugh:

        1 Reply Last reply
        0
        • V VijayPd

          Most happiest moment for programmers

          A Offline
          A Offline
          Amarnath S
          wrote on last edited by
          #5

          Successful compilation only means that the syntax is correct. This would also compile successfully:

          double sin30 = Math.Sin(30.0);

          but with a completely wrong answer if the programmer got confused between degrees and radians. Getting rid of logical errors is the tricky part, and is more time-consuming, and much more enriching.

          1 Reply Last reply
          0
          • V VijayPd

            Most happiest moment for programmers

            OriginalGriffO Offline
            OriginalGriffO Offline
            OriginalGriff
            wrote on last edited by
            #6

            "0 Errors" is nothing - that's easy. "0 Errors, 0 Warnings" is better - but also pretty easy. Passing all tests and actually doing what you wanted it to? Now that's a good moment! (As is getting paid, as has been mentioned)

            Bad command or file name. Bad, bad command! Sit! Stay! Staaaay...

            "I have no idea what I did, but I'm taking full credit for it." - ThisOldTony
            "Common sense is so rare these days, it should be classified as a super power" - Random T-shirt

            D 1 Reply Last reply
            0
            • V VijayPd

              Most happiest moment for programmers

              S Offline
              S Offline
              Silvabolt
              wrote on last edited by
              #7

              Don't forget the runtime errors :)

              1 Reply Last reply
              0
              • V VijayPd

                Most happiest moment for programmers

                P Offline
                P Offline
                PIEBALDconsult
                wrote on last edited by
                #8

                No, that's when I wonder what's still in there hiding. :omg:

                1 Reply Last reply
                0
                • V VijayPd

                  Most happiest moment for programmers

                  M Offline
                  M Offline
                  Marc Clifton
                  wrote on last edited by
                  #9

                  Member 11547329 wrote:

                  Most happiest moment for programmers

                  Microsoft took that moment away from me. Now, there is this demon called "Intellisense" that will tell me what I did wrong almost before I do it. I have become a slave to this demon, obsessed with extinguishing it's Cylon-like red eye that peers at me from underneath even the most trivial of mistakes. And now, when I compile my code, I now longer have that joy of "compiled successfully" because even the mere idea of a failing is no longer possible under that watchful eye. And where there can be no pain of failure, there can also be no joy of success. Microsoft, I rue the day you brought these demon out of the depths of the digital hell otherwise known as Redmond. You have taken away my reason to live! Marc

                  Imperative to Functional Programming Succinctly Contributors Wanted for Higher Order Programming Project!

                  P K 2 Replies Last reply
                  0
                  • V VijayPd

                    Most happiest moment for programmers

                    R Offline
                    R Offline
                    realJSOP
                    wrote on last edited by
                    #10

                    Nope. That just leads you into a false sense of security. You still have to run it to make sure it isn't gonna puke all over your system, which definitely bumps up against the "It compiles - SHIP IT!" paradigm.

                    ".45 ACP - because shooting twice is just silly" - JSOP, 2010
                    -----
                    You can never have too much ammo - unless you're swimming, or on fire. - JSOP, 2010
                    -----
                    When you pry the gun from my cold dead hands, be careful - the barrel will be very hot. - JSOP, 2013

                    1 Reply Last reply
                    0
                    • M Marc Clifton

                      Member 11547329 wrote:

                      Most happiest moment for programmers

                      Microsoft took that moment away from me. Now, there is this demon called "Intellisense" that will tell me what I did wrong almost before I do it. I have become a slave to this demon, obsessed with extinguishing it's Cylon-like red eye that peers at me from underneath even the most trivial of mistakes. And now, when I compile my code, I now longer have that joy of "compiled successfully" because even the mere idea of a failing is no longer possible under that watchful eye. And where there can be no pain of failure, there can also be no joy of success. Microsoft, I rue the day you brought these demon out of the depths of the digital hell otherwise known as Redmond. You have taken away my reason to live! Marc

                      Imperative to Functional Programming Succinctly Contributors Wanted for Higher Order Programming Project!

                      P Offline
                      P Offline
                      PIEBALDconsult
                      wrote on last edited by
                      #11

                      Yet another reason to roll your own IDE. :cool:

                      M 1 Reply Last reply
                      0
                      • V VijayPd

                        Most happiest moment for programmers

                        K Offline
                        K Offline
                        Kevin Marois
                        wrote on last edited by
                        #12

                        Compiles mean nothing. This compiles:

                        static void Main(string[] args)
                        {
                        int x = 10;
                        int y = 0;
                        int z = x / y;
                        }

                        If it's not broken, fix it until it is

                        1 Reply Last reply
                        0
                        • M Marc Clifton

                          Member 11547329 wrote:

                          Most happiest moment for programmers

                          Microsoft took that moment away from me. Now, there is this demon called "Intellisense" that will tell me what I did wrong almost before I do it. I have become a slave to this demon, obsessed with extinguishing it's Cylon-like red eye that peers at me from underneath even the most trivial of mistakes. And now, when I compile my code, I now longer have that joy of "compiled successfully" because even the mere idea of a failing is no longer possible under that watchful eye. And where there can be no pain of failure, there can also be no joy of success. Microsoft, I rue the day you brought these demon out of the depths of the digital hell otherwise known as Redmond. You have taken away my reason to live! Marc

                          Imperative to Functional Programming Succinctly Contributors Wanted for Higher Order Programming Project!

                          K Offline
                          K Offline
                          Kevin Marois
                          wrote on last edited by
                          #13

                          Missed your meds again huh?

                          If it's not broken, fix it until it is

                          M 1 Reply Last reply
                          0
                          • P PIEBALDconsult

                            Yet another reason to roll your own IDE. :cool:

                            M Offline
                            M Offline
                            Marc Clifton
                            wrote on last edited by
                            #14

                            PIEBALDconsult wrote:

                            Yet another reason to roll your own IDE.

                            Nah, if people want don't want Intellisense, they should use a command line. ;) Marc

                            Imperative to Functional Programming Succinctly Contributors Wanted for Higher Order Programming Project!

                            1 Reply Last reply
                            0
                            • V VijayPd

                              Most happiest moment for programmers

                              R Offline
                              R Offline
                              Ranjan D
                              wrote on last edited by
                              #15

                              #include<stdio.h>
                              main()
                              {

                              }

                              Yes! It does compile with zero errors :laugh:

                              Ranjan.D

                              1 Reply Last reply
                              0
                              • V VijayPd

                                Most happiest moment for programmers

                                M Offline
                                M Offline
                                Mark_Wallace
                                wrote on last edited by
                                #16

                                All that means is that it is broken in ways that the compiler can't detect, so it's time to bash your head against the harder-to-find errors.

                                I wanna be a eunuchs developer! Pass me a bread knife!

                                1 Reply Last reply
                                0
                                • V VijayPd

                                  Most happiest moment for programmers

                                  T Offline
                                  T Offline
                                  TheGreatAndPowerfulOz
                                  wrote on last edited by
                                  #17

                                  Wrong. When it runs successfully and does what it's meant to do without errors.

                                  #SupportHeForShe

                                  If your actions inspire others to dream more, learn more, do more and become more, you are a leader.-John Q. Adams You must accept 1 of 2 basic premises: Either we are alone in the universe or we are not alone. Either way, the implications are staggering!-Wernher von Braun Only 2 things are infinite, the universe and human stupidity, and I'm not sure about the former.-Albert Einstein

                                  1 Reply Last reply
                                  0
                                  • K Kevin Marois

                                    Missed your meds again huh?

                                    If it's not broken, fix it until it is

                                    M Offline
                                    M Offline
                                    Marc Clifton
                                    wrote on last edited by
                                    #18

                                    Coder For Hire wrote:

                                    Missed your meds again huh?

                                    Actually, it's the meds that put me in these moods. (just kidding!) Marc

                                    Imperative to Functional Programming Succinctly Contributors Wanted for Higher Order Programming Project!

                                    1 Reply Last reply
                                    0
                                    • V VijayPd

                                      Most happiest moment for programmers

                                      D Offline
                                      D Offline
                                      David Crow
                                      wrote on last edited by
                                      #19

                                      0 syntax errors. Correcting logic errors is still up to you, however.

                                      "One man's wage rise is another man's price increase." - Harold Wilson

                                      "Fireproof doesn't mean the fire will never come. It means when the fire comes that you will be able to withstand it." - Michael Simmons

                                      "You can easily judge the character of a man by how he treats those who can do nothing for him." - James D. Miles

                                      1 Reply Last reply
                                      0
                                      • V VijayPd

                                        Most happiest moment for programmers

                                        Sander RosselS Offline
                                        Sander RosselS Offline
                                        Sander Rossel
                                        wrote on last edited by
                                        #20

                                        I had that yesterday. Code still broke at runtime :sigh:

                                        Visit my blog at Sander's bits - Writing the code you need. Or read my articles at my CodeProject profile.

                                        Simplicity is prerequisite for reliability. — Edsger W. Dijkstra

                                        Regards, Sander

                                        1 Reply Last reply
                                        0
                                        • V VijayPd

                                          Most happiest moment for programmers

                                          B Offline
                                          B Offline
                                          BillWoodruff
                                          wrote on last edited by
                                          #21

                                          :) <= $

                                          «To kill an error's as good a service, sometimes better than, establishing new truth or fact.» Charles Darwin in "Prospero's Precepts"

                                          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