Tuesday 26 June, 2007

a Thought


"The secret of getting ahead is getting started. The secret of getting started is breaking your complex overwhelming tasks into small manageable tasks and then starting with the first one" - Mark Twain

1 comment:

Anonymous said...

Start_Task(T)
{ Break T into Tasks t1,t2,...tn;

If n=0, END;

For i=1 to n

{ Start_Task(ti) ;
i=i+1 ; }

}


// I'm sure I'll run into a bug somewhere even with Twain's recursive routine to get started ;)