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. Programmers that think they're smart

Programmers that think they're smart

Scheduled Pinned Locked Moved The Lounge
pythoncomjsonhelpquestion
33 Posts 23 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.
  • R realJSOP

    As far as I know, the compiler treats that code the same as this:

    {
    string data = inputStream.ReadToEnd();
    SomeClass myObj = JsonConvert.Deserialize(data)
    var processed = Process(myObj);
    return JsonConvert.SerializeObject(processed);
    }

    even if it didn't precisely, at least you can debug it one step at a time. You could also do this if you had the itch (but it is fairly pointless:

    {
    #if DEBUG

    string data = inputStream.ReadToEnd();
    SomeClass myObj = JsonConvert.Deserialize(data)
    var processed = Process(myObj);
    return JsonConvert.SerializeObject(processed);
    

    #else

    return JsonConvert.SerializeObject(Process(JsonConvert.Deserialize(inputStream.ReadToEnd())));
    

    #endif
    }

    ".45 ACP - because shooting twice is just silly" - JSOP, 2010
    -----
    You can never have too much ammo - unless you're swimming, or on fire. - JSOP, 2010
    -----
    When you pry the gun from my cold dead hands, be careful - the barrel will be very hot. - JSOP, 2013

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

    That would actually annoy me: the code getting tested and debugged isn't the same code as the release version, and is likely to get "out of step". So it works in dev, and fails in prod. Nasty, to my mind. I'd rather go with the former version and rely on the optimiser to remove the intermediate variables in prod.

    Sent from my Amstrad PC 1640 Never throw anything away, Griff Bad command or file name. Bad, bad command! Sit! Stay! Staaaay... AntiTwitter: @DalekDave is now a follower!

    "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

    G R 2 Replies Last reply
    0
    • OriginalGriffO OriginalGriff

      That would actually annoy me: the code getting tested and debugged isn't the same code as the release version, and is likely to get "out of step". So it works in dev, and fails in prod. Nasty, to my mind. I'd rather go with the former version and rely on the optimiser to remove the intermediate variables in prod.

      Sent from my Amstrad PC 1640 Never throw anything away, Griff Bad command or file name. Bad, bad command! Sit! Stay! Staaaay... AntiTwitter: @DalekDave is now a follower!

      G Offline
      G Offline
      GuyThiebaut
      wrote on last edited by
      #13

      I agree - the Debug directive is a really bad idea in my opinion as you now have two sets of code to maintain whenever you make a change.

      “That which can be asserted without evidence, can be dismissed without evidence.”

      ― Christopher Hitchens

      1 Reply Last reply
      0
      • M Marc Clifton

        return JsonConvert.SerializeObject(Process(JsonConvert.Deserialize(inputStream.ReadToEnd())));

        Such a PITA to inspect the intermediate results when debugging a problem. Is it bad data in the input? Is it bad data being produced by Process? Does the output JSON look like what the client is expecting? Wouldn't you want to do some validation before handing off to Process? What about a try-catch if the deserialization fails? What about a try-catch if Process fails? :sigh:

        Latest Article - Slack-Chatting with you rPi Learning to code with python is like learning to swim with those little arm floaties. It gives you undeserved confidence and will eventually drown you. - DangerBunny Artificial intelligence is the only remedy for natural stupidity. - CDP1802

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

        Thank you for this comment… Recently I took over some relatively big Java/Eclipse/Tomcat projects and I see such things all over the place … I even have no time to change this but it should be changed, of course :-) It's the mindset indeed of such "devs" that is totally wrong … BR,

        1 Reply Last reply
        0
        • OriginalGriffO OriginalGriff

          That would actually annoy me: the code getting tested and debugged isn't the same code as the release version, and is likely to get "out of step". So it works in dev, and fails in prod. Nasty, to my mind. I'd rather go with the former version and rely on the optimiser to remove the intermediate variables in prod.

          Sent from my Amstrad PC 1640 Never throw anything away, Griff Bad command or file name. Bad, bad command! Sit! Stay! Staaaay... AntiTwitter: @DalekDave is now a follower!

          R Offline
          R Offline
          realJSOP
          wrote on last edited by
          #15

          That was an "in the interest of completeness" thing.

          ".45 ACP - because shooting twice is just silly" - JSOP, 2010
          -----
          You can never have too much ammo - unless you're swimming, or on fire. - JSOP, 2010
          -----
          When you pry the gun from my cold dead hands, be careful - the barrel will be very hot. - JSOP, 2013

          1 Reply Last reply
          0
          • M Marc Clifton

            return JsonConvert.SerializeObject(Process(JsonConvert.Deserialize(inputStream.ReadToEnd())));

            Such a PITA to inspect the intermediate results when debugging a problem. Is it bad data in the input? Is it bad data being produced by Process? Does the output JSON look like what the client is expecting? Wouldn't you want to do some validation before handing off to Process? What about a try-catch if the deserialization fails? What about a try-catch if Process fails? :sigh:

            Latest Article - Slack-Chatting with you rPi Learning to code with python is like learning to swim with those little arm floaties. It gives you undeserved confidence and will eventually drown you. - DangerBunny Artificial intelligence is the only remedy for natural stupidity. - CDP1802

            F Offline
            F Offline
            F ES Sitecore
            wrote on last edited by
            #16

            I hate code like that. I hate it more when I submit code for a code review and I'm told to do things like that. I quite like code like;

            Product p = GetProduct(params);
            return p;

            I know that GetProduct returns a Product class and the code lets me debug to see what "p" is. Invariably someone who "knows better" will tell me to use "var" or more likely just "return GetProduct". The reason it annoys me so is that when it comes down to compiled code it makes no difference. Optimisers render the output the same. I remember in one job the tech lead had a hard-on for defining constants in their own classes (nothing wrong with that) but declaring them as static strings. I said we should use constants instead, I then began to explain "Because the compiler...." and he cut me off there saying "I don't care what the compiler does, we shouldn't change our code due to the compiler." Ok....strings it is then.

            1 Reply Last reply
            0
            • R realJSOP

              As far as I know, the compiler treats that code the same as this:

              {
              string data = inputStream.ReadToEnd();
              SomeClass myObj = JsonConvert.Deserialize(data)
              var processed = Process(myObj);
              return JsonConvert.SerializeObject(processed);
              }

              even if it didn't precisely, at least you can debug it one step at a time. You could also do this if you had the itch (but it is fairly pointless:

              {
              #if DEBUG

              string data = inputStream.ReadToEnd();
              SomeClass myObj = JsonConvert.Deserialize(data)
              var processed = Process(myObj);
              return JsonConvert.SerializeObject(processed);
              

              #else

              return JsonConvert.SerializeObject(Process(JsonConvert.Deserialize(inputStream.ReadToEnd())));
              

              #endif
              }

              ".45 ACP - because shooting twice is just silly" - JSOP, 2010
              -----
              You can never have too much ammo - unless you're swimming, or on fire. - JSOP, 2010
              -----
              When you pry the gun from my cold dead hands, be careful - the barrel will be very hot. - JSOP, 2013

              Mike HankeyM Offline
              Mike HankeyM Offline
              Mike Hankey
              wrote on last edited by
              #17

              Yeah I'm with OG the former is definitely the way to go, then you're sure they are the same in both environments.

              Got my site back up after my time in the woods! JaxCoder.com

              1 Reply Last reply
              0
              • G GuyThiebaut

                I have found that writing code that is easier to debug is an idea that contradicts some of the more modern suggested coding patterns. I am someone who likes to use LINQ and lambdas but admit that sometimes it doesn't make debugging particularly easy.

                “That which can be asserted without evidence, can be dismissed without evidence.”

                ― Christopher Hitchens

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

                GuyThiebaut wrote:

                code that is easier to debug is an idea that contradicts some of the more modern suggested coding patterns.

                Or it's just because so many "developers" do not learn or understand debugging. When things don't work they just open a QA.

                B 1 Reply Last reply
                0
                • M Marc Clifton

                  return JsonConvert.SerializeObject(Process(JsonConvert.Deserialize(inputStream.ReadToEnd())));

                  Such a PITA to inspect the intermediate results when debugging a problem. Is it bad data in the input? Is it bad data being produced by Process? Does the output JSON look like what the client is expecting? Wouldn't you want to do some validation before handing off to Process? What about a try-catch if the deserialization fails? What about a try-catch if Process fails? :sigh:

                  Latest Article - Slack-Chatting with you rPi Learning to code with python is like learning to swim with those little arm floaties. It gives you undeserved confidence and will eventually drown you. - DangerBunny Artificial intelligence is the only remedy for natural stupidity. - CDP1802

                  M Offline
                  M Offline
                  Member 9167057
                  wrote on last edited by
                  #19

                  Frankly, I've been doing similar stuff myself quite frequently albeit after verifying that all the building blocks work. A stack trace of the exception being thrown usually helps debugging when something truly unexpected happens, although I wouldn't consider Deserialie(UserProvidedData) an overly valid use case for such one-liners.

                  1 Reply Last reply
                  0
                  • M Marc Clifton

                    return JsonConvert.SerializeObject(Process(JsonConvert.Deserialize(inputStream.ReadToEnd())));

                    Such a PITA to inspect the intermediate results when debugging a problem. Is it bad data in the input? Is it bad data being produced by Process? Does the output JSON look like what the client is expecting? Wouldn't you want to do some validation before handing off to Process? What about a try-catch if the deserialization fails? What about a try-catch if Process fails? :sigh:

                    Latest Article - Slack-Chatting with you rPi Learning to code with python is like learning to swim with those little arm floaties. It gives you undeserved confidence and will eventually drown you. - DangerBunny Artificial intelligence is the only remedy for natural stupidity. - CDP1802

                    M Offline
                    M Offline
                    maze3
                    wrote on last edited by
                    #20

                    I have found myself a few times in C# and JavaScript when debugging that I needed to add a return line just to break point inside some anon function. It's a bit nice once in line breaking was added, but I do like the push to split up code for more readable instead of compact lines.

                    1 Reply Last reply
                    0
                    • M Marc Clifton

                      return JsonConvert.SerializeObject(Process(JsonConvert.Deserialize(inputStream.ReadToEnd())));

                      Such a PITA to inspect the intermediate results when debugging a problem. Is it bad data in the input? Is it bad data being produced by Process? Does the output JSON look like what the client is expecting? Wouldn't you want to do some validation before handing off to Process? What about a try-catch if the deserialization fails? What about a try-catch if Process fails? :sigh:

                      Latest Article - Slack-Chatting with you rPi Learning to code with python is like learning to swim with those little arm floaties. It gives you undeserved confidence and will eventually drown you. - DangerBunny Artificial intelligence is the only remedy for natural stupidity. - CDP1802

                      A Offline
                      A Offline
                      Andre Pereira
                      wrote on last edited by
                      #21

                      Web developers working on a 80 char terminal, trying to be "efficient" and clever: "Less lines means it's faster, right?" - every noob web developer "Who cares about indentation, we save 2 lines here this way!" - Apple before the SSL fiasco.

                      M 1 Reply Last reply
                      0
                      • L Lost User

                        GuyThiebaut wrote:

                        code that is easier to debug is an idea that contradicts some of the more modern suggested coding patterns.

                        Or it's just because so many "developers" do not learn or understand debugging. When things don't work they just open a QA.

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

                        When the guy who wrote the code has to spend an half an hour figuring out what the code actually does, is it a lack of debugging skill on the other people's part?

                        L 1 Reply Last reply
                        0
                        • B BryanFazekas

                          When the guy who wrote the code has to spend an half an hour figuring out what the code actually does, is it a lack of debugging skill on the other people's part?

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

                          :confused:

                          B 1 Reply Last reply
                          0
                          • L Lost User

                            :confused:

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

                            Richard, I'm guessing you never had to deal with code that was complex enough that, some 3 months after writing it, the author had to figure out what he wrote? If so, count your blessings.

                            L 1 Reply Last reply
                            0
                            • A Andre Pereira

                              Web developers working on a 80 char terminal, trying to be "efficient" and clever: "Less lines means it's faster, right?" - every noob web developer "Who cares about indentation, we save 2 lines here this way!" - Apple before the SSL fiasco.

                              M Offline
                              M Offline
                              Martin ISDN
                              wrote on last edited by
                              #25

                              the y2k bug come to my mind. on a 8bit computer one byte per date is a huge space optimization, but i don't believe that mainframe COBOL programmers had to be that careful. also, i remember reading about an "optimization" of the old day ms-dos assembly programmers using the inability of i8086 to address more than 1MB so they wouldn't mind generating segment:offset addresses that past the megabyte barrier, because it will roll over and map into the address space of the zeroth+ segment. this of course caused latter compatibility issues. there was a similar man made "optimization" problem on the first mc68000 Amiga's, but i don't recall enough info to check what was the trick there.

                              A 1 Reply Last reply
                              0
                              • C CPallini

                                Quote:

                                or even to you in a couple of years

                                E A R L I E R :laugh:

                                M Offline
                                M Offline
                                Martin ISDN
                                wrote on last edited by
                                #26

                                earlier indeed "Everyone knows that debugging is twice as hard as writing a program in the first place. So if you're as clever as you can be when you write it, how will you ever debug it?" Brian Kernighan

                                1 Reply Last reply
                                0
                                • B BryanFazekas

                                  Richard, I'm guessing you never had to deal with code that was complex enough that, some 3 months after writing it, the author had to figure out what he wrote? If so, count your blessings.

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

                                  BryanFazekas wrote:

                                  the author

                                  Are you talking about yourself? And I am not sure how this relates to my original comment.

                                  1 Reply Last reply
                                  0
                                  • M Marc Clifton

                                    return JsonConvert.SerializeObject(Process(JsonConvert.Deserialize(inputStream.ReadToEnd())));

                                    Such a PITA to inspect the intermediate results when debugging a problem. Is it bad data in the input? Is it bad data being produced by Process? Does the output JSON look like what the client is expecting? Wouldn't you want to do some validation before handing off to Process? What about a try-catch if the deserialization fails? What about a try-catch if Process fails? :sigh:

                                    Latest Article - Slack-Chatting with you rPi Learning to code with python is like learning to swim with those little arm floaties. It gives you undeserved confidence and will eventually drown you. - DangerBunny Artificial intelligence is the only remedy for natural stupidity. - CDP1802

                                    E Offline
                                    E Offline
                                    englebart
                                    wrote on last edited by
                                    #28

                                    Some IDE's have options to remove local variables. Don't ask me why! I like them for debug STOP locations as the poster prefers. I also like them for readability and documentation. Boolean summaryDescription = (super nasty Boolean expression with 4-8 components); if (summaryDescription) { handleIt(); } An ex-team member used to have their IDE preference to collapse these out of existence. I hated looking at my code after they had performed some minor tweak on my code along with a "reformat".

                                    1 Reply Last reply
                                    0
                                    • M Martin ISDN

                                      the y2k bug come to my mind. on a 8bit computer one byte per date is a huge space optimization, but i don't believe that mainframe COBOL programmers had to be that careful. also, i remember reading about an "optimization" of the old day ms-dos assembly programmers using the inability of i8086 to address more than 1MB so they wouldn't mind generating segment:offset addresses that past the megabyte barrier, because it will roll over and map into the address space of the zeroth+ segment. this of course caused latter compatibility issues. there was a similar man made "optimization" problem on the first mc68000 Amiga's, but i don't recall enough info to check what was the trick there.

                                      A Offline
                                      A Offline
                                      Andre Pereira
                                      wrote on last edited by
                                      #29

                                      Quote:

                                      hey wouldn't mind generating segment:offset addresses that past the megabyte barrier, because it will roll over and map into the address space of the zeroth+ segment

                                      Absolutely disgusting, this is the recipe CREATE legacy shit right from the start. I can't even imagine the hacks Microsoft must have had to do keep old Win32 apps working in a modern OS.

                                      1 Reply Last reply
                                      0
                                      • C CPallini

                                        I feel your pain. I find always difficult to understand others code, even well written one (a former workmate wrote a C++ library without comments, because 'clean code explains itself'. Well 'clean code' doesn't explain its rationale at all). Hence byzantine statements are the last thing I need. Anyway, I suppose my code might look byzantine to other people.

                                        S Offline
                                        S Offline
                                        Steve Naidamast
                                        wrote on last edited by
                                        #30

                                        Actually that C++ developer was correct in his belief in clean code explaining itself. However, "clean code" is only truly clean when a less experienced person can easily understand it. If you are a competent developer and found difficulties with understanding this person's code, than it is that developer who did not understand that his code was not as "clean" as he believed. Obviously, it was clean to him because he could easily understand it but he didn't take into account that someone else may not. Truly clean code means that the code is written with the most basic syntax available that will process the task efficiently. However, many developers believe their code is clean today simply because they wrote it in a legible manner while still using a lot of syntax sugar that vendors come up with in their compilers to make things simpler. Surprise, surprise! The result is exactly what you are complaining about... And with good reason...

                                        Steve Naidamast Sr. Software Engineer Black Falcon Software, Inc. blackfalconsoftware@outlook.com

                                        1 Reply Last reply
                                        0
                                        • M Marc Clifton

                                          return JsonConvert.SerializeObject(Process(JsonConvert.Deserialize(inputStream.ReadToEnd())));

                                          Such a PITA to inspect the intermediate results when debugging a problem. Is it bad data in the input? Is it bad data being produced by Process? Does the output JSON look like what the client is expecting? Wouldn't you want to do some validation before handing off to Process? What about a try-catch if the deserialization fails? What about a try-catch if Process fails? :sigh:

                                          Latest Article - Slack-Chatting with you rPi Learning to code with python is like learning to swim with those little arm floaties. It gives you undeserved confidence and will eventually drown you. - DangerBunny Artificial intelligence is the only remedy for natural stupidity. - CDP1802

                                          O Offline
                                          O Offline
                                          ormonds
                                          wrote on last edited by
                                          #31

                                          If you can't explain something to a five year old you don't understand it yourself. (Einstein, I think). Same goes for writing clear code.

                                          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