vote up 1 vote down star
2

I'm starting a new 'sprint' to develop some functionality. I need to extend some stuff within two separate components of our entire codebase.

Both are equal in difficulty in terms of the actual development required, but I am familiar with one of the components and not the other.

Now before I dive in and get started, which should I work on first? I may start the more difficult one, to get it out of the way and that way I'll know that it will get easier approaching the deadline. I'm very tempted to just get stuck in with the easier one though!

What's your approach to this? Easy or difficult tasks first?

flag

1  
should be community wiki at best – SilentGhost Sep 22 at 11:44

10 Answers

vote up 9 vote down check

Start always with the part that is most likely to give you insights about what doesn't work or is missing in your approach - and achieve this quickly. The goal is to reduce uncertainty about your development schedule as soon as possible.

If the easy part can be done very quickly, it might be preferable because it reduces uncertainty sooner, if not as much as the hard part. But in your case the difference seems to be entirely in your uncertainty about these two components - in that case tackling the unfamiliar one first is definitely a good idea. In doing so, you may run into problems - and those will be much easier to handle and less costly now than right before the deadline.

link|flag
Good point, I think I will try the unfamiliar one first, thanks – Fiona Holder Sep 22 at 12:27
vote up 2 vote down

Divide the hard task into smaller tasks, etc.. I don't like to have one small task beside a ONE HARD HUGE TASK. I mean, start by cracking the hard task, instead of implementing it directly. So I would choose starting with the hard one first.

link|flag
vote up 0 vote down

You should start with the most important one.

If they are both equally important and absolutely have to be finished this sprint, I would advise to start with the hardest one.

link|flag
vote up 0 vote down

Will one compliment the other? Will there be code that you can reuse from one module to the other? Are there things you can learn from one that can aid you in doing the other?

These questions could help you in deciding what to do first.

link|flag
vote up 0 vote down

Hard to tell. But my own way to look at it is : do what you know best first. Otherwise, you will do ugly things that will force the part you know best to be bent in bad ways, in order to save the ugly things done with the component you know less. So first build a solid foundation on what you know.

link|flag
vote up 0 vote down

I'd start with the one you're most familiar with so that you can show some progress early and leave yourself lots of time to work on the one that you're less sure of. Only trick is to avoid gold plating the first bit too much to stay in your comfort zone a little longer...

link|flag
Actually you should start with the difficult stuff first. If you can't solve the problem you need to know as soon as possible rather than leaving until the end. – ChrisF Sep 22 at 11:54
@ChrisF: I disagree (though I understand why most would probably choose to go that way). For me, at least, actively working on the easy one first lets my subconscious mind chew on the other problem a little bit longer. Then, I can dive into it without the other task hanging over my head and adding unnecessary pressure. To each his own, I guess... :) – Drew Hall Sep 22 at 12:12
vote up 0 vote down

'sprint' ... seems like agile

What the client wants (highest biz value, importance) defines what to to do first,the client here can be you.

Start with the task that will lead to maybe very basic, but working functionality is ready... then enhance it iteratively.

and you should have a near and fixed deadline‍‍(s) , so you select some tasks that fits into it (split tasks down to small units).

link|flag
vote up 0 vote down

I would start with test first. this would help me to clarify the needs and to write down the requirements.

Then I would implement the easy stuff. Just for keeping a high motivation level.

Finally the hard stuff, when deeply in the zone, when ideas flow seamlessly.

Of course after having written the tests, easy and hard stuff may get a different meaning than before starting the sprint.

link|flag
vote up 0 vote down

If you're familiar with one of the components then start with that. If you start with the one you don't know then by the time you're finished you might have forgotten all about the one you were familiar with and that makes it two hard tasks!

link|flag
vote up 0 vote down

Both the scheduling and the development itself tend to be riskier, more difficult, and less predictable whenever a learning curve is involved. So you may find it helpful to start investigating the more unfamiliar piece first. That will help you identify some of the pitfalls. For example, you may need information or help from someone else; you may need to learn new techniques or technology; you may need additional tools; or you may want to experiment with several alternatives before committing to one of them. If you identify these issues early, you'll have time to address them while you make progress on the more familiar tasks in parallel. In project-management terms, you're identifying and shortening your project's critical path.

We often use the analogy of putting unknowns "in a box," and then shrinking the sides — in other words, we try to understand just how risky/uncertain the tasks are, and then increase our expertise in those areas. You'll find that several smaller boxes are far better than one big one.

Good luck! Please let us know how you decide to proceed.

link|flag

Your Answer

Get an OpenID
or

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