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. Other Discussions
  3. The Weird and The Wonderful
  4. The world of acronyms

The world of acronyms

Scheduled Pinned Locked Moved The Weird and The Wonderful
collaboration
22 Posts 17 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 marc_k

    You should ask him: Are you sure people will get used to it? Hope you get a clearer answer. http://msdn.microsoft.com/en-us/library/4xhs4564(v=VS.71).aspx[^] :laugh: :laugh:

    M Offline
    M Offline
    mathomp3
    wrote on last edited by
    #12

    Worse I had to deal with was single letters that weren't related. for example Table names A_EmployeeInformation, B_EmployeePay, A_EmployeeSpouseInfo, C_PayHistory I asked the database guy um why the letters, he said it grouped them by function and I should know that being a DBA for 5 years, and then questioned if I knew anything about Database design. It was at that moment I had fears over the database, and I was right, cause then we started seeing AA, and BB for tables that were reference tables, and my favorites were the ABC tables reference table used by A, B, C tables. Was so glad when I was removed from that program for a bigger profile one.

    1 Reply Last reply
    0
    • A Ashish Kaila

      Recently a developer in the team decided to prefix all classes in a namespace with a four alphabet acronym (let's call it DSRS, it's pretty close to what it is). I cannot elaborate how many brain cells have gone dead in me in comprehending the code and telling him to remove that prefix or use something more useful. His answer: people will get used to it and so will new devs... Speechless....

      Ashish Kaila

      _ Offline
      _ Offline
      _Erik_
      wrote on last edited by
      #13

      Well, then use you another prefix for your classes: "WTFisDSRS". If he asks you to remove that prefix, just answer: Yes, I will.. when you remove yours.

      1 Reply Last reply
      0
      • A Ashish Kaila

        Recently a developer in the team decided to prefix all classes in a namespace with a four alphabet acronym (let's call it DSRS, it's pretty close to what it is). I cannot elaborate how many brain cells have gone dead in me in comprehending the code and telling him to remove that prefix or use something more useful. His answer: people will get used to it and so will new devs... Speechless....

        Ashish Kaila

        J Offline
        J Offline
        Jalapeno Bob
        wrote on last edited by
        #14

        Being an old-timer, I have made a practice of prefixing a variable name with its type. For example, an integer for tracking the number of actions taken might be named intActions and a money variable (logical subclass of decimal) might be mnyCashIn. Even now, with much smarter compilers, I still do it. This makes my code consistent, whether old or new, compiled or script. It also simplifies porting between weakly typed languages and strongly typed languages.

        Steve EcholsS A 2 Replies Last reply
        0
        • I imagiro

          Reminds me another programmer I know. He prefixed everything with his initials :)

          A Offline
          A Offline
          AspDotNetDev
          wrote on last edited by
          #15

          There was a guy at my last job who did that. And every one of my coworkers insisted I mark each change I made to a stored procedure with a comment containing my name so they know who made the change (so they could go to that programmer and ask him/her about it). They thought that was a better idea than version control. Even though the code was littered with names of old programmers who no longer worked there.

          [Forum Guidelines]

          1 Reply Last reply
          0
          • J Jalapeno Bob

            Being an old-timer, I have made a practice of prefixing a variable name with its type. For example, an integer for tracking the number of actions taken might be named intActions and a money variable (logical subclass of decimal) might be mnyCashIn. Even now, with much smarter compilers, I still do it. This makes my code consistent, whether old or new, compiled or script. It also simplifies porting between weakly typed languages and strongly typed languages.

            Steve EcholsS Offline
            Steve EcholsS Offline
            Steve Echols
            wrote on last edited by
            #16

            It's called Hungarian Notation[^].


            - S 50 cups of coffee and you know it's on! Code, follow, or get out of the way.

            • S
              50 cups of coffee and you know it's on!
              Code, follow, or get out of the way.
            E 1 Reply Last reply
            0
            • J Jalapeno Bob

              Being an old-timer, I have made a practice of prefixing a variable name with its type. For example, an integer for tracking the number of actions taken might be named intActions and a money variable (logical subclass of decimal) might be mnyCashIn. Even now, with much smarter compilers, I still do it. This makes my code consistent, whether old or new, compiled or script. It also simplifies porting between weakly typed languages and strongly typed languages.

              A Offline
              A Offline
              Ashish Kaila
              wrote on last edited by
              #17

              Hey Bob, I think it depends on the platform being used. If I am using a not so type safe platform where at coding time type cannot be inferred, then a prefix for denoting object type is perfectly valid. I am not so sure about type safe languages such as C#. Also the problem I described was prefixing of classes which again should be avoided in my opinion regardless of platform. Anyhow happy friday and happy coding ! Ashish

              Ashish Kaila

              1 Reply Last reply
              0
              • I imagiro

                So you know at least which classes have to be exchanged :)

                A Offline
                A Offline
                Ashish Kaila
                wrote on last edited by
                #18

                Haha... Never thought like that :). But true ! I can write a script and have it do it for me ! In the end, the prefix will only apply to my script: ABCDPrefixRemover.bat :)

                Ashish Kaila

                1 Reply Last reply
                0
                • A Ashish Kaila

                  Recently a developer in the team decided to prefix all classes in a namespace with a four alphabet acronym (let's call it DSRS, it's pretty close to what it is). I cannot elaborate how many brain cells have gone dead in me in comprehending the code and telling him to remove that prefix or use something more useful. His answer: people will get used to it and so will new devs... Speechless....

                  Ashish Kaila

                  A Offline
                  A Offline
                  Adrian Cole
                  wrote on last edited by
                  #19

                  WTF?

                  while (e) { Coyote(); }

                  1 Reply Last reply
                  0
                  • A Ashish Kaila

                    Recently a developer in the team decided to prefix all classes in a namespace with a four alphabet acronym (let's call it DSRS, it's pretty close to what it is). I cannot elaborate how many brain cells have gone dead in me in comprehending the code and telling him to remove that prefix or use something more useful. His answer: people will get used to it and so will new devs... Speechless....

                    Ashish Kaila

                    E Offline
                    E Offline
                    Earl Truss
                    wrote on last edited by
                    #20

                    "I hate TLAs." You may quote me.

                    1 Reply Last reply
                    0
                    • Steve EcholsS Steve Echols

                      It's called Hungarian Notation[^].


                      - S 50 cups of coffee and you know it's on! Code, follow, or get out of the way.

                      E Offline
                      E Offline
                      Earl Truss
                      wrote on last edited by
                      #21

                      .. and it was highly recommended for use in VB6.

                      1 Reply Last reply
                      0
                      • A AspDotNetDev

                        A very similar thing was done to the main database at my last job. Only took me 1-2 years to "get used to" it. :doh: Though, to be honest, it was actually somewhat useful in the way they did the naming. When they casually used the prefixes in conversation and expected you to know what it meant was when it got confusing.

                        [Forum Guidelines]

                        K Offline
                        K Offline
                        Karl Kobel
                        wrote on last edited by
                        #22

                        Draw a red circle whit a slash through it (the classic 'No' symbol), and put TLA in the middle. Karl

                        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