Brain Dump
T
graph TD
    A[User] --> B[Create Notes in VS Code using Markdown]
    B --> C[Private GitHub Repository]
    A --> D[rsync Local Private Notes]
    D --> E[Local Repository (excluding private/confidential notes)]
    E --> F[Public GitHub Repository]
    G[Automate rsync and GitHub Push] --> H[crontab]
    F --> H
    C --> H
    style A fill:#f9f,stroke:#333,stroke-width:2px
    style B fill:#f9f,stroke:#333,stroke-width:2px
    style C fill:#f9f,stroke:#333,stroke-width:2px
    style D fill:#f9f,stroke:#333,stroke-width:2px
    style E fill:#f9f,stroke:#333,stroke-width:2px
    style F fill:#f9f,stroke:#333,stroke-width:2px
    style G fill:#f9f,stroke:#333,stroke-width:2px
    style H fill:#f9f,stroke:#333,stroke-width:2px

VISUAL EXPLANATION

  • User creates notes in VS Code.
  • Notes pushed to private GitHub.
  • Local private notes rsync to local repository.
  • Exclude private/confidential notes.
  • Public repository updated with rsync data.
  • Automate rsync and GitHub push using crontab.
  • Crontab manages both private and public repositories.
  • Highlighted boxes represent actions or destinations.
  • Arrows show flow from user actions to repository updates.
  • Colors and stroke widths differentiate elements for clarity.
Show Graph Visualisation