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. Other Discussions
  3. The Weird and The Wonderful
  4. What was the most interesting, funny or silly Code you have ever read?

What was the most interesting, funny or silly Code you have ever read?

Scheduled Pinned Locked Moved The Weird and The Wonderful
question
54 Posts 36 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.
  • U User 8545351

    At the Company i am working in the Intellicence gave me These two methods. Microcernel.Create(). 1. PrintLabel() 2. PrintLable() Both methods contained the same oneliner. this._Label();

    D Offline
    D Offline
    dxk241
    wrote on last edited by
    #40

    For me, it was a WinForms app written in VB.NET that was using hidden Textbox controls on the form as a Boolean variable!!! The whole app was full with checks for true/false against a Textbox.Text property instead of simply declaring a boolean variable.

    B 1 Reply Last reply
    0
    • D dxk241

      For me, it was a WinForms app written in VB.NET that was using hidden Textbox controls on the form as a Boolean variable!!! The whole app was full with checks for true/false against a Textbox.Text property instead of simply declaring a boolean variable.

      B Offline
      B Offline
      Brisingr Aerowing
      wrote on last edited by
      #41

      X| That one just is.... blech. Was this... programmer (I use the term loosely here)... a new guy? Or someone who knew nothing about what they were working with (e.g. PEBKAC o ID-Ten-T)?

      I think computer viruses should count as life. I think it says something about human nature that the only form of life we have created so far is purely destructive. We've created life in our own image. Stephen Hawking

      D 1 Reply Last reply
      0
      • U User 8545351

        At the Company i am working in the Intellicence gave me These two methods. Microcernel.Create(). 1. PrintLabel() 2. PrintLable() Both methods contained the same oneliner. this._Label();

        B Offline
        B Offline
        BlackMilan
        wrote on last edited by
        #42

        Don't know if my most interesting/funny/silly but some of the last I found. Comments should help to better understand ... maybe!

        if (anyBooleanValue == false)
        { // in case of true
        ...
        }
        else
        { // in case of false
        ...
        }

        ...
        return; // leave the method
        

        Twice are better ...

        DataTable dt = new DataTable();
        dt = otherTable.Copy();
        
        1 Reply Last reply
        0
        • U User 8545351

          At the Company i am working in the Intellicence gave me These two methods. Microcernel.Create(). 1. PrintLabel() 2. PrintLable() Both methods contained the same oneliner. this._Label();

          C Offline
          C Offline
          Chris Quinn
          wrote on last edited by
          #43

          I once had to work on a package (in an 3G language/database called Dataflex if anyone remembers it) that contained the following remarkd

          The following is Himalayan Mountain Climber code, and so is impenetrable to us mere mortals!

          When I asked what this meant, I was told that it had been written by a contractor, whose hobby was indeed climbing in the Himalayas, who was known for using all sorts of undocumented tricks to provide very clever and efficient code that nobody else could understand.

          ==================================== Transvestites - Roberts in Disguise! ====================================

          1 Reply Last reply
          0
          • L LloydA111

            I'm not sure, but I've always thought it would be funny to leave this in some code and see people's faces:

            if(10 != 10){
            abort();
            }

            =====
            \ | /
            \|/
            |
            |-----|
            | |
            |_ |
            _) | /
            _) __/_
            _) ____
            | /|
            | / |
            | |
            |-----|
            |

            ===

            J Offline
            J Offline
            jsc42
            wrote on last edited by
            #44

            This variant is better for perplexing beginners:

            if ( 010 == 10 || 07 != 7) {
            abort();
            }

            (The test is false [ 010 is not equal to 10, but 07 is equal to 7 ] in most C derived languages)

            1 Reply Last reply
            0
            • F Fabio Franco

              That's specially useful when you need to constantly comment in and out some of the conditions to find the right records. Without that you'd have to worry to every time replace the AND for a WHERE and vice-versa.

              To alcohol! The cause of, and solution to, all of life's problems - Homer Simpson ---- Our heads are round so our thoughts can change direction - Francis Picabia

              J Offline
              J Offline
              jsc42
              wrote on last edited by
              #45

              Fabio Franco wrote:

              That's specially useful when you need to constantly comment in and out some of the conditions to find the right records.
               
              Without that you'd have to worry to every time replace the AND for a WHERE and vice-versa.

              For that, I use TRUE, e.g. in SQL:

              WHERE TRUE
              AND X=Y
              AND A=B

              You can then comment in / out the real conditions without any worries about whether a leading AND is needed or not or even if any conditions remain. e.g.

              WhereClause = "WHERE TRUE "
              & ( test1wanted ? "AND X=Y " : "" )
              & ( test2wanted ? "AND A=B " : "" );

              F 1 Reply Last reply
              0
              • J jsc42

                Fabio Franco wrote:

                That's specially useful when you need to constantly comment in and out some of the conditions to find the right records.
                 
                Without that you'd have to worry to every time replace the AND for a WHERE and vice-versa.

                For that, I use TRUE, e.g. in SQL:

                WHERE TRUE
                AND X=Y
                AND A=B

                You can then comment in / out the real conditions without any worries about whether a leading AND is needed or not or even if any conditions remain. e.g.

                WhereClause = "WHERE TRUE "
                & ( test1wanted ? "AND X=Y " : "" )
                & ( test2wanted ? "AND A=B " : "" );

                F Offline
                F Offline
                Fabio Franco
                wrote on last edited by
                #46

                Same thing, except "1=1" is only three characters long :)

                To alcohol! The cause of, and solution to, all of life's problems - Homer Simpson ---- Our heads are round so our thoughts can change direction - Francis Picabia

                J 1 Reply Last reply
                0
                • F Fabio Franco

                  Same thing, except "1=1" is only three characters long :)

                  To alcohol! The cause of, and solution to, all of life's problems - Homer Simpson ---- Our heads are round so our thoughts can change direction - Francis Picabia

                  J Offline
                  J Offline
                  jsc42
                  wrote on last edited by
                  #47

                  My apologies! I had misread your previous comment.

                  F 1 Reply Last reply
                  0
                  • J jsc42

                    My apologies! I had misread your previous comment.

                    F Offline
                    F Offline
                    Fabio Franco
                    wrote on last edited by
                    #48

                    No need to ;)

                    To alcohol! The cause of, and solution to, all of life's problems - Homer Simpson ---- Our heads are round so our thoughts can change direction - Francis Picabia

                    1 Reply Last reply
                    0
                    • L LloydA111

                      I'm not sure, but I've always thought it would be funny to leave this in some code and see people's faces:

                      if(10 != 10){
                      abort();
                      }

                      =====
                      \ | /
                      \|/
                      |
                      |-----|
                      | |
                      |_ |
                      _) | /
                      _) __/_
                      _) ____
                      | /|
                      | / |
                      | |
                      |-----|
                      |

                      ===

                      D Offline
                      D Offline
                      Doug Henderson
                      wrote on last edited by
                      #49

                      I worked on a system where the Fortran compiler generated constants in memory locations. All subroutine calls used pass by reference, so it was very easy for a constant to get changed. And very difficult to debug with the tools available in that day and age.

                      OriginalGriffO 1 Reply Last reply
                      0
                      • D Doug Henderson

                        I worked on a system where the Fortran compiler generated constants in memory locations. All subroutine calls used pass by reference, so it was very easy for a constant to get changed. And very difficult to debug with the tools available in that day and age.

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

                        Prime OS had that, as well as GEC (IIRC) It made for some "interesting" debugging the first couple of times it happened, but then you leant not to trust constants! :laugh:

                        Ideological Purity is no substitute for being able to stick your thumb down a pipe to stop the water

                        "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

                        1 Reply Last reply
                        0
                        • F ForestHymn

                          This is going back many years, and from memory it went something like this:

                          - (bool)is_even(int value)
                          {
                          if (value == 0)
                          {
                          return true;
                          }
                          else if (value == 2)
                          {
                          return true;
                          }
                          else if (value == 4)
                          {
                          return true;
                          }
                          ...
                          else if (value == 12)
                          {
                          return true;
                          }

                          return false;
                          

                          }

                          And so it went to 12 and I guess for the context in which it was used it apparently was a high enough number. You could of course replace this method using a simple modulus operation. What's also funny is that I saw this code in a printout on the wall of an engineer, which had been there for a couple years. A short time after, another engineer, new to the group, found this method still existing in another part of the code base (apparently just copy-pasted from its original location). The code base was very large. Lesson learned is if you find bad code somewhere do a global search to insure it is not duplicated anywhere else.

                          H Offline
                          H Offline
                          HaBiX
                          wrote on last edited by
                          #51

                          private bool IsEven(int number) {
                          return (new[] { 0, 2, 4, 6, 8 }).Contains(number.ToString()[number.ToString().Length - 1]);
                          }

                          1 Reply Last reply
                          0
                          • B Brisingr Aerowing

                            X| That one just is.... blech. Was this... programmer (I use the term loosely here)... a new guy? Or someone who knew nothing about what they were working with (e.g. PEBKAC o ID-Ten-T)?

                            I think computer viruses should count as life. I think it says something about human nature that the only form of life we have created so far is purely destructive. We've created life in our own image. Stephen Hawking

                            D Offline
                            D Offline
                            dxk241
                            wrote on last edited by
                            #52

                            It gets better: This app was handed to me, so I can fix all kinds of weird and non-consistent errors that were happening all the time. The vb app was created by a contractor ($100/hr) who converted it from a Microsoft Access database that was developed by another consultant over a span of a year and a half for which she was paid in excess of $200k. Until this day, I cannot believe what I saw and comprehend how a consultant can get paid that much money for creating an Access database using textboxes as boolean variables and for another contractor to convert the code and not realize the insanity of that code either. And there was me, making just little over $50k at the time...disgusting isn't it

                            B 1 Reply Last reply
                            0
                            • D dxk241

                              It gets better: This app was handed to me, so I can fix all kinds of weird and non-consistent errors that were happening all the time. The vb app was created by a contractor ($100/hr) who converted it from a Microsoft Access database that was developed by another consultant over a span of a year and a half for which she was paid in excess of $200k. Until this day, I cannot believe what I saw and comprehend how a consultant can get paid that much money for creating an Access database using textboxes as boolean variables and for another contractor to convert the code and not realize the insanity of that code either. And there was me, making just little over $50k at the time...disgusting isn't it

                              B Offline
                              B Offline
                              Brisingr Aerowing
                              wrote on last edited by
                              #53

                              X| Well, that goes to show what non-programmers think: "If I cannot read it, it must be the best thing out there!" And that contractor was an ID-Ten-T that had a NullBrainException coupled with a IncompetentProgrammerException and a OverpaidPersonException.

                              I think computer viruses should count as life. I think it says something about human nature that the only form of life we have created so far is purely destructive. We've created life in our own image. Stephen Hawking

                              1 Reply Last reply
                              0
                              • B Bernhard Hiller

                                Just make sure they do not come up with PrintLibel() and this._Libel.

                                J Offline
                                J Offline
                                jbradshaw
                                wrote on last edited by
                                #54

                                I frequently use

                                select * from tbl where 1 = 2

                                when I'm trying to figure out the columns in a table.

                                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