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. My new pet peeve - final

My new pet peeve - final

Scheduled Pinned Locked Moved The Lounge
questionannouncement
62 Posts 41 Posters 1 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.
  • C Chris Maunder

    I'm organising some documents and I've realised I have a new pet peeve: putting "Final" in a document name to indicate that it's the final version. In itself this isn't awful. What's awful is: document.docx document - final.docx document - final - DG-comments.docx document - FINAL.docx So which one's the final one? This is why documents need source control... [Edit: Just found:" Copy of Copy of document FINAL.docx". We have a winner!]

    cheers Chris Maunder

    J Offline
    J Offline
    Jeremy Falcon
    wrote on last edited by
    #22

    Chris Maunder wrote:

    This is why documents need source control...

    You ever try a combo of your code repo and the built-in revisioning tools in Word? Da Link[^]

    Jeremy Falcon

    S 1 Reply Last reply
    0
    • C Chris Maunder

      I'm organising some documents and I've realised I have a new pet peeve: putting "Final" in a document name to indicate that it's the final version. In itself this isn't awful. What's awful is: document.docx document - final.docx document - final - DG-comments.docx document - FINAL.docx So which one's the final one? This is why documents need source control... [Edit: Just found:" Copy of Copy of document FINAL.docx". We have a winner!]

      cheers Chris Maunder

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

      Release your inner demon. ..take a copy of "document - final - DG-comments.docx", copy it once in the directory it's already in, and add the remark "probably the current latest version".

      Bastard Programmer from Hell :suss: If you can't read my code, try converting it here[^]

      S 1 Reply Last reply
      0
      • C Chris Maunder

        I'm organising some documents and I've realised I have a new pet peeve: putting "Final" in a document name to indicate that it's the final version. In itself this isn't awful. What's awful is: document.docx document - final.docx document - final - DG-comments.docx document - FINAL.docx So which one's the final one? This is why documents need source control... [Edit: Just found:" Copy of Copy of document FINAL.docx". We have a winner!]

        cheers Chris Maunder

        R Offline
        R Offline
        Ravi Bhavnani
        wrote on last edited by
        #24

        My solution to this common problem is to rename older versions of the document, e.g:

        • Document.docx The latest version of the document.
        • Document - 01.docx First edit.
        • Document - 02 - Updates per Joe Updates made in response to Joe's review.
        • Document - Draft An unsequenced draft version of the document.

        Chris Maunder wrote:

        This is why documents need source control...

        Of course they do!  As does any edited collateral.  Aside: File versioning came standard with my first OS (VAX/VMS, circa 1980). :) /ravi

        My new year resolution: 2048 x 1536 Home | Articles | My .NET bits | Freeware ravib(at)ravib(dot)com

        G 1 Reply Last reply
        0
        • D devenv exe

          At my current work place, we have databases named like below on the same instance of SQL Server 1. Database1 2. Database1 New 3. Database1 Current 4. Database1 Recent 5. Database1 Latest 6. Database1 Real For some reason, no one wants to delete any of them.

          "Coming soon"

          M Offline
          M Offline
          Mycroft Holmes
          wrote on last edited by
          #25

          I make them put their initial after the database version, then I know who the owner is. I'm also in the habit of taking DB off line on the dev and UAT servers, if no one screams in a month I can delete them.

          Never underestimate the power of human stupidity RAH

          1 Reply Last reply
          0
          • C Chris Maunder

            I'm organising some documents and I've realised I have a new pet peeve: putting "Final" in a document name to indicate that it's the final version. In itself this isn't awful. What's awful is: document.docx document - final.docx document - final - DG-comments.docx document - FINAL.docx So which one's the final one? This is why documents need source control... [Edit: Just found:" Copy of Copy of document FINAL.docx". We have a winner!]

            cheers Chris Maunder

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

            That's why we have date stamps, Chris! ;P

            Will Rogers never met me.

            1 Reply Last reply
            0
            • C Chris Maunder

              I'm organising some documents and I've realised I have a new pet peeve: putting "Final" in a document name to indicate that it's the final version. In itself this isn't awful. What's awful is: document.docx document - final.docx document - final - DG-comments.docx document - FINAL.docx So which one's the final one? This is why documents need source control... [Edit: Just found:" Copy of Copy of document FINAL.docx". We have a winner!]

              cheers Chris Maunder

              R Offline
              R Offline
              R Erasmus
              wrote on last edited by
              #27

              Suggestion: Don't put the word final in the name, put it in the doc itself. That is how we do it in any case... Why you may wonder... You'll have too many docs to maintain/store which becomes ugly. (As you have seen with the names issue) I the case of using a versioning tool you end up with multiple (and in actual fact this can extend to 100s) of different documents which should only be one document with different revisions... One being internally marked as draft, the next revision being internally marked as final. The draft would usually go through review, update and verify process. The final will never contain comments. THUS: One doc with same name and mechanism to indicate state of document internally, managed through source/revision control system or something similar.

              "Program testing can be used to show the presence of bugs, but never to show their absence." << please vote!! >>

              1 Reply Last reply
              0
              • C Chris Maunder

                I'm organising some documents and I've realised I have a new pet peeve: putting "Final" in a document name to indicate that it's the final version. In itself this isn't awful. What's awful is: document.docx document - final.docx document - final - DG-comments.docx document - FINAL.docx So which one's the final one? This is why documents need source control... [Edit: Just found:" Copy of Copy of document FINAL.docx". We have a winner!]

                cheers Chris Maunder

                K Offline
                K Offline
                Kiriander
                wrote on last edited by
                #28

                Sort by write date, theone with the last date is the last one. Problem solved.

                1 Reply Last reply
                0
                • C Chris Maunder

                  I'm organising some documents and I've realised I have a new pet peeve: putting "Final" in a document name to indicate that it's the final version. In itself this isn't awful. What's awful is: document.docx document - final.docx document - final - DG-comments.docx document - FINAL.docx So which one's the final one? This is why documents need source control... [Edit: Just found:" Copy of Copy of document FINAL.docx". We have a winner!]

                  cheers Chris Maunder

                  M Offline
                  M Offline
                  Member 4724084
                  wrote on last edited by
                  #29

                  At the risk of starting a war, why not just check the last modified file property? Free versioning that comes with every platform.

                  C 1 Reply Last reply
                  0
                  • C Chris Maunder

                    I'm organising some documents and I've realised I have a new pet peeve: putting "Final" in a document name to indicate that it's the final version. In itself this isn't awful. What's awful is: document.docx document - final.docx document - final - DG-comments.docx document - FINAL.docx So which one's the final one? This is why documents need source control... [Edit: Just found:" Copy of Copy of document FINAL.docx". We have a winner!]

                    cheers Chris Maunder

                    C Offline
                    C Offline
                    CBadger
                    wrote on last edited by
                    #30

                    Final is a myth! Dracula proved this with the Lochness monster's resources when Bigfoot's cousin came to oversee the project after Santa Clause's wife gave him the spring off to visit the Sandman on his holiday to the tooth fairies' palace on the other side of wonderland, knowing the boogey man will try and intervene in proving Final as the truth just before the Easter bunny can use a Leprechaun's wand. :suss:

                    Chris Maunder wrote:

                    This is why documents need source control...

                    I give you version control document.docx documentV1.docx documentV2 - DG-comments.docx documentV3.docx :-\ then at least one knows of the laziness if "Copy of Copy of documentV7.docx" is found :doh:

                    Loading signature... . . . Please Wait . . .

                    1 Reply Last reply
                    0
                    • J JimmyRopes

                      If more than one person will be working on the document simultaneously then source control (like SVN) is the best option. For documents you are working on that others are not contributing to try the following naming convention. It works for me. document20140103.docx document20140131.docx document20140206.docx document20140223.docx document20140316.docx You will always know the latest and greatest version of the document. Well at least the latest version. :cool:

                      **_Once you lose your pride the rest is easy.

                      I would agree with you but then we both would be wrong._**
                      The report of my death was an exaggeration - Mark Twain Simply Elegant Designs JimmyRopes Designs
                      I'm on-line therefore I am. JimmyRopes

                      C Offline
                      C Offline
                      CBadger
                      wrote on last edited by
                      #31

                      And if it becomes even more intense one can add the HHmmss :rolleyes: document20140103_085219.docx document20140103_090659.docx document20140103_102534.docx document20140103_102601.docx document20140103_103754.docx document20140103_115910.docx document20140103_142101.docx

                      Loading signature... . . . Please Wait . . .

                      B 1 Reply Last reply
                      0
                      • C Chris Maunder

                        I'm organising some documents and I've realised I have a new pet peeve: putting "Final" in a document name to indicate that it's the final version. In itself this isn't awful. What's awful is: document.docx document - final.docx document - final - DG-comments.docx document - FINAL.docx So which one's the final one? This is why documents need source control... [Edit: Just found:" Copy of Copy of document FINAL.docx". We have a winner!]

                        cheers Chris Maunder

                        N Offline
                        N Offline
                        Nagy Vilmos
                        wrote on last edited by
                        #32

                        ... and this, dear reader, is what document control is for.

                        1 Reply Last reply
                        0
                        • C Chris Maunder

                          I'm organising some documents and I've realised I have a new pet peeve: putting "Final" in a document name to indicate that it's the final version. In itself this isn't awful. What's awful is: document.docx document - final.docx document - final - DG-comments.docx document - FINAL.docx So which one's the final one? This is why documents need source control... [Edit: Just found:" Copy of Copy of document FINAL.docx". We have a winner!]

                          cheers Chris Maunder

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

                          Chris Maunder wrote:

                          This is why documents need source control

                          Been there, done that, got the revision history to prove it. My sub-peeve to your pet-peeve: People who include the revision number in the document filename. I have one document in source control "MSEM_Interface_121.docx", "MSEM_Interface_122.docx", ..., "MSEM_Interface_137.docx" :doh:.

                          Software Zen: delete this;

                          1 Reply Last reply
                          0
                          • W W Balboos GHB

                            No version control problems - give them a Wiki. Let them fight it out amongst themselves.

                            "The difference between genius and stupidity is that genius has its limits." - Albert Einstein

                            "As far as we know, our computer has never had an undetected error." - Weisert

                            "If you are searching for perfection in others, then you seek disappointment. If you are seek perfection in yourself, then you will find failure." - Balboos HaGadol Mar 2010

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

                            Do you really want to let a marketing schmuck edit a wiki?

                            Software Zen: delete this;

                            S 1 Reply Last reply
                            0
                            • R Ravi Bhavnani

                              My solution to this common problem is to rename older versions of the document, e.g:

                              • Document.docx The latest version of the document.
                              • Document - 01.docx First edit.
                              • Document - 02 - Updates per Joe Updates made in response to Joe's review.
                              • Document - Draft An unsequenced draft version of the document.

                              Chris Maunder wrote:

                              This is why documents need source control...

                              Of course they do!  As does any edited collateral.  Aside: File versioning came standard with my first OS (VAX/VMS, circa 1980). :) /ravi

                              My new year resolution: 2048 x 1536 Home | Articles | My .NET bits | Freeware ravib(at)ravib(dot)com

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

                              Ravi Bhavnani wrote:

                              Aside: File versioning came standard with my first OS (VAX/VMS, circa 1980)

                              PURGE *.* /KEEP=3

                              Software Zen: delete this;

                              R 1 Reply Last reply
                              0
                              • C Chris Maunder

                                You'd think. Except it isn't. You've had merge conflicts before, right? Same deal.

                                cheers Chris Maunder

                                B Offline
                                B Offline
                                Bassam Abdul Baki
                                wrote on last edited by
                                #36

                                So use a version number before Final in the name to imply it's baselined. Then increment the version number before finalizing and always remove Final while it's a work in progress. document_1.0.doc document_1.1.doc document_2.0_Final.doc document_2.1.doc document_2.2.doc document_2.3.doc document_3.0_Final.doc

                                Web - BM - RSS - Math - LinkedIn

                                S 1 Reply Last reply
                                0
                                • C Chris Maunder

                                  I'm organising some documents and I've realised I have a new pet peeve: putting "Final" in a document name to indicate that it's the final version. In itself this isn't awful. What's awful is: document.docx document - final.docx document - final - DG-comments.docx document - FINAL.docx So which one's the final one? This is why documents need source control... [Edit: Just found:" Copy of Copy of document FINAL.docx". We have a winner!]

                                  cheers Chris Maunder

                                  L Offline
                                  L Offline
                                  loctrice
                                  wrote on last edited by
                                  #37

                                  We have that here as well. The one that gets me is calling something (everything) "Master".

                                  Elephant elephant elephant, sunshine sunshine sunshine

                                  1 Reply Last reply
                                  0
                                  • G Gary Wheeler

                                    Ravi Bhavnani wrote:

                                    Aside: File versioning came standard with my first OS (VAX/VMS, circa 1980)

                                    PURGE *.* /KEEP=3

                                    Software Zen: delete this;

                                    R Offline
                                    R Offline
                                    Ravi Bhavnani
                                    wrote on last edited by
                                    #38

                                    Username: GWHEELER
                                    Password:

                                            Welcome to VAX/VMS 3.1.
                                    

                                    Your last login was Mon 14-Jul-2014 07:24:08 AM.

                                    /ravi

                                    My new year resolution: 2048 x 1536 Home | Articles | My .NET bits | Freeware ravib(at)ravib(dot)com

                                    G 1 Reply Last reply
                                    0
                                    • R Ravi Bhavnani

                                      Username: GWHEELER
                                      Password:

                                              Welcome to VAX/VMS 3.1.
                                      

                                      Your last login was Mon 14-Jul-2014 07:24:08 AM.

                                      /ravi

                                      My new year resolution: 2048 x 1536 Home | Articles | My .NET bits | Freeware ravib(at)ravib(dot)com

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

                                      Your attempt to put me into a state of maudlin sentimentality has succeeded, Ravi. Well played :-D. My last experience with a VAX was on a MicroVAX-II back in the late 80's. I worked for a defense contractor at the time. We developed simulations in FORTRAN and Ada. I also used the machine when I was taking graduate artificial intelligence classes. I *cough* borrowed *cough* a friend's C compiler and ported XLISP[^] from the IBM PC to the VAX.

                                      Software Zen: delete this;

                                      R 1 Reply Last reply
                                      0
                                      • G Gary Wheeler

                                        Your attempt to put me into a state of maudlin sentimentality has succeeded, Ravi. Well played :-D. My last experience with a VAX was on a MicroVAX-II back in the late 80's. I worked for a defense contractor at the time. We developed simulations in FORTRAN and Ada. I also used the machine when I was taking graduate artificial intelligence classes. I *cough* borrowed *cough* a friend's C compiler and ported XLISP[^] from the IBM PC to the VAX.

                                        Software Zen: delete this;

                                        R Offline
                                        R Offline
                                        Ravi Bhavnani
                                        wrote on last edited by
                                        #40

                                        Looks like we've walked similar paths. :) I met my first VAX in 1980 at school, and later in 1987 when I joined DEC's AI group.  There we used a bit of VAX Lisp, but mostly DEC OPS5 to build XCON[^]. /ravi

                                        My new year resolution: 2048 x 1536 Home | Articles | My .NET bits | Freeware ravib(at)ravib(dot)com

                                        G 1 Reply Last reply
                                        0
                                        • R Ravi Bhavnani

                                          Looks like we've walked similar paths. :) I met my first VAX in 1980 at school, and later in 1987 when I joined DEC's AI group.  There we used a bit of VAX Lisp, but mostly DEC OPS5 to build XCON[^]. /ravi

                                          My new year resolution: 2048 x 1536 Home | Articles | My .NET bits | Freeware ravib(at)ravib(dot)com

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

                                          Ravi Bhavnani wrote:

                                          There we used a bit of VAX Lisp, but mostly DEC OPS5 to build XCON

                                          We talked about XCON in my AI classes. The opinion was that is was one of the first (if not the first) genuinely useful commercial AI applications. I seem to remember the professor saying there was a sign at DEC that said "Last year I couldn't even spell 'knowledge engineer', and now I R1." :cool:

                                          Software Zen: delete this;

                                          R 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