Skip to content

Instantly share code, notes, and snippets.

@margani
Created November 2, 2017 13:56
Show Gist options
  • Save margani/d0ec09006500fd20fcab36650c6b64b4 to your computer and use it in GitHub Desktop.
Save margani/d0ec09006500fd20fcab36650c6b64b4 to your computer and use it in GitHub Desktop.
publi class Project
{
public void DoScrum()
{
Developers.ForEach(dev =>
{
if(dev.IsMe)
{
Talking.Start(() => {
if(NothingFurtherToSay
|| (Developers.Boredom.Average() > very && dev.Topic.Interest < High)
|| (ScrumMaster.Upset && dev.Topic.Importance < High && dev.Topic.Interest < High))
{
dev.stopped = true;
Exit;
}
});
}
else
{
Listening.Start(() => {
if(dev.stopped)
{
Exit();
}
if (dev.Topic == unrelated
|| dev.boring > Medium
|| dev.scrumMinutes > 2
|| totalScrumMinutes > 10)
{
Listening.Pretending.Start();
}
});
}
});
Listening.Pretending.Stop();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment