vote up 13 vote down star
9

Possible Duplicate:
Becoming the most efficient one-man team

I am a lone developer. I want to use a development methodology that forces me to use good practice. What would you recommend? I am a C#, ASP.Net developer. Particularly helpful would be to be pointed towards some document templates that I simply fill in for each part of the project lifecycle.

flag

64% accept rate
26  
Multiple personalities would help round out the team while keeping costs down =) – OMG Ponies Sep 16 at 14:37
Do you want a design methodology or a development process? They are two different htings. – Thomas Owens Sep 16 at 14:42
2  
Dupe of stackoverflow.com/questions/1317491/… – eyze Sep 16 at 14:45
Do you have users, or is it just @home development that you're talking about? – SnOrfus Sep 16 at 14:51
Yes, development methodology is the word I should have used! Yes, I have users so their involvement is of course important. – arame3333 Sep 30 at 13:23

closed as exact duplicate by George Stocker, Thomas Owens, Stefano Borini, Sergio, gnovice Sep 16 at 17:29

13 Answers

vote up 14 vote down

You are developing in a team of three developers:

  1. The past you who is a moron
  2. The present you who is average
  3. The future you who's a genius
link|flag
8  
+1 for #1 - That guy is an idiot. – Martin Sep 16 at 14:41
2  
I wish! When I look at old code, the present me often feels like a moron and the past me must have been a rareified genius, to whom everything was intuitively obvious. Therefore, I expect my future self to be even more moronic, and try to code accordingly--I make everything as simple and self-documenting as possible. – system PAUSE Sep 16 at 14:43
3  
-1 this does not answer the question – LFSR Consulting Sep 16 at 14:44
1  
True, but how does this answer the question? – SnOrfus Sep 16 at 14:46
1  
This is both true and funny, but it doesn't offer any insight into what kind of development methodology the OP might use. – eJames Sep 16 at 16:28
vote up 14 vote down
  • On my home projects I use TDD (Test Driven Development), I've found that it helps me keep my focus and the tests help catch design and API problems (that could be caught by co-workers) and helps avoiding regressions issues (I have unit tests).

  • I've discovered that having a source control is also important to track changes and keep the data safe.

link|flag
1  
I find it also helps me get going again when there has been a break in work. – Kathy Van Stone Sep 16 at 14:44
2  
TDD is definitely the best way of keeping oneself honest. – APC Sep 16 at 15:13
1  
Having a source control is a most :) – Beatles1692 Sep 16 at 16:01
1  
I would love to do TDD, but I understand it takes a while to get up to speed using it. For that I get no credit. It is frustrating as once I am up to speed then all is fine with the world. – arame3333 Sep 30 at 13:26
@arame3333 you should give it a go - starting TDD is not hard the hard bit is doing it well and not quitting. – Dror Helper Oct 11 at 14:19
vote up 7 vote down

Even on your own, use version control and an issue tracking system.

That way you can plan, keep track of what you're doing, and can see whats changed over time. Grow your processes as you need to from there.

I'd recommend starting with SVN and TRAC.

link|flag
1  
+1: I personally use SVN and FogBugz (their hosted solution, up and running in a couple of minutes, is free for 2 accounts). – SnOrfus Sep 16 at 14:50
Err okay, advertising shamelessly? – Alex Sep 16 at 14:59
@SnOrfus: Had no idea there was a free version! You just made my day. – Will Eddins Sep 16 at 15:47
vote up 2 vote down

I recommend using TDD practices:

  1. Start red
  2. Make it green
  3. Refactor

Although MVC framework is not a methodology but its separation of concerns helps you a lot to gain control over your project management.

link|flag
MVC looks good and I hope to get into it next year. I am also hoping I can get into TDD at the same time. – arame3333 Sep 30 at 13:28
You can easily apply test driven practices when you use MVC framework because of its separation of concerns – Beatles1692 Oct 3 at 8:00
vote up 1 vote down

ReadySET provides some software engineering document templates.

IMO, the templates aren't as important as the content. Focus first on documenting interfaces and assumptions. This includes the human interface (aka User Interface or User Experience) as well as software module/class interfaces, and assumptions about system configuration, installation, etc.

link|flag
vote up 1 vote down

Do the simplest thing that works

Dont get too caught up with spending ages on design. If your on your own then just do some doodles on the back of an envolope - all you need to do is clarify in your head what the problem is and a rough approach at a solution. After that get coding and see how far you get before you get stuck.

However long you spend designing something there is always the risk that you will overlook something sending you straight back to square 1. In these cases the sooner you get coding the sooner you will find out whether or not your design actually works.

link|flag
Here here! Occam's Razor – Xetius Sep 16 at 14:54
For some small projects this is OK. However I am always mindful that if I have a good design and the users ask me to make changes, this should be easier to do. An analogy would be that it is preferable to build a house on firm foundations. I have seen what it is like when this doesn't happen. Not recommended! – arame3333 Sep 30 at 13:32
Most of the poor design I've seen is not a result of not putting enough effort into design, but rather putting too much effort into design! The people who seem to spend the most time thinking about the design are those who dont have experience with designing that sort of software. They spend a long time thinking about things like "what if I want this to change" but invariably the things that actually need changing are never the things they though of, and the overcomplicated design just makes things difficult. – Kragen Sep 30 at 16:23
That is a good argument for having more experience and learning from it. You are right, there is a balance to be found. – arame3333 Oct 1 at 12:38
If you have an hour free, I recommend watching this video; infoq.com/presentations/… Otherwise I should also link to the blog that pointed me there; codebetter.com/blogs/ian_cooper/… where there is a good discussion on this. – arame3333 Oct 2 at 10:23
vote up 1 vote down

