Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save jeetsukumaran/1339b67c690627d1b6f09db10cfc2be0 to your computer and use it in GitHub Desktop.

Select an option

Save jeetsukumaran/1339b67c690627d1b6f09db10cfc2be0 to your computer and use it in GitHub Desktop.

Revisions

  1. jeetsukumaran created this gist Apr 22, 2023.
    49 changes: 49 additions & 0 deletions the-truth-they-will-never-tell-you.md
    Original 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];
    ```