Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. General talk
  3. The Lounge
  4. old hacker...low tolerance
QtWS25 Last Chance

old hacker...low tolerance

Scheduled Pinned Locked Moved Unsolved The Lounge
47 Posts 13 Posters 9.1k Views
  • 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 Offline
    J Offline
    J.Hilk
    Moderators
    wrote on 1 Dec 2022, 13:38 last edited by
    #23

    I have low expectations for society, and despite that, I'm getting disappointed on a regular basis.


    Be aware of the Qt Code of Conduct, when posting : https://forum.qt.io/topic/113070/qt-code-of-conduct


    Q: What's that?
    A: It's blue light.
    Q: What does it do?
    A: It turns blue.

    C 1 Reply Last reply 1 Dec 2022, 14:17
    3
    • J J.Hilk
      1 Dec 2022, 13:38

      I have low expectations for society, and despite that, I'm getting disappointed on a regular basis.

      C Online
      C Online
      Chris Kawa
      Lifetime Qt Champion
      wrote on 1 Dec 2022, 14:17 last edited by
      #24

      I've just read yet another article about how C++ needs to die because pointers, and no-code/low-code is the next big thing. Basically "computers too hard, need make businessmen move pretty pictures instead. We'll call it programming from now on"...

      Depressed

      T 1 Reply Last reply 1 Dec 2022, 14:35
      2
      • C Chris Kawa
        1 Dec 2022, 14:17

        I've just read yet another article about how C++ needs to die because pointers, and no-code/low-code is the next big thing. Basically "computers too hard, need make businessmen move pretty pictures instead. We'll call it programming from now on"...

        Depressed

        T Offline
        T Offline
        TomZ
        wrote on 1 Dec 2022, 14:35 last edited by
        #25

        @Chris-Kawa said in old hacker...low tolerance:

        I've just read yet another article about how C++ needs to die because pointers, and no-code/low-code is the next big thing.

        What are people's opinion about the effort called 'cppfront' (from hsutter).

        Personally I'm thinking its quite interesting and does solve a lot of legacy issues with the language.

        C 1 Reply Last reply 1 Dec 2022, 14:52
        0
        • T TomZ
          1 Dec 2022, 14:35

          @Chris-Kawa said in old hacker...low tolerance:

          I've just read yet another article about how C++ needs to die because pointers, and no-code/low-code is the next big thing.

          What are people's opinion about the effort called 'cppfront' (from hsutter).

          Personally I'm thinking its quite interesting and does solve a lot of legacy issues with the language.

          C Online
          C Online
          Chris Kawa
          Lifetime Qt Champion
          wrote on 1 Dec 2022, 14:52 last edited by Chris Kawa 12 Jan 2022, 14:54
          #26

          @TomZ My personal opinion: Herb is a good presenter and community builder, but he has spent decades trying hard to make C++ not C++. He tried with .Net, C++/CLI, C++/CX and a bunch of features that thankfully didn't make it into standard. He made a big presentation about memory management in C++ a few years back and the first Q&A question was "Did you just implement a garbage collector?". cppfront shows the same attitude, even in the different syntax, that's often different for the sake of it being different. At the point he presented it it didn't even have classes. It's under control of single person, would take decades to become production ready for even simple projects. I don't see anything useful for C++ coming out of it beyond maybe some trivial features tested early. For example he says the defaults in C++ are bad and it's a chance to see what would it look like to change them. We know defaults are bad and we know there's no way to change them without breaking the world, so what's the point? To me cppfront is basically a toy to play around with compiler. Just like Carbon, that was announced around the same time. Similar syntax even, because these guys hang around together.

          T 1 Reply Last reply 1 Dec 2022, 15:07
          2
          • C Chris Kawa
            1 Dec 2022, 14:52

            @TomZ My personal opinion: Herb is a good presenter and community builder, but he has spent decades trying hard to make C++ not C++. He tried with .Net, C++/CLI, C++/CX and a bunch of features that thankfully didn't make it into standard. He made a big presentation about memory management in C++ a few years back and the first Q&A question was "Did you just implement a garbage collector?". cppfront shows the same attitude, even in the different syntax, that's often different for the sake of it being different. At the point he presented it it didn't even have classes. It's under control of single person, would take decades to become production ready for even simple projects. I don't see anything useful for C++ coming out of it beyond maybe some trivial features tested early. For example he says the defaults in C++ are bad and it's a chance to see what would it look like to change them. We know defaults are bad and we know there's no way to change them without breaking the world, so what's the point? To me cppfront is basically a toy to play around with compiler. Just like Carbon, that was announced around the same time. Similar syntax even, because these guys hang around together.

            T Offline
            T Offline
            TomZ
            wrote on 1 Dec 2022, 15:07 last edited by
            #27

            @Chris-Kawa said in old hacker...low tolerance:

            We know defaults are bad and we know there's no way to change them without breaking the world, so what's the point?

            But that's the entire point of the project. It allows changing the defaults without breaking the world. Which is the most important point of the project.

            Not sure why you think it would not be able to accomplish that.

            See it in this light; ever new class you write from now on will be forced to have sane defaults and good practices enforced. Old code stays old code, no changes needed. You can even refactor and mix, but it would be frowned upon in your CI. And, naturally, it all gets compiled with the same compiler and links together.

            @Chris-Kawa said in old hacker...low tolerance:

            To me cppfront is basically a toy to play around with compiler.

            Its not a compiler. As the name implies. You still use your normal cpp compiler in the end.

            1 Reply Last reply
            0
            • C Online
              C Online
              Chris Kawa
              Lifetime Qt Champion
              wrote on 1 Dec 2022, 15:17 last edited by Chris Kawa 12 Jan 2022, 15:18
              #28

              But that's the entire point of the project

              Pretty much entire world runs on C++. Took it almost 40 years to get there. cppfront is not gonna have any relevance for at least the same. Now you have a complicated C++ language. If you introduce cppfront somewhere you're not dropping the old. You'll have to be an expert in both and in interop between them to get anywhere.
              Tooling for C++ is abundant and often sucks. There's no tooling for cppfront whatsoever. There's no libraries, editors, toolchain support, test frameworks. Pretty much no infrastructure for it whatsoever beyond compiler explorer. The language itself is in a napkin draft stage and is owned by a single person.

              Its not a compiler

              I know. I meant that it's a toy language to play with existing compiler to see what it can do if you drop legacy dependencies. Which you can do on a playground, but can't do in the real world.

              J T 2 Replies Last reply 1 Dec 2022, 15:21
              0
              • C Chris Kawa
                1 Dec 2022, 15:17

                But that's the entire point of the project

                Pretty much entire world runs on C++. Took it almost 40 years to get there. cppfront is not gonna have any relevance for at least the same. Now you have a complicated C++ language. If you introduce cppfront somewhere you're not dropping the old. You'll have to be an expert in both and in interop between them to get anywhere.
                Tooling for C++ is abundant and often sucks. There's no tooling for cppfront whatsoever. There's no libraries, editors, toolchain support, test frameworks. Pretty much no infrastructure for it whatsoever beyond compiler explorer. The language itself is in a napkin draft stage and is owned by a single person.

                Its not a compiler

                I know. I meant that it's a toy language to play with existing compiler to see what it can do if you drop legacy dependencies. Which you can do on a playground, but can't do in the real world.

                J Offline
                J Offline
                JonB
                wrote on 1 Dec 2022, 15:21 last edited by JonB 12 Jan 2022, 15:21
                #29

                @TomZ , @Chris-Kawa said in old hacker...low tolerance:

                Its not a compiler

                I know.

                Reading and learning from you two. But it's amusing that the opening sentence from its author at https://github.com/hsutter/cppfront reads:

                Cppfront is a experimental compiler from a potential C++ 'syntax 2' (Cpp2) to today's 'syntax 1' (Cpp1), to learn some things, prove out some concepts, and share some ideas. This compiler is a work in progress

                [My bold.]

                C 1 Reply Last reply 1 Dec 2022, 15:26
                1
                • J JonB
                  1 Dec 2022, 15:21

                  @TomZ , @Chris-Kawa said in old hacker...low tolerance:

                  Its not a compiler

                  I know.

                  Reading and learning from you two. But it's amusing that the opening sentence from its author at https://github.com/hsutter/cppfront reads:

                  Cppfront is a experimental compiler from a potential C++ 'syntax 2' (Cpp2) to today's 'syntax 1' (Cpp1), to learn some things, prove out some concepts, and share some ideas. This compiler is a work in progress

                  [My bold.]

                  C Online
                  C Online
                  Chris Kawa
                  Lifetime Qt Champion
                  wrote on 1 Dec 2022, 15:26 last edited by Chris Kawa 12 Jan 2022, 15:42
                  #30

                  @JonB Right, I guess we got carried away. cppfront is the compiler for cpp2 or C++ syntax 2 language.

                  Btw. "C++ 'syntax 2'" is such a classic Herb move to make something new and call it C++. He knows that if you call it D or Rust most C++ people won't be interested. He's a good salesman.

                  The goal of that project is to see if we could evolve C++ if we dropped legacy dependencies. Let me spare you the trouble:

                  • Can we make a better language if we drop legacy dependencies? - Absolutely, it was done multiple times.
                  • Can we evolve existing code base into that new language? - It's been tried. Leads to local pockets of messy unmaintainable hybrids that bog down the system and eventually get rewritten in the yet next bigger thing or dropped entirely.
                  • Can we try it anyway because we know better? - Sure, have at it

                  It's curious to me that Stroustrup doesn't seem to comment on it (or at least I haven't noticed), yet Herb keeps using his cfront as an example to call cppfront the same thing. I wonder what he thinks of it.

                  1 Reply Last reply
                  0
                  • C Chris Kawa
                    1 Dec 2022, 15:17

                    But that's the entire point of the project

                    Pretty much entire world runs on C++. Took it almost 40 years to get there. cppfront is not gonna have any relevance for at least the same. Now you have a complicated C++ language. If you introduce cppfront somewhere you're not dropping the old. You'll have to be an expert in both and in interop between them to get anywhere.
                    Tooling for C++ is abundant and often sucks. There's no tooling for cppfront whatsoever. There's no libraries, editors, toolchain support, test frameworks. Pretty much no infrastructure for it whatsoever beyond compiler explorer. The language itself is in a napkin draft stage and is owned by a single person.

                    Its not a compiler

                    I know. I meant that it's a toy language to play with existing compiler to see what it can do if you drop legacy dependencies. Which you can do on a playground, but can't do in the real world.

                    T Offline
                    T Offline
                    TomZ
                    wrote on 1 Dec 2022, 17:04 last edited by
                    #31

                    @Chris-Kawa said in old hacker...low tolerance:

                    Pretty much entire world runs on C++. Took it almost 40 years to get there. cppfront is not gonna have any relevance for at least the same. Now you have a complicated C++ language. If you introduce cppfront somewhere you're not dropping the old. You'll have to be an expert in both and in interop between them to get anywhere.

                    Ok, this is factually a project that takes a cpp2 file, and "compiles" (ok, I guess he calls that compiling) it to regular C++, which is then put in your project to compile with all the other files.

                    Knowing this, I'm not sure why you have such worries. Indeed, nobody is going to suggest you drop the old, there is no reason to throw away any cpp tooling as it still works, there is no "interop" to worry about as its literally the same concepts, the same library and the method names you make up are still pure C++ methods.

                    Let me repeat that, your Qt library can be used with zero config, glue or interop-work from cpp-front. Because both are C++.

                    Now, I read you have doubts about the guy's motives. And that's fair, I don't know (or care) about the man. He is indeed a great presenter, I'll give you that.
                    But I don't give a hoot about the man, I care about the research and the open source code.

                    Anyway, the reason this is on this thread is because there is a real industry push away from unsafe code. Out of bounds memory accesses (raw pointer arithmetic) are still near the top when it comes to exploits and similar issues. Dropping C++ is one way to go, but that 40 years of history is indeed a pretty big reason why that's not gonna happen. So, this is one way to go.

                    Maybe to avoid the politics; what about https://github.com/SerenityOS/jakt ?

                    1 Reply Last reply
                    0
                    • C Online
                      C Online
                      Chris Kawa
                      Lifetime Qt Champion
                      wrote on 1 Dec 2022, 17:44 last edited by Chris Kawa 12 Jan 2022, 17:56
                      #32

                      Ok, this is factually a project that takes a cpp2 file, and "compiles" it to regular C++

                      Currently. Again, it's a napkin spec right now. There's already a talk about meta-classes and other stuff that doesn't have direct translation into standard C++.

                      there is no "interop" to worry about

                      Try calling a syntax 2 function from C++. Yes, you need glue.

                      Because both are C++

                      No, they're not. Just like JavaScript and TypeScript are not the same. You are buying into the marketing. It's not C++. It's a one direction translation. Bidirectional interop needs glue.

                      How about we focus on educating better and methodically improve existing C++ instead of inventing 42nd language for attention deficient people, who look for instant wins and can't be bothered to put any effort in? Because that's a rising and far larger problem than some syntax tidbits. Just look at any technical forum - next generation is perfectly well capable of f-ing up in syntax 2, just like they are in C++. It's a sociological problem to a far greater extent than a technical one.

                      Besides, there were bunch of other languages starting with good intentions like this - C++ without its legacy problems. D for example. The issue is that it starts that way, but when the language grows to the size that is actually useful, it gathers its own baggage of legacy problems. You end up in the same spot, just with lost time that you could've put into improving what you already had. The world is already spinning. There is no starting over.

                      J 1 Reply Last reply 1 Dec 2022, 17:52
                      3
                      • C Chris Kawa
                        1 Dec 2022, 17:44

                        Ok, this is factually a project that takes a cpp2 file, and "compiles" it to regular C++

                        Currently. Again, it's a napkin spec right now. There's already a talk about meta-classes and other stuff that doesn't have direct translation into standard C++.

                        there is no "interop" to worry about

                        Try calling a syntax 2 function from C++. Yes, you need glue.

                        Because both are C++

                        No, they're not. Just like JavaScript and TypeScript are not the same. You are buying into the marketing. It's not C++. It's a one direction translation. Bidirectional interop needs glue.

                        How about we focus on educating better and methodically improve existing C++ instead of inventing 42nd language for attention deficient people, who look for instant wins and can't be bothered to put any effort in? Because that's a rising and far larger problem than some syntax tidbits. Just look at any technical forum - next generation is perfectly well capable of f-ing up in syntax 2, just like they are in C++. It's a sociological problem to a far greater extent than a technical one.

                        Besides, there were bunch of other languages starting with good intentions like this - C++ without its legacy problems. D for example. The issue is that it starts that way, but when the language grows to the size that is actually useful, it gathers its own baggage of legacy problems. You end up in the same spot, just with lost time that you could've put into improving what you already had. The world is already spinning. There is no starting over.

                        J Offline
                        J Offline
                        JoeCFD
                        wrote on 1 Dec 2022, 17:52 last edited by JoeCFD 12 Jan 2022, 18:09
                        #33

                        @Chris-Kawa Oh, no, you are against the Great Reset.

                        One thing I do agree with you is: it makes more sense to make C++ better than to invent more other languages.
                        For example, I used to use a lot of Fortran. If C++ has efficient multi-dimensional array(will have in 23), Fortran can be dropped easily.

                        C 1 Reply Last reply 1 Dec 2022, 18:11
                        0
                        • J JoeCFD
                          1 Dec 2022, 17:52

                          @Chris-Kawa Oh, no, you are against the Great Reset.

                          One thing I do agree with you is: it makes more sense to make C++ better than to invent more other languages.
                          For example, I used to use a lot of Fortran. If C++ has efficient multi-dimensional array(will have in 23), Fortran can be dropped easily.

                          C Online
                          C Online
                          Chris Kawa
                          Lifetime Qt Champion
                          wrote on 1 Dec 2022, 18:11 last edited by
                          #34

                          The sad part for me is that a bunch of those new languages popping up are made by current or former C++ standard committee members, which sounds like "oh no, it's too hard, I'll make my own". And it's not even a joint effort. Everyone wants to be the inventor of the next big thing. I mean I don't mind people wasting time. It's their time to waste. It's just those are the people who are actually in a position to do something impactful. I wish they would've spent that time more productive for the sake of all of us.

                          J 1 Reply Last reply 1 Dec 2022, 18:13
                          0
                          • C Chris Kawa
                            1 Dec 2022, 18:11

                            The sad part for me is that a bunch of those new languages popping up are made by current or former C++ standard committee members, which sounds like "oh no, it's too hard, I'll make my own". And it's not even a joint effort. Everyone wants to be the inventor of the next big thing. I mean I don't mind people wasting time. It's their time to waste. It's just those are the people who are actually in a position to do something impactful. I wish they would've spent that time more productive for the sake of all of us.

                            J Offline
                            J Offline
                            JoeCFD
                            wrote on 1 Dec 2022, 18:13 last edited by JoeCFD 12 Jan 2022, 18:13
                            #35

                            @Chris-Kawa Actually not bad if they can come up with some good ideas.

                            1 Reply Last reply
                            0
                            • J Offline
                              J Offline
                              JonB
                              wrote on 1 Dec 2022, 19:04 last edited by
                              #36

                              Programming (languages, humans writing code) will be over in 20 (50?) years. Discuss.

                              M J 2 Replies Last reply 1 Dec 2022, 19:05
                              0
                              • J JonB
                                1 Dec 2022, 19:04

                                Programming (languages, humans writing code) will be over in 20 (50?) years. Discuss.

                                M Offline
                                M Offline
                                mzimmers
                                wrote on 1 Dec 2022, 19:05 last edited by
                                #37

                                @JonB said in old hacker...low tolerance:

                                Programming (languages, humans writing code) will be over in 20 (50?) years. Discuss.

                                Right...and robots will eliminate the need for human labor in 10 years. signed, a lot of smart people c. 1960.

                                J K 2 Replies Last reply 1 Dec 2022, 19:07
                                0
                                • M mzimmers
                                  1 Dec 2022, 19:05

                                  @JonB said in old hacker...low tolerance:

                                  Programming (languages, humans writing code) will be over in 20 (50?) years. Discuss.

                                  Right...and robots will eliminate the need for human labor in 10 years. signed, a lot of smart people c. 1960.

                                  J Offline
                                  J Offline
                                  JonB
                                  wrote on 1 Dec 2022, 19:07 last edited by
                                  #38

                                  @mzimmers
                                  I checked up yesterday, we are due to have nuclear fusion online in early 2030s. It's very exciting, I have been waiting for it all my life.

                                  M 1 Reply Last reply 1 Dec 2022, 19:14
                                  0
                                  • J JonB
                                    1 Dec 2022, 19:07

                                    @mzimmers
                                    I checked up yesterday, we are due to have nuclear fusion online in early 2030s. It's very exciting, I have been waiting for it all my life.

                                    M Offline
                                    M Offline
                                    mzimmers
                                    wrote on 1 Dec 2022, 19:14 last edited by
                                    #39

                                    @JonB said in old hacker...low tolerance:

                                    @mzimmers
                                    I checked up yesterday, we are due to have nuclear fusion online in early 2030s.

                                    I thought the Qt Forum already experienced that, back when that crabapple AnneRanch used to post here?

                                    1 Reply Last reply
                                    0
                                    • F Offline
                                      F Offline
                                      fcarney
                                      wrote on 1 Dec 2022, 19:35 last edited by
                                      #40

                                      Meanwhile Javascript is being put into everything.

                                      C++ is a perfectly valid school of magic.

                                      M 1 Reply Last reply 1 Dec 2022, 19:36
                                      2
                                      • F fcarney
                                        1 Dec 2022, 19:35

                                        Meanwhile Javascript is being put into everything.

                                        M Offline
                                        M Offline
                                        mzimmers
                                        wrote on 1 Dec 2022, 19:36 last edited by
                                        #41

                                        @fcarney said in old hacker...low tolerance:

                                        Meanwhile Javascript is being put into everything.

                                        Now let's don't YOU start...

                                        1 Reply Last reply
                                        1
                                        • M mzimmers
                                          1 Dec 2022, 19:05

                                          @JonB said in old hacker...low tolerance:

                                          Programming (languages, humans writing code) will be over in 20 (50?) years. Discuss.

                                          Right...and robots will eliminate the need for human labor in 10 years. signed, a lot of smart people c. 1960.

                                          K Offline
                                          K Offline
                                          Kent-Dorfman
                                          wrote on 1 Dec 2022, 20:42 last edited by
                                          #42

                                          @mzimmers said in old hacker...low tolerance:

                                          Right...and robots will eliminate the need for human labor in 10 years. signed, a lot of smart people c. 1960.

                                          Well, those idiots on the left coast (SanFransisco) just approved the use of "lethal force" robots against civilians. Yet another step closer to sky-net, but what do those of us wearing tin-foil hats know, right?

                                          J 1 Reply Last reply 1 Dec 2022, 21:35
                                          1

                                          32/47

                                          1 Dec 2022, 17:44

                                          • Login

                                          • Login or register to search.
                                          32 out of 47
                                          • First post
                                            32/47
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • Users
                                          • Groups
                                          • Search
                                          • Get Qt Extensions
                                          • Unsolved