#+TITLE: Second Brain #+AUTHOR: Amr + Sol #+DATE: 2026-03-04 #+OPTIONS: toc:2 #+STARTUP: overview * 🧠 Second Brain Setup This is the central hub for our knowledge management system using: - *Org-mode* for structure - *org-roam* for Zettelkasten linking - *org-gtd* for task management - *PARA* for organization (Projects, Areas, Resources, Archive) **Core Principles:** 1. *Capture* everything to inbox_mind.org/ β†’ Zero friction entry 2. *Clarify* daily β†’ Process into system or discard 3. *Connect* knowledge β†’ Use org-roam linking 4. *Create* from notes β†’ Publish to 4_published/ 5. *Maintain* β†’ Archive to 5_archive/ when inactive * Directory Structure #+BEGIN_SRC mind/ β”œβ”€β”€ inbox_mind.org/ # CAPTURE zone (zero friction) β”‚ └── process daily β†’ clarify and file β”œβ”€β”€ 1_thinking/ # MY notes and synthesis β”‚ β”œβ”€β”€ dailies/ # org-roam-dailies (journal, logs) β”‚ └── notes/ # Permanent notes (Zettelkasten) β”œβ”€β”€ 2_reference/ # EXTERNAL knowledge β”‚ β”œβ”€β”€ tools/ # Tool documentation, CLI guides β”‚ β”œβ”€β”€ approaches/ # Methods, patterns, workflows β”‚ └── sources/ # Books, articles, papers β”œβ”€β”€ 3_creating/ # WORK IN PROGRESS β”‚ └── drafts/ # Blog posts, projects, plans β”œβ”€β”€ 4_published/ # FINISHED WORK β”‚ └── archive/ # Dated publications β”œβ”€β”€ 5_archive/ # INACTIVE (not deleted, just archived) β”œβ”€β”€ 6_projects/ # ACTIVE PROJECTS β”‚ └── [project-name]/ # Each project = subfolder β”œβ”€β”€ 7_system/ # Templates and scripts β”‚ β”œβ”€β”€ config/ # Emacs/org config β”‚ └── scripts/ # Automation scripts └── attachments/ # Images, PDFs, non-text files #+END_SRC * Methods Integration **Zettelkasten (org-roam)** - Notes in 1_thinking/notes/ get an ID - Link with [[id:UUID][Description]] - Build Maps of Content (MOCs) as indexes - Fleeting notes β†’ Literature notes β†’ Permanent notes **GTD (org-gtd)** - @INBOX: 0_inbox/ processes daily - @TODAY: What to do NOW (agenda view) - @NEXT: Context lists (@home, @office, @call) - @WAITING: Delegated items - @SOMEDAY: Ideas without active planning **PARA (Projects, Areas, Resources, Archive)** - *Projects*: Goal + deadline β†’ 6_projects/ - *Areas*: Ongoing responsibility β†’ 1_thinking/areas/ - *Resources*: Reference material β†’ 2_reference/ - *Archive*: Inactive items β†’ 5_archive/ **Daily Workflow** #+BEGIN_SRC 08:00 | CAPTURE: Empty brain into 0_inbox/ 09:00 | CLARIFY: Process inbox β†’ clarify or delete 10:00 | ORGANIZE: File clarified items to PARA 14:00 | CONNECT: Work in 1_thinking/, link notes 16:00 | REFLECT: Review, archive, plan tomorrow #+END_SRC * PARA Explained **Projects (6_projects/)** - Has a deadline or clear outcome - Example: "Build kitchen table", "Launch website v2" - When done β†’ archive or convert to area **Areas (1_thinking/areas/)** - Ongoing responsibility without end date - Example: "Health", "Finances", "Skills" - Maintained continuously **Resources (2_reference/)** - Things I may reference later - Example: "Python Regex", "Project Management patterns" - Actively curated **Archive (5_archive/)** - Inactive projects, areas, resources - NOT deletedβ€”still searchable - Re-activate anytime * Quick Links - [[file:0_inbox/README.org][Inbox Processing]] - [[file:1_thinking/README.org][Thinking Notes]] - [[file:2_reference/README.org][Reference Library]] - [[file:6_projects/README.org][Active Projects]] - [[file:7_system/templates/capture.org][Capture Templates]] * Statistics #+BEGIN_SRC emacs-lisp (require 'org-collector) (org-collector-todo-collector) #+END_SRC #+RESULTS: | TODO | NEXT | DOING | WAITING | DONE | CANCELLED | TOTAL | * Maintenance **Weekly Review (Every Sunday)** 1. [ ] Clear 0_inbox/ 2. [ ] Review 6_projects/ - close completed 3. [ ] Review agenda - update deadlines 4. [ ] Archive finished items to 5_archive/ 5. [ ] Review waiting items 6. [ ] Sync notes/devices **Monthly Review** 1. [ ] Rebalance Areas and Resources 2. [ ] Review Archive for reactivation 3. [ ] Update MOC indexes 4. [ ] Clean attachments/ #+END_SRC