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. C++ is love

C++ is love

Scheduled Pinned Locked Moved The Lounge
csharpc++
86 Posts 24 Posters 11 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.
  • J Jorgen Andersson

    Garbage shall not pass.

    Wrong is evil and must be defeated. - Jeff Ello Never stop dreaming - Freddie Kruger

    C Offline
    C Offline
    CodeWraith
    wrote on last edited by
    #18

    I reserve that one for some unit test. "YOU ! Shall! Not! Pass!" :-)

    I have lived with several Zen masters - all of them were cats. His last invention was an evil Lasagna. It didn't kill anyone, and it actually tasted pretty good.

    1 Reply Last reply
    0
    • raddevusR raddevus

      How much can you sell it for? And/or can you get 1 million (or more) devs to use it? That's our modern (cynical) measure for success so get on board. :rolleyes:

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

      raddevus wrote:

      How much can you sell it for?

      That's capitalism, and htcw does not believe in that. :)

      honey the codewitchH 1 Reply Last reply
      0
      • honey the codewitchH honey the codewitch

        I needed some garbage-collector like advantages without the overhead so I wrote a 123 line file to give me exactly that. I love C++, and right now I don't know why I ever messed with .NET. :thumbsup::thumbsup::thumbsup: I'm usually not one to holy roll about technology but this language absolutely rules. The only downside with it is it hides nothing (and it doesn't parse properly**), but hiding nothing is just as big an advantage as a liability. Oh how I missed you, C++. ** C++ should really be parsed with a GLR parser so you don't have to worry about incomplete types being a thing.

        Real programmers use butterflies

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

        Sure, C++ is love, but at what price does this "love" cost? your soul, I am sure. We are talking about C++ here. :laugh:

        honey the codewitchH 1 Reply Last reply
        0
        • honey the codewitchH honey the codewitch

          I needed some garbage-collector like advantages without the overhead so I wrote a 123 line file to give me exactly that. I love C++, and right now I don't know why I ever messed with .NET. :thumbsup::thumbsup::thumbsup: I'm usually not one to holy roll about technology but this language absolutely rules. The only downside with it is it hides nothing (and it doesn't parse properly**), but hiding nothing is just as big an advantage as a liability. Oh how I missed you, C++. ** C++ should really be parsed with a GLR parser so you don't have to worry about incomplete types being a thing.

          Real programmers use butterflies

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

          What's a line of code?

          honey the codewitchH 1 Reply Last reply
          0
          • P PIEBALDconsult

            What's a line of code?

            honey the codewitchH Offline
            honey the codewitchH Offline
            honey the codewitch
            wrote on last edited by
            #22

            magic! :laugh:

            Real programmers use butterflies

            1 Reply Last reply
            0
            • honey the codewitchH honey the codewitch

              It doesn't really do garbage collection as such. As an analogy imagine the garbage man came once a week and burned your house down. It's much more time and space efficient than taking out the trash. You can't actually delete objects in my scheme, only allocate to pools. You can recycle entire pools though, manually, freeing (invalidating) all pointers (or objects) therein. Doing it that way makes it fast fast fast and it works on constrained memory environments. Also it was easy to code.

              Real programmers use butterflies

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

              honey the codewitch wrote:

              burned your house down. It's much more time and space efficient than taking out the trash.

              How the heck is burning down a house every week efficient? :laugh:

              Best, Sander Azure DevOps Succinctly (free eBook) Azure Serverless Succinctly (free eBook) Migrating Apps to the Cloud with Azure arrgh.js - Bringing LINQ to JavaScript

              honey the codewitchH 1 Reply Last reply
              0
              • Sander RosselS Sander Rossel

                honey the codewitch wrote:

                burned your house down. It's much more time and space efficient than taking out the trash.

                How the heck is burning down a house every week efficient? :laugh:

                Best, Sander Azure DevOps Succinctly (free eBook) Azure Serverless Succinctly (free eBook) Migrating Apps to the Cloud with Azure arrgh.js - Bringing LINQ to JavaScript

                honey the codewitchH Offline
                honey the codewitchH Offline
                honey the codewitch
                wrote on last edited by
                #24

                It saves you from having to take the garbage out. ;P

                Real programmers use butterflies

                Sander RosselS 1 Reply Last reply
                0
                • S Slacker007

                  Sure, C++ is love, but at what price does this "love" cost? your soul, I am sure. We are talking about C++ here. :laugh:

                  honey the codewitchH Offline
                  honey the codewitchH Offline
                  honey the codewitch
                  wrote on last edited by
                  #25

                  My soul? Oh that old thing? I think I traded it for some concert tickets back in the day.

                  Real programmers use butterflies

                  1 Reply Last reply
                  0
                  • honey the codewitchH honey the codewitch

                    It saves you from having to take the garbage out. ;P

                    Real programmers use butterflies

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

                    That's more like deleting your entire application to solve a single bug... :~ Maybe you just don't know how analogies work? :laugh:

                    Best, Sander Azure DevOps Succinctly (free eBook) Azure Serverless Succinctly (free eBook) Migrating Apps to the Cloud with Azure arrgh.js - Bringing LINQ to JavaScript

                    honey the codewitchH 1 Reply Last reply
                    0
                    • honey the codewitchH honey the codewitch

                      It doesn't really do garbage collection as such. As an analogy imagine the garbage man came once a week and burned your house down. It's much more time and space efficient than taking out the trash. You can't actually delete objects in my scheme, only allocate to pools. You can recycle entire pools though, manually, freeing (invalidating) all pointers (or objects) therein. Doing it that way makes it fast fast fast and it works on constrained memory environments. Also it was easy to code.

                      Real programmers use butterflies

                      pkfoxP Offline
                      pkfoxP Offline
                      pkfox
                      wrote on last edited by
                      #27

                      Article methinks - I think you should write a book - *Random thoughts of a clever mad Witch* :-D

                      "I didn't mention the bats - he'd see them soon enough" - Hunter S Thompson - RIP

                      1 Reply Last reply
                      0
                      • honey the codewitchH honey the codewitch

                        I needed some garbage-collector like advantages without the overhead so I wrote a 123 line file to give me exactly that. I love C++, and right now I don't know why I ever messed with .NET. :thumbsup::thumbsup::thumbsup: I'm usually not one to holy roll about technology but this language absolutely rules. The only downside with it is it hides nothing (and it doesn't parse properly**), but hiding nothing is just as big an advantage as a liability. Oh how I missed you, C++. ** C++ should really be parsed with a GLR parser so you don't have to worry about incomplete types being a thing.

                        Real programmers use butterflies

                        L Offline
                        L Offline
                        Lost User
                        wrote on last edited by
                        #28

                        Also confusing language and libraries. e.g. C++ managed and unmanaged.

                        It was only in wine that he laid down no limit for himself, but he did not allow himself to be confused by it. ― Confucian Analects: Rules of Confucius about his food

                        1 Reply Last reply
                        0
                        • honey the codewitchH honey the codewitch

                          I needed some garbage-collector like advantages without the overhead so I wrote a 123 line file to give me exactly that. I love C++, and right now I don't know why I ever messed with .NET. :thumbsup::thumbsup::thumbsup: I'm usually not one to holy roll about technology but this language absolutely rules. The only downside with it is it hides nothing (and it doesn't parse properly**), but hiding nothing is just as big an advantage as a liability. Oh how I missed you, C++. ** C++ should really be parsed with a GLR parser so you don't have to worry about incomplete types being a thing.

                          Real programmers use butterflies

                          R Offline
                          R Offline
                          Rick York
                          wrote on last edited by
                          #29

                          Some of us find the light again. Some of us never lose it.

                          "They have a consciousness, they have a life, they have a soul! Damn you! Let the rabbits wear glasses! Save our brothers! Can I get an amen?"

                          1 Reply Last reply
                          0
                          • honey the codewitchH honey the codewitch

                            I needed some garbage-collector like advantages without the overhead so I wrote a 123 line file to give me exactly that. I love C++, and right now I don't know why I ever messed with .NET. :thumbsup::thumbsup::thumbsup: I'm usually not one to holy roll about technology but this language absolutely rules. The only downside with it is it hides nothing (and it doesn't parse properly**), but hiding nothing is just as big an advantage as a liability. Oh how I missed you, C++. ** C++ should really be parsed with a GLR parser so you don't have to worry about incomplete types being a thing.

                            Real programmers use butterflies

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

                            When I saw your post, I wondered how badly you were going to get flamed, given the popularity of C# on this site. I never thought this thread would stay so civilized, let alone be fairly positive. :)

                            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>

                            honey the codewitchH N 2 Replies Last reply
                            0
                            • honey the codewitchH honey the codewitch

                              I needed some garbage-collector like advantages without the overhead so I wrote a 123 line file to give me exactly that. I love C++, and right now I don't know why I ever messed with .NET. :thumbsup::thumbsup::thumbsup: I'm usually not one to holy roll about technology but this language absolutely rules. The only downside with it is it hides nothing (and it doesn't parse properly**), but hiding nothing is just as big an advantage as a liability. Oh how I missed you, C++. ** C++ should really be parsed with a GLR parser so you don't have to worry about incomplete types being a thing.

                              Real programmers use butterflies

                              R Offline
                              R Offline
                              r_hyde
                              wrote on last edited by
                              #31

                              I don't hate C++, but I don't share your sentiments. This is almost certainly my own failing, though—it's not a problem with the language so much (which is alright, I guess), I just always end up fighting with the compiler/linker. I've never worked with C++ enough to become much more than minimally competent with it.

                              honey the codewitchH 1 Reply Last reply
                              0
                              • honey the codewitchH honey the codewitch

                                I gave it away under the MIT license. It was just a little bit of code anyway.

                                Real programmers use butterflies

                                raddevusR Offline
                                raddevusR Offline
                                raddevus
                                wrote on last edited by
                                #32

                                honey the codewitch wrote:

                                I gave it away under the MIT license.

                                GitHub link, or it didn't happen. :laugh:

                                honey the codewitchH 1 Reply Last reply
                                0
                                • raddevusR raddevus

                                  honey the codewitch wrote:

                                  I gave it away under the MIT license.

                                  GitHub link, or it didn't happen. :laugh:

                                  honey the codewitchH Offline
                                  honey the codewitchH Offline
                                  honey the codewitch
                                  wrote on last edited by
                                  #33

                                  GitHub - codewitch-honey-crisis/MemoryPool: Small fixed size sequential memory pool allocators for constrained memory environments[^] :laugh:

                                  Real programmers use butterflies

                                  K raddevusR U 3 Replies Last reply
                                  0
                                  • R r_hyde

                                    I don't hate C++, but I don't share your sentiments. This is almost certainly my own failing, though—it's not a problem with the language so much (which is alright, I guess), I just always end up fighting with the compiler/linker. I've never worked with C++ enough to become much more than minimally competent with it.

                                    honey the codewitchH Offline
                                    honey the codewitchH Offline
                                    honey the codewitch
                                    wrote on last edited by
                                    #34

                                    There's a certain point - and it can take awhile with C++ - where you reach a level that it is no longer intimidating or as frustrating. True, I did recently spend all morning and ask a stackoverflow question because I missed a "=0" at the end of one of my functions and was responded to with "missing vtable for class" or some such, but that's life, you know? :laugh:

                                    Real programmers use butterflies

                                    1 Reply Last reply
                                    0
                                    • Greg UtasG Greg Utas

                                      When I saw your post, I wondered how badly you were going to get flamed, given the popularity of C# on this site. I never thought this thread would stay so civilized, let alone be fairly positive. :)

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

                                      honey the codewitchH Offline
                                      honey the codewitchH Offline
                                      honey the codewitch
                                      wrote on last edited by
                                      #35

                                      I share your surprise. :)

                                      Real programmers use butterflies

                                      1 Reply Last reply
                                      0
                                      • Sander RosselS Sander Rossel

                                        That's more like deleting your entire application to solve a single bug... :~ Maybe you just don't know how analogies work? :laugh:

                                        Best, Sander Azure DevOps Succinctly (free eBook) Azure Serverless Succinctly (free eBook) Migrating Apps to the Cloud with Azure arrgh.js - Bringing LINQ to JavaScript

                                        honey the codewitchH Offline
                                        honey the codewitchH Offline
                                        honey the codewitch
                                        wrote on last edited by
                                        #36

                                        No, that's basically how my code works.

                                        Real programmers use butterflies

                                        Sander RosselS 1 Reply Last reply
                                        0
                                        • honey the codewitchH honey the codewitch

                                          GitHub - codewitch-honey-crisis/MemoryPool: Small fixed size sequential memory pool allocators for constrained memory environments[^] :laugh:

                                          Real programmers use butterflies

                                          K Offline
                                          K Offline
                                          k5054
                                          wrote on last edited by
                                          #37

                                          I see you're using both #pragma once and #ifdef include guards. Is that really necessary? GCC supports both, going back to at least version 4.8, so the #pragma doesn't even need to be wrapped in an #ifdef _MSC_VER. But maybe you know something I don't, or maybe you're using some other compiler that doesn't understand the #pragma? Also, picking nits, since I have nothing better to offer, I see that this is a memory pool for contrained memory environments. That must be a constrained, contained memory situation, correct? :)

                                          Keep Calm and Carry On

                                          R honey the codewitchH 2 Replies 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