Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • 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;
Loading

%%

Or Even:

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

%%

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];
Loading
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment