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. Coding - so what's a crime and whats a misdemeanor?

Coding - so what's a crime and whats a misdemeanor?

Scheduled Pinned Locked Moved The Lounge
databasecombeta-testingquestion
108 Posts 38 Posters 113 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.
  • Z ZurdoDev

    Can you search through source code history? In Visual Studio, I can choose: this document, current project, and entire solution. I haven't seen anything that allows me to search through source control history.

    There are only 10 types of people in the world, those who understand binary and those who don't.

    K Offline
    K Offline
    Kevin McFarlane
    wrote on last edited by
    #71

    RyanDev wrote:

    Can you search through source code history?

    No, you can't but I don't find this too much of a hindrance to look back at my own commits of a file. The way I see it is if I comment out code and I've not left a TODO then it's quite likely that I really won't need this again so I remove it. Possibly it might stay for a couple of commits. But certainly as a consumer of other developers' code I find it distracting when it contains too many blocks of commented out code as you have a tendency to look at what's been commented out and it can break the flow of the code. If there is some really big stuff that is in progress that I really shouldn't commit yet then I would shelve (TFS) or stash (Git) it.

    Kevin

    1 Reply Last reply
    0
    • OriginalGriffO OriginalGriff

      Was just adding something in QA and I thought: there are things no sentient coder should do these days, but every day in QA we see some halfwit doing them. So I figure we need a list of Crimes and Misdemeanors, and these are my first candidates. Misdemeanors are "smack on the head" offenses, Crimes deserve a death sentence! :laugh: Misdemeanors: A) Ignoring existing standards and modifying someone else's code "your way". Crimes: A) Storing passwords in plain text: CommitStrip[^] B) Leaving your code open to SQL Injection: XKCD[^] C) Committing code that doesn't compile. Anyone want to add to these?

      Bad command or file name. Bad, bad command! Sit! Stay! Staaaay...

      R Offline
      R Offline
      Roger Wright
      wrote on last edited by
      #72

      GOTO yourRoom. ;P

      Will Rogers never met me.

      1 Reply Last reply
      0
      • P Pete OHanlon

        I'm just waiting for the first person to put "uses JavaScript" or "uses VB".

        C Offline
        C Offline
        Chris Maunder
        wrote on last edited by
        #73

        Whatever happened to that whole dissing VB thing? We didn't all inadvertently grow up, did we? :sigh:

        cheers Chris Maunder

        1 Reply Last reply
        0
        • OriginalGriffO OriginalGriff

          Was just adding something in QA and I thought: there are things no sentient coder should do these days, but every day in QA we see some halfwit doing them. So I figure we need a list of Crimes and Misdemeanors, and these are my first candidates. Misdemeanors are "smack on the head" offenses, Crimes deserve a death sentence! :laugh: Misdemeanors: A) Ignoring existing standards and modifying someone else's code "your way". Crimes: A) Storing passwords in plain text: CommitStrip[^] B) Leaving your code open to SQL Injection: XKCD[^] C) Committing code that doesn't compile. Anyone want to add to these?

          Bad command or file name. Bad, bad command! Sit! Stay! Staaaay...

          C Offline
          C Offline
          Chris Maunder
          wrote on last edited by
          #74

          Not freeing your pointers.

          cheers Chris Maunder

          1 Reply Last reply
          0
          • OriginalGriffO OriginalGriff

            Was just adding something in QA and I thought: there are things no sentient coder should do these days, but every day in QA we see some halfwit doing them. So I figure we need a list of Crimes and Misdemeanors, and these are my first candidates. Misdemeanors are "smack on the head" offenses, Crimes deserve a death sentence! :laugh: Misdemeanors: A) Ignoring existing standards and modifying someone else's code "your way". Crimes: A) Storing passwords in plain text: CommitStrip[^] B) Leaving your code open to SQL Injection: XKCD[^] C) Committing code that doesn't compile. Anyone want to add to these?

            Bad command or file name. Bad, bad command! Sit! Stay! Staaaay...

            P Offline
            P Offline
            Pirate Guy
            wrote on last edited by
            #75

            I can't believe you missed the "u" in "Misdemeanours". From what I know, Brits love "their" grammar. :laugh: My additions: Misdemeanours: n) Unnecessary async wrappers for synchronous methods n+1) Abusing var (for C#) n+2) Under-usage of sealed (for C#) Crimes: n) Spawning unnecessary threads n+1) Using dynamic for "predictable" types (for C#) n+2) Making everything "public" with no thoughts whatsoever

            I ain't got no signature.

            1 Reply Last reply
            0
            • OriginalGriffO OriginalGriff

              Was just adding something in QA and I thought: there are things no sentient coder should do these days, but every day in QA we see some halfwit doing them. So I figure we need a list of Crimes and Misdemeanors, and these are my first candidates. Misdemeanors are "smack on the head" offenses, Crimes deserve a death sentence! :laugh: Misdemeanors: A) Ignoring existing standards and modifying someone else's code "your way". Crimes: A) Storing passwords in plain text: CommitStrip[^] B) Leaving your code open to SQL Injection: XKCD[^] C) Committing code that doesn't compile. Anyone want to add to these?

              Bad command or file name. Bad, bad command! Sit! Stay! Staaaay...

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

              I can think of lots, but most has been covered. Here's two crimes that make me cringe: - Bad comments (which is most), like commenting the obvious, wrong comments, comments with bad spelling and/or grammar, etc. - Christmas tree coding. if (...) { if (...) { if { ... } else if { ... } } else if { ... } } } Something like that (add a few layers, format it nicely and it'll start to look like a Christmas tree). - Just usage of a lot of if's in general.

              Visit my blog at Sander's bits - Writing the code you need. Or read my articles at my CodeProject profile.

              Simplicity is prerequisite for reliability. — Edsger W. Dijkstra

              Regards, Sander

              K 1 Reply Last reply
              0
              • L Lost User

                Committing commented-out code. I'm not sure whether it's a misdemeanor or crime though.

                J Offline
                J Offline
                John Torjo
                wrote on last edited by
                #77

                Depends on how you do it. I sometimes comment code with an

                #ifdef old_code
                #endif

                when completely replacing a function's implementation. This way, in the (near) future, if there are some issues with the function, I can see what I (or someone else) did in the original implementation. (note: in the long term, I do remove that code, but in short-to-medium, I leave it there) Best, John

                -- LogWizard - Log Viewing can be a joy!

                1 Reply Last reply
                0
                • Z ZurdoDev

                  Eddy Vluggen wrote:

                  I heard that often :rolleyes:

                  What about when you are in the middle of a long process of sql things and then you call one SP that sets a value but is not critical to anything else. If it fails, it's OK because a separate process later on will fix it anyway. What do you do then with the exception?

                  There are only 10 types of people in the world, those who understand binary and those who don't.

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

                  Then it sounds like the process is organized poorly. If a separate process will "fix it anyway", then why does the original stored procedure need to be done at all? For that matter, if you've got processes that fix problems in earlier steps, then you've got a system built out of Band-Aid™s.

                  Software Zen: delete this;

                  Z 1 Reply Last reply
                  0
                  • R Rob Philpott

                    Well according to the BBC, the recent Talk Talk hack was a simple SQL injection. This from an 'internet' company. Talk Talk is criminal, sounds right to me. Committing code that doesn't compile can just be a case of not including a file, so I'd say that was a misdemeanor. TFS will kindly do this for you at its will. Personally I'd say excessive use of design patterns turning the simple into the multifaceted complex is a crime. Any type that has the word 'helper' in its title- Crime. var - Crime Indentation with spaces - Crime More than 1 type per file - Crime Inconsistent naming - Crime

                    Regards, Rob Philpott.

                    J Offline
                    J Offline
                    John Torjo
                    wrote on last edited by
                    #79

                    Rob Philpott wrote:

                    var - Crime

                    why would that be? When using Linq, you often use var.

                    Rob Philpott wrote:

                    Indentation with spaces - Crime

                    Where I work, we indent using spaces :) Should we be put to death? :D Best, John

                    -- LogWizard - Log Viewing can be a joy!

                    1 Reply Last reply
                    0
                    • Sander RosselS Sander Rossel

                      I can think of lots, but most has been covered. Here's two crimes that make me cringe: - Bad comments (which is most), like commenting the obvious, wrong comments, comments with bad spelling and/or grammar, etc. - Christmas tree coding. if (...) { if (...) { if { ... } else if { ... } } else if { ... } } } Something like that (add a few layers, format it nicely and it'll start to look like a Christmas tree). - Just usage of a lot of if's in general.

                      Visit my blog at Sander's bits - Writing the code you need. Or read my articles at my CodeProject profile.

                      Simplicity is prerequisite for reliability. — Edsger W. Dijkstra

                      Regards, Sander

                      K Offline
                      K Offline
                      Kevin Bewley
                      wrote on last edited by
                      #80

                      I often get accused of commenting the obvious but I was taught to, and still do for complex algorithms/methods write what I want to do in terms of words as a comment (my intended function). Then I write the code underneath. The comments were there before the code, so it'd take me more time to delete them. Sorry - if you find it hard to just scroll past that stuff...

                      Sander RosselS 1 Reply Last reply
                      0
                      • K Kevin Bewley

                        I often get accused of commenting the obvious but I was taught to, and still do for complex algorithms/methods write what I want to do in terms of words as a comment (my intended function). Then I write the code underneath. The comments were there before the code, so it'd take me more time to delete them. Sorry - if you find it hard to just scroll past that stuff...

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

                        What people forget is that each comment is a line of code that has to be as carefully written as everything else and that if the code changes so should the comments. In the end, if there's lots of bad comments, people learn to ignore comments and miss the actual good comments! I've actually written a tip about it, Write comments that matter[^], because I see so many comments that add absolutely nothing to the code. I haven't seen your code, so I don't know if you do any of the stuff I describe in the tip, but if you do I ask you, for the sake of programmers everywhere, please reconsider this bad habit of yours! :laugh:

                        Visit my blog at Sander's bits - Writing the code you need. Or read my articles at my CodeProject profile.

                        Simplicity is prerequisite for reliability. — Edsger W. Dijkstra

                        Regards, Sander

                        1 Reply Last reply
                        0
                        • OriginalGriffO OriginalGriff

                          Was just adding something in QA and I thought: there are things no sentient coder should do these days, but every day in QA we see some halfwit doing them. So I figure we need a list of Crimes and Misdemeanors, and these are my first candidates. Misdemeanors are "smack on the head" offenses, Crimes deserve a death sentence! :laugh: Misdemeanors: A) Ignoring existing standards and modifying someone else's code "your way". Crimes: A) Storing passwords in plain text: CommitStrip[^] B) Leaving your code open to SQL Injection: XKCD[^] C) Committing code that doesn't compile. Anyone want to add to these?

                          Bad command or file name. Bad, bad command! Sit! Stay! Staaaay...

                          B Offline
                          B Offline
                          Brady Kelly
                          wrote on last edited by
                          #82

                          Unsorted pick lists and dropdowns. This kind of thing is easy enough for even a blank slate intern to get right.

                          Do what thou wilt shall be the whole of the Law. - Liber AL vel Legis 1:40, Aleister Crowley

                          P 1 Reply Last reply
                          0
                          • OriginalGriffO OriginalGriff

                            Was just adding something in QA and I thought: there are things no sentient coder should do these days, but every day in QA we see some halfwit doing them. So I figure we need a list of Crimes and Misdemeanors, and these are my first candidates. Misdemeanors are "smack on the head" offenses, Crimes deserve a death sentence! :laugh: Misdemeanors: A) Ignoring existing standards and modifying someone else's code "your way". Crimes: A) Storing passwords in plain text: CommitStrip[^] B) Leaving your code open to SQL Injection: XKCD[^] C) Committing code that doesn't compile. Anyone want to add to these?

                            Bad command or file name. Bad, bad command! Sit! Stay! Staaaay...

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

                            incorrect indentation combined with single statement control flow (no braces) Java/C/C#/C++

                            if (condition)

                            // 10 line lengthy explanation
                            //

                            originalSingleStatementForIf;
                            futureStatementThatNeedsToExecuteInAddtionTo_originalSingleStatementForIf;

                            FIX: Always use braces!

                            if (condition) {

                            // 10 line lengthy explanation
                            //

                            originalSingleStatementForIf;
                            futureStatementThatNeedsToExecuteInAddtionTo_originalSingleStatementForIf;
                            }

                            1 Reply Last reply
                            0
                            • G Gary Wheeler

                              Then it sounds like the process is organized poorly. If a separate process will "fix it anyway", then why does the original stored procedure need to be done at all? For that matter, if you've got processes that fix problems in earlier steps, then you've got a system built out of Band-Aid™s.

                              Software Zen: delete this;

                              Z Offline
                              Z Offline
                              ZurdoDev
                              wrote on last edited by
                              #84

                              Gary Wheeler wrote:

                              then you've got a system built out of Band-Aid™s.

                              No, it's called dealing with 3rd party tools. :-\

                              There are only 10 types of people in the world, those who understand binary and those who don't.

                              G 1 Reply Last reply
                              0
                              • Z ZurdoDev

                                Gary Wheeler wrote:

                                then you've got a system built out of Band-Aid™s.

                                No, it's called dealing with 3rd party tools. :-\

                                There are only 10 types of people in the world, those who understand binary and those who don't.

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

                                You have my sympathy. I hate dealing with third-party tools in our products. As the DSJB(*) I get to write our installers. I have one product that requires not one but two different versions of the Visual C++ runtime because of third-party dependencies. (*) Departmental Sh!t-Job Boy

                                Software Zen: delete this;

                                Z 1 Reply Last reply
                                0
                                • G Gary Wheeler

                                  You have my sympathy. I hate dealing with third-party tools in our products. As the DSJB(*) I get to write our installers. I have one product that requires not one but two different versions of the Visual C++ runtime because of third-party dependencies. (*) Departmental Sh!t-Job Boy

                                  Software Zen: delete this;

                                  Z Offline
                                  Z Offline
                                  ZurdoDev
                                  wrote on last edited by
                                  #86

                                  Gary Wheeler wrote:

                                  not one but two different versions of the Visual C++ runtime because of third-party dependencies.

                                  :thumbsdown:

                                  There are only 10 types of people in the world, those who understand binary and those who don't.

                                  1 Reply Last reply
                                  0
                                  • PJ ArendsP PJ Arends

                                    Indentation with tabs: Crime. Sometimes I will read code in Notepad, and there the tab spacing is just too large.

                                    Within you lies the power for good - Use it!

                                    R Offline
                                    R Offline
                                    Rob Philpott
                                    wrote on last edited by
                                    #87

                                    PJ Arends wrote:

                                    Sometimes I will read code in Notepad,

                                    Not just a crime, but also an obscenity. You can't blame tabs for an editor knocked together one afternoon after a liquid lunch in 1985.

                                    Regards, Rob Philpott.

                                    1 Reply Last reply
                                    0
                                    • OriginalGriffO OriginalGriff

                                      Was just adding something in QA and I thought: there are things no sentient coder should do these days, but every day in QA we see some halfwit doing them. So I figure we need a list of Crimes and Misdemeanors, and these are my first candidates. Misdemeanors are "smack on the head" offenses, Crimes deserve a death sentence! :laugh: Misdemeanors: A) Ignoring existing standards and modifying someone else's code "your way". Crimes: A) Storing passwords in plain text: CommitStrip[^] B) Leaving your code open to SQL Injection: XKCD[^] C) Committing code that doesn't compile. Anyone want to add to these?

                                      Bad command or file name. Bad, bad command! Sit! Stay! Staaaay...

                                      A Offline
                                      A Offline
                                      alfyvr
                                      wrote on last edited by
                                      #88

                                      Regarding A, I hate to say that sometimes you are left with no choice. It is part of the unavoidable friction that ensues when someone would not listen to reasons, not even in front of overwhelming evidence.

                                      1 Reply Last reply
                                      0
                                      • OriginalGriffO OriginalGriff

                                        Was just adding something in QA and I thought: there are things no sentient coder should do these days, but every day in QA we see some halfwit doing them. So I figure we need a list of Crimes and Misdemeanors, and these are my first candidates. Misdemeanors are "smack on the head" offenses, Crimes deserve a death sentence! :laugh: Misdemeanors: A) Ignoring existing standards and modifying someone else's code "your way". Crimes: A) Storing passwords in plain text: CommitStrip[^] B) Leaving your code open to SQL Injection: XKCD[^] C) Committing code that doesn't compile. Anyone want to add to these?

                                        Bad command or file name. Bad, bad command! Sit! Stay! Staaaay...

                                        P Offline
                                        P Offline
                                        PIEBALDconsult
                                        wrote on last edited by
                                        #89
                                        1. Using camelCase when not using Hungarian. 1) Using Hungarian.
                                        1 Reply Last reply
                                        0
                                        • B Brady Kelly

                                          Unsorted pick lists and dropdowns. This kind of thing is easy enough for even a blank slate intern to get right.

                                          Do what thou wilt shall be the whole of the Law. - Liber AL vel Legis 1:40, Aleister Crowley

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

                                          DropDowns with more than a dozen items or only two items. DropDowns for numbers. Three DropDowns instead of a single DateTimePicker.

                                          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