Skip to content

Instantly share code, notes, and snippets.

@nitsanavni
Last active October 7, 2024 11:55
Show Gist options
  • Save nitsanavni/0bf582d071b316b9a2ffbe67dca27e35 to your computer and use it in GitHub Desktop.
Save nitsanavni/0bf582d071b316b9a2ffbe67dca27e35 to your computer and use it in GitHub Desktop.
Hackea Workflow
flowchart TD
    A(start) -- "my task" --> C["outline"]
    C -- "next" --> D["do task"]
    D --> E{"works?"}
    E -- "yes" --> C
    E -- "no (too large a piece)" --> G["break piece"] -- "add" --> C
    E -- "yes" --> I["working code library"]
    D -- "using" --> I
    C -- "done" --> H["end"]
Loading
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment