sam-4screen-desktop 2026-9-24:15:18:7

This commit is contained in:
2026-09-24 15:18:07 +10:00
parent a8ec97138f
commit adff81d8c4
12 changed files with 52 additions and 355 deletions

View File

@@ -10,7 +10,7 @@ updated: 2026-09-16
# Areas Overview
Ongoing domains of responsibility — things you maintain, monitor, or improve over time.
Ongoing interests — things you maintain, monitor, or keep learning about.
## Home Assistant (4 devices)
@@ -93,10 +93,10 @@ WHERE type = "area"
SORT title ASC
```
### All Subject-type notes
### All area-type notes
```dataview
TABLE status, type
FROM ""
WHERE type = "subject" AND type != "redirect"
WHERE type = "area"
SORT title ASC
```

View File

@@ -1,77 +0,0 @@
---
title: "Machines & Systems"
type: index
status: active
areas: []
tags: [index, systems]
created: 2026-09-16
updated: 2026-09-16
---
# Machines & Systems
Hardware, virtual infrastructure, and backup systems.
## Machines
| Machine | OS | Role | IP |
|---------|----|------|-----|
| [[ThinkPad L14 Gen 2 AMD — Sam's Machine]] | NixOS | Workstation | `192.168.20.51` |
*(Add more machine notes as they are created)*
## Docker Containers
Running containers on your infrastructure.
- [[Docker Containers]] — Overview of containers running on `.13`
## Backup Systems
| System | Software | Schedule | Source | Destination |
|--------|----------|----------|--------|-------------|
| [[Backup System — Borg, Kopia & Restic]] | Borg/Kopia/Restic | Nightly | `.13` filesystems | AWS S3 + Glacier |
| [[Backup Health Check Commands]] | Manual checks | As needed | Various | Verification log |
### Quick Health Checks
Run these commands regularly:
```bash
# Verify latest backup exists
ls -la ~/.config/backups/latest
# Check disk space
df -h /mnt/backup
# Test restore from last backup
borg list ::snapshot-id
```
---
## Dataview Queries
### All Machines
```dataview
TABLE os, role, ip_address
FROM ""
WHERE type = "machine"
SORT title ASC
```
### All Containers
```dataview
TABLE host, status
FROM ""
WHERE type = "container"
SORT title ASC
```
### All Backup Systems
```dataview
TABLE software, schedule, destination
FROM ""
WHERE type = "backup-system"
SORT title ASC
```

View File

@@ -61,6 +61,6 @@ Personal topics, family events, ideas, and hobbies.
```dataview
TABLE status
FROM ""
WHERE contains(tags, "personal") OR type = "subject"
WHERE type = "family"
SORT title ASC
```

View File

@@ -5,58 +5,49 @@ status: active
areas: []
tags: [index, navigation]
created: 2026-09-16
updated: 2026-09-16
updated: 2026-09-24
---
# Table of Contents
## Vault Overview
| Section | Notes | Link |
|---------|-------|------|
| Projects | 32 | [[Projects]] |
| Areas & Domains | 54 subjects + infra notes | [[Areas]] |
| Machines & Systems | 1 machine + 1 container + backups | [[Machines & Systems]] |
| Tools & Software | 4 tools | [[Tools & Software]] |
| Personal & Family | ~20 topics | [[Personal Family]] |
| Section | What belongs here | Link |
|---------|-------------------|------|
| Projects | Work in progress | [[Projects]] |
| Areas | Ongoing interests, documentation and notes | [[Areas]] |
| Personal Family | Family and non-work | [[Personal Family]] |
---
## Navigation
### [[Projects]] — Active work items
Organized by category (AI Resume, Web Host Migration, Web Sites, Tools/WebUI, Ideas)
### [[Projects]] — Work in progress
Things being built. When the work finishes, the note moves into an area.
### [[Areas]] — Ongoing domains of responsibility
Home Assistant, Dev-Ops/Network, AI Coding Agent, Backups, IoT Research, TUI/Web Dev, Web Pages
### [[Areas]] — Ongoing interests
Home Assistant, Dev-Ops & Network, AI & Coding Agent, AI Research & Techniques,
AI Tools To Try, Web Pages & Tools To Try, IoT Research Tools, TUI / Web Dev.
### [[Machines & Systems]] — Hardware, containers, backup systems
### [[Tools & Software]] — Installed tools, frameworks, services
### [[Personal Family]] — Personal topics
Business ideas, travel, recipes, family archive, media
### [[Personal Family]] — Family and personal
Business ideas, recipes, family archive, holidays & travel, art & music,
movies & games.
---
## Quick Reference
### Most Active Projects
1. [[Where Woof]] — Live web platform (Go + HTMX)
2. [[Pi Dashboard]] — Agent session viewer
3. [[Backup System — Borg, Kopia & Restic]] — Backup infrastructure
4. [[Migration Plan — InMotion to Local + AWS Offsite]] — Hosting migration in progress
1. [[Where Woof]] — live web platform (Go + HTMX)
2. [[Pi Dashboard]] — agent session viewer
3. [[Migration Plan — InMotion to Local + AWS Offsite]] — hosting migration
### Key Infrastructure
- **`.13`** — Primary NixOS desktop (`192.168.20.13`)
### Key Machines
- **`.13`** — primary NixOS desktop (`192.168.20.13`)
- **`.27`** — Obsidian vault host
- **`.51`** — ThinkPad workstation (`192.168.20.51`)
- **Docker** — Containers on `.13` → see [[Docker Containers]]
### Recent Activity
- **Today**: Phase 3 completed — 105 vault notes normalized with compliant frontmatter
- **Phase 2**: 8 templates created for all note types
- **Phase 1**: Full inventory completed (154 notes scanned)
---
*Auto-generated navigation — update via Datavield queries on sub-notes.*
*Type mirrors folder: `200 projects/` is a project, `300 areas/` is an area,
`400 Personal Family/` is family.*

View File

@@ -1,43 +0,0 @@
---
title: "Tools & Software"
type: index
status: active
areas: []
tags: [index, tools]
created: 2026-09-16
updated: 2026-09-16
---
# Tools & Software
Installed tools, frameworks, and services used across projects.
## Development Tools
| Tool | Purpose | Status |
|------|---------|--------|
| [[Tuxedo]] | Task board (Vikunja integration) | Active |
| [[Pi Dashboard]] | Agent session viewer & checker | Active |
| [[Paseo Pi GUI Tool]] | Pi GUI management tool | Active |
| [[Trigger.Dev]] | Developer tool | Active |
## Security & OSINT
| Tool | Description |
|------|-------------|
| [[Metasploit]] | Information security platform — penetration testing |
| [[Sn0int]] | Semi-automatic OSINT framework and package manager |
| [[Bumblebee - The Open-Source Scanner for Messy Dev Machines]] | Perplexity's read-only developer endpoint inventory scanner |
| [[ESP32 Bit Pirate takes on Flipper Zero in cost and capabilities]] | ESP32-based Flipper alternative |
---
## Dataview Queries
### All Tools
```dataview
TABLE status, areas, host
FROM ""
WHERE type = "tool"
SORT title ASC
```