The mission has been written in code to prevent it falling into the wrong hangs....
/// <summary>
/// mission statement
/// </summary>
[Category("Purpose")]
public void CreateAndShareValuableSoftware()
{
Idea[] ideas = ThinkBig();
Goal[] goals = AimHigh(ideas);
Result[] preliminary = StartSmall(ideas, goals);
while ((Result[] results = RunWithIt(ideas, goals, preliminary)) != null)
PublishAndShare(results);
}