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. OG was right all along

OG was right all along

Scheduled Pinned Locked Moved The Lounge
c++question
42 Posts 19 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.
  • Greg UtasG Greg Utas

    I've been known to indulge in hyperbole.

    Robust Services Core | Software Techniques for Lemmings | Articles
    The fox knows many things, but the hedgehog knows one big thing.

    G Offline
    G Offline
    Gary Wheeler
    wrote on last edited by
    #29

    I prefer parabole myself, but toe-may-toe, toe-mah-toe... :laugh:

    Software Zen: delete this;

    1 Reply Last reply
    0
    • Greg UtasG Greg Utas

      I don't remember the last time I printed code off! My guess would be 1999. :laugh:

      Robust Services Core | Software Techniques for Lemmings | Articles
      The fox knows many things, but the hedgehog knows one big thing.

      B Offline
      B Offline
      BryanFazekas
      wrote on last edited by
      #30

      I don't print my code, but I've printed inherited code on 11x17 paper with narrow margins, as I had to physically diagram it to figure out what it was doing ... 9 sheets in portrait mode using Courier 9 point. In some cultures, a test of worthiness is going into battle. In IT? It's figuring out inherited code.

      Greg UtasG 1 Reply Last reply
      0
      • M megaadam

        It WAS Griff, and me! But methinks he was advocating Whitesmith's Indentation style - Wikipedia[^]

        if(this->aintUgly())
        {
        thenWhatIs(); // ??
        }

        "If we don't change direction, we'll end up where we're going"

        D Offline
        D Offline
        den2k88
        wrote on last edited by
        #31

        Ugh, workable but I don't like it :D

        GCS d--(d+) s-/++ a C++++ U+++ P- L+@ E-- W++ N+ o+ K- w+++ O? M-- V? PS+ PE- Y+ PGP t+ 5? X R+++ tv-- b+(+++) DI+++ D++ G e++ h--- r+++ y+++*      Weapons extension: ma- k++ F+2 X

        1 Reply Last reply
        0
        • D den2k88

          At least I think I'm referring to OG. I vaguely recall defending the K&R indentation style with OG pointing me why he thought Allman to be better. A handful of years later and several projects where Allman style was mandated by coding rules it actually became my new indentation style, mostly for the reasons OG pointed to me (easier to see the nesting level of constructs, better block separation, easier manipulation of the condition statement regardless of the operation done in the block).

          GCS d--(d+) s-/++ a C++++ U+++ P- L+@ E-- W++ N+ o+ K- w+++ O? M-- V? PS+ PE- Y+ PGP t+ 5? X R+++ tv-- b+(+++) DI+++ D++ G e++ h--- r+++ y+++*      Weapons extension: ma- k++ F+2 X

          A Offline
          A Offline
          agolddog
          wrote on last edited by
          #32

          Shouldn't this be our default position?

          1 Reply Last reply
          0
          • B BryanFazekas

            I don't print my code, but I've printed inherited code on 11x17 paper with narrow margins, as I had to physically diagram it to figure out what it was doing ... 9 sheets in portrait mode using Courier 9 point. In some cultures, a test of worthiness is going into battle. In IT? It's figuring out inherited code.

            Greg UtasG Offline
            Greg UtasG Offline
            Greg Utas
            wrote on last edited by
            #33

            Quote:

            I had to physically diagram it to figure out what it was doing

            What happened to the original author?! That should have been job security! If I inherited that code, I'd have him renditioned and put under bright lights until that code got explained. :-D

            Robust Services Core | Software Techniques for Lemmings | Articles
            The fox knows many things, but the hedgehog knows one big thing.

            <p><a href="https://github.com/GregUtas/robust-services-core/blob/master/README.md">Robust Services Core</a>
            <em>The fox knows many things, but the hedgehog knows one big thing.</em></p>

            B 1 Reply Last reply
            0
            • Greg UtasG Greg Utas

              Notes where, on your fanfold printout?! :laugh:

              Robust Services Core | Software Techniques for Lemmings | Articles
              The fox knows many things, but the hedgehog knows one big thing.

              D Offline
              D Offline
              davecasdf
              wrote on last edited by
              #34

              My _132 column_ fanfold printout ( don'tcha miss the green stripes? ) plenty of room for comments after column 80. But I don't miss being near the chain printer.

              1 Reply Last reply
              0
              • J Jorgen Andersson

                You'd miss tp as well if it were gone.

                Wrong is evil and must be defeated. - Jeff Ello

                D Offline
                D Offline
                davecasdf
                wrote on last edited by
                #35

                Almanak with soft pages.

                1 Reply Last reply
                0
                • D den2k88

                  At least I think I'm referring to OG. I vaguely recall defending the K&R indentation style with OG pointing me why he thought Allman to be better. A handful of years later and several projects where Allman style was mandated by coding rules it actually became my new indentation style, mostly for the reasons OG pointed to me (easier to see the nesting level of constructs, better block separation, easier manipulation of the condition statement regardless of the operation done in the block).

                  GCS d--(d+) s-/++ a C++++ U+++ P- L+@ E-- W++ N+ o+ K- w+++ O? M-- V? PS+ PE- Y+ PGP t+ 5? X R+++ tv-- b+(+++) DI+++ D++ G e++ h--- r+++ y+++*      Weapons extension: ma- k++ F+2 X

                  K Offline
                  K Offline
                  Kirk 10389821
                  wrote on last edited by
                  #36

                  OMG, I had to lookup Allman style to confirm... My argument was ALWAYS that we line these things up so they can be matched properly. And I believe the blank space adds context. void main / if / while -> all have the same simple formatting { // Yes this is good } and doubly hated the dual indentation: if () { // then this } REALLY hated: if () { // Same level, Uggh } So, welcome aboard. it just seems more consistent, and since I do a TON of Pascal/Delphi and PL/SQL, etc, etc. Where I would strangle someone for: if () BEGIN // OMG END

                  1 Reply Last reply
                  0
                  • G Gary Wheeler

                    Vikram A Punathambekar wrote:

                    I like Python even better, where indentation determines scope

                    You just like to sit back and watch the world burn, don't you? :-D

                    Software Zen: delete this;

                    V Offline
                    V Offline
                    Vikram A Punathambekar
                    wrote on last edited by
                    #37

                    Haha, I do, but in this case I am serious, I like this Python feature.

                    Cheers, Vikram.

                    G 1 Reply Last reply
                    0
                    • V Vikram A Punathambekar

                      Haha, I do, but in this case I am serious, I like this Python feature.

                      Cheers, Vikram.

                      G Offline
                      G Offline
                      Gary Wheeler
                      wrote on last edited by
                      #38

                      The notion of significant white-space gives me PTSD-flashbacks to my FORTRAN days :rolleyes:

                      Software Zen: delete this;

                      1 Reply Last reply
                      0
                      • D den2k88

                        At least I think I'm referring to OG. I vaguely recall defending the K&R indentation style with OG pointing me why he thought Allman to be better. A handful of years later and several projects where Allman style was mandated by coding rules it actually became my new indentation style, mostly for the reasons OG pointed to me (easier to see the nesting level of constructs, better block separation, easier manipulation of the condition statement regardless of the operation done in the block).

                        GCS d--(d+) s-/++ a C++++ U+++ P- L+@ E-- W++ N+ o+ K- w+++ O? M-- V? PS+ PE- Y+ PGP t+ 5? X R+++ tv-- b+(+++) DI+++ D++ G e++ h--- r+++ y+++*      Weapons extension: ma- k++ F+2 X

                        K Offline
                        K Offline
                        KateAshman
                        wrote on last edited by
                        #39

                        Might have been me under an old account. I remember vehemently defending Allman a couple of years back, after deep diving a few enormous legacy codebases for a consultancy gig. The speed at which I can parse large volumes of code when it's Allman is much higher, all because of the visual clues that are tied in with the control logic. I'm mostly scanning the control logic by identation, only sparsly reading evaluations along the way.

                        1 Reply Last reply
                        0
                        • Greg UtasG Greg Utas

                          Quote:

                          I had to physically diagram it to figure out what it was doing

                          What happened to the original author?! That should have been job security! If I inherited that code, I'd have him renditioned and put under bright lights until that code got explained. :-D

                          Robust Services Core | Software Techniques for Lemmings | Articles
                          The fox knows many things, but the hedgehog knows one big thing.

                          B Offline
                          B Offline
                          BryanFazekas
                          wrote on last edited by
                          #40

                          Greg Utas wrote:

                          What happened to the original author?! That should have been job security! If I inherited that code, I'd have him renditioned and put under bright lights until that code got explained.

                          Dead men don't tell tales ... He retired then died a week later.

                          Greg UtasG 1 Reply Last reply
                          0
                          • B BryanFazekas

                            Greg Utas wrote:

                            What happened to the original author?! That should have been job security! If I inherited that code, I'd have him renditioned and put under bright lights until that code got explained.

                            Dead men don't tell tales ... He retired then died a week later.

                            Greg UtasG Offline
                            Greg UtasG Offline
                            Greg Utas
                            wrote on last edited by
                            #41

                            I actually wondered if that might be the explanation. :rose: My guess is that code evolved many times, with no one having the inclination to restructure it.

                            Robust Services Core | Software Techniques for Lemmings | Articles
                            The fox knows many things, but the hedgehog knows one big thing.

                            <p><a href="https://github.com/GregUtas/robust-services-core/blob/master/README.md">Robust Services Core</a>
                            <em>The fox knows many things, but the hedgehog knows one big thing.</em></p>

                            1 Reply Last reply
                            0
                            • D den2k88

                              At least I think I'm referring to OG. I vaguely recall defending the K&R indentation style with OG pointing me why he thought Allman to be better. A handful of years later and several projects where Allman style was mandated by coding rules it actually became my new indentation style, mostly for the reasons OG pointed to me (easier to see the nesting level of constructs, better block separation, easier manipulation of the condition statement regardless of the operation done in the block).

                              GCS d--(d+) s-/++ a C++++ U+++ P- L+@ E-- W++ N+ o+ K- w+++ O? M-- V? PS+ PE- Y+ PGP t+ 5? X R+++ tv-- b+(+++) DI+++ D++ G e++ h--- r+++ y+++*      Weapons extension: ma- k++ F+2 X

                              A Offline
                              A Offline
                              afigegoznaet
                              wrote on last edited by
                              #42

                              For me the only style is the "one true brace style" Allman makes sense for non-braced languages, though (like python).

                              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