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. Technical slang term

Technical slang term

Scheduled Pinned Locked Moved The Lounge
questioncareer
21 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.
  • R Rob Philpott

    Good afternoon to all. I was wondering, is there a term for the person who's lumbered with the job of trying to merge code changes from one branch to another which hasn't been done in ages and has thousands of changes and conflicts and PAIN? On a bloody FRIDAY? Tried resolving conflicts in .sln files? It's impossible, even for robots.

    Regards, Rob Philpott.

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

    Yes - "Fool" ;) Marc

    Latest Article - Create a Dockerized Python Fiddle Web App 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

    1 Reply Last reply
    0
    • R Rob Philpott

      Good afternoon to all. I was wondering, is there a term for the person who's lumbered with the job of trying to merge code changes from one branch to another which hasn't been done in ages and has thousands of changes and conflicts and PAIN? On a bloody FRIDAY? Tried resolving conflicts in .sln files? It's impossible, even for robots.

      Regards, Rob Philpott.

      V Offline
      V Offline
      Vark111
      wrote on last edited by
      #10

      "He who broke the last build"

      K 1 Reply Last reply
      0
      • R Rob Philpott

        Good afternoon to all. I was wondering, is there a term for the person who's lumbered with the job of trying to merge code changes from one branch to another which hasn't been done in ages and has thousands of changes and conflicts and PAIN? On a bloody FRIDAY? Tried resolving conflicts in .sln files? It's impossible, even for robots.

        Regards, Rob Philpott.

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

        Merge slave. :doh:

        Did you ever see history portrayed as an old man with a wise brow and pulseless heart, waging all things in the balance of reason? Is not rather the genius of history like an eternal, imploring maiden, full of fire, with a burning heart and flaming soul, humanly warm and humanly beautiful? --Zachris Topelius Training a telescope on one’s own belly button will only reveal lint. You like that? You go right on staring at it. I prefer looking at galaxies. -- Sarah Hoyt

        1 Reply Last reply
        0
        • R Rob Philpott

          Good afternoon to all. I was wondering, is there a term for the person who's lumbered with the job of trying to merge code changes from one branch to another which hasn't been done in ages and has thousands of changes and conflicts and PAIN? On a bloody FRIDAY? Tried resolving conflicts in .sln files? It's impossible, even for robots.

          Regards, Rob Philpott.

          S Offline
          S Offline
          scmtim
          wrote on last edited by
          #12

          Configuration Manager is the title I have heard when someone is dedicated full time to source control, continuous integration, and build management. Not slang per se, but something you might be able to put on a resume.

          1 Reply Last reply
          0
          • OriginalGriffO OriginalGriff

            Yep: "Sucker"

            Bad command or file name. Bad, bad command! Sit! Stay! Staaaay... AntiTwitter: @DalekDave is now a follower!

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

            My choice as well. Thanks for being here.

            Software Zen: delete this;

            1 Reply Last reply
            0
            • R Rob Philpott

              Good afternoon to all. I was wondering, is there a term for the person who's lumbered with the job of trying to merge code changes from one branch to another which hasn't been done in ages and has thousands of changes and conflicts and PAIN? On a bloody FRIDAY? Tried resolving conflicts in .sln files? It's impossible, even for robots.

              Regards, Rob Philpott.

              K Offline
              K Offline
              KC CahabaGBA
              wrote on last edited by
              #14

              Condemned! X|

              1 Reply Last reply
              0
              • R Rob Philpott

                Good afternoon to all. I was wondering, is there a term for the person who's lumbered with the job of trying to merge code changes from one branch to another which hasn't been done in ages and has thousands of changes and conflicts and PAIN? On a bloody FRIDAY? Tried resolving conflicts in .sln files? It's impossible, even for robots.

                Regards, Rob Philpott.

                D Offline
                D Offline
                Dar Brett 0
                wrote on last edited by
                #15

                I've solved this problem. Step one, don't use a IDEs that need a file to track the files in the project - that's what the filesystem is for. Step two, use git. Step three, make everyone merge from master into their branch and get it working first. Step four, obsessively peer review everyones work before letting them merge back into your precious pure master branch.

                1 Reply Last reply
                0
                • R Rob Philpott

                  Good afternoon to all. I was wondering, is there a term for the person who's lumbered with the job of trying to merge code changes from one branch to another which hasn't been done in ages and has thousands of changes and conflicts and PAIN? On a bloody FRIDAY? Tried resolving conflicts in .sln files? It's impossible, even for robots.

                  Regards, Rob Philpott.

                  F Offline
                  F Offline
                  Fabio Franco
                  wrote on last edited by
                  #16

                  Rob Philpott wrote:

                  Tried resolving conflicts in .sln files? It's impossible, even for robots.

                  Yes, very hard, but not impossible. It's specially hard because at least up to VS 2015, projects would have a number assigned like: 55, 56, 57. Then each project has a corresponding GUID, and all matching coccurs hrough this GUIDs, which of course are very hard to remember and update the correct references in the files. Very painfull indeed, but there are ways around it, like completely ignoring the source branch sln changes, then re-include the projects in the solution after the merge.

                  To alcohol! The cause of, and solution to, all of life's problems - Homer Simpson ---- Our heads are round so our thoughts can change direction - Francis Picabia

                  1 Reply Last reply
                  0
                  • R Rob Philpott

                    Good afternoon to all. I was wondering, is there a term for the person who's lumbered with the job of trying to merge code changes from one branch to another which hasn't been done in ages and has thousands of changes and conflicts and PAIN? On a bloody FRIDAY? Tried resolving conflicts in .sln files? It's impossible, even for robots.

                    Regards, Rob Philpott.

                    K Offline
                    K Offline
                    Kirk 10389821
                    wrote on last edited by
                    #17

                    It depends... If (they are expected to do it correctly) Then "Sucker" Else "Intern"; Would you not just go back to the earliest set of changes and apply them one at a time? Then the conflicts are local, and should be explainable? I would not start this on a Friday... Ever... It sounds like a long job...

                    1 Reply Last reply
                    0
                    • R Rob Philpott

                      Good afternoon to all. I was wondering, is there a term for the person who's lumbered with the job of trying to merge code changes from one branch to another which hasn't been done in ages and has thousands of changes and conflicts and PAIN? On a bloody FRIDAY? Tried resolving conflicts in .sln files? It's impossible, even for robots.

                      Regards, Rob Philpott.

                      V Offline
                      V Offline
                      VMAtm
                      wrote on last edited by
                      #18

                      Run Driven Development: commit, push, run. http://geek-and-poke.com/geekandpoke/2014/2/23/dev-cycle-friday-evening-edition

                      1 Reply Last reply
                      0
                      • R Rob Philpott

                        Good afternoon to all. I was wondering, is there a term for the person who's lumbered with the job of trying to merge code changes from one branch to another which hasn't been done in ages and has thousands of changes and conflicts and PAIN? On a bloody FRIDAY? Tried resolving conflicts in .sln files? It's impossible, even for robots.

                        Regards, Rob Philpott.

                        D Offline
                        D Offline
                        Daniel Wilianto
                        wrote on last edited by
                        #19

                        Nightmare

                        R 1 Reply Last reply
                        0
                        • D Daniel Wilianto

                          Nightmare

                          R Offline
                          R Offline
                          rtischer8277
                          wrote on last edited by
                          #20

                          I was once that sucker left holding the bag in the Friday checkin nightmare. Then I got my MSCS and wrote my thesis on how compiling as we know it is broken and has been broken since Noam Chomsky's "Syntactic Structures" in 1957. Since then I have been developing a solution to that Friday checkin nightmare. I guess I'm still the sucker, but in a significantly more rewarding manner than moaning about a common computing predicament. Is there really no one else out there who has considered the problem as one that needs fixing?

                          1 Reply Last reply
                          0
                          • V Vark111

                            "He who broke the last build"

                            K Offline
                            K Offline
                            kristopher baker
                            wrote on last edited by
                            #21

                            Ayyy lmao

                            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