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. Project Management question # 2 - Priorities

Project Management question # 2 - Priorities

Scheduled Pinned Locked Moved The Lounge
questiontestingbusinesscollaborationbeta-testing
28 Posts 12 Posters 3 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.
  • P peterchen

    If you lose all your developers, what will get the new guys on track fastest?


    We are a big screwed up dysfunctional psychotic happy family - some more screwed up, others more happy, but everybody's psychotic joint venture definition of CP
    My first real C# project | Linkify!|FoldWithUs! | sighist

    B Offline
    B Offline
    Bob Flynn
    wrote on last edited by
    #11

    I think working code will get them on track faster than well commented code. I find that comments are critical, but they also are easily outdated. Having tests that verify that code works and detects that it does not work when the new guy makes a change is most important. Some additional thoughts: I find that things that are not enforceable tend to be the most abouse/neglected. To make commenting and documentation the nmber 1 priority from a management perspective implies the need to track and verify that the comments are in place and accurate. Determining that comments are in place is easy enough with most (code coverage) tools available, but verifying that the comments are accurate requires code review as there are no tools that can do this for us. Unit tests provide a nice metric that is always up to date.

    E 1 Reply Last reply
    0
    • D David Patrick

      Again, for a team of 10 to 20 developers in size in what order would you prioritize the following "supplemental" activities : 1. reasonable code commenting/documentation 2. code reviews 3. unit testing Also, if you could only require your developers to do one of the above, which would it be ?

      Rocket science is more fun when you actually have rockets - US Navy ad

      E Offline
      E Offline
      El Corazon
      wrote on last edited by
      #12

      David Patrick wrote:

      if you could only require your developers to do one of the above

      If you were to sit on a one-legged stool, how comfortable would you feel? Would balancing precariously in the air make you feel unsure or powerful? I would not consider any of those "supplimental" though others do, including here. There were some mutterings when I got backing for pair-designing. It shortened code-reviews since design work, pre-code level, was already passing a mini-review by having been approved by two developers. It also reduced errors. This is the primary purpose behind unit tests and code reviews is to make a stable product BEFORE your software makes it to the customer. Code documentation and code commenting shouldn't even be optional, ever. I have had a long-time disagreement with one programmer, that has never been solved. Recently he returned to his work and asked my help in debugging his code, because he didn't even know what his code was doing. If that happens, it is pretty obvious that the comments are lacking. Code documentation and commenting is a maintenance issue. If you throw away all your code, rewrite everything and never reuse any code and none of your team ever talks to any other developer, and never tries to call any other developers code, ever, then perhaps it is not an issue. Otherwise, you are just asking for headaches, now, later, or both by not having good documentation -- especially including code comments.

      _________________________ Asu no koto o ieba, tenjo de nezumi ga warau. Talk about things of tomorrow and the mice in the ceiling laugh. (Japanese Proverb)

      1 Reply Last reply
      0
      • P peterchen

        If you lose all your developers, what will get the new guys on track fastest?


        We are a big screwed up dysfunctional psychotic happy family - some more screwed up, others more happy, but everybody's psychotic joint venture definition of CP
        My first real C# project | Linkify!|FoldWithUs! | sighist

        X Offline
        X Offline
        Xiangyang Liu
        wrote on last edited by
        #13

        peterchen wrote:

        If you lose all your developers, what will get the new guys on track fastest?

        Isn't that an extreme situation? I bet a developer has a better chance to out-run a tornado than a documentation cabinet. :-D

        My .NET Business Application Framework My Home Page

        P 1 Reply Last reply
        0
        • B Bob Flynn

          I think working code will get them on track faster than well commented code. I find that comments are critical, but they also are easily outdated. Having tests that verify that code works and detects that it does not work when the new guy makes a change is most important. Some additional thoughts: I find that things that are not enforceable tend to be the most abouse/neglected. To make commenting and documentation the nmber 1 priority from a management perspective implies the need to track and verify that the comments are in place and accurate. Determining that comments are in place is easy enough with most (code coverage) tools available, but verifying that the comments are accurate requires code review as there are no tools that can do this for us. Unit tests provide a nice metric that is always up to date.

          E Offline
          E Offline
          El Corazon
          wrote on last edited by
          #14

          Bob Flynn wrote:

          but they also are easily outdated.

          I have heard this argument ad nauseam. You could easily say, "unit tests can easily be forced to succeed and therefore should never be used." or "peer reviews are too easily swayed by cliques and therefore should never be done." or even "software can too easily create bugs, so no software should ever be written." Sure, if you don't do the work, it won't get done, but that should never be an exuse for not doing the work. When you put down a project for 6 months, the only clue to what ever the heck you were doing months ago, are your comments, or lack therein. If you have none, you have no idea what you were doing and easily create more bugs, misuse procedures, draw poor conclusions through too rapid review of your code, etc. So the result is at best the same as having unmaintained comments, and at worst, much, much worse. But if you actually do the work and maintain the comments, you get a plus by being able to know what you were doing 6 months ago. Everyone wins. No one should be asking for an essay on the history of the method you are doing and who has written it and what projects have succeed using the algorithm since 1960's. Access, purpose are the big requirements. How do you use it (input, output, calling/using methods) and intent/purpose. Given that a bug could easily be defined as an misunderstanding between the programmer's intended purpose (which hopefully is commented) and the physical interaction on the computer -- then a bug should be recognized as the difference between comment functionality and coded functionality. If you have no comments, then all bugs are a major search, every time because the debugging process must research and infer (never really knowing for sure) the original programmer's intent/purpose as well as evaluating functional run-time activity.

          _________________________ Asu no koto o ieba, tenjo de nezumi ga warau. Talk about things of tomorrow and the mice in the ceiling laugh. (Japanese Proverb)

          B P 2 Replies Last reply
          0
          • P peterchen

            If you lose all your developers, what will get the new guys on track fastest?


            We are a big screwed up dysfunctional psychotic happy family - some more screwed up, others more happy, but everybody's psychotic joint venture definition of CP
            My first real C# project | Linkify!|FoldWithUs! | sighist

            A Offline
            A Offline
            Andy Brummer
            wrote on last edited by
            #15

            peterchen wrote:

            If you lose all your developers,

            I think only doing one out of the 3 is a great way to make that happen. ;)


            Using the GridView is like trying to explain to someone else how to move a third person's hands in order to tie your shoelaces for you. -Chris Maunder

            P 1 Reply Last reply
            0
            • D David Patrick

              Again, for a team of 10 to 20 developers in size in what order would you prioritize the following "supplemental" activities : 1. reasonable code commenting/documentation 2. code reviews 3. unit testing Also, if you could only require your developers to do one of the above, which would it be ?

              Rocket science is more fun when you actually have rockets - US Navy ad

              A Offline
              A Offline
              Andy Brummer
              wrote on last edited by
              #16

              Is it an existing product, or is it new. If it is existing, code reviews are the easiest to add to an existing process. You also probably want to start with getting some high level documentation of the architecture and working in detail from the top down. Unit tests are notoriously tedious to write for existing code. I've found them much easier to write for new code and projects so you might want to work those in for new features and grow the library that way. Each of them tackle the same problem in different ways and are complementary. I'd rather work on a project that had some of all 3 then one that had just one done to the ninth degree.


              Using the GridView is like trying to explain to someone else how to move a third person's hands in order to tie your shoelaces for you. -Chris Maunder

              1 Reply Last reply
              0
              • P peterchen

                If you lose all your developers, what will get the new guys on track fastest?


                We are a big screwed up dysfunctional psychotic happy family - some more screwed up, others more happy, but everybody's psychotic joint venture definition of CP
                My first real C# project | Linkify!|FoldWithUs! | sighist

                E Offline
                E Offline
                El Corazon
                wrote on last edited by
                #17

                peterchen wrote:

                If you lose all your developers, what will get the new guys on track fastest?

                This is often listed as a doomsday scenerio, so not entirely accurate. Though you will find the argument said here with a very noticeable nod of the head. When they almost lost me in 2001, there was the sudden realization that they were loosing a massive knowledge of their software. There was one new developer on my work, and a couple of others that had no knowledge of the software I was doing... still it created a panic. You have you lead programmer on a major high-profile project dying in a hospital bed, the thing every manager waves off as "the doomsday scenerio" and too close to paranoia. And there they were, facing it in reality. I tend to not use it too often, but it is a constant reminder since my health has never been the same since. What happens if I die tomorrow? Though I think now that is less of a worry, there are still things only I know, but that is slowly changing. No one invented a brain-dumping mechanism. :)

                _________________________ Asu no koto o ieba, tenjo de nezumi ga warau. Talk about things of tomorrow and the mice in the ceiling laugh. (Japanese Proverb)

                X 1 Reply Last reply
                0
                • E El Corazon

                  Bob Flynn wrote:

                  but they also are easily outdated.

                  I have heard this argument ad nauseam. You could easily say, "unit tests can easily be forced to succeed and therefore should never be used." or "peer reviews are too easily swayed by cliques and therefore should never be done." or even "software can too easily create bugs, so no software should ever be written." Sure, if you don't do the work, it won't get done, but that should never be an exuse for not doing the work. When you put down a project for 6 months, the only clue to what ever the heck you were doing months ago, are your comments, or lack therein. If you have none, you have no idea what you were doing and easily create more bugs, misuse procedures, draw poor conclusions through too rapid review of your code, etc. So the result is at best the same as having unmaintained comments, and at worst, much, much worse. But if you actually do the work and maintain the comments, you get a plus by being able to know what you were doing 6 months ago. Everyone wins. No one should be asking for an essay on the history of the method you are doing and who has written it and what projects have succeed using the algorithm since 1960's. Access, purpose are the big requirements. How do you use it (input, output, calling/using methods) and intent/purpose. Given that a bug could easily be defined as an misunderstanding between the programmer's intended purpose (which hopefully is commented) and the physical interaction on the computer -- then a bug should be recognized as the difference between comment functionality and coded functionality. If you have no comments, then all bugs are a major search, every time because the debugging process must research and infer (never really knowing for sure) the original programmer's intent/purpose as well as evaluating functional run-time activity.

                  _________________________ Asu no koto o ieba, tenjo de nezumi ga warau. Talk about things of tomorrow and the mice in the ceiling laugh. (Japanese Proverb)

                  B Offline
                  B Offline
                  Bob Flynn
                  wrote on last edited by
                  #18

                  El Corazon wrote:

                  I have heard this argument ad nauseam. You could easily say, "unit tests can easily be forced to succeed and therefore should never be used." or "peer reviews are too easily swayed by cliques and therefore should never be done." or even "software can too easily create bugs, so no software should ever be written."

                  Anything can be abused by someone deliberately trying to get around the system or artificially improve metrics. If there are team members or a management style the promotes/condones/or allows that to happen then none of the practices in the original post should be first on the list. Given that management and developers are serious about what they are doing and doing the best that they can, I think unit testing is the way to go. When I deliver code that is used and then found to have a bug in it, we try to address the bug, and then we try to write tests that would have detected that bug in the first place (along with other similar bugs) if possible. Now take the scenario where the choice is between commenting ONLY or testing ONLY. When I make a change to address a bug, if I write a test or tests that only pass when the proper criteria is met before passing the fix back to acceptance testing, there is verifiable proof that what I intended to code is what is actually coded. If I do not do the testing, but simply update my comments, how do I know if the code is doing what the comments say they are doing? Only by testing can that be determined. Testing also ensures that future changes do not yield unexpected results (if the tests are thorough). I am not saying that commenting is not critical. But I am saying that commenting does not verify that the code works the way it was designed to work or the way that the requirements state that it should work. Now, switching to your example, when you put down a project for 6 months. Well, when I pick up that project 6 months later, I want to see that the code base is properly intact and that it passes all of the tests that it was supposed to pass. Comments can not tell me anything about what is broken, they only describe what the code is supposed to do and how it is supposed to be used (I said only, but again I agree that comments are necessary). Comments do not say anything about how the code actually works - because there is a bug and the code is obviously not doing what the comments indicate that they do. So from a project management perspective, my first opinion is t

                  P 1 Reply Last reply
                  0
                  • E El Corazon

                    peterchen wrote:

                    If you lose all your developers, what will get the new guys on track fastest?

                    This is often listed as a doomsday scenerio, so not entirely accurate. Though you will find the argument said here with a very noticeable nod of the head. When they almost lost me in 2001, there was the sudden realization that they were loosing a massive knowledge of their software. There was one new developer on my work, and a couple of others that had no knowledge of the software I was doing... still it created a panic. You have you lead programmer on a major high-profile project dying in a hospital bed, the thing every manager waves off as "the doomsday scenerio" and too close to paranoia. And there they were, facing it in reality. I tend to not use it too often, but it is a constant reminder since my health has never been the same since. What happens if I die tomorrow? Though I think now that is less of a worry, there are still things only I know, but that is slowly changing. No one invented a brain-dumping mechanism. :)

                    _________________________ Asu no koto o ieba, tenjo de nezumi ga warau. Talk about things of tomorrow and the mice in the ceiling laugh. (Japanese Proverb)

                    X Offline
                    X Offline
                    Xiangyang Liu
                    wrote on last edited by
                    #19

                    Your coworkers and manager will likely to survive fine even if you disappear permanently. This is not an attack on your skills or knowledge or importance. Even if you are the greatest developer alive, it will be very hard for the management to recognize or admit that. They can think of many other reasons why they have to hire 5 developers to continue your work: 1. The work you have been doing is just easy stuff, now they have to get started on more complicated tasks. 2. The technology you used is outdated, they need to rewrite everything from scratch. 3. There are so many hard to fix bugs in your code ... I think any manager will prefer 5 mediocre developers than a single person who thinks he is a super-star. :-D As they say, "the graveyard is full of indispensable people".

                    My .NET Business Application Framework My Home Page

                    E 1 Reply Last reply
                    0
                    • X Xiangyang Liu

                      peterchen wrote:

                      If you lose all your developers, what will get the new guys on track fastest?

                      Isn't that an extreme situation? I bet a developer has a better chance to out-run a tornado than a documentation cabinet. :-D

                      My .NET Business Application Framework My Home Page

                      P Offline
                      P Offline
                      peterchen
                      wrote on last edited by
                      #20

                      Well, yes. My line of thought was:"What is the worst that can happen?" But I don't prefer comments only for some worst case scenarios, rather it's the most basic thing for me. It's also the first thing I look for when I am thrown at an existing code base. With some expeirences in this regard, I am actually surprised that people would prefer unit tests over documentation. Documentaiton comes first also because the other two can be constructed from it. I rather have an /// \param X [void *] The target buffer, must be large enough to hold the results. May not be NULL. than a unit test that verifies the function throws an exception on a NULL parameter. Of course, I have high expectations towards documentation. (//increment i is not enough ;-)) I expect documentation to make the things clear that are not immediately visible locally from the code. What I see is that if you do have a comprehensive set of unit tests that do pass, you can expect a well-maintained code base, and there must be some contract documentation, otherwise there can't be good unit tests. So given a choice I might prefer the "project with good unit tests" over "the one with good documentation" - because the first implies that both is there. But that's reverse from the question.


                      We are a big screwed up dysfunctional psychotic happy family - some more screwed up, others more happy, but everybody's psychotic joint venture definition of CP
                      My first real C# project | Linkify!|FoldWithUs! | sighist

                      X 1 Reply Last reply
                      0
                      • A Andy Brummer

                        peterchen wrote:

                        If you lose all your developers,

                        I think only doing one out of the 3 is a great way to make that happen. ;)


                        Using the GridView is like trying to explain to someone else how to move a third person's hands in order to tie your shoelaces for you. -Chris Maunder

                        P Offline
                        P Offline
                        peterchen
                        wrote on last edited by
                        #21

                        Interesting point! but after some pondering, I have to disagree. Lots of good software has been written without (formal) code reviews or unit tests. I consider these valuable for good software, but not essential Code reviews have benefits beyond software quality, but a unit test pays of only if you change the underlying implementation at least once.


                        We are a big screwed up dysfunctional psychotic happy family - some more screwed up, others more happy, but everybody's psychotic joint venture definition of CP
                        My first real C# project | Linkify!|FoldWithUs! | sighist

                        A 1 Reply Last reply
                        0
                        • E El Corazon

                          Bob Flynn wrote:

                          but they also are easily outdated.

                          I have heard this argument ad nauseam. You could easily say, "unit tests can easily be forced to succeed and therefore should never be used." or "peer reviews are too easily swayed by cliques and therefore should never be done." or even "software can too easily create bugs, so no software should ever be written." Sure, if you don't do the work, it won't get done, but that should never be an exuse for not doing the work. When you put down a project for 6 months, the only clue to what ever the heck you were doing months ago, are your comments, or lack therein. If you have none, you have no idea what you were doing and easily create more bugs, misuse procedures, draw poor conclusions through too rapid review of your code, etc. So the result is at best the same as having unmaintained comments, and at worst, much, much worse. But if you actually do the work and maintain the comments, you get a plus by being able to know what you were doing 6 months ago. Everyone wins. No one should be asking for an essay on the history of the method you are doing and who has written it and what projects have succeed using the algorithm since 1960's. Access, purpose are the big requirements. How do you use it (input, output, calling/using methods) and intent/purpose. Given that a bug could easily be defined as an misunderstanding between the programmer's intended purpose (which hopefully is commented) and the physical interaction on the computer -- then a bug should be recognized as the difference between comment functionality and coded functionality. If you have no comments, then all bugs are a major search, every time because the debugging process must research and infer (never really knowing for sure) the original programmer's intent/purpose as well as evaluating functional run-time activity.

                          _________________________ Asu no koto o ieba, tenjo de nezumi ga warau. Talk about things of tomorrow and the mice in the ceiling laugh. (Japanese Proverb)

                          P Offline
                          P Offline
                          peterchen
                          wrote on last edited by
                          #22

                          Where can I give you two fives? :D


                          We are a big screwed up dysfunctional psychotic happy family - some more screwed up, others more happy, but everybody's psychotic joint venture definition of CP
                          My first real C# project | Linkify!|FoldWithUs! | sighist

                          1 Reply Last reply
                          0
                          • B Bob Flynn

                            El Corazon wrote:

                            I have heard this argument ad nauseam. You could easily say, "unit tests can easily be forced to succeed and therefore should never be used." or "peer reviews are too easily swayed by cliques and therefore should never be done." or even "software can too easily create bugs, so no software should ever be written."

                            Anything can be abused by someone deliberately trying to get around the system or artificially improve metrics. If there are team members or a management style the promotes/condones/or allows that to happen then none of the practices in the original post should be first on the list. Given that management and developers are serious about what they are doing and doing the best that they can, I think unit testing is the way to go. When I deliver code that is used and then found to have a bug in it, we try to address the bug, and then we try to write tests that would have detected that bug in the first place (along with other similar bugs) if possible. Now take the scenario where the choice is between commenting ONLY or testing ONLY. When I make a change to address a bug, if I write a test or tests that only pass when the proper criteria is met before passing the fix back to acceptance testing, there is verifiable proof that what I intended to code is what is actually coded. If I do not do the testing, but simply update my comments, how do I know if the code is doing what the comments say they are doing? Only by testing can that be determined. Testing also ensures that future changes do not yield unexpected results (if the tests are thorough). I am not saying that commenting is not critical. But I am saying that commenting does not verify that the code works the way it was designed to work or the way that the requirements state that it should work. Now, switching to your example, when you put down a project for 6 months. Well, when I pick up that project 6 months later, I want to see that the code base is properly intact and that it passes all of the tests that it was supposed to pass. Comments can not tell me anything about what is broken, they only describe what the code is supposed to do and how it is supposed to be used (I said only, but again I agree that comments are necessary). Comments do not say anything about how the code actually works - because there is a bug and the code is obviously not doing what the comments indicate that they do. So from a project management perspective, my first opinion is t

                            P Offline
                            P Offline
                            peterchen
                            wrote on last edited by
                            #23

                            The equivalent to outdated comments are outdated unit tests. True, this is easier to detect, but still, nothing is gained. But to make sure I did understand you all right: For a large project, would you really rather have average unit tests than average documentation?


                            We are a big screwed up dysfunctional psychotic happy family - some more screwed up, others more happy, but everybody's psychotic joint venture definition of CP
                            My first real C# project | Linkify!|FoldWithUs! | sighist

                            B 1 Reply Last reply
                            0
                            • P peterchen

                              The equivalent to outdated comments are outdated unit tests. True, this is easier to detect, but still, nothing is gained. But to make sure I did understand you all right: For a large project, would you really rather have average unit tests than average documentation?


                              We are a big screwed up dysfunctional psychotic happy family - some more screwed up, others more happy, but everybody's psychotic joint venture definition of CP
                              My first real C# project | Linkify!|FoldWithUs! | sighist

                              B Offline
                              B Offline
                              Bob Flynn
                              wrote on last edited by
                              #24

                              What I am trying to say is that from a project management perspective it is easier to ensure that unit tests are being written and updated than it is to ensure that good comments are being written and updated. The difference between outdated unit tests and outdated comments is that if the outdated test no longer passes, that will be seen and fixed (if management requires it) on the next build. Outdated comments will be difficult to detect (if it is detectable at all)

                              1 Reply Last reply
                              0
                              • P peterchen

                                Interesting point! but after some pondering, I have to disagree. Lots of good software has been written without (formal) code reviews or unit tests. I consider these valuable for good software, but not essential Code reviews have benefits beyond software quality, but a unit test pays of only if you change the underlying implementation at least once.


                                We are a big screwed up dysfunctional psychotic happy family - some more screwed up, others more happy, but everybody's psychotic joint venture definition of CP
                                My first real C# project | Linkify!|FoldWithUs! | sighist

                                A Offline
                                A Offline
                                Andy Brummer
                                wrote on last edited by
                                #25

                                It was more tongue in cheek then meant as a really valid point. I've had my days where I made live edits to the production servers. However unit testing and code reviews bring a level of sanity and calmness to development that I much prefer. The projects I've worked on have all benefited from unit tests, because bug fixes and new feature development has usually required changing some existing implementation. I can see some projects with pretty static requirements not needing many tests, but I'd wager those projects are the exception. The places I've worked without code reviews all slid into silo style development. Each developer had their own set of features that they worked on and each silo of code ended up with it's own style and conventions. Developers were reluctant to help each other or share tasks and there usually wasn't much teamwork. That's just been my experience and it would be nice to think it wasn't common, but again I'd bet that it is.


                                Using the GridView is like trying to explain to someone else how to move a third person's hands in order to tie your shoelaces for you. -Chris Maunder

                                1 Reply Last reply
                                0
                                • D David Patrick

                                  Again, for a team of 10 to 20 developers in size in what order would you prioritize the following "supplemental" activities : 1. reasonable code commenting/documentation 2. code reviews 3. unit testing Also, if you could only require your developers to do one of the above, which would it be ?

                                  Rocket science is more fun when you actually have rockets - US Navy ad

                                  S Offline
                                  S Offline
                                  Steven Ashley
                                  wrote on last edited by
                                  #26

                                  I say 3,2,1 because and 3 is the most important: If the unit testing is good and the code passes. Then while I care about the others, I really don't need them until I need to revise the code.

                                  Steven S. Ashley

                                  1 Reply Last reply
                                  0
                                  • P peterchen

                                    Well, yes. My line of thought was:"What is the worst that can happen?" But I don't prefer comments only for some worst case scenarios, rather it's the most basic thing for me. It's also the first thing I look for when I am thrown at an existing code base. With some expeirences in this regard, I am actually surprised that people would prefer unit tests over documentation. Documentaiton comes first also because the other two can be constructed from it. I rather have an /// \param X [void *] The target buffer, must be large enough to hold the results. May not be NULL. than a unit test that verifies the function throws an exception on a NULL parameter. Of course, I have high expectations towards documentation. (//increment i is not enough ;-)) I expect documentation to make the things clear that are not immediately visible locally from the code. What I see is that if you do have a comprehensive set of unit tests that do pass, you can expect a well-maintained code base, and there must be some contract documentation, otherwise there can't be good unit tests. So given a choice I might prefer the "project with good unit tests" over "the one with good documentation" - because the first implies that both is there. But that's reverse from the question.


                                    We are a big screwed up dysfunctional psychotic happy family - some more screwed up, others more happy, but everybody's psychotic joint venture definition of CP
                                    My first real C# project | Linkify!|FoldWithUs! | sighist

                                    X Offline
                                    X Offline
                                    Xiangyang Liu
                                    wrote on last edited by
                                    #27

                                    Thanks for the explanation.

                                    My .NET Business Application Framework My Home Page

                                    1 Reply Last reply
                                    0
                                    • X Xiangyang Liu

                                      Your coworkers and manager will likely to survive fine even if you disappear permanently. This is not an attack on your skills or knowledge or importance. Even if you are the greatest developer alive, it will be very hard for the management to recognize or admit that. They can think of many other reasons why they have to hire 5 developers to continue your work: 1. The work you have been doing is just easy stuff, now they have to get started on more complicated tasks. 2. The technology you used is outdated, they need to rewrite everything from scratch. 3. There are so many hard to fix bugs in your code ... I think any manager will prefer 5 mediocre developers than a single person who thinks he is a super-star. :-D As they say, "the graveyard is full of indispensable people".

                                      My .NET Business Application Framework My Home Page

                                      E Offline
                                      E Offline
                                      El Corazon
                                      wrote on last edited by
                                      #28

                                      Xiangyang Liu wrote:

                                      The work you have been doing is just easy stuff, now they have to get started on more complicated tasks.

                                      They do know it is not, and the fact that even the folks they hire to help me are amazed at what has been done. I know the common perception is that management doesn't care, and for the most part they cannot. However, I have gone from one place of work that was exactly how you mentioned. These now managers are the best in the business, in my humble opinion.

                                      Xiangyang Liu wrote:

                                      think any manager will prefer 5 mediocre developers than a single person who thinks he is a super-star.

                                      Actually, I don't know why no one else has done what I do. It makes no sense. Nothing I have ever done was anything more than common sense and a tiny bit of knowledge of how a graphics card works. Work is desperate to copy the knowledge so they don't loose it, but I don't know how.

                                      _________________________ Asu no koto o ieba, tenjo de nezumi ga warau. Talk about things of tomorrow and the mice in the ceiling laugh. (Japanese Proverb)

                                      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