Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 5 of 5

Thread: Please help me with a research question

  1. #1
    Junior Member
    Join Date
    Oct 2009
    Location
    Pottstown, PA
    Posts
    3
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default Please help me with a research question

    Hi All,

    This isn't specifically a Java question, but is relevant to Java developers. I'm completing my PhD in CIS and researching the question of collaboration among developers. I could use your help to see if some of my conclusions are generally true in your environment.

    1) Although you can generally say that there are more meetings during design of software, the concept of a programmer spending many hours and days alone only 'coding' is false. There are very few days where a developer communication isn't integral to getting the job done.

    2) If I were to rank amount of collaboration it would be integration testing > design > coding.

    3) There is a flurry of communication before and after status meetings, then people tend to work individually for a while. Status meetings tend to stimulate necessary developer communication.

    4) Newbie developers are the biggest interruption to development "flow". (Even more than managers).

    I'm assuming the environment is somewhat "traditional" - cubicles, weekly status meetings - rather than Agile, although my observation about meetings and phases would, I think, also follow.

    If you have a minute to consider these questions, it would help.

    Thanks,
    Tom


  2. #2
    Super Moderator helloworld922's Avatar
    Join Date
    Jun 2009
    Posts
    2,896
    Thanks
    23
    Thanked 619 Times in 561 Posts
    Blog Entries
    18

    Default Re: Please help me with a research question

    1 couldn't be more true, as far as I can tell, we don't have any "code-crunchers" at where I work. Most developers spend hours working with the test team/each other to come up with a viable solution, then spend not very long implementing the code.

    I'm not a developer atm (i'm a tester), but i would say about #2 is this: it SHOULD be design > testing > coding (observations from work), but in practice comes out coding > testing > design (especially when you're trying to meet weird deadlines).

    3. I guess this doesn't really apply to me too much, I haven't been in too many meetings. However, we do talk quite a bit at work.

    4... depends on who your managers are, and who you're newbies are. We have really great managers where I work, and I remember being new and kind of being in the way sometimes, but I have heard horror stories from people who use to work there before I did that the managers before weren't worth anything. Plus, new eyes mean you catch issues (especially in regression testing) that have either been ignored in the past, or simply missed because the test procedures are sometimes "mundane". I don't know if this only applies to the testers side, but I'd imagine something similar happening with new developers (new ideas/ways to implement stuff)

    FYI, I guess I don't work in a very "traditional" cubicle setting. Yes, I do have a cubicle, but the vast majority of my time is spent working in our labs.

    edit:

    Oh, haha didn't see the part about "Java developers". While I do use Java at work, it's not something that's used by most of our company. I think we use a combination of c++/custom scripting languages/not sure what else.

  3. #3
    Super Moderator Json's Avatar
    Join Date
    Jul 2009
    Location
    Warrington, United Kingdom
    Posts
    1,274
    My Mood
    Happy
    Thanks
    70
    Thanked 156 Times in 152 Posts

    Default Re: Please help me with a research question

    Ok, lets see, right now I'm working on the first timebox of a project at work. We just got through a 7 workday foundation package to outline the requirements and tasks of this project work package.

    This timebox is about 2 weeks long and the work package is about 6 weeks long. The whole work package will most likely have 3 timeboxes.

    I have the need to collaborate with my fellow developers, both server and web all the time as well as with the business ambassador and the project visionaries to get things done.

    Every day we have a daily standup meeting to talk about how everyone is doing and as soon as a task has been completed/unit tested, it goes over to testing while we proceed with more tasks. Each task is about 0.25 to 2 days long.

    This project is being run using the agile method rather than the old fashioned waterfall method and I like it

    I wouldn't see myself as a newbie developer but I'm new to this project and I didn't have much clue on how things tied together before I joined, however I tend to pick things up fairly quick.

    Something that can be really annoying with general work is when you can't get a hold of a business representative to answer a question or to make a decision when you've hit a brick wall with a task.

    // Json

  4. #4
    Junior Member
    Join Date
    Oct 2009
    Location
    Pottstown, PA
    Posts
    3
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default Re: Please help me with a research question

    Quote Originally Posted by Json View Post
    Every day we have a daily standup meeting to talk about how everyone is doing and as soon as a task has been completed/unit tested, it goes over to testing while we proceed with more tasks. Each task is about 0.25 to 2 days long.
    I've noticed, particularly after standup meetings, that pairs of developers often go off together to coordinate on integration tasks. This is also true after (non-agile) status meetings. Is this true in general for Agile? [Json, is this true in your environment?]

    Also, "going over to testing" means that the tester inevitably has questions -- or finds bugs -- so a developer needs periodic communications with QA. Again this interrupts programmer "flow" since they then need to talk about 'old' software, or devote time away from developing new software to fix bugs.

    I didn't define programmer 'flow', but I think you understand. It is that state where a developer is totally immersed in his work, doesn't hear outside distractions, and interruptions are considered to be distractions.

    One question about your Agile environment Json. Is it an "open area"? Are there benefits/distractions associated with this?

    Thanks,
    Tom

  5. #5
    Super Moderator Json's Avatar
    Join Date
    Jul 2009
    Location
    Warrington, United Kingdom
    Posts
    1,274
    My Mood
    Happy
    Thanks
    70
    Thanked 156 Times in 152 Posts

    Default Re: Please help me with a research question

    At this moment we are 4 server developers, 2 web developers, 1 tester, 1 analyst, 1 business ambassador and we're all sat in the same room and thats all there is in there at the moment.

    I wouldnt say that we go off in pairs to discuss things after a standup but instead if someone comes across an issue that needs discussing we'll just discuss it. We're never THAT much into the flow so to speak that we cant stop and discuss things however most of the time we just carry on with our own work.

    The tester tests tasks as we finish them and we have daily demos of tasks so the tester knows how to use what we've just built. All this has been estimated for as well so the project isn't delayed or anything.

    Hope that answers your questions.

    // Json

  6. The Following User Says Thank You to Json For This Useful Post:

    Tom (December 10th, 2009)

Similar Threads

  1. A question about an array
    By faizana2006 in forum Collections and Generics
    Replies: 2
    Last Post: October 28th, 2009, 04:36 PM
  2. Question on my math
    By SwEeTAcTioN in forum What's Wrong With My Code?
    Replies: 4
    Last Post: October 25th, 2009, 05:42 PM
  3. Threading question....
    By neo_2010 in forum Threads
    Replies: 1
    Last Post: September 2nd, 2009, 02:38 AM
  4. Regex Question
    By igniteflow in forum Java SE APIs
    Replies: 1
    Last Post: August 28th, 2009, 11:46 AM
  5. [SOLVED] Difference in the code on changing logical operators
    By lotus in forum Loops & Control Statements
    Replies: 3
    Last Post: June 20th, 2009, 03:30 AM