vote up 0 vote down star
2

Our company, being rather small, doesn't have much in the way of policies and procedures for good development. When I first started, I developed some, but we now need to update these in a more formal manner. Since I don't have much experience in writing policies (I've written plenty of instruction sets, so I'm not as worried about the procedures, though still thoughtful), I want to ask the community for tips and advice on writing good policies and procedures for software development. Thanks.

flag
What language? What type of software? – Mitchel Sellers Aug 4 at 18:40
We're presently using a combination of Delphi and C# with the intention of moving entirely to C#. Software is a custom database reporting/analysis package. – Tom Aug 4 at 19:36

2 Answers

vote up 2 vote down check

Some of policies depend of your programming languages, but :

  1. Write naming rules to uniforme the code of your team
  2. Write general coding rules like KISS principle
  3. For customers and bugs management, take a look at ITIL
  4. For delay and tasks management, I recommand Scrum method
  5. Write a chapter about design patterns (design pattern head first)
  6. If you want more formal procedures, have a look at ISO 90003

Some other books can help you like Code complete

link|flag
vote up 2 vote down

My humble opinion... don't overdo it :) A small team needs a shared understanding and vision of how things work. While policies serve communications in large companies, they tend to devolve into power struggles with smaller groups. I found traditions grown out of experience more useful than procedures stated ahead of time.

That said, software dev establishments need some systems for source control, issue tracking, and a place for dropping documentation. Clarity around how decisions are made is immensely useful, as is an understanding of what a project looks like.

Avoid fights on whether there has to be a space character before the semicolon like the plague, and make sure to leave enough room for fun...

link|flag

Your Answer

Get an OpenID
or

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