Skip to content

Instantly share code, notes, and snippets.

@davidolrik
Last active July 19, 2022 21:14
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 davidolrik/333a8d6c27ff9f361830287dcab8a80d to your computer and use it in GitHub Desktop.
Save davidolrik/333a8d6c27ff9f361830287dcab8a80d to your computer and use it in GitHub Desktop.
flowchart TD
    Stuff --> Inbox
    Inbox --> What[What it is?]
    What --> Actionable[Is it actionable?]
    Actionable --> No
    Actionable --> Yes
    No --> Trash(Trash)
    No --> Someday(Someday / Maybe)
    No --> Reference(Reference)

    Yes --> NextAction[What's the next Action?]
    NextAction-->Projects(Projects)

    Projects-->ProjectPlans(Project plans)
    ProjectPlans-->NextAction

    NextAction-->LessThan2Minutes[Will it take less than two minutes?]
    LessThan2Minutes-->Longer[No]
    LessThan2Minutes-->Shorter[Yes]

    Shorter-->DoNow[Do it!]

    Longer-->Delegate
    Delegate-->Waiting(Waiting)
    Longer-->Defer[Defer it]
    Defer-->SpecificTime(Calendar)
    Defer-->NextActionASAP(Next Action)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment