46 lines
1.4 KiB
Markdown
46 lines
1.4 KiB
Markdown
# Notes
|
|
|
|
Personal notes, todos, and knowledge base. Managed by Hammer.
|
|
|
|
## Structure
|
|
|
|
```
|
|
notes/
|
|
├── inbox.md # Quick capture
|
|
├── tasks/ # Action items
|
|
│ ├── development.md # nKode dev tasks
|
|
│ ├── devops.md # Infrastructure
|
|
│ ├── documentation.md # Content ideas
|
|
│ ├── ideas.md # Business/craft ideas
|
|
│ ├── learning.md # Things to learn
|
|
│ ├── personal-tasks.md # Personal todos
|
|
│ └── wishlist.md # Things to buy
|
|
├── projects/ # Active projects
|
|
│ ├── arcanum/ # NSF, DARPA docs
|
|
│ ├── nkode/ # nKode-specific notes
|
|
│ └── smartdoserx/ # SmartDoseRX project
|
|
├── meetings/ # Meeting notes
|
|
├── drafts/ # Email drafts
|
|
├── reference/ # Technical docs
|
|
│ ├── server-setup/ # VPS, Coolify, etc.
|
|
│ ├── security/ # HTB, pentesting
|
|
│ └── links.md # Useful links
|
|
├── personal/ # Personal notes
|
|
└── archive/ # Old/completed
|
|
```
|
|
|
|
## Task Format
|
|
|
|
```markdown
|
|
- [ ] Task description
|
|
- [ ] Task with due date @due(2026-10-08)
|
|
- [ ] Task with [reference link](url)
|
|
- [x] Completed task
|
|
```
|
|
|
|
## Workflow
|
|
|
|
1. Capture quick thoughts in `inbox.md`
|
|
2. Move to appropriate file when processing
|
|
3. Mark done with `[x]`, periodically move to `archive/`
|