Monthly Archives: December 2009

Respsonsibility and Accountability in Scrum.

In Scrum process, there is no single person owns the software artifacts such as code, documents or test cases. They may be accountable for those artifacts during the sprint. However they cannot say this is my artifact and nobody should … Continue reading

Posted in Uncategorized | Tagged , , | 1 Comment

Date calculations in Java

At some point of the development one way or the other we have to deal with date manipulation. In my current work we deal with lot of date manipulations. Here are some of the methods we use every day. Creating … Continue reading

Posted in Uncategorized | Leave a comment

Team members participation in Agile teams

In Agile teams team member participation very important however the time they participate is also important. If the whole team cannot participate to complete a backlog item because some members start before sunrise and some members wants to work late … Continue reading

Posted in Uncategorized | Leave a comment

Integrating third party code

What’s the best way to integrate third party code without cluttering your code? I think we should abstract all the interaction you need into an interface and let a delegates implement those  interfaces. The advantages are: 1)  Separation of interface and … Continue reading

Posted in Uncategorized | Leave a comment