When I was working as the only developer in a team and had the business chaps telling me what they wanted and testing, I found Scrum was ideal as it didn't become labourious or act as a barrier. It will also scale when you add to your team later on.

It really is your choice though - so go with something you feel comfortable with.

link|flag
vote up 1 vote down

My experience has shown that the most important element in development is: Consistency

Some things that have helped me develop solo;

  1. Document your decisions via a Wiki or some sort of tracking system (Bugnetproject.com is a nice ASPX based ticket tracker)
  2. Try to stick as much as possible to standard coding conventions and best practices
  3. Use frameworks that will both improve your productivity and help keep you consistent (ie; Subsonic, jQuery, Blueprint.css, etc.)
  4. Put as much empasize on the KISS principle as you can
  5. Keep in mind that the first code you write is the first code you will refactor. In other words you will progress, learn and refactor as the project progresses. Document your reasons for refactor and move forward.
link|flag
Good references, thank you. – arame3333 Sep 30 at 15:45
vote up 0 vote down

As you are on your own, which ever method you are happiest with and helps you produce the best output. Without knowing what you are like and how you work best it would be impossible to say which.

link|flag
Agreed. Whatever makes you are most comfortable with. Whichever you choose just make sure you stick and not just get lazy about following the methodology. – ahiru Sep 16 at 14:39
-1: That could, nay WILL, quickly and easily breed horrid practices that would cripple any future teamwork that could ever be done. I've seen it happen so many times in all kinds of positions: the contract admin who files all contracts in order according to how the paper smells... it works for her... – SnOrfus Sep 16 at 14:45
@SnOrfus: Absolute rubbish. When you are working on your own you can use whichever practice suits you best. If your goal is to produce better quality software, choose whichever practices help you get there. And if the contract admin is the only person who will ever see the contracts then order of smell works fine. Implementing process and procedures because someone 'might' join you is the kind of overbearing red tape which really needs to be wiped out of this, and most other industries. – Xetius Sep 16 at 14:50
@Xetius, think about that the next time a dev gets hired at your shop who checks out an entire subsystem, for days, and checks in 300 changes in 1 commit... it works when there's no-one to work with. Methodologies when working alone aren't red tape, must not be adhered to by the letter; they're sanity checks vetted by professionals everywhere to ensure that you/me/we don't develop bad habits. – SnOrfus Oct 4 at 20:08
@SnOrfus, I think you misunderstand me. By saying "which ever method you are happiest with and helps you produce the best output" I am not advocating no method, as that way madness lies. I develop software both alone and in a team. I use similar methodologies in both as that is the way which works best for me. My single method would easily scale to larger teams and still maintain organisation, clarity and control. It is just that working alone means you can implement whichever method works best for you without having to take other peoples views into consideration as well. – Xetius Oct 5 at 8:37
show 3 more comments
vote up 0 vote down

i think it depends on the complexity and clarity of your project. By clarity i mean: do you know exactly what the goal is, or is it a moving target? Or do you know exactly how you're going to solve the problem? Most of the time it's the former rather than the latter.

i've been a team of one more often than none (rhyming couplet not intended) and the future of the product i'm working on is always nebulous. Over the years i've collected a handful of do's to keep me sane and allow for success down the road:

  • separate your concerns
  • make use of simpler patterns such as: singletons, facades, factories
  • use dependency injection

Following these few principles will give structure to your code that is sharable with others when needed and also flexible enough to be refactored into any type of methodology you want. Of course, these do's also assume a nebulous future and a moving target.

link|flag
vote up 0 vote down

No methodology will 'force' you to use good development practices. Those are learned and applied by self discipline. I would read some books on development practices like:

Framework Design Guidelines

And some books on Design Practices and Patterns like:

Design Patterns
Head First Design Patterns
Design Patterns in C#

Test Driven Development (like the others mentioned) is a good way to test. Visual Studio has done a good job of building it in and making it easy to unit test your code.

Some kind of Source Control may be warranted depending on how often you are making big changes to your code, you can use the Microsoft Offering called SourceSafe or something like Subversion

link|flag
vote up 0 vote down

You better use a development methodology that fits with your users/employer/supervisor's expectations. Selling as 'Best Practices' is good, but you better be able to defend it when they are demanding a feature be implemented immediatly. They will feel you can go back and do all that documenting, testing, commenting 'stuff' after it is done. Saying, "I have to take twice as long on the project in case we hire another developer." may get you replaced. Then again, if they are too unreasonable, they may be doing you a favor.

link|flag
vote up 0 vote down

Start the day by reviewing the code you committed yesterday. Think through design, let it rest for a while and review it. As Eimantas stated it, the future you is a genius, he might have a few comments ;)

link|flag

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