vote up 7 vote down star
5

My team has been progressively adopting more and more lightweight methodologies, moving from Scrum to Lean/Kanban where there is less and less formal process. At some point we will be back to Cowboy Coding; indeed I fear we may already be on the border line.

Where can the line be drawn between a very lightweight Lean and Agile process and anarchy? How will we know when we have crossed the line? And how can we prevent ourselves from crossing the line?

The question might also be phrased as, 'what processes cannot be safely eliminated in Lean's drive to eliminate waste'?

flag

63% accept rate

9 Answers

vote up 11 vote down check

When something about the code is known or manageable by only one person in your group, you are under a big nice red-glowing "Saloon" sign, and you are basically pushing the doors.

link|flag
8  
Look for statements like: "This program aint big enough for the both of us" "Meet you at the water fountain at high noon" – snoopy Jul 23 at 23:02
+1: Cowboy coding == loner coding. Easy to prevent in a lean environment. Don't let anyone work alone. – S.Lott Jul 27 at 21:43
vote up 0 vote down

What's wrong with Cowboy coding? If you start to see poor quality, code delivery taking longer and longer, not meeting end user expectations (or whoever is paying), then its time (and I'm a PM saying this). When you have a good/solid programming team, the need for formal process isn't needed - its usually internalized - good programmers follow good form/process naturally - I think that a lot of process is put in place for the weaker performers which in many cases negatively impacts the good/great performers. A good project manager needs to balance process to the specific situation...lead/follow/get-out-of-the-way type of approach

link|flag
vote up 1 vote down

there is less and less formal process. At some point we will be back to Cowboy Coding...

The irony of Agile/Lean/Scrum "process" is that less formal process will NOT lead to cowboy programming.

While these methodologies prefer "people over process", process is not completely abandoned; management is still required. An at the end of the day you still have a commitment to your customers and deadlines. These commitments should rein in the cows.

link|flag
vote up 4 vote down

Presumably you're worried about the effects of cowboy coding:

  • No requirements
  • No design
  • No testing
  • No feedback from users
  • No schedule
  • Unmaintainable
  • Bus factor
  • ...

So long as you have a plan/mechanism/process to avoid these ill-effects, then you're Ok; right?

link|flag
vote up 0 vote down

Hire (or deputize) a sheriff, and corral the code so that it doesn't just get committed but rather gets looked at by the whole posse.

link|flag
vote up 1 vote down
  1. Never forget your automated unit tests.
  2. Never forget your functional tests.
  3. Never forget your tests.

(I've been guilty)

link|flag
vote up 2 vote down

There's probably no definitive list of warning signs which if you see tell you you're in cowboy territory. Personally, if people are releasing untested code, developing features which aren't definitely understood, or in anyway rushing work or ignoring warning signs I get worried.

Better to use your own judgement. Hopefully, since you're asking the question you're the right person to be sheriff.

link|flag
vote up 3 vote down

I suppose if you keep some kind of code review, it can't go too wrong on this side. If no one know what the other programmers are doing and how they're doing it, then you might have crossed this line.

link|flag
vote up 3 vote down

The question of when is a task/story/unit of work done comes to mind as part of that line. If you require tests and that a pair of eyes have looked something over that may help prevent the situation of the rogue developer that wants to be a Cowboy. Similarly, how does code get into production? If anyone on the team can push code on a whim, that would be a warning sign to my mind.

A couple of other warning signs that I'd note are:

  • Does the team have a coding standard and a commitment to maintain that standard?
  • Are there a bunch of code changes from one individual doing "refactoring" that no one else thinks is worthwhile?
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.