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. "GUI" developers [modified]

"GUI" developers [modified]

Scheduled Pinned Locked Moved The Lounge
c++question
34 Posts 21 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.
  • M Michael Schubert

    OK, there is this guy in the C++ forum attempting to build his project from the command line. He's been told to build the project with "devenv /rebuild" but he gets "devenv is not recognized as internal or external command" and doesn't know what that means. I know that for most users the OS is just a thin layer of shiny buttons and fancy colors but a developer should know what's happening beneath (or beyond) that, don't you think?

    modified on Friday, November 13, 2009 5:30 AM

    M Offline
    M Offline
    Media2r
    wrote on last edited by
    #4

    I agree. In my opinion it is imperative to have a firm understanding of the system you're developing for, as well as any other technology relevant to your solution. For example, I would find it very difficult to build an optimized web application without firm knowledge of TCP/IP and HTTP, as well as having an awareness of the different platforms and rendering contexts the app would be exposed to. //L

    C 1 Reply Last reply
    0
    • M Michael Schubert

      OK, there is this guy in the C++ forum attempting to build his project from the command line. He's been told to build the project with "devenv /rebuild" but he gets "devenv is not recognized as internal or external command" and doesn't know what that means. I know that for most users the OS is just a thin layer of shiny buttons and fancy colors but a developer should know what's happening beneath (or beyond) that, don't you think?

      modified on Friday, November 13, 2009 5:30 AM

      P Offline
      P Offline
      pseudonym67
      wrote on last edited by
      #5

      Whilst in a purist world you might be right and even in a world where only the technically competent were allowed to do jobs that you know require technical competence. You are aware I take that there are people who are called computer programmers these days that have never written anything that runs outside of a browser. And even worse than that, that joe public thinks these are the "real" developers because when they ask what they are working on they get told things they can actually understand.

      pseudonym67 My Articles[^] Personal Music Player[^]

      M J 2 Replies Last reply
      0
      • M Media2r

        I agree. In my opinion it is imperative to have a firm understanding of the system you're developing for, as well as any other technology relevant to your solution. For example, I would find it very difficult to build an optimized web application without firm knowledge of TCP/IP and HTTP, as well as having an awareness of the different platforms and rendering contexts the app would be exposed to. //L

        C Offline
        C Offline
        CodyDaemon
        wrote on last edited by
        #6

        But your forgetting that the way people are 'meant' to code now is to forget about how the layers below work just use it. And if it goes too slow, buy a faster computer with more memory. Please note: I don't agree with that, I much prefer knowing what the tech I am using is and how it works so I can write neat and tidy fast code that does the job as best it can.

        realJSOPR 1 Reply Last reply
        0
        • realJSOPR realJSOP

          I'm just taking a wild stab at this since I've never bee asked to build that way, but it sounds to me like either the VS folders need to be added to the system path, or he needs to use the VS command prompt. Google is his friend.

          .45 ACP - because shooting twice is just silly
          -----
          "Why don't you tie a kerosene-soaked rag around your ankles so the ants won't climb up and eat your candy ass..." - Dale Earnhardt, 1997
          -----
          "The staggering layers of obscenity in your statement make it a work of art on so many levels." - J. Jystad, 2001

          M Offline
          M Offline
          Michael Schubert
          wrote on last edited by
          #7

          John Simmons / outlaw programmer wrote:

          but it sounds to me like either the VS folders need to be added to the system path

          That would be the solution. My point is that he didn't know how to interpret the error message from the command processor. Maybe this is so weird to me because I use the console and batch files frequently and I know most error messages by heart. Many of these kids may not even know that Windows also has a command line interface...

          realJSOPR 1 Reply Last reply
          0
          • P pseudonym67

            Whilst in a purist world you might be right and even in a world where only the technically competent were allowed to do jobs that you know require technical competence. You are aware I take that there are people who are called computer programmers these days that have never written anything that runs outside of a browser. And even worse than that, that joe public thinks these are the "real" developers because when they ask what they are working on they get told things they can actually understand.

            pseudonym67 My Articles[^] Personal Music Player[^]

            M Offline
            M Offline
            Michael Schubert
            wrote on last edited by
            #8

            pseudonym67 wrote:

            You are aware I take that there are people who are called computer programmers these days that have never written anything that runs outside of a browser.

            Ahh, these must be the "Web Developers". :rolleyes:

            L 1 Reply Last reply
            0
            • M Michael Schubert

              John Simmons / outlaw programmer wrote:

              but it sounds to me like either the VS folders need to be added to the system path

              That would be the solution. My point is that he didn't know how to interpret the error message from the command processor. Maybe this is so weird to me because I use the console and batch files frequently and I know most error messages by heart. Many of these kids may not even know that Windows also has a command line interface...

              realJSOPR Offline
              realJSOPR Offline
              realJSOP
              wrote on last edited by
              #9

              I did a phone interview for a job yesterday, and I got the impression that the guy has never had to do an serious work at the DOS prompt. The further away from the 80's you get, the less likely you'll find programmers that are even aware that they can use the command prompt for things.

              .45 ACP - because shooting twice is just silly
              -----
              "Why don't you tie a kerosene-soaked rag around your ankles so the ants won't climb up and eat your candy ass..." - Dale Earnhardt, 1997
              -----
              "The staggering layers of obscenity in your statement make it a work of art on so many levels." - J. Jystad, 2001

              D 1 Reply Last reply
              0
              • C CodyDaemon

                But your forgetting that the way people are 'meant' to code now is to forget about how the layers below work just use it. And if it goes too slow, buy a faster computer with more memory. Please note: I don't agree with that, I much prefer knowing what the tech I am using is and how it works so I can write neat and tidy fast code that does the job as best it can.

                realJSOPR Offline
                realJSOPR Offline
                realJSOP
                wrote on last edited by
                #10

                Yep - Microsoft is pushing the "ease" of programming, not the reasons programming exist.

                .45 ACP - because shooting twice is just silly
                -----
                "Why don't you tie a kerosene-soaked rag around your ankles so the ants won't climb up and eat your candy ass..." - Dale Earnhardt, 1997
                -----
                "The staggering layers of obscenity in your statement make it a work of art on so many levels." - J. Jystad, 2001

                1 Reply Last reply
                0
                • M Michael Schubert

                  OK, there is this guy in the C++ forum attempting to build his project from the command line. He's been told to build the project with "devenv /rebuild" but he gets "devenv is not recognized as internal or external command" and doesn't know what that means. I know that for most users the OS is just a thin layer of shiny buttons and fancy colors but a developer should know what's happening beneath (or beyond) that, don't you think?

                  modified on Friday, November 13, 2009 5:30 AM

                  S Offline
                  S Offline
                  SachinBhave
                  wrote on last edited by
                  #11

                  He seems to be in the same league as one of my colleagues who type-casted String to Treenode (under JAVA), and upon receiving an exception complained that there seems to be "some" problem here :-D

                  R J 2 Replies Last reply
                  0
                  • M Michael Schubert

                    OK, there is this guy in the C++ forum attempting to build his project from the command line. He's been told to build the project with "devenv /rebuild" but he gets "devenv is not recognized as internal or external command" and doesn't know what that means. I know that for most users the OS is just a thin layer of shiny buttons and fancy colors but a developer should know what's happening beneath (or beyond) that, don't you think?

                    modified on Friday, November 13, 2009 5:30 AM

                    N Offline
                    N Offline
                    NormDroid
                    wrote on last edited by
                    #12

                    Michael Schubert wrote:

                    but a developer should know what's happening beneath (or beyond) that, don't you think

                    I certainly hope so :omg:

                    Software Kinetics (requires SL3 beta) - Moving software

                    1 Reply Last reply
                    0
                    • M Michael Schubert

                      pseudonym67 wrote:

                      You are aware I take that there are people who are called computer programmers these days that have never written anything that runs outside of a browser.

                      Ahh, these must be the "Web Developers". :rolleyes:

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

                      Michael Schubert wrote:

                      Ahh, these must be the "Web Developers".

                      Formerly known as "Access developers" :)

                      I are Troll :suss:

                      1 Reply Last reply
                      0
                      • M Michael Schubert

                        OK, there is this guy in the C++ forum attempting to build his project from the command line. He's been told to build the project with "devenv /rebuild" but he gets "devenv is not recognized as internal or external command" and doesn't know what that means. I know that for most users the OS is just a thin layer of shiny buttons and fancy colors but a developer should know what's happening beneath (or beyond) that, don't you think?

                        modified on Friday, November 13, 2009 5:30 AM

                        P Offline
                        P Offline
                        peterchen
                        wrote on last edited by
                        #14

                        A developer should be able to cobble together a one-click build process. That almost requires some basic command line skills.

                        Personally, I love the idea that Raymond spends his nights posting bad regexs to mailing lists under the pseudonym of Jane Smith. He'd be like a super hero, only more nerdy and less useful. [Trevel]
                        | FoldWithUs! | sighist | µLaunch - program launcher for server core and hyper-v server

                        1 Reply Last reply
                        0
                        • S SachinBhave

                          He seems to be in the same league as one of my colleagues who type-casted String to Treenode (under JAVA), and upon receiving an exception complained that there seems to be "some" problem here :-D

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

                          TheIndian wrote:

                          He seems to be in the same league as one of my colleagues who type-casted String to Treenode (under JAVA), and upon receiving an exception complained that there seems to be "some" problem here

                          Did you explain that colleague that the problem seems to exist between the chair and the keyboard? (Java *itself* is a problem, but that's another aspect of the argument).

                          “Follow your bliss.” – Joseph Campbell

                          S 1 Reply Last reply
                          0
                          • R Rajesh R Subramanian

                            TheIndian wrote:

                            He seems to be in the same league as one of my colleagues who type-casted String to Treenode (under JAVA), and upon receiving an exception complained that there seems to be "some" problem here

                            Did you explain that colleague that the problem seems to exist between the chair and the keyboard? (Java *itself* is a problem, but that's another aspect of the argument).

                            “Follow your bliss.” – Joseph Campbell

                            S Offline
                            S Offline
                            SachinBhave
                            wrote on last edited by
                            #16

                            Rajesh R Subramanian wrote:

                            Did you explain

                            I dont dare explain him anything :-D

                            1 Reply Last reply
                            0
                            • realJSOPR realJSOP

                              I did a phone interview for a job yesterday, and I got the impression that the guy has never had to do an serious work at the DOS prompt. The further away from the 80's you get, the less likely you'll find programmers that are even aware that they can use the command prompt for things.

                              .45 ACP - because shooting twice is just silly
                              -----
                              "Why don't you tie a kerosene-soaked rag around your ankles so the ants won't climb up and eat your candy ass..." - Dale Earnhardt, 1997
                              -----
                              "The staggering layers of obscenity in your statement make it a work of art on so many levels." - J. Jystad, 2001

                              D Offline
                              D Offline
                              Dan Neely
                              wrote on last edited by
                              #17

                              agreed. Excepting penguins I doubt there's more than a handful of people under the age of 20 with non-trivial levels of commandline skills. Win95 removed any need for it from the average PC user.

                              3x12=36 2x12=24 1x12=12 0x12=18

                              OriginalGriffO 1 Reply Last reply
                              0
                              • M Michael Schubert

                                OK, there is this guy in the C++ forum attempting to build his project from the command line. He's been told to build the project with "devenv /rebuild" but he gets "devenv is not recognized as internal or external command" and doesn't know what that means. I know that for most users the OS is just a thin layer of shiny buttons and fancy colors but a developer should know what's happening beneath (or beyond) that, don't you think?

                                modified on Friday, November 13, 2009 5:30 AM

                                J Offline
                                J Offline
                                Jim Crafton
                                wrote on last edited by
                                #18

                                Yes.

                                ¡El diablo está en mis pantalones! ¡Mire, mire! SELECT * FROM User WHERE Clue > 0 0 rows returned Save an Orange - Use the VCF! Personal 3D projects Just Say No to Web 2 Point Blow

                                1 Reply Last reply
                                0
                                • P pseudonym67

                                  Whilst in a purist world you might be right and even in a world where only the technically competent were allowed to do jobs that you know require technical competence. You are aware I take that there are people who are called computer programmers these days that have never written anything that runs outside of a browser. And even worse than that, that joe public thinks these are the "real" developers because when they ask what they are working on they get told things they can actually understand.

                                  pseudonym67 My Articles[^] Personal Music Player[^]

                                  J Offline
                                  J Offline
                                  Jim Crafton
                                  wrote on last edited by
                                  #19

                                  pseudonym67 wrote:

                                  there are people who are called computer programmers these days that have never written anything that runs outside of a browser.

                                  You forgot the quotes around "programmers". :)

                                  ¡El diablo está en mis pantalones! ¡Mire, mire! SELECT * FROM User WHERE Clue > 0 0 rows returned Save an Orange - Use the VCF! Personal 3D projects Just Say No to Web 2 Point Blow

                                  1 Reply Last reply
                                  0
                                  • S SachinBhave

                                    He seems to be in the same league as one of my colleagues who type-casted String to Treenode (under JAVA), and upon receiving an exception complained that there seems to be "some" problem here :-D

                                    J Offline
                                    J Offline
                                    Jim Crafton
                                    wrote on last edited by
                                    #20

                                    Ah yes typecasting. I once worked with someone who put this in our java codebase:

                                    String s = new Object;

                                    Checked it in, broke the build, and then claimed complete lack of knowledge as to why things might not be compiling anymore. Sigh.

                                    ¡El diablo está en mis pantalones! ¡Mire, mire! SELECT * FROM User WHERE Clue > 0 0 rows returned Save an Orange - Use the VCF! Personal 3D projects Just Say No to Web 2 Point Blow

                                    1 Reply Last reply
                                    0
                                    • M Michael Schubert

                                      OK, there is this guy in the C++ forum attempting to build his project from the command line. He's been told to build the project with "devenv /rebuild" but he gets "devenv is not recognized as internal or external command" and doesn't know what that means. I know that for most users the OS is just a thin layer of shiny buttons and fancy colors but a developer should know what's happening beneath (or beyond) that, don't you think?

                                      modified on Friday, November 13, 2009 5:30 AM

                                      R Offline
                                      R Offline
                                      Robert Surtees
                                      wrote on last edited by
                                      #21

                                      Just wanted to thank you for the fingerprints I now have all over my screen from trying to kill your profile bug. :doh:

                                      1 Reply Last reply
                                      0
                                      • M Michael Schubert

                                        OK, there is this guy in the C++ forum attempting to build his project from the command line. He's been told to build the project with "devenv /rebuild" but he gets "devenv is not recognized as internal or external command" and doesn't know what that means. I know that for most users the OS is just a thin layer of shiny buttons and fancy colors but a developer should know what's happening beneath (or beyond) that, don't you think?

                                        modified on Friday, November 13, 2009 5:30 AM

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

                                        Hear hear! I've said it before and I'll say it again -- but I don't have to this time because you said it. There are certain tasks where a GUI excels and others where a command line excels -- use the right tool for the right job. On my last job I received a certain amount of ridicule because I spent so much time at the DOS prompt. I told people I was looking at the raw matrix.

                                        1 Reply Last reply
                                        0
                                        • M Michael Schubert

                                          OK, there is this guy in the C++ forum attempting to build his project from the command line. He's been told to build the project with "devenv /rebuild" but he gets "devenv is not recognized as internal or external command" and doesn't know what that means. I know that for most users the OS is just a thin layer of shiny buttons and fancy colors but a developer should know what's happening beneath (or beyond) that, don't you think?

                                          modified on Friday, November 13, 2009 5:30 AM

                                          M Offline
                                          M Offline
                                          Marc Clifton
                                          wrote on last edited by
                                          #23

                                          Michael Schubert wrote:

                                          I know that for most users the OS is just a thin layer of shiny buttons and fancy colors but a developer should know what's happening beneath (or beyond) that, don't you think?

                                          Personally, I think anyone who calls themselves a developer should have at least one decent sized app written in assembly language--by that, I mean, pick an emulator of your choice that targets a GameBoy, C64, Apple, or some other similar ancient machine, and write something, so you learn about hardware, registers, stacks, memory management, etc. But then again, that's just me and my weird way of looking at things. [edit]I think my point is made by the forum post below "why .net devs did that" :doh: [/edit] Marc

                                          Will work for food. Interacx

                                          I'm not overthinking the problem, I just felt like I needed a small, unimportant, uninteresting rant! - Martin Hart Turner

                                          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