Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jeetsukumaran/1339b67c690627d1b6f09db10cfc2be0 to your computer and use it in GitHub Desktop.
Save jeetsukumaran/1339b67c690627d1b6f09db10cfc2be0 to your computer and use it in GitHub Desktop.

tags:


The Truth They Will Never Tell You

We Pretend That:

 graph LR;
 idea --> vision --> plan --> effort --> result;

%%

Or Even:

 graph LR;
 idea --> vision --> plan --> effort;
 effort --> success;
 effort --> failure;

%%

But Really:

 graph TD;

 idea --> vision --> plan --> effort;

discovery --> vision;
discovery --> plan;
discovery --> idea;
effort --> success;
effort --> f[*useful*-failure];
f--> discovery;
success --> r[*reported*-result];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment