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. Smart programmers

Smart programmers

Scheduled Pinned Locked Moved The Lounge
c++rubycomarchitecture
48 Posts 16 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.
  • R Rajesh R Subramanian

    Fortunately, the code was not written by anyone over here. It was sold to our client by a Korean company. Our client moved the project to us, unsatisfied with the ones who previously 'developed' it.

    Nobody can give you wiser advice than yourself. - Cicero .·´¯`·->Rajesh<-·´¯`·. Codeproject.com: Visual C++ MVP

    M Offline
    M Offline
    MidwestLimey
    wrote on last edited by
    #41

    Rajesh R Subramanian wrote:

    It was sold to our client by a Korean company

    So Americans blame Indian developers, and Indians blame Korean developers .. ? Ahhh, Globalization :D


    I'm largely language agnostic


    After a while they all bug me :doh:


    E 1 Reply Last reply
    0
    • M MidwestLimey

      Rajesh R Subramanian wrote:

      It was sold to our client by a Korean company

      So Americans blame Indian developers, and Indians blame Korean developers .. ? Ahhh, Globalization :D


      I'm largely language agnostic


      After a while they all bug me :doh:


      E Offline
      E Offline
      El Corazon
      wrote on last edited by
      #42

      MidwestLimey wrote:

      So Americans blame Indian developers, and Indians blame Korean developers .. ?

      so do the Koreans blame the American developers closing the loop or are there other countries involved?

      _________________________ Asu no koto o ieba, tenjo de nezumi ga warau. Talk about things of tomorrow and the mice in the ceiling laugh. (Japanese Proverb) John Andrew Holmes "It is well to remember that the entire universe, with one trifling exception, is composed of others."

      O 1 Reply Last reply
      0
      • E El Corazon

        MidwestLimey wrote:

        So Americans blame Indian developers, and Indians blame Korean developers .. ?

        so do the Koreans blame the American developers closing the loop or are there other countries involved?

        _________________________ Asu no koto o ieba, tenjo de nezumi ga warau. Talk about things of tomorrow and the mice in the ceiling laugh. (Japanese Proverb) John Andrew Holmes "It is well to remember that the entire universe, with one trifling exception, is composed of others."

        O Offline
        O Offline
        Oakman
        wrote on last edited by
        #43

        El Corazon wrote:

        so do the Koreans blame the American developers closing the loop or are there other countries involved?

        Don't be silly. American programmers are perfect.

        Jon Smith & Wesson: The original point and click interface

        E 1 Reply Last reply
        0
        • D Delphi4ever

          I feel your pain...Espesially about the not documentaion. Not a single page. 1000s of source files, but no documents. Not. Even. One.

          R Offline
          R Offline
          Rajesh R Subramanian
          wrote on last edited by
          #44

          My pity for you. :sigh:

          Nobody can give you wiser advice than yourself. - Cicero .·´¯`·->Rajesh<-·´¯`·. Codeproject.com: Visual C++ MVP

          1 Reply Last reply
          0
          • O Oakman

            El Corazon wrote:

            so do the Koreans blame the American developers closing the loop or are there other countries involved?

            Don't be silly. American programmers are perfect.

            Jon Smith & Wesson: The original point and click interface

            E Offline
            E Offline
            El Corazon
            wrote on last edited by
            #45

            Oakman wrote:

            Don't be silly. American programmers are perfect.

            It's not like we crashed anything into a planet... oh wait... ;)

            _________________________ Asu no koto o ieba, tenjo de nezumi ga warau. Talk about things of tomorrow and the mice in the ceiling laugh. (Japanese Proverb) John Andrew Holmes "It is well to remember that the entire universe, with one trifling exception, is composed of others."

            O 1 Reply Last reply
            0
            • E El Corazon

              Oakman wrote:

              Don't be silly. American programmers are perfect.

              It's not like we crashed anything into a planet... oh wait... ;)

              _________________________ Asu no koto o ieba, tenjo de nezumi ga warau. Talk about things of tomorrow and the mice in the ceiling laugh. (Japanese Proverb) John Andrew Holmes "It is well to remember that the entire universe, with one trifling exception, is composed of others."

              O Offline
              O Offline
              Oakman
              wrote on last edited by
              #46

              El Corazon wrote:

              not like we crashed anything into a planet... oh wait...

              I had a friend who was one of Lockheed's senior programmers on the orbiter mission. He pointed out that Americans don't use the metric system which allowed him to develop his theory that saboteurs from Canada were really to blame. :-D

              Jon Smith & Wesson: The original point and click interface

              1 Reply Last reply
              0
              • E El Corazon

                Rajesh R Subramanian wrote:

                A complaint was that the connection drops out exactly at 12 in the night. Half a day is gone and then I find this gem comment with relevant code:

                I know it won't make you feel better, but this is a common problem here. One of the most common time formats we accept is time since midnight with a some nanosecond level of accuracy I always forget.... anyhow, because the time includes no date, you sometimes have to do a little extra math when it comes to elapsed time... or not as in some cases. elapsedTime=currentTime-lastTime; // get elapsed time since last pass if (elapsedTime<0) exit(1); // we passed midnight, panic, exit! That is more common than you would believe, sometimes even with the comments intact. Of course worse still are those who leave off the if statement at all, and accept time as gospel. When you see time move backwards in data review, you know someone forgot to handle the midnight roll-over. :sigh: Of all the time errors you can imagine, midnight roll-over I have fixed more often than any other. :sigh:

                _________________________ Asu no koto o ieba, tenjo de nezumi ga warau. Talk about things of tomorrow and the mice in the ceiling laugh. (Japanese Proverb) John Andrew Holmes "It is well to remember that the entire universe, with one trifling exception, is composed of others."

                R Offline
                R Offline
                Rajesh R Subramanian
                wrote on last edited by
                #47

                El Corazon wrote:

                Of all the time errors you can imagine, midnight roll-over I have fixed more often than any other.

                And I thought it was just me. That makes me feel better. :)

                Nobody can give you wiser advice than yourself. - Cicero .·´¯`·->Rajesh<-·´¯`·. Codeproject.com: Visual C++ MVP

                1 Reply Last reply
                0
                • J Jim Crafton

                  Bah! Tell 'em to dump it for a REAL mawnnster framework[^]! :)

                  ¡El diablo está en mis pantalones! ¡Mire, mire! Real Mentats use only 100% pure, unfooled around with Sapho Juice(tm)! SELECT * FROM User WHERE Clue > 0 0 rows returned Save an Orange - Use the VCF! VCF Blog

                  R Offline
                  R Offline
                  Rajesh R Subramanian
                  wrote on last edited by
                  #48

                  I wish I could tell them that. :)

                  Nobody can give you wiser advice than yourself. - Cicero .·´¯`·->Rajesh<-·´¯`·. Codeproject.com: Visual C++ MVP

                  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