Welcome to the world where insanity meets sanity, where the obvious meets the improbable, where conformance meets maverick ism, where simplicity meets weirdness. Welcome to the world of 32
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 ;)
1 comment:
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 ;)
Post a Comment