Created
April 22, 2023 10:49
-
-
Save jeetsukumaran/1339b67c690627d1b6f09db10cfc2be0 to your computer and use it in GitHub Desktop.
Revisions
-
jeetsukumaran created this gist
Apr 22, 2023 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,49 @@ --- tags: - date/2023/04/22 date: 2023-04-22 created: 2023-04-22T03:41:05 author: [https://github.com/jeetsukumaran] license: "[CC BY 4.0](https://creativecommons.org/licenses/by/4.0/)" title: | the truth they will never tell you --- # The Truth They Will Never Tell You ## We Pretend That: ```mermaid graph LR; idea --> vision --> plan --> effort --> result; ``` %% ## Or Even: ```mermaid graph LR; idea --> vision --> plan --> effort; effort --> success; effort --> failure; ``` %% ## But *Really*: ```mermaid graph TD; idea --> vision --> plan --> effort; discovery --> vision; discovery --> plan; discovery --> idea; effort --> success; effort --> f[*useful*-failure]; f--> discovery; success --> r[*reported*-result]; ```