How to justify to your colleagues that they produce crappy code?

前端 未结 16 1127
无人共我
无人共我 2021-02-04 02:54

I am finding somewhat difficult to carry on working in my current job.

The codebase has become a bit wild lately (but definitely not the worse I\'ve seen), and I\'m havi

相关标签:
16条回答
  • 2021-02-04 03:20

    Perhaps you could setup monthly meetings and at those meetings you could demonstrate good and bad code. Obviously you don't want to point fingers so you'd want to use generic code examples that are based off of stuff you saw in your project. This way you can constructively gather support from others in your style. You might want to compile these after the meetings so people can easily reference them.

    I think it is real easy to point out issues, and complain but to mentor people and help them change requires effort. It isn't an easy task but if you are having trouble being motivated with your job perhaps this would give you a nice burst of motivation. You might learn some things a long the way.

    0 讨论(0)
  • 2021-02-04 03:20

    Have you considered maybe adding fxcop to the automated builds to enforce coding style? Other than that, you could try suggesting TDD which would give the power to whomever writes the test to enfore that the interfaces for each class are structured in a particular way.

    Off the top of my head, that's all that I can think of.

    0 讨论(0)
  • 2021-02-04 03:21

    Show them their own forgotten code disguised as yours for critique.

    • Take an old piece of their code they have forgotten about
    • Pretend you wrote it
    • Ask them to figure out something with it
    • Make sure they point out how bad the code is for whatever reason
    • Add your own items. Brainstorm what should be done since it's your fault.
    • Let them know you didn't know how to bring it up to offend them, but it's their code.

    If they recall that they wrote it, they might catch on..

    0 讨论(0)
  • 2021-02-04 03:23

    If you have a good relationship with your manager, you might be able to use this to work yourself into a "Senior" or "Lead" Developer role. You could propose that it would be best if one person on the team takes technical leadership of the code base. It would be your job to review the code of others and ask them to make improvements when you feel it is necessary. If you go this route, just make sure to take it slowly. If you ask for a lot very quickly, then you could end up pissing off all the other developers.

    0 讨论(0)
  • 2021-02-04 03:25

    I recently faced a very similar problem and a friend gave me some advice that helped a great deal. He said: "keep yourself out of it."

    What he meant was, that you must communicate the problems because they are real, costly problems with consequences in terms of time and money. But when you do communicate, talk only about the consequences for the organization. Do not mention the consequences to you, because then it just sounds like whining and will be ignored.

    For example:

    Not keeping yourself out of it:

    "The other developers use these obscure, misleading identifiers and then I have to spend hours going over the code trying to discover what they meant. It's taking up a lot of my time."

    Keeping yourself out of it:

    "It would be very helpful and cost effective to do some refactoring of class and variable names and also establish some coding standards around identifiers. The immediate payoff will be an easier-to-understand codebase for everyone, leading to better productivity. The longer-term payoff will be that later we'll be able to modify the code and fix things faster. If a critical bug is discovered right before a release, an understandable codebase will be really important."

    I hope that helps.

    0 讨论(0)
  • 2021-02-04 03:25

    One thing I try to do and it may help you. If a part of code is bad, and the idea you propose to fix it is agreed as best but "no time" excuse is given, why dont you rewrite it? say on your own time? If you decide on sticking around at that job for a while it will only help you. And only you will learn and become a better programmer.

    Note that it is a good idea and I would even say required, to do a complete code review of that change before check-in and you should try to time the check-in so that it is before a complete regresion test cycle for a release. That way your refactoring is completely tested out. Over a period of 6 months or so, it will start showing a beneficial impact and you can then ask for time allocation for this, with proof to back it up.

    0 讨论(0)
提交回复
热议问题