diff --git a/.gitignore b/.gitignore index f7f6535..8cdd11d 100644 --- a/.gitignore +++ b/.gitignore @@ -87,7 +87,9 @@ out/ .env .env.local .env.*.local +.env.memory .smart-env/ +.venv-memory/ # MCP Configuration (may contain secrets) .mcp.json @@ -189,6 +191,7 @@ tramp *.log logs/ *.log.* +.memory-sync.log # -------------------------------------------- # Other Common Ignores @@ -212,6 +215,7 @@ coverage/ *.db *.sqlite *.sqlite3 +memory_eval/results/ # -------------------------------------------- # Project Specific diff --git a/.memory-changes-1772007710-4043.txt b/.memory-changes-1772007710-4043.txt new file mode 100644 index 0000000..e02381e --- /dev/null +++ b/.memory-changes-1772007710-4043.txt @@ -0,0 +1,3 @@ +A 06_Metadata/AGENT_MEMORY_DEPLOYMENT_PLAN.md +A 06_Metadata/AGENT_MEMORY_IMPLEMENTATION_TASKS_2026-02-25.md +A 06_Metadata/AGENT_MEMORY_STRATEGY.md diff --git a/.memory-index.lock b/.memory-index.lock new file mode 100644 index 0000000..e69de29 diff --git a/.obsidian/CLAUDE.md b/.obsidian/CLAUDE.md index adfdcb1..51c5bb7 100644 --- a/.obsidian/CLAUDE.md +++ b/.obsidian/CLAUDE.md @@ -3,5 +3,9 @@ -*No recent activity* +### Feb 25, 2026 + +| ID | Time | T | Title | Read | +|----|------|---|-------|------| +| #1216 | 10:29 AM | 🔵 | Dataview queries contain broken paths from previous folder structure reorganization | ~503 | \ No newline at end of file diff --git a/.obsidian/community-plugins.json b/.obsidian/community-plugins.json index 214bfbc..cb615ee 100644 --- a/.obsidian/community-plugins.json +++ b/.obsidian/community-plugins.json @@ -5,8 +5,6 @@ "obsidian-style-settings", "quickadd", "any-block", - "obsidian-opencode", - "opencode-obsidian", "omnisearch", "obsidian-local-rest-api", "obsidian-kanban", @@ -21,4 +19,4 @@ "advanced-canvas", "obsidian-git", "claudian" -] \ No newline at end of file +] diff --git a/.obsidian/plugins/claudian/.claude/plugins/obsidian b/.obsidian/plugins/claudian/.claude/plugins/obsidian new file mode 160000 index 0000000..2302b8e --- /dev/null +++ b/.obsidian/plugins/claudian/.claude/plugins/obsidian @@ -0,0 +1 @@ +Subproject commit 2302b8e4cf2fdac90218dabed3142b329a474668 diff --git a/.scripts/memory/__pycache__/blacklist.cpython-312.pyc b/.scripts/memory/__pycache__/blacklist.cpython-312.pyc new file mode 100644 index 0000000..a14fe63 Binary files /dev/null and b/.scripts/memory/__pycache__/blacklist.cpython-312.pyc differ diff --git a/.scripts/memory/__pycache__/blacklist.cpython-314.pyc b/.scripts/memory/__pycache__/blacklist.cpython-314.pyc new file mode 100644 index 0000000..d5f1837 Binary files /dev/null and b/.scripts/memory/__pycache__/blacklist.cpython-314.pyc differ diff --git a/.scripts/memory/__pycache__/incremental_ingest.cpython-314.pyc b/.scripts/memory/__pycache__/incremental_ingest.cpython-314.pyc new file mode 100644 index 0000000..40d9e49 Binary files /dev/null and b/.scripts/memory/__pycache__/incremental_ingest.cpython-314.pyc differ diff --git a/.scripts/memory/__pycache__/index_common.cpython-312.pyc b/.scripts/memory/__pycache__/index_common.cpython-312.pyc new file mode 100644 index 0000000..a7e08b2 Binary files /dev/null and b/.scripts/memory/__pycache__/index_common.cpython-312.pyc differ diff --git a/.scripts/memory/__pycache__/index_common.cpython-314.pyc b/.scripts/memory/__pycache__/index_common.cpython-314.pyc new file mode 100644 index 0000000..4ed0d4f Binary files /dev/null and b/.scripts/memory/__pycache__/index_common.cpython-314.pyc differ diff --git a/.scripts/memory/__pycache__/ingest_vault.cpython-314.pyc b/.scripts/memory/__pycache__/ingest_vault.cpython-314.pyc new file mode 100644 index 0000000..64d313a Binary files /dev/null and b/.scripts/memory/__pycache__/ingest_vault.cpython-314.pyc differ diff --git a/.scripts/memory/__pycache__/query_pgvector.cpython-312.pyc b/.scripts/memory/__pycache__/query_pgvector.cpython-312.pyc new file mode 100644 index 0000000..cfc062d Binary files /dev/null and b/.scripts/memory/__pycache__/query_pgvector.cpython-312.pyc differ diff --git a/.scripts/memory/__pycache__/query_pgvector.cpython-314.pyc b/.scripts/memory/__pycache__/query_pgvector.cpython-314.pyc new file mode 100644 index 0000000..6e5f774 Binary files /dev/null and b/.scripts/memory/__pycache__/query_pgvector.cpython-314.pyc differ diff --git a/.scripts/memory/agent-with-memory.sh b/.scripts/memory/agent-with-memory.sh index 925c071..88d0d42 100755 --- a/.scripts/memory/agent-with-memory.sh +++ b/.scripts/memory/agent-with-memory.sh @@ -10,7 +10,7 @@ if [[ -z "$QUERY" ]]; then exit 1 fi -PROMPT_FILE="$(mktemp /tmp/mem-prompt-XXXXXX.md)" +PROMPT_FILE="$(mktemp -t mem-prompt.XXXXXX)" trap 'rm -f "$PROMPT_FILE"' EXIT echo "[memory] 正在检索本地语义记忆..." >&2 diff --git a/.scripts/memory/eval_cold_start.py b/.scripts/memory/eval_cold_start.py new file mode 100644 index 0000000..77fe904 --- /dev/null +++ b/.scripts/memory/eval_cold_start.py @@ -0,0 +1,20 @@ +#!/usr/bin/env python3 +import csv +import math +from pathlib import Path + +csv_path = Path('memory_eval/results/cold_start_20_runs_2026-02-25.csv') +rows = list(csv.DictReader(csv_path.open(encoding='utf-8'))) +vals = sorted(float(r['elapsed_s']) for r in rows if r.get('exit_code') == '0') + +if not vals: + print('no successful samples') + raise SystemExit(0) + +def pct(vs, q): + i = max(0, math.ceil(len(vs) * q) - 1) + return vs[i] + +p50 = pct(vals, 0.50) +p95 = pct(vals, 0.95) +print({'success_samples': len(vals), 'p50_s': round(p50, 4), 'p95_s': round(p95, 4), 'target_le_4_5s': p95 <= 4.5}) diff --git a/00_Inbox/2026-01-30.md b/00_Inbox/2026-01-30.md deleted file mode 100644 index 319114b..0000000 --- a/00_Inbox/2026-01-30.md +++ /dev/null @@ -1,26 +0,0 @@ -# 2026-01-30 - -## Capture - -- - -## Questions - -- - -## Insights - -- - -## Connections - -- - -## For Tomorrow - -- - ---- -← [[2026-01-29]] | [[2026-01-31]] → - -*End of day: Ask Claude Code to review and find connections* \ No newline at end of file diff --git a/00_Inbox/CLAUDE.md b/00_Inbox/CLAUDE.md new file mode 100644 index 0000000..27e9810 --- /dev/null +++ b/00_Inbox/CLAUDE.md @@ -0,0 +1,11 @@ + +# Recent Activity + + + +### Feb 25, 2026 + +| ID | Time | T | Title | Read | +|----|------|---|-------|------| +| #1213 | 10:29 AM | 🔵 | Vault underwent formal review and improvement planning in February 2026 | ~630 | + \ No newline at end of file diff --git a/00_Inbox/IMPROVEMENT_PLAN_2026-02-03.md b/00_Inbox/IMPROVEMENT_PLAN_2026-02-03.md index 5ea8ca3..cbe9f45 100644 --- a/00_Inbox/IMPROVEMENT_PLAN_2026-02-03.md +++ b/00_Inbox/IMPROVEMENT_PLAN_2026-02-03.md @@ -1,4 +1,4 @@ -# 改进计划(基于评审意见,排除 CLAUDE-BOOTSTRAP.md 相关问题) +# 改进计划(基于评审意见,排除 CLAUDE-BOOTSTRAP.md 相关问题) **计划日期**: 2026-02-03 **适用范围**: README、QUICK_REFERENCE、WORKFLOWS、WEEKLY_REVIEW、package.json、06_Metadata 模板与附件管理文档 diff --git a/01_Projects/Home-Automation/CLAUDE.md b/01_Projects/Home-Automation/CLAUDE.md new file mode 100644 index 0000000..fe580c0 --- /dev/null +++ b/01_Projects/Home-Automation/CLAUDE.md @@ -0,0 +1,12 @@ + +# Recent Activity + + + +### Feb 25, 2026 + +| ID | Time | T | Title | Read | +|----|------|---|-------|------| +| #1214 | 10:29 AM | 🔵 | Inconsistent frontmatter usage and exposed credentials in vault | ~384 | +| #1206 | 10:25 AM | 🔵 | Personal vault structure and content patterns | ~372 | + \ No newline at end of file diff --git a/01_Projects/Infrastructure/Services/CLAUDE.md b/01_Projects/Infrastructure/Services/CLAUDE.md new file mode 100644 index 0000000..8029d9b --- /dev/null +++ b/01_Projects/Infrastructure/Services/CLAUDE.md @@ -0,0 +1,11 @@ + +# Recent Activity + + + +### Feb 25, 2026 + +| ID | Time | T | Title | Read | +|----|------|---|-------|------| +| #1214 | 10:29 AM | 🔵 | Inconsistent frontmatter usage and exposed credentials in vault | ~384 | + \ No newline at end of file diff --git a/02_Areas/Blog/Blog.md b/02_Areas/Blog/Blog.md index 7afa72c..e43f6a3 100644 --- a/02_Areas/Blog/Blog.md +++ b/02_Areas/Blog/Blog.md @@ -8,7 +8,7 @@ updated: 2025-12-29 ### Notes ```dataview -table file.ctime as Date from "200-area/Blog" +table file.ctime as Date from "02_Areas/Blog" sort file.name ``` diff --git a/02_Areas/Blog/CLAUDE.md b/02_Areas/Blog/CLAUDE.md new file mode 100644 index 0000000..ca597a9 --- /dev/null +++ b/02_Areas/Blog/CLAUDE.md @@ -0,0 +1,12 @@ + +# Recent Activity + + + +### Feb 25, 2026 + +| ID | Time | T | Title | Read | +|----|------|---|-------|------| +| #1216 | 10:29 AM | 🔵 | Dataview queries contain broken paths from previous folder structure reorganization | ~503 | +| #1214 | " | 🔵 | Inconsistent frontmatter usage and exposed credentials in vault | ~384 | + \ No newline at end of file diff --git a/02_Areas/Finance/CLAUDE.md b/02_Areas/Finance/CLAUDE.md new file mode 100644 index 0000000..96592b6 --- /dev/null +++ b/02_Areas/Finance/CLAUDE.md @@ -0,0 +1,12 @@ + +# Recent Activity + + + +### Feb 25, 2026 + +| ID | Time | T | Title | Read | +|----|------|---|-------|------| +| #1216 | 10:29 AM | 🔵 | Dataview queries contain broken paths from previous folder structure reorganization | ~503 | +| #1206 | 10:25 AM | 🔵 | Personal vault structure and content patterns | ~372 | + \ No newline at end of file diff --git a/02_Areas/Finance/Finance.md b/02_Areas/Finance/Finance.md index 9edb41e..cec3251 100644 --- a/02_Areas/Finance/Finance.md +++ b/02_Areas/Finance/Finance.md @@ -8,7 +8,7 @@ updated: 2025-12-29 ### Notes ```dataview -table file.ctime as Date from "200-area/Finance" +table file.ctime as Date from "02_Areas/Finance" sort file.name ``` diff --git a/02_Areas/GFW/GFW.md b/02_Areas/GFW/GFW.md new file mode 100644 index 0000000..59d428f --- /dev/null +++ b/02_Areas/GFW/GFW.md @@ -0,0 +1,14 @@ +--- +title: GFW +type: area-hub +tags: [area, para, gfw, network] +created: 2026-02-25 +updated: 2026-02-25 +--- + +### Notes +```dataview +table file.ctime as Date from "02_Areas/GFW" +where file.name != this.file.name +sort file.name asc +``` diff --git a/02_Areas/Health/CLAUDE.md b/02_Areas/Health/CLAUDE.md new file mode 100644 index 0000000..51c5bb7 --- /dev/null +++ b/02_Areas/Health/CLAUDE.md @@ -0,0 +1,11 @@ + +# Recent Activity + + + +### Feb 25, 2026 + +| ID | Time | T | Title | Read | +|----|------|---|-------|------| +| #1216 | 10:29 AM | 🔵 | Dataview queries contain broken paths from previous folder structure reorganization | ~503 | + \ No newline at end of file diff --git a/02_Areas/Health/Health.md b/02_Areas/Health/Health.md index 3bed2fe..dcb002b 100644 --- a/02_Areas/Health/Health.md +++ b/02_Areas/Health/Health.md @@ -8,7 +8,7 @@ updated: 2025-12-29 ### Notes ```dataview -table file.ctime as Date from "200-area/Health" +table file.ctime as Date from "02_Areas/Health" sort file.name ``` diff --git a/02_Areas/House/CLAUDE.md b/02_Areas/House/CLAUDE.md new file mode 100644 index 0000000..51c5bb7 --- /dev/null +++ b/02_Areas/House/CLAUDE.md @@ -0,0 +1,11 @@ + +# Recent Activity + + + +### Feb 25, 2026 + +| ID | Time | T | Title | Read | +|----|------|---|-------|------| +| #1216 | 10:29 AM | 🔵 | Dataview queries contain broken paths from previous folder structure reorganization | ~503 | + \ No newline at end of file diff --git a/02_Areas/House/House.md b/02_Areas/House/House.md index 5a7e9ed..611cf03 100644 --- a/02_Areas/House/House.md +++ b/02_Areas/House/House.md @@ -8,7 +8,7 @@ updated: 2025-12-29 ### Notes ```dataview -table file.ctime as Date from "200-area/House" +table file.ctime as Date from "02_Areas/House" sort file.name ``` diff --git a/02_Areas/Job/Job.md b/02_Areas/Job/Job.md new file mode 100644 index 0000000..1b63b8d --- /dev/null +++ b/02_Areas/Job/Job.md @@ -0,0 +1,14 @@ +--- +title: Job +type: area-hub +tags: [area, para, job, career] +created: 2026-02-25 +updated: 2026-02-25 +--- + +### Notes +```dataview +table file.ctime as Date from "02_Areas/Job" +where file.name != this.file.name +sort file.name asc +``` diff --git a/02_Areas/Lifestyle/Lifestyle.md b/02_Areas/Lifestyle/Lifestyle.md new file mode 100644 index 0000000..97c8ffc --- /dev/null +++ b/02_Areas/Lifestyle/Lifestyle.md @@ -0,0 +1,14 @@ +--- +title: Lifestyle +type: area-hub +tags: [area, para, lifestyle] +created: 2026-02-25 +updated: 2026-02-25 +--- + +### Notes +```dataview +table file.ctime as Date from "02_Areas/Lifestyle" +where file.name != this.file.name +sort file.name asc +``` diff --git a/02_Areas/Network & VPN/Network & VPN.md b/02_Areas/Network & VPN/Network & VPN.md index 90a2f7a..8849c3d 100644 --- a/02_Areas/Network & VPN/Network & VPN.md +++ b/02_Areas/Network & VPN/Network & VPN.md @@ -8,6 +8,6 @@ updated: 2025-12-29 ### Notes ```dataview -table file.ctime as Date from "200-area/Network & VPN" +table file.ctime as Date from "02_Areas/Network & VPN" sort file.name ``` diff --git a/02_Areas/Personal Development/Personal Development.md b/02_Areas/Personal Development/Personal Development.md index 5f123ef..6899e5e 100644 --- a/02_Areas/Personal Development/Personal Development.md +++ b/02_Areas/Personal Development/Personal Development.md @@ -8,7 +8,7 @@ updated: 2025-12-29 ### Notes ```dataview -table file.ctime as Date from "200-area/Personal Development" +table file.ctime as Date from "02_Areas/Personal Development" sort file.name ``` diff --git a/02_Areas/Productivity/CLAUDE.md b/02_Areas/Productivity/CLAUDE.md new file mode 100644 index 0000000..51c5bb7 --- /dev/null +++ b/02_Areas/Productivity/CLAUDE.md @@ -0,0 +1,11 @@ + +# Recent Activity + + + +### Feb 25, 2026 + +| ID | Time | T | Title | Read | +|----|------|---|-------|------| +| #1216 | 10:29 AM | 🔵 | Dataview queries contain broken paths from previous folder structure reorganization | ~503 | + \ No newline at end of file diff --git a/02_Areas/Productivity/Productivity.md b/02_Areas/Productivity/Productivity.md index f041cf4..ef3922c 100644 --- a/02_Areas/Productivity/Productivity.md +++ b/02_Areas/Productivity/Productivity.md @@ -8,7 +8,7 @@ updated: 2025-12-29 ### Notes ```dataview -table file.ctime as Date from "200-area/Productivity" +table file.ctime as Date from "02_Areas/Productivity" sort file.name ``` diff --git a/03_Resources/Cooking/CLAUDE.md b/03_Resources/Cooking/CLAUDE.md new file mode 100644 index 0000000..aebcc4b --- /dev/null +++ b/03_Resources/Cooking/CLAUDE.md @@ -0,0 +1,11 @@ + +# Recent Activity + + + +### Feb 25, 2026 + +| ID | Time | T | Title | Read | +|----|------|---|-------|------| +| #1206 | 10:25 AM | 🔵 | Personal vault structure and content patterns | ~372 | + \ No newline at end of file diff --git a/03_Resources/Cooking/Pickled-Cucumber-Recipe.md b/03_Resources/Cooking/Pickled-Cucumber-Recipe.md index 286bbc6..c61c227 100644 --- a/03_Resources/Cooking/Pickled-Cucumber-Recipe.md +++ b/03_Resources/Cooking/Pickled-Cucumber-Recipe.md @@ -1,9 +1,29 @@ +--- +title: 酸黄瓜制作 +created: 2025-12-30 +updated: 2026-02-25 +tags: [cooking, recipe, pickled-cucumber] +type: resource-note +--- -## 2023.4.18 尝试 -小黄瓜原料: 1044克 -盐: 21.7克 -糖: 11.7克 +## 配方记录(2023-04-18) +小黄瓜原料:1044 克 +盐:21.7 克 +糖:11.7 克 蒜末 姜末 蒜苔切碎 -芝麻 \ No newline at end of file +芝麻 + +## 通用做法 +1. 准备一个干净干燥的玻璃罐,黄瓜或白萝卜切块/切片。 +2. 加入蒜、辣椒粉,按黄瓜重量约 2% 加盐、1% 加糖。 +3. 轻揉 10-15 分钟让其出水。 +4. 压实入罐并尽量浸没在渗出液中。 +5. 室温发酵约 24 小时后检查气泡情况。 +6. 达到目标酸度后冷藏保存。 + +## 注意事项 +- 原料和容器需清洁、无明显残留水。 +- 盐糖比例会显著影响发酵结果。 +- 发酵期建议使用可微放气的封口方式,避免完全密封导致胀罐。 diff --git a/03_Resources/Cooking/Pickled-Cucumber.md b/03_Resources/Cooking/Pickled-Cucumber.md index bd91ca1..13707d3 100644 --- a/03_Resources/Cooking/Pickled-Cucumber.md +++ b/03_Resources/Cooking/Pickled-Cucumber.md @@ -1,48 +1,7 @@ +--- +title: Pickled Cucumber (Merged) +created: 2026-02-25 +type: redirect-note +--- -制作泡菜酸黄瓜的步骤如下: - -材料: - -- 新鲜的黄瓜或白萝卜,切成小块或薄片 -- 大蒜,切成小块或泥 -- 辣椒粉或新鲜的辣椒,根据口味添加 -- 盐,约为黄瓜重量的2% -- 白糖,约为黄瓜重量的1% - -步骤: - -1. 准备一个干净的玻璃罐或容器,将黄瓜或白萝卜放入其中。注意,容器应该干燥,因为任何水分都可能影响发酵过程。 - -2. 在黄瓜中加入大蒜和辣椒粉,然后在上面撒上盐和白糖。 - -3. 用手轻轻地搓揉黄瓜,使它们与盐和糖混合,并开始释放水分。这个过程可能需要10到15分钟。 - -4. 将黄瓜压入罐中,使其尽可能地浸泡在其自身的水分中。如果水分不足,可以加入一些水,但不要让水超过黄瓜。 - -5. 将容器密封好,然后放置在室温下24小时。在此时间内,黄瓜将开始发酵。 - -6. 过了24小时后,打开罐子检查发酵情况。如果你看到了气泡和泡沫,那么你就成功地制作出了泡菜酸黄瓜!此时,你可以将其放入冰箱保存。 - -7. 等待几天或一周,黄瓜会越来越酸,并且味道会越来越好。你可以在任何时候品尝,直到你得到最喜欢的味道为止。 - - -注意事项: - -- 在制作泡菜酸黄瓜时,要确保使用新鲜干净的材料,并在制作前彻底清洗。 -- 要准确地称量盐和糖的数量,因为这会影响到发酵的过程和结果。 -- 为了防止发酵过程中产生的气体无法逸出,可以选择松散的封口方式,如盖上一个松紧度适中的盖子或覆盖上一块纱布。不要使用密封的盖子,否则可能会导致容器爆裂。 - -如果您想为泡菜酸黄瓜添加其他香料以提升其风味,以下是一些常见的选择: - -1. 姜:将姜切成小片或末,加入到泡菜酸黄瓜中。姜的味道会使泡菜酸黄瓜更具有咬劲和辛辣感。 - -2. 蒜薹:切碎一些蒜薹,加入到泡菜酸黄瓜中。蒜薹的味道会使泡菜酸黄瓜更加香气扑鼻。 - -3. 芝麻:将一些芝麻炒香,然后磨成粉末状,加入到泡菜酸黄瓜中。芝麻的味道会增加泡菜酸黄瓜的浓郁感。 - -4. 茴香籽:加入一些茴香籽到泡菜酸黄瓜中。茴香籽的味道会使泡菜酸黄瓜更加清爽和芳香。 - -5. 花椒:加入一些花椒到泡菜酸黄瓜中。花椒的味道会使泡菜酸黄瓜更加香辣和麻味。 - - -您可以根据自己的口味和喜好选择合适的香料,并根据量的大小和搭配程度进行调整,以获得您想要的口感和风味。 \ No newline at end of file +此笔记已并入:[[03_Resources/Cooking/Pickled-Cucumber-Recipe]] diff --git a/02_Areas/Lifestyle/Gaming/Civilization.md b/03_Resources/Gaming/Civilization.md similarity index 100% rename from 02_Areas/Lifestyle/Gaming/Civilization.md rename to 03_Resources/Gaming/Civilization.md diff --git a/03_Resources/PKM.md b/03_Resources/PKM.md new file mode 100644 index 0000000..1ac620b --- /dev/null +++ b/03_Resources/PKM.md @@ -0,0 +1,9 @@ +--- +title: PKM (Merged) +created: 2026-02-25 +type: redirect-note +--- + +该入口已合并至:[[03_Resources/Personal Knowledge Management/Personal Knowledge Management]] + +历史目录保留于:`04_Archive/Legacy-Structure/PKM-merged-2026-02-25` diff --git a/2026-01-05.md b/04_Archive/Daily-Notes/2026-01-05.md similarity index 100% rename from 2026-01-05.md rename to 04_Archive/Daily-Notes/2026-01-05.md diff --git a/00_Inbox/Clippings/2023/03/8-SBOM-CN-SEC.md b/04_Archive/Inbox-Clippings/2023/03/8-SBOM-CN-SEC.md similarity index 100% rename from 00_Inbox/Clippings/2023/03/8-SBOM-CN-SEC.md rename to 04_Archive/Inbox-Clippings/2023/03/8-SBOM-CN-SEC.md diff --git a/00_Inbox/Clippings/2023/03/AboutSBOM-SBOM-Seal-Blog.md b/04_Archive/Inbox-Clippings/2023/03/AboutSBOM-SBOM-Seal-Blog.md similarity index 100% rename from 00_Inbox/Clippings/2023/03/AboutSBOM-SBOM-Seal-Blog.md rename to 04_Archive/Inbox-Clippings/2023/03/AboutSBOM-SBOM-Seal-Blog.md diff --git a/00_Inbox/Clippings/2023/03/AboutSBOM-SBOM.md b/04_Archive/Inbox-Clippings/2023/03/AboutSBOM-SBOM.md similarity index 100% rename from 00_Inbox/Clippings/2023/03/AboutSBOM-SBOM.md rename to 04_Archive/Inbox-Clippings/2023/03/AboutSBOM-SBOM.md diff --git a/00_Inbox/Clippings/2023/03/Adding and trusting a Certificate Authority (CA) in Fedora – Antonio Maradiaga – Collection of things I'm interested in working on.md b/04_Archive/Inbox-Clippings/2023/03/Adding and trusting a Certificate Authority (CA) in Fedora – Antonio Maradiaga – Collection of things I'm interested in working on.md similarity index 100% rename from 00_Inbox/Clippings/2023/03/Adding and trusting a Certificate Authority (CA) in Fedora – Antonio Maradiaga – Collection of things I'm interested in working on.md rename to 04_Archive/Inbox-Clippings/2023/03/Adding and trusting a Certificate Authority (CA) in Fedora – Antonio Maradiaga – Collection of things I'm interested in working on.md diff --git a/00_Inbox/Clippings/2023/03/DailySync · GitLab.md b/04_Archive/Inbox-Clippings/2023/03/DailySync · GitLab.md similarity index 100% rename from 00_Inbox/Clippings/2023/03/DailySync · GitLab.md rename to 04_Archive/Inbox-Clippings/2023/03/DailySync · GitLab.md diff --git a/00_Inbox/Clippings/2023/03/How do I install a root certificate - Ask Ubuntu.md b/04_Archive/Inbox-Clippings/2023/03/How do I install a root certificate - Ask Ubuntu.md similarity index 100% rename from 00_Inbox/Clippings/2023/03/How do I install a root certificate - Ask Ubuntu.md rename to 04_Archive/Inbox-Clippings/2023/03/How do I install a root certificate - Ask Ubuntu.md diff --git a/00_Inbox/Clippings/2023/03/How to Install AMD OpenCL Mining Drivers on Debian 11 Bullseye.md b/04_Archive/Inbox-Clippings/2023/03/How to Install AMD OpenCL Mining Drivers on Debian 11 Bullseye.md similarity index 100% rename from 00_Inbox/Clippings/2023/03/How to Install AMD OpenCL Mining Drivers on Debian 11 Bullseye.md rename to 04_Archive/Inbox-Clippings/2023/03/How to Install AMD OpenCL Mining Drivers on Debian 11 Bullseye.md diff --git a/00_Inbox/Clippings/2023/03/How-to-SBOM-SBOM-Implementation-_.md b/04_Archive/Inbox-Clippings/2023/03/How-to-SBOM-SBOM-Implementation-_.md similarity index 100% rename from 00_Inbox/Clippings/2023/03/How-to-SBOM-SBOM-Implementation-_.md rename to 04_Archive/Inbox-Clippings/2023/03/How-to-SBOM-SBOM-Implementation-_.md diff --git a/00_Inbox/Clippings/2023/03/How-to-SBOM.md b/04_Archive/Inbox-Clippings/2023/03/How-to-SBOM.md similarity index 100% rename from 00_Inbox/Clippings/2023/03/How-to-SBOM.md rename to 04_Archive/Inbox-Clippings/2023/03/How-to-SBOM.md diff --git a/00_Inbox/Clippings/2023/03/HowTosLDAP authentication for Atlassian JIRA using FreeIPA - FreeIPA.md b/04_Archive/Inbox-Clippings/2023/03/HowTosLDAP authentication for Atlassian JIRA using FreeIPA - FreeIPA.md similarity index 100% rename from 00_Inbox/Clippings/2023/03/HowTosLDAP authentication for Atlassian JIRA using FreeIPA - FreeIPA.md rename to 04_Archive/Inbox-Clippings/2023/03/HowTosLDAP authentication for Atlassian JIRA using FreeIPA - FreeIPA.md diff --git a/00_Inbox/Clippings/2023/03/Jupyter kernels · jupyterjupyter Wiki.md b/04_Archive/Inbox-Clippings/2023/03/Jupyter kernels · jupyterjupyter Wiki.md similarity index 100% rename from 00_Inbox/Clippings/2023/03/Jupyter kernels · jupyterjupyter Wiki.md rename to 04_Archive/Inbox-Clippings/2023/03/Jupyter kernels · jupyterjupyter Wiki.md diff --git a/00_Inbox/Clippings/2023/03/Lenovo-Support.md b/04_Archive/Inbox-Clippings/2023/03/Lenovo-Support.md similarity index 100% rename from 00_Inbox/Clippings/2023/03/Lenovo-Support.md rename to 04_Archive/Inbox-Clippings/2023/03/Lenovo-Support.md diff --git a/00_Inbox/Clippings/2023/03/Openwrt-Bypass-Gateway-Ultimate-Setup-Debunking.md b/04_Archive/Inbox-Clippings/2023/03/Openwrt-Bypass-Gateway-Ultimate-Setup-Debunking.md similarity index 100% rename from 00_Inbox/Clippings/2023/03/Openwrt-Bypass-Gateway-Ultimate-Setup-Debunking.md rename to 04_Archive/Inbox-Clippings/2023/03/Openwrt-Bypass-Gateway-Ultimate-Setup-Debunking.md diff --git a/00_Inbox/Clippings/2023/03/Prerequisites Tauri Apps.md b/04_Archive/Inbox-Clippings/2023/03/Prerequisites Tauri Apps.md similarity index 100% rename from 00_Inbox/Clippings/2023/03/Prerequisites Tauri Apps.md rename to 04_Archive/Inbox-Clippings/2023/03/Prerequisites Tauri Apps.md diff --git a/00_Inbox/Clippings/2023/03/Run an OpenWRT VM on Proxmox VE.md b/04_Archive/Inbox-Clippings/2023/03/Run an OpenWRT VM on Proxmox VE.md similarity index 100% rename from 00_Inbox/Clippings/2023/03/Run an OpenWRT VM on Proxmox VE.md rename to 04_Archive/Inbox-Clippings/2023/03/Run an OpenWRT VM on Proxmox VE.md diff --git a/00_Inbox/Clippings/2023/03/SSL with self signed certificate - Drone Support - Harness Community.md b/04_Archive/Inbox-Clippings/2023/03/SSL with self signed certificate - Drone Support - Harness Community.md similarity index 100% rename from 00_Inbox/Clippings/2023/03/SSL with self signed certificate - Drone Support - Harness Community.md rename to 04_Archive/Inbox-Clippings/2023/03/SSL with self signed certificate - Drone Support - Harness Community.md diff --git a/00_Inbox/Clippings/2023/03/Scope and Shadowing - Rust By Example.md b/04_Archive/Inbox-Clippings/2023/03/Scope and Shadowing - Rust By Example.md similarity index 100% rename from 00_Inbox/Clippings/2023/03/Scope and Shadowing - Rust By Example.md rename to 04_Archive/Inbox-Clippings/2023/03/Scope and Shadowing - Rust By Example.md diff --git a/00_Inbox/Clippings/2023/03/Software-Vendor-Handbook-SBOM-Interpretation-Fr.md b/04_Archive/Inbox-Clippings/2023/03/Software-Vendor-Handbook-SBOM-Interpretation-Fr.md similarity index 100% rename from 00_Inbox/Clippings/2023/03/Software-Vendor-Handbook-SBOM-Interpretation-Fr.md rename to 04_Archive/Inbox-Clippings/2023/03/Software-Vendor-Handbook-SBOM-Interpretation-Fr.md diff --git a/00_Inbox/Clippings/2023/03/The ultimate guide to SBOMs GitLab.md b/04_Archive/Inbox-Clippings/2023/03/The ultimate guide to SBOMs GitLab.md similarity index 100% rename from 00_Inbox/Clippings/2023/03/The ultimate guide to SBOMs GitLab.md rename to 04_Archive/Inbox-Clippings/2023/03/The ultimate guide to SBOMs GitLab.md diff --git a/00_Inbox/Clippings/2023/03/What-isSBOM-(SBOM)-Network-Security-AISEC.md b/04_Archive/Inbox-Clippings/2023/03/What-isSBOM-(SBOM)-Network-Security-AISEC.md similarity index 100% rename from 00_Inbox/Clippings/2023/03/What-isSBOM-(SBOM)-Network-Security-AISEC.md rename to 04_Archive/Inbox-Clippings/2023/03/What-isSBOM-(SBOM)-Network-Security-AISEC.md diff --git a/00_Inbox/Clippings/2023/03/honven-VPN-Recommendations.md b/04_Archive/Inbox-Clippings/2023/03/honven-VPN-Recommendations.md similarity index 100% rename from 00_Inbox/Clippings/2023/03/honven-VPN-Recommendations.md rename to 04_Archive/Inbox-Clippings/2023/03/honven-VPN-Recommendations.md diff --git a/00_Inbox/Clippings/2023/03/podmanrootless_tutorial.md at main · containerspodman.md b/04_Archive/Inbox-Clippings/2023/03/podmanrootless_tutorial.md at main · containerspodman.md similarity index 100% rename from 00_Inbox/Clippings/2023/03/podmanrootless_tutorial.md at main · containerspodman.md rename to 04_Archive/Inbox-Clippings/2023/03/podmanrootless_tutorial.md at main · containerspodman.md diff --git a/00_Inbox/Clippings/2023/04/5 Ways to Empty or Delete a Large File Content in Linux.md b/04_Archive/Inbox-Clippings/2023/04/5 Ways to Empty or Delete a Large File Content in Linux.md similarity index 100% rename from 00_Inbox/Clippings/2023/04/5 Ways to Empty or Delete a Large File Content in Linux.md rename to 04_Archive/Inbox-Clippings/2023/04/5 Ways to Empty or Delete a Large File Content in Linux.md diff --git a/00_Inbox/Clippings/2023/04/A half-hour to learn Rust.md b/04_Archive/Inbox-Clippings/2023/04/A half-hour to learn Rust.md similarity index 100% rename from 00_Inbox/Clippings/2023/04/A half-hour to learn Rust.md rename to 04_Archive/Inbox-Clippings/2023/04/A half-hour to learn Rust.md diff --git a/00_Inbox/Clippings/2023/04/Base64 Encode and Decode From Command Line.md b/04_Archive/Inbox-Clippings/2023/04/Base64 Encode and Decode From Command Line.md similarity index 100% rename from 00_Inbox/Clippings/2023/04/Base64 Encode and Decode From Command Line.md rename to 04_Archive/Inbox-Clippings/2023/04/Base64 Encode and Decode From Command Line.md diff --git a/00_Inbox/Clippings/2023/04/Best 100+ Stable Diffusion Prompts The Most Beautiful AI Text-to-Image Prompts Metaverse Post.md b/04_Archive/Inbox-Clippings/2023/04/Best 100+ Stable Diffusion Prompts The Most Beautiful AI Text-to-Image Prompts Metaverse Post.md similarity index 100% rename from 00_Inbox/Clippings/2023/04/Best 100+ Stable Diffusion Prompts The Most Beautiful AI Text-to-Image Prompts Metaverse Post.md rename to 04_Archive/Inbox-Clippings/2023/04/Best 100+ Stable Diffusion Prompts The Most Beautiful AI Text-to-Image Prompts Metaverse Post.md diff --git a/00_Inbox/Clippings/2023/04/ChatGPT-Plus-How-to-10.md b/04_Archive/Inbox-Clippings/2023/04/ChatGPT-Plus-How-to-10.md similarity index 100% rename from 00_Inbox/Clippings/2023/04/ChatGPT-Plus-How-to-10.md rename to 04_Archive/Inbox-Clippings/2023/04/ChatGPT-Plus-How-to-10.md diff --git a/00_Inbox/Clippings/2023/04/Chatgpt4China-Application-Chatgpt3.5China-Free1.md b/04_Archive/Inbox-Clippings/2023/04/Chatgpt4China-Application-Chatgpt3.5China-Free1.md similarity index 100% rename from 00_Inbox/Clippings/2023/04/Chatgpt4China-Application-Chatgpt3.5China-Free1.md rename to 04_Archive/Inbox-Clippings/2023/04/Chatgpt4China-Application-Chatgpt3.5China-Free1.md diff --git a/00_Inbox/Clippings/2023/04/Creating user, database and adding access on PostgreSQL by Arnav Gupta Coding Blocks Medium.md b/04_Archive/Inbox-Clippings/2023/04/Creating user, database and adding access on PostgreSQL by Arnav Gupta Coding Blocks Medium.md similarity index 100% rename from 00_Inbox/Clippings/2023/04/Creating user, database and adding access on PostgreSQL by Arnav Gupta Coding Blocks Medium.md rename to 04_Archive/Inbox-Clippings/2023/04/Creating user, database and adding access on PostgreSQL by Arnav Gupta Coding Blocks Medium.md diff --git a/00_Inbox/Clippings/2023/04/DNS alias mode · acmesh-officialacme.sh Wiki.md b/04_Archive/Inbox-Clippings/2023/04/DNS alias mode · acmesh-officialacme.sh Wiki.md similarity index 100% rename from 00_Inbox/Clippings/2023/04/DNS alias mode · acmesh-officialacme.sh Wiki.md rename to 04_Archive/Inbox-Clippings/2023/04/DNS alias mode · acmesh-officialacme.sh Wiki.md diff --git a/00_Inbox/Clippings/2023/04/Error Handling in Rust - Andrew Gallant's Blog.md b/04_Archive/Inbox-Clippings/2023/04/Error Handling in Rust - Andrew Gallant's Blog.md similarity index 100% rename from 00_Inbox/Clippings/2023/04/Error Handling in Rust - Andrew Gallant's Blog.md rename to 04_Archive/Inbox-Clippings/2023/04/Error Handling in Rust - Andrew Gallant's Blog.md diff --git a/00_Inbox/Clippings/2023/04/Future Tools - Find The Exact AI Tool For Your Needs.md b/04_Archive/Inbox-Clippings/2023/04/Future Tools - Find The Exact AI Tool For Your Needs.md similarity index 100% rename from 00_Inbox/Clippings/2023/04/Future Tools - Find The Exact AI Tool For Your Needs.md rename to 04_Archive/Inbox-Clippings/2023/04/Future Tools - Find The Exact AI Tool For Your Needs.md diff --git a/00_Inbox/Clippings/2023/04/How To Acquire a Let's Encrypt Certificate Using DNS Validation with acme-dns-certbot on Ubuntu 18.04 DigitalOcean.md b/04_Archive/Inbox-Clippings/2023/04/How To Acquire a Let's Encrypt Certificate Using DNS Validation with acme-dns-certbot on Ubuntu 18.04 DigitalOcean.md similarity index 100% rename from 00_Inbox/Clippings/2023/04/How To Acquire a Let's Encrypt Certificate Using DNS Validation with acme-dns-certbot on Ubuntu 18.04 DigitalOcean.md rename to 04_Archive/Inbox-Clippings/2023/04/How To Acquire a Let's Encrypt Certificate Using DNS Validation with acme-dns-certbot on Ubuntu 18.04 DigitalOcean.md diff --git a/00_Inbox/Clippings/2023/04/How to Install ROCm.md b/04_Archive/Inbox-Clippings/2023/04/How to Install ROCm.md similarity index 100% rename from 00_Inbox/Clippings/2023/04/How to Install ROCm.md rename to 04_Archive/Inbox-Clippings/2023/04/How to Install ROCm.md diff --git a/00_Inbox/Clippings/2023/04/How to install PostgreSQL on Debian 11.md b/04_Archive/Inbox-Clippings/2023/04/How to install PostgreSQL on Debian 11.md similarity index 100% rename from 00_Inbox/Clippings/2023/04/How to install PostgreSQL on Debian 11.md rename to 04_Archive/Inbox-Clippings/2023/04/How to install PostgreSQL on Debian 11.md diff --git a/00_Inbox/Clippings/2023/04/How to install and run bots for the Matrix network – tmplab.md b/04_Archive/Inbox-Clippings/2023/04/How to install and run bots for the Matrix network – tmplab.md similarity index 100% rename from 00_Inbox/Clippings/2023/04/How to install and run bots for the Matrix network – tmplab.md rename to 04_Archive/Inbox-Clippings/2023/04/How to install and run bots for the Matrix network – tmplab.md diff --git a/00_Inbox/Clippings/2023/04/How to setup your OTP appliance with privacyIDEA.md b/04_Archive/Inbox-Clippings/2023/04/How to setup your OTP appliance with privacyIDEA.md similarity index 100% rename from 00_Inbox/Clippings/2023/04/How to setup your OTP appliance with privacyIDEA.md rename to 04_Archive/Inbox-Clippings/2023/04/How to setup your OTP appliance with privacyIDEA.md diff --git a/00_Inbox/Clippings/2023/04/Install and Run on AMD GPUs · AUTOMATIC1111stable-diffusion-webui Wiki.md b/04_Archive/Inbox-Clippings/2023/04/Install and Run on AMD GPUs · AUTOMATIC1111stable-diffusion-webui Wiki.md similarity index 100% rename from 00_Inbox/Clippings/2023/04/Install and Run on AMD GPUs · AUTOMATIC1111stable-diffusion-webui Wiki.md rename to 04_Archive/Inbox-Clippings/2023/04/Install and Run on AMD GPUs · AUTOMATIC1111stable-diffusion-webui Wiki.md diff --git a/00_Inbox/Clippings/2023/04/Installation - Docs - Appwrite.md b/04_Archive/Inbox-Clippings/2023/04/Installation - Docs - Appwrite.md similarity index 100% rename from 00_Inbox/Clippings/2023/04/Installation - Docs - Appwrite.md rename to 04_Archive/Inbox-Clippings/2023/04/Installation - Docs - Appwrite.md diff --git a/00_Inbox/Clippings/2023/04/Introduction Hasura Backend Plus.md b/04_Archive/Inbox-Clippings/2023/04/Introduction Hasura Backend Plus.md similarity index 100% rename from 00_Inbox/Clippings/2023/04/Introduction Hasura Backend Plus.md rename to 04_Archive/Inbox-Clippings/2023/04/Introduction Hasura Backend Plus.md diff --git a/00_Inbox/Clippings/2023/04/Introduction - Learning Rust With Entirely Too Many Linked Lists.md b/04_Archive/Inbox-Clippings/2023/04/Introduction - Learning Rust With Entirely Too Many Linked Lists.md similarity index 100% rename from 00_Inbox/Clippings/2023/04/Introduction - Learning Rust With Entirely Too Many Linked Lists.md rename to 04_Archive/Inbox-Clippings/2023/04/Introduction - Learning Rust With Entirely Too Many Linked Lists.md diff --git a/00_Inbox/Clippings/2023/04/Introduction - Rust and WebAssembly.md b/04_Archive/Inbox-Clippings/2023/04/Introduction - Rust and WebAssembly.md similarity index 100% rename from 00_Inbox/Clippings/2023/04/Introduction - Rust and WebAssembly.md rename to 04_Archive/Inbox-Clippings/2023/04/Introduction - Rust and WebAssembly.md diff --git a/00_Inbox/Clippings/2023/04/Learn Rust in Y Minutes.md b/04_Archive/Inbox-Clippings/2023/04/Learn Rust in Y Minutes.md similarity index 100% rename from 00_Inbox/Clippings/2023/04/Learn Rust in Y Minutes.md rename to 04_Archive/Inbox-Clippings/2023/04/Learn Rust in Y Minutes.md diff --git a/00_Inbox/Clippings/2023/04/Logto.md b/04_Archive/Inbox-Clippings/2023/04/Logto.md similarity index 100% rename from 00_Inbox/Clippings/2023/04/Logto.md rename to 04_Archive/Inbox-Clippings/2023/04/Logto.md diff --git a/00_Inbox/Clippings/2023/04/MistGPU.md b/04_Archive/Inbox-Clippings/2023/04/MistGPU.md similarity index 100% rename from 00_Inbox/Clippings/2023/04/MistGPU.md rename to 04_Archive/Inbox-Clippings/2023/04/MistGPU.md diff --git a/00_Inbox/Clippings/2023/04/Most Useful ChatGPT Prompts.md b/04_Archive/Inbox-Clippings/2023/04/Most Useful ChatGPT Prompts.md similarity index 100% rename from 00_Inbox/Clippings/2023/04/Most Useful ChatGPT Prompts.md rename to 04_Archive/Inbox-Clippings/2023/04/Most Useful ChatGPT Prompts.md diff --git a/00_Inbox/Clippings/2023/04/PowerDNS pdnsutil cheat sheet - Makarainen.md b/04_Archive/Inbox-Clippings/2023/04/PowerDNS pdnsutil cheat sheet - Makarainen.md similarity index 100% rename from 00_Inbox/Clippings/2023/04/PowerDNS pdnsutil cheat sheet - Makarainen.md rename to 04_Archive/Inbox-Clippings/2023/04/PowerDNS pdnsutil cheat sheet - Makarainen.md diff --git a/00_Inbox/Clippings/2023/04/Prerequisites.md b/04_Archive/Inbox-Clippings/2023/04/Prerequisites.md similarity index 100% rename from 00_Inbox/Clippings/2023/04/Prerequisites.md rename to 04_Archive/Inbox-Clippings/2023/04/Prerequisites.md diff --git a/00_Inbox/Clippings/2023/04/Self hosted mail server – if then else.md b/04_Archive/Inbox-Clippings/2023/04/Self hosted mail server – if then else.md similarity index 100% rename from 00_Inbox/Clippings/2023/04/Self hosted mail server – if then else.md rename to 04_Archive/Inbox-Clippings/2023/04/Self hosted mail server – if then else.md diff --git a/00_Inbox/Clippings/2023/04/Slurm Workload Manager - Overview.md b/04_Archive/Inbox-Clippings/2023/04/Slurm Workload Manager - Overview.md similarity index 100% rename from 00_Inbox/Clippings/2023/04/Slurm Workload Manager - Overview.md rename to 04_Archive/Inbox-Clippings/2023/04/Slurm Workload Manager - Overview.md diff --git a/00_Inbox/Clippings/2023/04/Steamship Documentation.md b/04_Archive/Inbox-Clippings/2023/04/Steamship Documentation.md similarity index 100% rename from 00_Inbox/Clippings/2023/04/Steamship Documentation.md rename to 04_Archive/Inbox-Clippings/2023/04/Steamship Documentation.md diff --git a/00_Inbox/Clippings/2023/04/TorantulinoAuto-GPT An experimental open-source attempt to make GPT-4 fully autonomous..md b/04_Archive/Inbox-Clippings/2023/04/TorantulinoAuto-GPT An experimental open-source attempt to make GPT-4 fully autonomous..md similarity index 100% rename from 00_Inbox/Clippings/2023/04/TorantulinoAuto-GPT An experimental open-source attempt to make GPT-4 fully autonomous..md rename to 04_Archive/Inbox-Clippings/2023/04/TorantulinoAuto-GPT An experimental open-source attempt to make GPT-4 fully autonomous..md diff --git a/00_Inbox/Clippings/2023/04/Usage of matrix-bot-sdk Matrix.org.md b/04_Archive/Inbox-Clippings/2023/04/Usage of matrix-bot-sdk Matrix.org.md similarity index 100% rename from 00_Inbox/Clippings/2023/04/Usage of matrix-bot-sdk Matrix.org.md rename to 04_Archive/Inbox-Clippings/2023/04/Usage of matrix-bot-sdk Matrix.org.md diff --git a/00_Inbox/Clippings/2023/04/Using Let's Encrypt for internal servers - Philipp's Tech Blog.md b/04_Archive/Inbox-Clippings/2023/04/Using Let's Encrypt for internal servers - Philipp's Tech Blog.md similarity index 100% rename from 00_Inbox/Clippings/2023/04/Using Let's Encrypt for internal servers - Philipp's Tech Blog.md rename to 04_Archive/Inbox-Clippings/2023/04/Using Let's Encrypt for internal servers - Philipp's Tech Blog.md diff --git a/00_Inbox/Clippings/2023/04/What is Prompt Engineering prmpts.AI.md b/04_Archive/Inbox-Clippings/2023/04/What is Prompt Engineering prmpts.AI.md similarity index 100% rename from 00_Inbox/Clippings/2023/04/What is Prompt Engineering prmpts.AI.md rename to 04_Archive/Inbox-Clippings/2023/04/What is Prompt Engineering prmpts.AI.md diff --git a/00_Inbox/Clippings/2023/04/[Pdns-users] TCP Connection Thread died because of STL error Reading data Connection reset by peer.md b/04_Archive/Inbox-Clippings/2023/04/[Pdns-users] TCP Connection Thread died because of STL error Reading data Connection reset by peer.md similarity index 100% rename from 00_Inbox/Clippings/2023/04/[Pdns-users] TCP Connection Thread died because of STL error Reading data Connection reset by peer.md rename to 04_Archive/Inbox-Clippings/2023/04/[Pdns-users] TCP Connection Thread died because of STL error Reading data Connection reset by peer.md diff --git a/00_Inbox/Clippings/2023/04/fast.ai - GPT 4 and the Uncharted Territories of Language.md b/04_Archive/Inbox-Clippings/2023/04/fast.ai - GPT 4 and the Uncharted Territories of Language.md similarity index 100% rename from 00_Inbox/Clippings/2023/04/fast.ai - GPT 4 and the Uncharted Territories of Language.md rename to 04_Archive/Inbox-Clippings/2023/04/fast.ai - GPT 4 and the Uncharted Territories of Language.md diff --git a/00_Inbox/Clippings/2023/04/matrixgptmatrix-chatgpt-bot Talk to ChatGPT via any Matrix client!.md b/04_Archive/Inbox-Clippings/2023/04/matrixgptmatrix-chatgpt-bot Talk to ChatGPT via any Matrix client!.md similarity index 100% rename from 00_Inbox/Clippings/2023/04/matrixgptmatrix-chatgpt-bot Talk to ChatGPT via any Matrix client!.md rename to 04_Archive/Inbox-Clippings/2023/04/matrixgptmatrix-chatgpt-bot Talk to ChatGPT via any Matrix client!.md diff --git a/00_Inbox/Clippings/2023/04/prmpts.AI - Prompt sandbox.md b/04_Archive/Inbox-Clippings/2023/04/prmpts.AI - Prompt sandbox.md similarity index 100% rename from 00_Inbox/Clippings/2023/04/prmpts.AI - Prompt sandbox.md rename to 04_Archive/Inbox-Clippings/2023/04/prmpts.AI - Prompt sandbox.md diff --git a/00_Inbox/Clippings/2023/04/yarmodelightful-matrix A curated list of delightful Matrix resources, implementations and clients. - delightful-matrix - Codeberg.org.md b/04_Archive/Inbox-Clippings/2023/04/yarmodelightful-matrix A curated list of delightful Matrix resources, implementations and clients. - delightful-matrix - Codeberg.org.md similarity index 100% rename from 00_Inbox/Clippings/2023/04/yarmodelightful-matrix A curated list of delightful Matrix resources, implementations and clients. - delightful-matrix - Codeberg.org.md rename to 04_Archive/Inbox-Clippings/2023/04/yarmodelightful-matrix A curated list of delightful Matrix resources, implementations and clients. - delightful-matrix - Codeberg.org.md diff --git a/00_Inbox/Clippings/2023/05/Creating user accounts Dendrite.md b/04_Archive/Inbox-Clippings/2023/05/Creating user accounts Dendrite.md similarity index 100% rename from 00_Inbox/Clippings/2023/05/Creating user accounts Dendrite.md rename to 04_Archive/Inbox-Clippings/2023/05/Creating user accounts Dendrite.md diff --git a/00_Inbox/Clippings/2023/05/How to Set Up a Mail Server with PostfixAdmin on Debian 11.md b/04_Archive/Inbox-Clippings/2023/05/How to Set Up a Mail Server with PostfixAdmin on Debian 11.md similarity index 100% rename from 00_Inbox/Clippings/2023/05/How to Set Up a Mail Server with PostfixAdmin on Debian 11.md rename to 04_Archive/Inbox-Clippings/2023/05/How to Set Up a Mail Server with PostfixAdmin on Debian 11.md diff --git a/00_Inbox/Clippings/2023/05/N26-Tutorial-Mutou.md b/04_Archive/Inbox-Clippings/2023/05/N26-Tutorial-Mutou.md similarity index 100% rename from 00_Inbox/Clippings/2023/05/N26-Tutorial-Mutou.md rename to 04_Archive/Inbox-Clippings/2023/05/N26-Tutorial-Mutou.md diff --git a/00_Inbox/Clippings/2023/05/PostfixAmavisNew - Community Help Wiki.md b/04_Archive/Inbox-Clippings/2023/05/PostfixAmavisNew - Community Help Wiki.md similarity index 100% rename from 00_Inbox/Clippings/2023/05/PostfixAmavisNew - Community Help Wiki.md rename to 04_Archive/Inbox-Clippings/2023/05/PostfixAmavisNew - Community Help Wiki.md diff --git a/00_Inbox/Clippings/2023/05/Setting Up Amavis and ClamAV on Ubuntu Mail Server - LinuxBabe.md b/04_Archive/Inbox-Clippings/2023/05/Setting Up Amavis and ClamAV on Ubuntu Mail Server - LinuxBabe.md similarity index 100% rename from 00_Inbox/Clippings/2023/05/Setting Up Amavis and ClamAV on Ubuntu Mail Server - LinuxBabe.md rename to 04_Archive/Inbox-Clippings/2023/05/Setting Up Amavis and ClamAV on Ubuntu Mail Server - LinuxBabe.md diff --git a/00_Inbox/Clippings/2023/06/50 AIChatGPT Prompts for Fitness Professionals - IDEA Health & Fitness Association.md b/04_Archive/Inbox-Clippings/2023/06/50 AIChatGPT Prompts for Fitness Professionals - IDEA Health & Fitness Association.md similarity index 100% rename from 00_Inbox/Clippings/2023/06/50 AIChatGPT Prompts for Fitness Professionals - IDEA Health & Fitness Association.md rename to 04_Archive/Inbox-Clippings/2023/06/50 AIChatGPT Prompts for Fitness Professionals - IDEA Health & Fitness Association.md diff --git a/00_Inbox/Clippings/2023/06/8 Best ChatGPT Uses for Cyclists Next Level Cycling AI Assistant.md b/04_Archive/Inbox-Clippings/2023/06/8 Best ChatGPT Uses for Cyclists Next Level Cycling AI Assistant.md similarity index 100% rename from 00_Inbox/Clippings/2023/06/8 Best ChatGPT Uses for Cyclists Next Level Cycling AI Assistant.md rename to 04_Archive/Inbox-Clippings/2023/06/8 Best ChatGPT Uses for Cyclists Next Level Cycling AI Assistant.md diff --git a/00_Inbox/Clippings/2023/06/API Design Practice. A practical guide to API QA and the… by TRGoodwill API Central May, 2023 Medium.md b/04_Archive/Inbox-Clippings/2023/06/API Design Practice. A practical guide to API QA and the… by TRGoodwill API Central May, 2023 Medium.md similarity index 100% rename from 00_Inbox/Clippings/2023/06/API Design Practice. A practical guide to API QA and the… by TRGoodwill API Central May, 2023 Medium.md rename to 04_Archive/Inbox-Clippings/2023/06/API Design Practice. A practical guide to API QA and the… by TRGoodwill API Central May, 2023 Medium.md diff --git a/00_Inbox/Clippings/2023/06/Building Your Own DevSecOps Knowledge Base with OpenAI, LangChain, and LlamaIndex by Wenqi Glantz May, 2023 Better Programming.md b/04_Archive/Inbox-Clippings/2023/06/Building Your Own DevSecOps Knowledge Base with OpenAI, LangChain, and LlamaIndex by Wenqi Glantz May, 2023 Better Programming.md similarity index 100% rename from 00_Inbox/Clippings/2023/06/Building Your Own DevSecOps Knowledge Base with OpenAI, LangChain, and LlamaIndex by Wenqi Glantz May, 2023 Better Programming.md rename to 04_Archive/Inbox-Clippings/2023/06/Building Your Own DevSecOps Knowledge Base with OpenAI, LangChain, and LlamaIndex by Wenqi Glantz May, 2023 Better Programming.md diff --git a/00_Inbox/Clippings/2023/06/How we built the Tinder API Gateway by Tinder Tinder Tech Blog Medium.md b/04_Archive/Inbox-Clippings/2023/06/How we built the Tinder API Gateway by Tinder Tinder Tech Blog Medium.md similarity index 100% rename from 00_Inbox/Clippings/2023/06/How we built the Tinder API Gateway by Tinder Tinder Tech Blog Medium.md rename to 04_Archive/Inbox-Clippings/2023/06/How we built the Tinder API Gateway by Tinder Tinder Tech Blog Medium.md diff --git a/00_Inbox/Clippings/2023/08/Unblockit - Proxies to access your favourite blocked sites.md b/04_Archive/Inbox-Clippings/2023/08/Unblockit - Proxies to access your favourite blocked sites.md similarity index 100% rename from 00_Inbox/Clippings/2023/08/Unblockit - Proxies to access your favourite blocked sites.md rename to 04_Archive/Inbox-Clippings/2023/08/Unblockit - Proxies to access your favourite blocked sites.md diff --git a/00_Inbox/Clippings/2023/09/SQL.md b/04_Archive/Inbox-Clippings/2023/09/SQL.md similarity index 100% rename from 00_Inbox/Clippings/2023/09/SQL.md rename to 04_Archive/Inbox-Clippings/2023/09/SQL.md diff --git a/00_Inbox/Clippings/2023/10/UBNT-EdgeRouter-XImplementationPPPoE-IPv6-Minad.md b/04_Archive/Inbox-Clippings/2023/10/UBNT-EdgeRouter-XImplementationPPPoE-IPv6-Minad.md similarity index 100% rename from 00_Inbox/Clippings/2023/10/UBNT-EdgeRouter-XImplementationPPPoE-IPv6-Minad.md rename to 04_Archive/Inbox-Clippings/2023/10/UBNT-EdgeRouter-XImplementationPPPoE-IPv6-Minad.md diff --git a/00_Inbox/Clippings/2024/02/OpenDKIM on Postfix with virtual domains [rigacci.org].md b/04_Archive/Inbox-Clippings/2024/02/OpenDKIM on Postfix with virtual domains [rigacci.org].md similarity index 100% rename from 00_Inbox/Clippings/2024/02/OpenDKIM on Postfix with virtual domains [rigacci.org].md rename to 04_Archive/Inbox-Clippings/2024/02/OpenDKIM on Postfix with virtual domains [rigacci.org].md diff --git a/00_Inbox/Clippings/2024/05/.md b/04_Archive/Inbox-Clippings/2024/05/.md similarity index 100% rename from 00_Inbox/Clippings/2024/05/.md rename to 04_Archive/Inbox-Clippings/2024/05/.md diff --git a/00_Inbox/Clippings/2024/05/Fedora Root on ZFS — OpenZFS documentation.md b/04_Archive/Inbox-Clippings/2024/05/Fedora Root on ZFS — OpenZFS documentation.md similarity index 100% rename from 00_Inbox/Clippings/2024/05/Fedora Root on ZFS — OpenZFS documentation.md rename to 04_Archive/Inbox-Clippings/2024/05/Fedora Root on ZFS — OpenZFS documentation.md diff --git a/00_Inbox/Clippings/2024/05/Overview — ZFSBootMenu 2.3.0 documentation.md b/04_Archive/Inbox-Clippings/2024/05/Overview — ZFSBootMenu 2.3.0 documentation.md similarity index 100% rename from 00_Inbox/Clippings/2024/05/Overview — ZFSBootMenu 2.3.0 documentation.md rename to 04_Archive/Inbox-Clippings/2024/05/Overview — ZFSBootMenu 2.3.0 documentation.md diff --git a/00_Inbox/Clippings/2024/05/Reliably boot Fedora with root on ZFS.md b/04_Archive/Inbox-Clippings/2024/05/Reliably boot Fedora with root on ZFS.md similarity index 100% rename from 00_Inbox/Clippings/2024/05/Reliably boot Fedora with root on ZFS.md rename to 04_Archive/Inbox-Clippings/2024/05/Reliably boot Fedora with root on ZFS.md diff --git a/00_Inbox/Clippings/2024/06/Comparison to alternatives — Meilisearch documentation.md b/04_Archive/Inbox-Clippings/2024/06/Comparison to alternatives — Meilisearch documentation.md similarity index 100% rename from 00_Inbox/Clippings/2024/06/Comparison to alternatives — Meilisearch documentation.md rename to 04_Archive/Inbox-Clippings/2024/06/Comparison to alternatives — Meilisearch documentation.md diff --git a/00_Inbox/Clippings/2024/06/The rEFInd Boot Manager Getting rEFInd.md b/04_Archive/Inbox-Clippings/2024/06/The rEFInd Boot Manager Getting rEFInd.md similarity index 100% rename from 00_Inbox/Clippings/2024/06/The rEFInd Boot Manager Getting rEFInd.md rename to 04_Archive/Inbox-Clippings/2024/06/The rEFInd Boot Manager Getting rEFInd.md diff --git a/00_Inbox/Clippings/2024/06/VPN-Recommendations-VPN-ReviewsSSRV2rayTrojan-(.md b/04_Archive/Inbox-Clippings/2024/06/VPN-Recommendations-VPN-ReviewsSSRV2rayTrojan-(.md similarity index 100% rename from 00_Inbox/Clippings/2024/06/VPN-Recommendations-VPN-ReviewsSSRV2rayTrojan-(.md rename to 04_Archive/Inbox-Clippings/2024/06/VPN-Recommendations-VPN-ReviewsSSRV2rayTrojan-(.md diff --git a/00_Inbox/Clippings/2024/07/AFTN-SITAMessage-Intro-CSDNBlog.md b/04_Archive/Inbox-Clippings/2024/07/AFTN-SITAMessage-Intro-CSDNBlog.md similarity index 100% rename from 00_Inbox/Clippings/2024/07/AFTN-SITAMessage-Intro-CSDNBlog.md rename to 04_Archive/Inbox-Clippings/2024/07/AFTN-SITAMessage-Intro-CSDNBlog.md diff --git a/00_Inbox/Clippings/2024/07/Getting started.md b/04_Archive/Inbox-Clippings/2024/07/Getting started.md similarity index 100% rename from 00_Inbox/Clippings/2024/07/Getting started.md rename to 04_Archive/Inbox-Clippings/2024/07/Getting started.md diff --git a/00_Inbox/Clippings/2024/07/How to Open Port for a Specific IP Address in Firewalld.md b/04_Archive/Inbox-Clippings/2024/07/How to Open Port for a Specific IP Address in Firewalld.md similarity index 100% rename from 00_Inbox/Clippings/2024/07/How to Open Port for a Specific IP Address in Firewalld.md rename to 04_Archive/Inbox-Clippings/2024/07/How to Open Port for a Specific IP Address in Firewalld.md diff --git a/00_Inbox/Clippings/2024/07/How to build a fullstack application with Go, Templ, and HTMX - DEV Community.md b/04_Archive/Inbox-Clippings/2024/07/How to build a fullstack application with Go, Templ, and HTMX - DEV Community.md similarity index 100% rename from 00_Inbox/Clippings/2024/07/How to build a fullstack application with Go, Templ, and HTMX - DEV Community.md rename to 04_Archive/Inbox-Clippings/2024/07/How to build a fullstack application with Go, Templ, and HTMX - DEV Community.md diff --git a/00_Inbox/Clippings/2024/07/Implementing Graceful Shutdown in Go RudderStack Blog.md b/04_Archive/Inbox-Clippings/2024/07/Implementing Graceful Shutdown in Go RudderStack Blog.md similarity index 100% rename from 00_Inbox/Clippings/2024/07/Implementing Graceful Shutdown in Go RudderStack Blog.md rename to 04_Archive/Inbox-Clippings/2024/07/Implementing Graceful Shutdown in Go RudderStack Blog.md diff --git a/00_Inbox/Clippings/2024/07/Live website updates with Go, SSE, and htmx.md b/04_Archive/Inbox-Clippings/2024/07/Live website updates with Go, SSE, and htmx.md similarity index 100% rename from 00_Inbox/Clippings/2024/07/Live website updates with Go, SSE, and htmx.md rename to 04_Archive/Inbox-Clippings/2024/07/Live website updates with Go, SSE, and htmx.md diff --git a/00_Inbox/Clippings/2024/07/The Go libraries that never failed us 22 libraries you need to know.md b/04_Archive/Inbox-Clippings/2024/07/The Go libraries that never failed us 22 libraries you need to know.md similarity index 100% rename from 00_Inbox/Clippings/2024/07/The Go libraries that never failed us 22 libraries you need to know.md rename to 04_Archive/Inbox-Clippings/2024/07/The Go libraries that never failed us 22 libraries you need to know.md diff --git a/00_Inbox/Clippings/2024/08/CORS the ultimate guide Devsecurely.md b/04_Archive/Inbox-Clippings/2024/08/CORS the ultimate guide Devsecurely.md similarity index 100% rename from 00_Inbox/Clippings/2024/08/CORS the ultimate guide Devsecurely.md rename to 04_Archive/Inbox-Clippings/2024/08/CORS the ultimate guide Devsecurely.md diff --git a/00_Inbox/Clippings/2024/08/DockerHub-China-Mirror-List-2024-6-18-Tested-V2.md b/04_Archive/Inbox-Clippings/2024/08/DockerHub-China-Mirror-List-2024-6-18-Tested-V2.md similarity index 100% rename from 00_Inbox/Clippings/2024/08/DockerHub-China-Mirror-List-2024-6-18-Tested-V2.md rename to 04_Archive/Inbox-Clippings/2024/08/DockerHub-China-Mirror-List-2024-6-18-Tested-V2.md diff --git a/00_Inbox/Clippings/2024/08/Documenting Software Architectures - by Dr Milan Milanović.md b/04_Archive/Inbox-Clippings/2024/08/Documenting Software Architectures - by Dr Milan Milanović.md similarity index 100% rename from 00_Inbox/Clippings/2024/08/Documenting Software Architectures - by Dr Milan Milanović.md rename to 04_Archive/Inbox-Clippings/2024/08/Documenting Software Architectures - by Dr Milan Milanović.md diff --git a/00_Inbox/Clippings/2024/08/My Obsidian Note-Taking Workflow ssp.sh.md b/04_Archive/Inbox-Clippings/2024/08/My Obsidian Note-Taking Workflow ssp.sh.md similarity index 100% rename from 00_Inbox/Clippings/2024/08/My Obsidian Note-Taking Workflow ssp.sh.md rename to 04_Archive/Inbox-Clippings/2024/08/My Obsidian Note-Taking Workflow ssp.sh.md diff --git a/00_Inbox/Clippings/2024/09/Config-Instance-DM-DatabaseTech-Docs.md b/04_Archive/Inbox-Clippings/2024/09/Config-Instance-DM-DatabaseTech-Docs.md similarity index 100% rename from 00_Inbox/Clippings/2024/09/Config-Instance-DM-DatabaseTech-Docs.md rename to 04_Archive/Inbox-Clippings/2024/09/Config-Instance-DM-DatabaseTech-Docs.md diff --git a/00_Inbox/Clippings/2024/09/DB-Installation-DM-DatabaseTech-Docs.md b/04_Archive/Inbox-Clippings/2024/09/DB-Installation-DM-DatabaseTech-Docs.md similarity index 100% rename from 00_Inbox/Clippings/2024/09/DB-Installation-DM-DatabaseTech-Docs.md rename to 04_Archive/Inbox-Clippings/2024/09/DB-Installation-DM-DatabaseTech-Docs.md diff --git a/00_Inbox/Clippings/2024/09/DockerInstallation-DM-DatabaseTech-Docs.md b/04_Archive/Inbox-Clippings/2024/09/DockerInstallation-DM-DatabaseTech-Docs.md similarity index 100% rename from 00_Inbox/Clippings/2024/09/DockerInstallation-DM-DatabaseTech-Docs.md rename to 04_Archive/Inbox-Clippings/2024/09/DockerInstallation-DM-DatabaseTech-Docs.md diff --git a/00_Inbox/Clippings/2024/09/How to Upgrade Ubuntu from 20.04 to 22.04 (Step by Step).md b/04_Archive/Inbox-Clippings/2024/09/How to Upgrade Ubuntu from 20.04 to 22.04 (Step by Step).md similarity index 100% rename from 00_Inbox/Clippings/2024/09/How to Upgrade Ubuntu from 20.04 to 22.04 (Step by Step).md rename to 04_Archive/Inbox-Clippings/2024/09/How to Upgrade Ubuntu from 20.04 to 22.04 (Step by Step).md diff --git a/00_Inbox/Clippings/2024/09/KylinV10-arm64aarch64-Offline-Installationdocke.md b/04_Archive/Inbox-Clippings/2024/09/KylinV10-arm64aarch64-Offline-Installationdocke.md similarity index 100% rename from 00_Inbox/Clippings/2024/09/KylinV10-arm64aarch64-Offline-Installationdocke.md rename to 04_Archive/Inbox-Clippings/2024/09/KylinV10-arm64aarch64-Offline-Installationdocke.md diff --git a/00_Inbox/Clippings/2024/09/LinuxInstallationDM-Database-DM8-sowler-Blog.md b/04_Archive/Inbox-Clippings/2024/09/LinuxInstallationDM-Database-DM8-sowler-Blog.md similarity index 100% rename from 00_Inbox/Clippings/2024/09/LinuxInstallationDM-Database-DM8-sowler-Blog.md rename to 04_Archive/Inbox-Clippings/2024/09/LinuxInstallationDM-Database-DM8-sowler-Blog.md diff --git a/00_Inbox/Clippings/2024/09/OpenXPKI - The Open Source Trustcenter Solution.md b/04_Archive/Inbox-Clippings/2024/09/OpenXPKI - The Open Source Trustcenter Solution.md similarity index 100% rename from 00_Inbox/Clippings/2024/09/OpenXPKI - The Open Source Trustcenter Solution.md rename to 04_Archive/Inbox-Clippings/2024/09/OpenXPKI - The Open Source Trustcenter Solution.md diff --git a/00_Inbox/Clippings/2024/09/Pre-Installation-DM-DatabaseTech-Docs.md b/04_Archive/Inbox-Clippings/2024/09/Pre-Installation-DM-DatabaseTech-Docs.md similarity index 100% rename from 00_Inbox/Clippings/2024/09/Pre-Installation-DM-DatabaseTech-Docs.md rename to 04_Archive/Inbox-Clippings/2024/09/Pre-Installation-DM-DatabaseTech-Docs.md diff --git a/00_Inbox/Clippings/2024/09/Setting Up Elasticsearch and Kibana Single-Node with Docker Compose by Karthik S Medium.md b/04_Archive/Inbox-Clippings/2024/09/Setting Up Elasticsearch and Kibana Single-Node with Docker Compose by Karthik S Medium.md similarity index 100% rename from 00_Inbox/Clippings/2024/09/Setting Up Elasticsearch and Kibana Single-Node with Docker Compose by Karthik S Medium.md rename to 04_Archive/Inbox-Clippings/2024/09/Setting Up Elasticsearch and Kibana Single-Node with Docker Compose by Karthik S Medium.md diff --git a/00_Inbox/Clippings/2024/09/Step-by-Step Guide Setting Up OpenXPKI for Secure Digital Certificates in Linux by Riski Ilyas Medium.md b/04_Archive/Inbox-Clippings/2024/09/Step-by-Step Guide Setting Up OpenXPKI for Secure Digital Certificates in Linux by Riski Ilyas Medium.md similarity index 100% rename from 00_Inbox/Clippings/2024/09/Step-by-Step Guide Setting Up OpenXPKI for Secure Digital Certificates in Linux by Riski Ilyas Medium.md rename to 04_Archive/Inbox-Clippings/2024/09/Step-by-Step Guide Setting Up OpenXPKI for Secure Digital Certificates in Linux by Riski Ilyas Medium.md diff --git a/00_Inbox/Clippings/2024/09/elasticdumpelasticsearch-dump - Docker Image Docker Hub.md b/04_Archive/Inbox-Clippings/2024/09/elasticdumpelasticsearch-dump - Docker Image Docker Hub.md similarity index 100% rename from 00_Inbox/Clippings/2024/09/elasticdumpelasticsearch-dump - Docker Image Docker Hub.md rename to 04_Archive/Inbox-Clippings/2024/09/elasticdumpelasticsearch-dump - Docker Image Docker Hub.md diff --git a/00_Inbox/Clippings/2024/10/Event-driven architecture on the modern stack of Java technologies · Roman Kudryashov's tech blog.md b/04_Archive/Inbox-Clippings/2024/10/Event-driven architecture on the modern stack of Java technologies · Roman Kudryashov's tech blog.md similarity index 100% rename from 00_Inbox/Clippings/2024/10/Event-driven architecture on the modern stack of Java technologies · Roman Kudryashov's tech blog.md rename to 04_Archive/Inbox-Clippings/2024/10/Event-driven architecture on the modern stack of Java technologies · Roman Kudryashov's tech blog.md diff --git a/00_Inbox/Clippings/2024/10/How to Flush DNS on Mac – MacOS Clear DNS Cache.md b/04_Archive/Inbox-Clippings/2024/10/How to Flush DNS on Mac – MacOS Clear DNS Cache.md similarity index 100% rename from 00_Inbox/Clippings/2024/10/How to Flush DNS on Mac – MacOS Clear DNS Cache.md rename to 04_Archive/Inbox-Clippings/2024/10/How to Flush DNS on Mac – MacOS Clear DNS Cache.md diff --git a/00_Inbox/Clippings/2024/10/My-nix-Learning-Experience-Installation-Packagi.md b/04_Archive/Inbox-Clippings/2024/10/My-nix-Learning-Experience-Installation-Packagi.md similarity index 100% rename from 00_Inbox/Clippings/2024/10/My-nix-Learning-Experience-Installation-Packagi.md rename to 04_Archive/Inbox-Clippings/2024/10/My-nix-Learning-Experience-Installation-Packagi.md diff --git a/00_Inbox/Clippings/2024/10/MySQL community audit logging - CyberSecThreat.md b/04_Archive/Inbox-Clippings/2024/10/MySQL community audit logging - CyberSecThreat.md similarity index 100% rename from 00_Inbox/Clippings/2024/10/MySQL community audit logging - CyberSecThreat.md rename to 04_Archive/Inbox-Clippings/2024/10/MySQL community audit logging - CyberSecThreat.md diff --git a/00_Inbox/Clippings/2024/10/Permission-Validation-Nacos-Official.md b/04_Archive/Inbox-Clippings/2024/10/Permission-Validation-Nacos-Official.md similarity index 100% rename from 00_Inbox/Clippings/2024/10/Permission-Validation-Nacos-Official.md rename to 04_Archive/Inbox-Clippings/2024/10/Permission-Validation-Nacos-Official.md diff --git a/00_Inbox/Clippings/2024/11/2023/03/8-SBOM-CN-SEC.md b/04_Archive/Inbox-Clippings/2024/11/2023/03/8-SBOM-CN-SEC.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/03/8-SBOM-CN-SEC.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/03/8-SBOM-CN-SEC.md diff --git a/00_Inbox/Clippings/2024/11/2023/03/AboutSBOM-SBOM-Seal-Blog.md b/04_Archive/Inbox-Clippings/2024/11/2023/03/AboutSBOM-SBOM-Seal-Blog.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/03/AboutSBOM-SBOM-Seal-Blog.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/03/AboutSBOM-SBOM-Seal-Blog.md diff --git a/00_Inbox/Clippings/2024/11/2023/03/AboutSBOM-SBOM.md b/04_Archive/Inbox-Clippings/2024/11/2023/03/AboutSBOM-SBOM.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/03/AboutSBOM-SBOM.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/03/AboutSBOM-SBOM.md diff --git a/00_Inbox/Clippings/2024/11/2023/03/Adding and trusting a Certificate Authority (CA) in Fedora – Antonio Maradiaga – Collection of things I'm interested in working on.md b/04_Archive/Inbox-Clippings/2024/11/2023/03/Adding and trusting a Certificate Authority (CA) in Fedora – Antonio Maradiaga – Collection of things I'm interested in working on.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/03/Adding and trusting a Certificate Authority (CA) in Fedora – Antonio Maradiaga – Collection of things I'm interested in working on.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/03/Adding and trusting a Certificate Authority (CA) in Fedora – Antonio Maradiaga – Collection of things I'm interested in working on.md diff --git a/00_Inbox/Clippings/2024/11/2023/03/DailySync · GitLab.md b/04_Archive/Inbox-Clippings/2024/11/2023/03/DailySync · GitLab.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/03/DailySync · GitLab.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/03/DailySync · GitLab.md diff --git a/00_Inbox/Clippings/2024/11/2023/03/How do I install a root certificate - Ask Ubuntu.md b/04_Archive/Inbox-Clippings/2024/11/2023/03/How do I install a root certificate - Ask Ubuntu.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/03/How do I install a root certificate - Ask Ubuntu.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/03/How do I install a root certificate - Ask Ubuntu.md diff --git a/00_Inbox/Clippings/2024/11/2023/03/How to Install AMD OpenCL Mining Drivers on Debian 11 Bullseye.md b/04_Archive/Inbox-Clippings/2024/11/2023/03/How to Install AMD OpenCL Mining Drivers on Debian 11 Bullseye.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/03/How to Install AMD OpenCL Mining Drivers on Debian 11 Bullseye.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/03/How to Install AMD OpenCL Mining Drivers on Debian 11 Bullseye.md diff --git a/00_Inbox/Clippings/2024/11/2023/03/How-to-SBOM-SBOM-Implementation-_.md b/04_Archive/Inbox-Clippings/2024/11/2023/03/How-to-SBOM-SBOM-Implementation-_.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/03/How-to-SBOM-SBOM-Implementation-_.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/03/How-to-SBOM-SBOM-Implementation-_.md diff --git a/00_Inbox/Clippings/2024/11/2023/03/How-to-SBOM.md b/04_Archive/Inbox-Clippings/2024/11/2023/03/How-to-SBOM.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/03/How-to-SBOM.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/03/How-to-SBOM.md diff --git a/00_Inbox/Clippings/2024/11/2023/03/HowTosLDAP authentication for Atlassian JIRA using FreeIPA - FreeIPA.md b/04_Archive/Inbox-Clippings/2024/11/2023/03/HowTosLDAP authentication for Atlassian JIRA using FreeIPA - FreeIPA.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/03/HowTosLDAP authentication for Atlassian JIRA using FreeIPA - FreeIPA.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/03/HowTosLDAP authentication for Atlassian JIRA using FreeIPA - FreeIPA.md diff --git a/00_Inbox/Clippings/2024/11/2023/03/Jupyter kernels · jupyterjupyter Wiki.md b/04_Archive/Inbox-Clippings/2024/11/2023/03/Jupyter kernels · jupyterjupyter Wiki.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/03/Jupyter kernels · jupyterjupyter Wiki.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/03/Jupyter kernels · jupyterjupyter Wiki.md diff --git a/00_Inbox/Clippings/2024/11/2023/03/Lenovo-Support.md b/04_Archive/Inbox-Clippings/2024/11/2023/03/Lenovo-Support.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/03/Lenovo-Support.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/03/Lenovo-Support.md diff --git a/00_Inbox/Clippings/2024/11/2023/03/Openwrt-Bypass-Gateway-Ultimate-Setup-Debunking.md b/04_Archive/Inbox-Clippings/2024/11/2023/03/Openwrt-Bypass-Gateway-Ultimate-Setup-Debunking.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/03/Openwrt-Bypass-Gateway-Ultimate-Setup-Debunking.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/03/Openwrt-Bypass-Gateway-Ultimate-Setup-Debunking.md diff --git a/00_Inbox/Clippings/2024/11/2023/03/Prerequisites Tauri Apps.md b/04_Archive/Inbox-Clippings/2024/11/2023/03/Prerequisites Tauri Apps.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/03/Prerequisites Tauri Apps.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/03/Prerequisites Tauri Apps.md diff --git a/00_Inbox/Clippings/2024/11/2023/03/Run an OpenWRT VM on Proxmox VE.md b/04_Archive/Inbox-Clippings/2024/11/2023/03/Run an OpenWRT VM on Proxmox VE.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/03/Run an OpenWRT VM on Proxmox VE.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/03/Run an OpenWRT VM on Proxmox VE.md diff --git a/00_Inbox/Clippings/2024/11/2023/03/SSL with self signed certificate - Drone Support - Harness Community.md b/04_Archive/Inbox-Clippings/2024/11/2023/03/SSL with self signed certificate - Drone Support - Harness Community.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/03/SSL with self signed certificate - Drone Support - Harness Community.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/03/SSL with self signed certificate - Drone Support - Harness Community.md diff --git a/00_Inbox/Clippings/2024/11/2023/03/Scope and Shadowing - Rust By Example.md b/04_Archive/Inbox-Clippings/2024/11/2023/03/Scope and Shadowing - Rust By Example.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/03/Scope and Shadowing - Rust By Example.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/03/Scope and Shadowing - Rust By Example.md diff --git a/00_Inbox/Clippings/2024/11/2023/03/Software-Vendor-Handbook-SBOM-Interpretation-Fr.md b/04_Archive/Inbox-Clippings/2024/11/2023/03/Software-Vendor-Handbook-SBOM-Interpretation-Fr.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/03/Software-Vendor-Handbook-SBOM-Interpretation-Fr.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/03/Software-Vendor-Handbook-SBOM-Interpretation-Fr.md diff --git a/00_Inbox/Clippings/2024/11/2023/03/The ultimate guide to SBOMs GitLab.md b/04_Archive/Inbox-Clippings/2024/11/2023/03/The ultimate guide to SBOMs GitLab.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/03/The ultimate guide to SBOMs GitLab.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/03/The ultimate guide to SBOMs GitLab.md diff --git a/00_Inbox/Clippings/2024/11/2023/03/What-isSBOM-(SBOM)-Network-Security-AISEC.md b/04_Archive/Inbox-Clippings/2024/11/2023/03/What-isSBOM-(SBOM)-Network-Security-AISEC.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/03/What-isSBOM-(SBOM)-Network-Security-AISEC.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/03/What-isSBOM-(SBOM)-Network-Security-AISEC.md diff --git a/00_Inbox/Clippings/2024/11/2023/03/honven-VPN-Recommendations.md b/04_Archive/Inbox-Clippings/2024/11/2023/03/honven-VPN-Recommendations.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/03/honven-VPN-Recommendations.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/03/honven-VPN-Recommendations.md diff --git a/00_Inbox/Clippings/2024/11/2023/03/podmanrootless_tutorial.md at main · containerspodman.md b/04_Archive/Inbox-Clippings/2024/11/2023/03/podmanrootless_tutorial.md at main · containerspodman.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/03/podmanrootless_tutorial.md at main · containerspodman.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/03/podmanrootless_tutorial.md at main · containerspodman.md diff --git a/00_Inbox/Clippings/2024/11/2023/04/5 Ways to Empty or Delete a Large File Content in Linux.md b/04_Archive/Inbox-Clippings/2024/11/2023/04/5 Ways to Empty or Delete a Large File Content in Linux.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/04/5 Ways to Empty or Delete a Large File Content in Linux.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/04/5 Ways to Empty or Delete a Large File Content in Linux.md diff --git a/00_Inbox/Clippings/2024/11/2023/04/A half-hour to learn Rust.md b/04_Archive/Inbox-Clippings/2024/11/2023/04/A half-hour to learn Rust.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/04/A half-hour to learn Rust.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/04/A half-hour to learn Rust.md diff --git a/00_Inbox/Clippings/2024/11/2023/04/Base64 Encode and Decode From Command Line.md b/04_Archive/Inbox-Clippings/2024/11/2023/04/Base64 Encode and Decode From Command Line.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/04/Base64 Encode and Decode From Command Line.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/04/Base64 Encode and Decode From Command Line.md diff --git a/00_Inbox/Clippings/2024/11/2023/04/Best 100+ Stable Diffusion Prompts The Most Beautiful AI Text-to-Image Prompts Metaverse Post.md b/04_Archive/Inbox-Clippings/2024/11/2023/04/Best 100+ Stable Diffusion Prompts The Most Beautiful AI Text-to-Image Prompts Metaverse Post.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/04/Best 100+ Stable Diffusion Prompts The Most Beautiful AI Text-to-Image Prompts Metaverse Post.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/04/Best 100+ Stable Diffusion Prompts The Most Beautiful AI Text-to-Image Prompts Metaverse Post.md diff --git a/00_Inbox/Clippings/2024/11/2023/04/ChatGPT-Plus-How-to-10.md b/04_Archive/Inbox-Clippings/2024/11/2023/04/ChatGPT-Plus-How-to-10.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/04/ChatGPT-Plus-How-to-10.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/04/ChatGPT-Plus-How-to-10.md diff --git a/00_Inbox/Clippings/2024/11/2023/04/Chatgpt4China-Application-Chatgpt3.5China-Free1.md b/04_Archive/Inbox-Clippings/2024/11/2023/04/Chatgpt4China-Application-Chatgpt3.5China-Free1.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/04/Chatgpt4China-Application-Chatgpt3.5China-Free1.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/04/Chatgpt4China-Application-Chatgpt3.5China-Free1.md diff --git a/00_Inbox/Clippings/2024/11/2023/04/Creating user, database and adding access on PostgreSQL by Arnav Gupta Coding Blocks Medium.md b/04_Archive/Inbox-Clippings/2024/11/2023/04/Creating user, database and adding access on PostgreSQL by Arnav Gupta Coding Blocks Medium.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/04/Creating user, database and adding access on PostgreSQL by Arnav Gupta Coding Blocks Medium.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/04/Creating user, database and adding access on PostgreSQL by Arnav Gupta Coding Blocks Medium.md diff --git a/00_Inbox/Clippings/2024/11/2023/04/DNS alias mode · acmesh-officialacme.sh Wiki.md b/04_Archive/Inbox-Clippings/2024/11/2023/04/DNS alias mode · acmesh-officialacme.sh Wiki.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/04/DNS alias mode · acmesh-officialacme.sh Wiki.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/04/DNS alias mode · acmesh-officialacme.sh Wiki.md diff --git a/00_Inbox/Clippings/2024/11/2023/04/Error Handling in Rust - Andrew Gallant's Blog.md b/04_Archive/Inbox-Clippings/2024/11/2023/04/Error Handling in Rust - Andrew Gallant's Blog.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/04/Error Handling in Rust - Andrew Gallant's Blog.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/04/Error Handling in Rust - Andrew Gallant's Blog.md diff --git a/00_Inbox/Clippings/2024/11/2023/04/Future Tools - Find The Exact AI Tool For Your Needs.md b/04_Archive/Inbox-Clippings/2024/11/2023/04/Future Tools - Find The Exact AI Tool For Your Needs.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/04/Future Tools - Find The Exact AI Tool For Your Needs.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/04/Future Tools - Find The Exact AI Tool For Your Needs.md diff --git a/00_Inbox/Clippings/2024/11/2023/04/How To Acquire a Let's Encrypt Certificate Using DNS Validation with acme-dns-certbot on Ubuntu 18.04 DigitalOcean.md b/04_Archive/Inbox-Clippings/2024/11/2023/04/How To Acquire a Let's Encrypt Certificate Using DNS Validation with acme-dns-certbot on Ubuntu 18.04 DigitalOcean.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/04/How To Acquire a Let's Encrypt Certificate Using DNS Validation with acme-dns-certbot on Ubuntu 18.04 DigitalOcean.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/04/How To Acquire a Let's Encrypt Certificate Using DNS Validation with acme-dns-certbot on Ubuntu 18.04 DigitalOcean.md diff --git a/00_Inbox/Clippings/2024/11/2023/04/How to Install ROCm.md b/04_Archive/Inbox-Clippings/2024/11/2023/04/How to Install ROCm.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/04/How to Install ROCm.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/04/How to Install ROCm.md diff --git a/00_Inbox/Clippings/2024/11/2023/04/How to install PostgreSQL on Debian 11.md b/04_Archive/Inbox-Clippings/2024/11/2023/04/How to install PostgreSQL on Debian 11.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/04/How to install PostgreSQL on Debian 11.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/04/How to install PostgreSQL on Debian 11.md diff --git a/00_Inbox/Clippings/2024/11/2023/04/How to install and run bots for the Matrix network – tmplab.md b/04_Archive/Inbox-Clippings/2024/11/2023/04/How to install and run bots for the Matrix network – tmplab.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/04/How to install and run bots for the Matrix network – tmplab.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/04/How to install and run bots for the Matrix network – tmplab.md diff --git a/00_Inbox/Clippings/2024/11/2023/04/How to setup your OTP appliance with privacyIDEA.md b/04_Archive/Inbox-Clippings/2024/11/2023/04/How to setup your OTP appliance with privacyIDEA.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/04/How to setup your OTP appliance with privacyIDEA.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/04/How to setup your OTP appliance with privacyIDEA.md diff --git a/00_Inbox/Clippings/2024/11/2023/04/Install and Run on AMD GPUs · AUTOMATIC1111stable-diffusion-webui Wiki.md b/04_Archive/Inbox-Clippings/2024/11/2023/04/Install and Run on AMD GPUs · AUTOMATIC1111stable-diffusion-webui Wiki.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/04/Install and Run on AMD GPUs · AUTOMATIC1111stable-diffusion-webui Wiki.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/04/Install and Run on AMD GPUs · AUTOMATIC1111stable-diffusion-webui Wiki.md diff --git a/00_Inbox/Clippings/2024/11/2023/04/Installation - Docs - Appwrite.md b/04_Archive/Inbox-Clippings/2024/11/2023/04/Installation - Docs - Appwrite.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/04/Installation - Docs - Appwrite.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/04/Installation - Docs - Appwrite.md diff --git a/00_Inbox/Clippings/2024/11/2023/04/Introduction Hasura Backend Plus.md b/04_Archive/Inbox-Clippings/2024/11/2023/04/Introduction Hasura Backend Plus.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/04/Introduction Hasura Backend Plus.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/04/Introduction Hasura Backend Plus.md diff --git a/00_Inbox/Clippings/2024/11/2023/04/Introduction - Learning Rust With Entirely Too Many Linked Lists.md b/04_Archive/Inbox-Clippings/2024/11/2023/04/Introduction - Learning Rust With Entirely Too Many Linked Lists.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/04/Introduction - Learning Rust With Entirely Too Many Linked Lists.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/04/Introduction - Learning Rust With Entirely Too Many Linked Lists.md diff --git a/00_Inbox/Clippings/2024/11/2023/04/Introduction - Rust and WebAssembly.md b/04_Archive/Inbox-Clippings/2024/11/2023/04/Introduction - Rust and WebAssembly.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/04/Introduction - Rust and WebAssembly.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/04/Introduction - Rust and WebAssembly.md diff --git a/00_Inbox/Clippings/2024/11/2023/04/Learn Rust in Y Minutes.md b/04_Archive/Inbox-Clippings/2024/11/2023/04/Learn Rust in Y Minutes.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/04/Learn Rust in Y Minutes.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/04/Learn Rust in Y Minutes.md diff --git a/00_Inbox/Clippings/2024/11/2023/04/Logto.md b/04_Archive/Inbox-Clippings/2024/11/2023/04/Logto.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/04/Logto.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/04/Logto.md diff --git a/00_Inbox/Clippings/2024/11/2023/04/MistGPU.md b/04_Archive/Inbox-Clippings/2024/11/2023/04/MistGPU.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/04/MistGPU.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/04/MistGPU.md diff --git a/00_Inbox/Clippings/2024/11/2023/04/Most Useful ChatGPT Prompts.md b/04_Archive/Inbox-Clippings/2024/11/2023/04/Most Useful ChatGPT Prompts.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/04/Most Useful ChatGPT Prompts.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/04/Most Useful ChatGPT Prompts.md diff --git a/00_Inbox/Clippings/2024/11/2023/04/PowerDNS pdnsutil cheat sheet - Makarainen.md b/04_Archive/Inbox-Clippings/2024/11/2023/04/PowerDNS pdnsutil cheat sheet - Makarainen.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/04/PowerDNS pdnsutil cheat sheet - Makarainen.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/04/PowerDNS pdnsutil cheat sheet - Makarainen.md diff --git a/00_Inbox/Clippings/2024/11/2023/04/Prerequisites.md b/04_Archive/Inbox-Clippings/2024/11/2023/04/Prerequisites.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/04/Prerequisites.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/04/Prerequisites.md diff --git a/00_Inbox/Clippings/2024/11/2023/04/Self hosted mail server – if then else.md b/04_Archive/Inbox-Clippings/2024/11/2023/04/Self hosted mail server – if then else.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/04/Self hosted mail server – if then else.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/04/Self hosted mail server – if then else.md diff --git a/00_Inbox/Clippings/2024/11/2023/04/Slurm Workload Manager - Overview.md b/04_Archive/Inbox-Clippings/2024/11/2023/04/Slurm Workload Manager - Overview.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/04/Slurm Workload Manager - Overview.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/04/Slurm Workload Manager - Overview.md diff --git a/00_Inbox/Clippings/2024/11/2023/04/Steamship Documentation.md b/04_Archive/Inbox-Clippings/2024/11/2023/04/Steamship Documentation.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/04/Steamship Documentation.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/04/Steamship Documentation.md diff --git a/00_Inbox/Clippings/2024/11/2023/04/TorantulinoAuto-GPT An experimental open-source attempt to make GPT-4 fully autonomous..md b/04_Archive/Inbox-Clippings/2024/11/2023/04/TorantulinoAuto-GPT An experimental open-source attempt to make GPT-4 fully autonomous..md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/04/TorantulinoAuto-GPT An experimental open-source attempt to make GPT-4 fully autonomous..md rename to 04_Archive/Inbox-Clippings/2024/11/2023/04/TorantulinoAuto-GPT An experimental open-source attempt to make GPT-4 fully autonomous..md diff --git a/00_Inbox/Clippings/2024/11/2023/04/Usage of matrix-bot-sdk Matrix.org.md b/04_Archive/Inbox-Clippings/2024/11/2023/04/Usage of matrix-bot-sdk Matrix.org.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/04/Usage of matrix-bot-sdk Matrix.org.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/04/Usage of matrix-bot-sdk Matrix.org.md diff --git a/00_Inbox/Clippings/2024/11/2023/04/Using Let's Encrypt for internal servers - Philipp's Tech Blog.md b/04_Archive/Inbox-Clippings/2024/11/2023/04/Using Let's Encrypt for internal servers - Philipp's Tech Blog.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/04/Using Let's Encrypt for internal servers - Philipp's Tech Blog.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/04/Using Let's Encrypt for internal servers - Philipp's Tech Blog.md diff --git a/00_Inbox/Clippings/2024/11/2023/04/What is Prompt Engineering prmpts.AI.md b/04_Archive/Inbox-Clippings/2024/11/2023/04/What is Prompt Engineering prmpts.AI.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/04/What is Prompt Engineering prmpts.AI.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/04/What is Prompt Engineering prmpts.AI.md diff --git a/00_Inbox/Clippings/2024/11/2023/04/[Pdns-users] TCP Connection Thread died because of STL error Reading data Connection reset by peer.md b/04_Archive/Inbox-Clippings/2024/11/2023/04/[Pdns-users] TCP Connection Thread died because of STL error Reading data Connection reset by peer.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/04/[Pdns-users] TCP Connection Thread died because of STL error Reading data Connection reset by peer.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/04/[Pdns-users] TCP Connection Thread died because of STL error Reading data Connection reset by peer.md diff --git a/00_Inbox/Clippings/2024/11/2023/04/fast.ai - GPT 4 and the Uncharted Territories of Language.md b/04_Archive/Inbox-Clippings/2024/11/2023/04/fast.ai - GPT 4 and the Uncharted Territories of Language.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/04/fast.ai - GPT 4 and the Uncharted Territories of Language.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/04/fast.ai - GPT 4 and the Uncharted Territories of Language.md diff --git a/00_Inbox/Clippings/2024/11/2023/04/matrixgptmatrix-chatgpt-bot Talk to ChatGPT via any Matrix client!.md b/04_Archive/Inbox-Clippings/2024/11/2023/04/matrixgptmatrix-chatgpt-bot Talk to ChatGPT via any Matrix client!.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/04/matrixgptmatrix-chatgpt-bot Talk to ChatGPT via any Matrix client!.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/04/matrixgptmatrix-chatgpt-bot Talk to ChatGPT via any Matrix client!.md diff --git a/00_Inbox/Clippings/2024/11/2023/04/prmpts.AI - Prompt sandbox.md b/04_Archive/Inbox-Clippings/2024/11/2023/04/prmpts.AI - Prompt sandbox.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/04/prmpts.AI - Prompt sandbox.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/04/prmpts.AI - Prompt sandbox.md diff --git a/00_Inbox/Clippings/2024/11/2023/04/yarmodelightful-matrix A curated list of delightful Matrix resources, implementations and clients. - delightful-matrix - Codeberg.org.md b/04_Archive/Inbox-Clippings/2024/11/2023/04/yarmodelightful-matrix A curated list of delightful Matrix resources, implementations and clients. - delightful-matrix - Codeberg.org.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/04/yarmodelightful-matrix A curated list of delightful Matrix resources, implementations and clients. - delightful-matrix - Codeberg.org.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/04/yarmodelightful-matrix A curated list of delightful Matrix resources, implementations and clients. - delightful-matrix - Codeberg.org.md diff --git a/00_Inbox/Clippings/2024/11/2023/05/Creating user accounts Dendrite.md b/04_Archive/Inbox-Clippings/2024/11/2023/05/Creating user accounts Dendrite.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/05/Creating user accounts Dendrite.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/05/Creating user accounts Dendrite.md diff --git a/00_Inbox/Clippings/2024/11/2023/05/How to Set Up a Mail Server with PostfixAdmin on Debian 11.md b/04_Archive/Inbox-Clippings/2024/11/2023/05/How to Set Up a Mail Server with PostfixAdmin on Debian 11.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/05/How to Set Up a Mail Server with PostfixAdmin on Debian 11.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/05/How to Set Up a Mail Server with PostfixAdmin on Debian 11.md diff --git a/00_Inbox/Clippings/2024/11/2023/05/N26-Tutorial-Mutou.md b/04_Archive/Inbox-Clippings/2024/11/2023/05/N26-Tutorial-Mutou.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/05/N26-Tutorial-Mutou.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/05/N26-Tutorial-Mutou.md diff --git a/00_Inbox/Clippings/2024/11/2023/05/PostfixAmavisNew - Community Help Wiki.md b/04_Archive/Inbox-Clippings/2024/11/2023/05/PostfixAmavisNew - Community Help Wiki.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/05/PostfixAmavisNew - Community Help Wiki.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/05/PostfixAmavisNew - Community Help Wiki.md diff --git a/00_Inbox/Clippings/2024/11/2023/05/Setting Up Amavis and ClamAV on Ubuntu Mail Server - LinuxBabe.md b/04_Archive/Inbox-Clippings/2024/11/2023/05/Setting Up Amavis and ClamAV on Ubuntu Mail Server - LinuxBabe.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/05/Setting Up Amavis and ClamAV on Ubuntu Mail Server - LinuxBabe.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/05/Setting Up Amavis and ClamAV on Ubuntu Mail Server - LinuxBabe.md diff --git a/00_Inbox/Clippings/2024/11/2023/06/50 AIChatGPT Prompts for Fitness Professionals - IDEA Health & Fitness Association.md b/04_Archive/Inbox-Clippings/2024/11/2023/06/50 AIChatGPT Prompts for Fitness Professionals - IDEA Health & Fitness Association.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/06/50 AIChatGPT Prompts for Fitness Professionals - IDEA Health & Fitness Association.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/06/50 AIChatGPT Prompts for Fitness Professionals - IDEA Health & Fitness Association.md diff --git a/00_Inbox/Clippings/2024/11/2023/06/8 Best ChatGPT Uses for Cyclists Next Level Cycling AI Assistant.md b/04_Archive/Inbox-Clippings/2024/11/2023/06/8 Best ChatGPT Uses for Cyclists Next Level Cycling AI Assistant.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/06/8 Best ChatGPT Uses for Cyclists Next Level Cycling AI Assistant.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/06/8 Best ChatGPT Uses for Cyclists Next Level Cycling AI Assistant.md diff --git a/00_Inbox/Clippings/2024/11/2023/06/API Design Practice. A practical guide to API QA and the… by TRGoodwill API Central May, 2023 Medium.md b/04_Archive/Inbox-Clippings/2024/11/2023/06/API Design Practice. A practical guide to API QA and the… by TRGoodwill API Central May, 2023 Medium.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/06/API Design Practice. A practical guide to API QA and the… by TRGoodwill API Central May, 2023 Medium.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/06/API Design Practice. A practical guide to API QA and the… by TRGoodwill API Central May, 2023 Medium.md diff --git a/00_Inbox/Clippings/2024/11/2023/06/Building Your Own DevSecOps Knowledge Base with OpenAI, LangChain, and LlamaIndex by Wenqi Glantz May, 2023 Better Programming.md b/04_Archive/Inbox-Clippings/2024/11/2023/06/Building Your Own DevSecOps Knowledge Base with OpenAI, LangChain, and LlamaIndex by Wenqi Glantz May, 2023 Better Programming.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/06/Building Your Own DevSecOps Knowledge Base with OpenAI, LangChain, and LlamaIndex by Wenqi Glantz May, 2023 Better Programming.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/06/Building Your Own DevSecOps Knowledge Base with OpenAI, LangChain, and LlamaIndex by Wenqi Glantz May, 2023 Better Programming.md diff --git a/00_Inbox/Clippings/2024/11/2023/06/How we built the Tinder API Gateway by Tinder Tinder Tech Blog Medium.md b/04_Archive/Inbox-Clippings/2024/11/2023/06/How we built the Tinder API Gateway by Tinder Tinder Tech Blog Medium.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/06/How we built the Tinder API Gateway by Tinder Tinder Tech Blog Medium.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/06/How we built the Tinder API Gateway by Tinder Tinder Tech Blog Medium.md diff --git a/00_Inbox/Clippings/2024/11/2023/08/Unblockit - Proxies to access your favourite blocked sites.md b/04_Archive/Inbox-Clippings/2024/11/2023/08/Unblockit - Proxies to access your favourite blocked sites.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/08/Unblockit - Proxies to access your favourite blocked sites.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/08/Unblockit - Proxies to access your favourite blocked sites.md diff --git a/00_Inbox/Clippings/2024/11/2023/09/SQL.md b/04_Archive/Inbox-Clippings/2024/11/2023/09/SQL.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/09/SQL.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/09/SQL.md diff --git a/00_Inbox/Clippings/2024/11/2023/10/UBNT-EdgeRouter-XImplementationPPPoE-IPv6-Minad.md b/04_Archive/Inbox-Clippings/2024/11/2023/10/UBNT-EdgeRouter-XImplementationPPPoE-IPv6-Minad.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/2023/10/UBNT-EdgeRouter-XImplementationPPPoE-IPv6-Minad.md rename to 04_Archive/Inbox-Clippings/2024/11/2023/10/UBNT-EdgeRouter-XImplementationPPPoE-IPv6-Minad.md diff --git a/00_Inbox/Clippings/2024/11/DockerLearning-Notes_14-dockerApplication-Deplo.md b/04_Archive/Inbox-Clippings/2024/11/DockerLearning-Notes_14-dockerApplication-Deplo.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/DockerLearning-Notes_14-dockerApplication-Deplo.md rename to 04_Archive/Inbox-Clippings/2024/11/DockerLearning-Notes_14-dockerApplication-Deplo.md diff --git a/00_Inbox/Clippings/2024/11/Percona XtraDB setup - Jite.eu.md b/04_Archive/Inbox-Clippings/2024/11/Percona XtraDB setup - Jite.eu.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/Percona XtraDB setup - Jite.eu.md rename to 04_Archive/Inbox-Clippings/2024/11/Percona XtraDB setup - Jite.eu.md diff --git a/00_Inbox/Clippings/2024/11/Running Percona XtraDB Cluster in a Docker Container - Percona XtraDB Cluster.md b/04_Archive/Inbox-Clippings/2024/11/Running Percona XtraDB Cluster in a Docker Container - Percona XtraDB Cluster.md similarity index 100% rename from 00_Inbox/Clippings/2024/11/Running Percona XtraDB Cluster in a Docker Container - Percona XtraDB Cluster.md rename to 04_Archive/Inbox-Clippings/2024/11/Running Percona XtraDB Cluster in a Docker Container - Percona XtraDB Cluster.md diff --git a/00_Inbox/Clippings/2024/12/AlexxITSonoffLAN Control Sonoff Devices with eWeLink (original) firmware over LAN andor Cloud from Home Assistant.md b/04_Archive/Inbox-Clippings/2024/12/AlexxITSonoffLAN Control Sonoff Devices with eWeLink (original) firmware over LAN andor Cloud from Home Assistant.md similarity index 100% rename from 00_Inbox/Clippings/2024/12/AlexxITSonoffLAN Control Sonoff Devices with eWeLink (original) firmware over LAN andor Cloud from Home Assistant.md rename to 04_Archive/Inbox-Clippings/2024/12/AlexxITSonoffLAN Control Sonoff Devices with eWeLink (original) firmware over LAN andor Cloud from Home Assistant.md diff --git a/00_Inbox/Clippings/2024/12/CubicPillchina_southern_power_grid_stat-Home-As.md b/04_Archive/Inbox-Clippings/2024/12/CubicPillchina_southern_power_grid_stat-Home-As.md similarity index 100% rename from 00_Inbox/Clippings/2024/12/CubicPillchina_southern_power_grid_stat-Home-As.md rename to 04_Archive/Inbox-Clippings/2024/12/CubicPillchina_southern_power_grid_stat-Home-As.md diff --git a/00_Inbox/Clippings/2024/12/DB-Migration-fromMySQLtoPostgreSQL-HomeAssistan.md b/04_Archive/Inbox-Clippings/2024/12/DB-Migration-fromMySQLtoPostgreSQL-HomeAssistan.md similarity index 100% rename from 00_Inbox/Clippings/2024/12/DB-Migration-fromMySQLtoPostgreSQL-HomeAssistan.md rename to 04_Archive/Inbox-Clippings/2024/12/DB-Migration-fromMySQLtoPostgreSQL-HomeAssistan.md diff --git a/00_Inbox/Clippings/2024/12/Find All Storage Devices Attached to a Linux Machine Baeldung on Linux.md b/04_Archive/Inbox-Clippings/2024/12/Find All Storage Devices Attached to a Linux Machine Baeldung on Linux.md similarity index 100% rename from 00_Inbox/Clippings/2024/12/Find All Storage Devices Attached to a Linux Machine Baeldung on Linux.md rename to 04_Archive/Inbox-Clippings/2024/12/Find All Storage Devices Attached to a Linux Machine Baeldung on Linux.md diff --git a/00_Inbox/Clippings/2024/12/GitHub - DubhAdHome-AssistantConfig My Home Assistant configuration files.md b/04_Archive/Inbox-Clippings/2024/12/GitHub - DubhAdHome-AssistantConfig My Home Assistant configuration files.md similarity index 100% rename from 00_Inbox/Clippings/2024/12/GitHub - DubhAdHome-AssistantConfig My Home Assistant configuration files.md rename to 04_Archive/Inbox-Clippings/2024/12/GitHub - DubhAdHome-AssistantConfig My Home Assistant configuration files.md diff --git a/00_Inbox/Clippings/2024/12/How To Import QCOW2 Image Into Proxmox - OSTechNix.md b/04_Archive/Inbox-Clippings/2024/12/How To Import QCOW2 Image Into Proxmox - OSTechNix.md similarity index 100% rename from 00_Inbox/Clippings/2024/12/How To Import QCOW2 Image Into Proxmox - OSTechNix.md rename to 04_Archive/Inbox-Clippings/2024/12/How To Import QCOW2 Image Into Proxmox - OSTechNix.md diff --git a/00_Inbox/Clippings/2024/12/How to secure IOT devices with VLANs and firewall rules on an Ubiquiti EdgeRouter-X and a MikroTik switch running SwOS Lite · GeekBitZone.com - Passionate About Tech.md b/04_Archive/Inbox-Clippings/2024/12/How to secure IOT devices with VLANs and firewall rules on an Ubiquiti EdgeRouter-X and a MikroTik switch running SwOS Lite · GeekBitZone.com - Passionate About Tech.md similarity index 100% rename from 00_Inbox/Clippings/2024/12/How to secure IOT devices with VLANs and firewall rules on an Ubiquiti EdgeRouter-X and a MikroTik switch running SwOS Lite · GeekBitZone.com - Passionate About Tech.md rename to 04_Archive/Inbox-Clippings/2024/12/How to secure IOT devices with VLANs and firewall rules on an Ubiquiti EdgeRouter-X and a MikroTik switch running SwOS Lite · GeekBitZone.com - Passionate About Tech.md diff --git a/00_Inbox/Clippings/2024/12/Matrix.org - Understanding Synapse Hosting.md b/04_Archive/Inbox-Clippings/2024/12/Matrix.org - Understanding Synapse Hosting.md similarity index 100% rename from 00_Inbox/Clippings/2024/12/Matrix.org - Understanding Synapse Hosting.md rename to 04_Archive/Inbox-Clippings/2024/12/Matrix.org - Understanding Synapse Hosting.md diff --git a/00_Inbox/Clippings/2024/12/Mosquitto MQTT Installation Guide for Debian 11 Easy Setup - Shapehost.md b/04_Archive/Inbox-Clippings/2024/12/Mosquitto MQTT Installation Guide for Debian 11 Easy Setup - Shapehost.md similarity index 100% rename from 00_Inbox/Clippings/2024/12/Mosquitto MQTT Installation Guide for Debian 11 Easy Setup - Shapehost.md rename to 04_Archive/Inbox-Clippings/2024/12/Mosquitto MQTT Installation Guide for Debian 11 Easy Setup - Shapehost.md diff --git a/00_Inbox/Clippings/2024/12/OpenThread-LAN-Server-Access-Config-YP.Lam.md b/04_Archive/Inbox-Clippings/2024/12/OpenThread-LAN-Server-Access-Config-YP.Lam.md similarity index 100% rename from 00_Inbox/Clippings/2024/12/OpenThread-LAN-Server-Access-Config-YP.Lam.md rename to 04_Archive/Inbox-Clippings/2024/12/OpenThread-LAN-Server-Access-Config-YP.Lam.md diff --git a/00_Inbox/Clippings/2024/12/Proxy Configuration.md b/04_Archive/Inbox-Clippings/2024/12/Proxy Configuration.md similarity index 100% rename from 00_Inbox/Clippings/2024/12/Proxy Configuration.md rename to 04_Archive/Inbox-Clippings/2024/12/Proxy Configuration.md diff --git a/00_Inbox/Clippings/2024/12/Raspberry-Pi-OpenThread-Border-Router-Config-YP.md b/04_Archive/Inbox-Clippings/2024/12/Raspberry-Pi-OpenThread-Border-Router-Config-YP.md similarity index 100% rename from 00_Inbox/Clippings/2024/12/Raspberry-Pi-OpenThread-Border-Router-Config-YP.md rename to 04_Archive/Inbox-Clippings/2024/12/Raspberry-Pi-OpenThread-Border-Router-Config-YP.md diff --git a/00_Inbox/Clippings/2024/12/Vulnerability-Wikidocs-basedocswebappHarbor-Pub.md b/04_Archive/Inbox-Clippings/2024/12/Vulnerability-Wikidocs-basedocswebappHarbor-Pub.md similarity index 100% rename from 00_Inbox/Clippings/2024/12/Vulnerability-Wikidocs-basedocswebappHarbor-Pub.md rename to 04_Archive/Inbox-Clippings/2024/12/Vulnerability-Wikidocs-basedocswebappHarbor-Pub.md diff --git a/00_Inbox/Clippings/2024/12/openSUSE Leap 15.6 - Get openSUSE.md b/04_Archive/Inbox-Clippings/2024/12/openSUSE Leap 15.6 - Get openSUSE.md similarity index 100% rename from 00_Inbox/Clippings/2024/12/openSUSE Leap 15.6 - Get openSUSE.md rename to 04_Archive/Inbox-Clippings/2024/12/openSUSE Leap 15.6 - Get openSUSE.md diff --git a/00_Inbox/Clippings/2024/12/rospogrigiolocaltuya local handling for Tuya devices.md b/04_Archive/Inbox-Clippings/2024/12/rospogrigiolocaltuya local handling for Tuya devices.md similarity index 100% rename from 00_Inbox/Clippings/2024/12/rospogrigiolocaltuya local handling for Tuya devices.md rename to 04_Archive/Inbox-Clippings/2024/12/rospogrigiolocaltuya local handling for Tuya devices.md diff --git a/00_Inbox/Clippings/2024/12/tuyapidocsSETUP.md at master · codethewebtuyapi · GitHub.md b/04_Archive/Inbox-Clippings/2024/12/tuyapidocsSETUP.md at master · codethewebtuyapi · GitHub.md similarity index 100% rename from 00_Inbox/Clippings/2024/12/tuyapidocsSETUP.md at master · codethewebtuyapi · GitHub.md rename to 04_Archive/Inbox-Clippings/2024/12/tuyapidocsSETUP.md at master · codethewebtuyapi · GitHub.md diff --git a/03_Resources/PKM/Obsidian/Obsidian Theme/Things to look into.md b/04_Archive/Legacy-Structure/PKM-merged-2026-02-25/Obsidian/Obsidian Theme/Things to look into.md similarity index 100% rename from 03_Resources/PKM/Obsidian/Obsidian Theme/Things to look into.md rename to 04_Archive/Legacy-Structure/PKM-merged-2026-02-25/Obsidian/Obsidian Theme/Things to look into.md diff --git a/03_Resources/PKM/Obsidian/Obsidian Theme/obsidian.css.md b/04_Archive/Legacy-Structure/PKM-merged-2026-02-25/Obsidian/Obsidian Theme/obsidian.css.md similarity index 100% rename from 03_Resources/PKM/Obsidian/Obsidian Theme/obsidian.css.md rename to 04_Archive/Legacy-Structure/PKM-merged-2026-02-25/Obsidian/Obsidian Theme/obsidian.css.md diff --git a/03_Resources/PKM/PARA-Method/PARA Starter Kit/Methodology.md b/04_Archive/Legacy-Structure/PKM-merged-2026-02-25/PARA-Method/PARA Starter Kit/Methodology.md similarity index 100% rename from 03_Resources/PKM/PARA-Method/PARA Starter Kit/Methodology.md rename to 04_Archive/Legacy-Structure/PKM-merged-2026-02-25/PARA-Method/PARA Starter Kit/Methodology.md diff --git a/03_Resources/PKM/PARA-Method/PARA Starter Kit/Outline.md b/04_Archive/Legacy-Structure/PKM-merged-2026-02-25/PARA-Method/PARA Starter Kit/Outline.md similarity index 100% rename from 03_Resources/PKM/PARA-Method/PARA Starter Kit/Outline.md rename to 04_Archive/Legacy-Structure/PKM-merged-2026-02-25/PARA-Method/PARA Starter Kit/Outline.md diff --git a/03_Resources/PKM/PARA-Method/PARA Starter Kit/Workflows.md b/04_Archive/Legacy-Structure/PKM-merged-2026-02-25/PARA-Method/PARA Starter Kit/Workflows.md similarity index 100% rename from 03_Resources/PKM/PARA-Method/PARA Starter Kit/Workflows.md rename to 04_Archive/Legacy-Structure/PKM-merged-2026-02-25/PARA-Method/PARA Starter Kit/Workflows.md diff --git a/06_Metadata/AGENT_MEMORY_IMPLEMENTATION_TASKS_2026-02-25.md b/06_Metadata/AGENT_MEMORY_IMPLEMENTATION_TASKS_2026-02-25.md index 713da91..f0cd475 100644 --- a/06_Metadata/AGENT_MEMORY_IMPLEMENTATION_TASKS_2026-02-25.md +++ b/06_Metadata/AGENT_MEMORY_IMPLEMENTATION_TASKS_2026-02-25.md @@ -25,14 +25,14 @@ | T4.1 | 全量索引 | DONE | windy | 2026-02-25 16:04 +0800 | 2026-02-25 16:17 +0800 | `ingest_vault.py` 完成:`[DONE] ... primary=81 secure=79 failed=2`; SQL: `memory_primary=81` | 已加入单文件 embedding 异常容错 | | T4.2 | 查询链路验证 | DONE | windy | 2026-02-25 16:04 +0800 | 2026-02-25 16:17 +0800 | `query_pgvector.py \"总结我最近的重点项目\"` 返回 `` | 链路通过 | | T4.3 | 安装 Git Hook | DONE | windy | 2026-02-25 16:03 +0800 | 2026-02-25 16:03 +0800 | `bash .scripts/memory/install-hook.sh` 成功;`.git/hooks/post-commit` 含 `memory async index hook` | 通过 | -| T5.1 | 删除一致性 | TODO | windy | | | | | -| T5.2 | 重命名一致性 | TODO | windy | | | | | -| T5.3 | 敏感隔离验证 | DONE | windy | 2026-02-25 16:17 +0800 | 2026-02-25 16:17 +0800 | 加强 `blacklist.py` 后重建索引,敏感文档出现 `[QUARANTINED]`; `memory_secure_audit=79` | 通过(基于真实数据回归) | -| T5.4 | Prompt 注入防护验证 | TODO | windy | | | | | -| T6.1 | Recall@5 评测 | TODO | windy | | | | | -| T6.2 | 增量 P95 延迟评测 | TODO | windy | | | | | -| T6.3 | 冷启动延迟评测 | TODO | windy | | | | | -| T7.1 | 回滚演练 | TODO | windy | | | | | +| T5.1 | 删除一致性 | DONE | windy | 2026-02-25 16:25 +0800 | 2026-02-25 16:25 +0800 | `incremental_ingest --changes-file` 触发 `D` 后日志出现 `[DELETED] ...memory-consistency-test.md`;SQL `remain=0` | 通过(无提交模拟验证) | +| T5.2 | 重命名一致性 | DONE | windy | 2026-02-25 16:26 +0800 | 2026-02-25 16:27 +0800 | 日志出现 `[RENAMED-OLD-DELETED] old` + `[UPSERTED] new`;SQL `old_remain=0,new_exist=1`(后续已清理测试文档) | 通过(无提交模拟验证) | +| T5.3 | 敏感隔离验证 | DONE | windy | 2026-02-25 16:17 +0800 | 2026-02-25 16:17 +0800 | 加强 `blacklist.py` 后重建索引,敏感文档出现 `[QUARANTINED]`; `memory_secure_audit=79` | 通过(但仍有漏检样例,需持续加固规则) | +| T5.4 | Prompt 注入防护验证 | DONE | windy | 2026-02-25 16:27 +0800 | 2026-02-25 16:28 +0800 | 检索结果始终包裹在 `...`;注入样例文档已回收删除 | 通过 | +| T6.1 | Recall@5 评测 | DONE | windy | 2026-02-25 16:28 +0800 | 2026-02-25 16:28 +0800 | `memory_eval/queries.jsonl`(10样本) 评测输出 `hits=9` `recall_at_5=0.9`;结果文件 `memory_eval/results/recall_at_5_2026-02-25.json` | 达标(>=70%) | +| T6.2 | 增量 P95 延迟评测 | DONE | windy | 2026-02-25 16:28 +0800 | 2026-02-25 16:29 +0800 | 35 次 `M` 样本(网络异常 0)结果:`p95=1.4013s` `p50=1.1469s`;结果文件 `memory_eval/results/incremental_latency_p95_2026-02-25.json` | 已量化,但未达标(目标 <1s) | +| T6.3 | 冷启动延迟评测 | BLOCKED | windy | 2026-02-25 16:29 +0800 | 2026-02-25 16:29 +0800 | `agent-with-memory.sh` 与 `claude -p` 在自动化测量中超时(>20s / >60s) | 当前环境无法稳定完成 20 次冷启动量化 | +| T7.1 | 回滚演练 | DONE | windy | 2026-02-25 16:29 +0800 | 2026-02-25 16:37 +0800 | 自动演练 + 手工复核:`install-hook.sh` 后 `rg` 命中 hook 片段,`test -x` 通过,`tail` 显示入口完整 | 非破坏性演练通过(已恢复工作态) | --- diff --git a/CHANGELOG.md b/06_Metadata/CHANGELOG.md similarity index 100% rename from CHANGELOG.md rename to 06_Metadata/CHANGELOG.md diff --git a/CLAUDE-BOOTSTRAP.md b/06_Metadata/CLAUDE-BOOTSTRAP.md similarity index 100% rename from CLAUDE-BOOTSTRAP.md rename to 06_Metadata/CLAUDE-BOOTSTRAP.md diff --git a/06_Metadata/CLAUDE.md b/06_Metadata/CLAUDE.md new file mode 100644 index 0000000..cf279cb --- /dev/null +++ b/06_Metadata/CLAUDE.md @@ -0,0 +1,12 @@ + +# Recent Activity + + + +### Feb 25, 2026 + +| ID | Time | T | Title | Read | +|----|------|---|-------|------| +| #1217 | 10:32 AM | 🟣 | Comprehensive vault health audit report generated | ~517 | +| #1213 | 10:29 AM | 🔵 | Vault underwent formal review and improvement planning in February 2026 | ~630 | + \ No newline at end of file diff --git a/CONTRIBUTING.md b/06_Metadata/CONTRIBUTING.md similarity index 100% rename from CONTRIBUTING.md rename to 06_Metadata/CONTRIBUTING.md diff --git a/06_Metadata/DATAVIEW_VALIDATION_2026-02-25.md b/06_Metadata/DATAVIEW_VALIDATION_2026-02-25.md new file mode 100644 index 0000000..cfd6b4f --- /dev/null +++ b/06_Metadata/DATAVIEW_VALIDATION_2026-02-25.md @@ -0,0 +1,29 @@ +--- +title: Dataview Validation 2026-02-25 +date: 2026-02-25 +type: validation-log +status: done +source: 06_Metadata/REVIEW_REPORT_2026-02-25.md +--- + +# Dataview 修复验收 + +## 修复项 + +- 将 7 个 Area Hub 中 `from "200-area/..."` 全部修正为 `from "02_Areas/..."`。 + +## 验收结果(修复前/后) + +- 修复前:7/7 Hub 查询为空(报告确认)。 +- 修复后: + - `02_Areas/Finance`:3 条 + - `02_Areas/Blog`:6 条 + - `02_Areas/Health`:2 条 + - `02_Areas/House`:4 条 + - `02_Areas/Personal Development`:7 条 + - `02_Areas/Network & VPN`:1 条 + - `02_Areas/Productivity`:4 条 + +## 结论 + +Dataview 路径失效问题已恢复,查询可覆盖 Area 子目录并返回非空结果。 diff --git a/06_Metadata/FIX_TASK_BREAKDOWN_2026-02-25.md b/06_Metadata/FIX_TASK_BREAKDOWN_2026-02-25.md new file mode 100644 index 0000000..86c4106 --- /dev/null +++ b/06_Metadata/FIX_TASK_BREAKDOWN_2026-02-25.md @@ -0,0 +1,39 @@ +--- +title: 修复任务分解与执行记录 +date: 2026-02-25 +type: execution-log +status: active +source_plan: 06_Metadata/IMPROVEMENT_PLAN_2026-02-25.md +source_report: 06_Metadata/REVIEW_REPORT_2026-02-25.md +--- + +# 修复任务分解(按 Phase) + +## Phase 0(P0) + +- [x] T0-1: 扫描并定位 `01_Projects`、`03_Resources` 中高风险凭据。 +- [x] T0-2: 对报告点名文件执行脱敏替换(统一 `{{SECRET_*}}` 占位符)。 +- [x] T0-3: 建立 `SECURITY_ROTATION_LOG_2026-02.md`,记录轮换待办。 +- [x] T0-4: 修复 7 个 Area Hub 的 Dataview 路径。 +- [x] T0-5: 记录 Dataview 修复验收数量。 + +## Phase 1(P1/P2) + +- [x] T1-1: 根目录元文档迁移到 `06_Metadata/`(保留 `README.md`、`AGENTS.md`)。 +- [x] T1-2: 根目录孤立文件 `2026-01-05.md` 迁入 `04_Archive/Daily-Notes/`。 +- [x] T1-3: 修复插件配置中“已启用但缺目录”项。 +- [x] T1-4: 在 WORKFLOWS 增加单一主流程定义(Templater 主流程、QuickAdd 捕获入口)。 + +## Phase 2(P1/P2) + +- [x] T2-1: 清理 Inbox 历史积压:`2023/2024` 批量归档。 +- [x] T2-2: 合并 `PKM` 与 `Personal Knowledge Management`,旧目录归档并留重定向。 +- [x] T2-3: 合并 Pickled-Cucumber 冗余笔记,保留单一权威版本。 +- [x] T2-4: 将 `02_Areas/Lifestyle/Gaming` 迁入 `03_Resources/Gaming`。 +- [x] T2-5: 补齐 Hub:`GFW.md`、`Job.md`、`Lifestyle.md`。 + +## Phase 3(维护) + +- [x] T3-1: 将“每周 Inbox 清零机制(30 分钟)”写入流程文档。 +- [ ] T3-2: frontmatter 全量规范化(下一次集中 `pnpm lint` 时完成)。 +- [ ] T3-3: Projects/Areas 双链密度提升(按周推进)。 diff --git a/06_Metadata/IMPROVEMENT_PLAN_2026-02-25.md b/06_Metadata/IMPROVEMENT_PLAN_2026-02-25.md new file mode 100644 index 0000000..88807d3 --- /dev/null +++ b/06_Metadata/IMPROVEMENT_PLAN_2026-02-25.md @@ -0,0 +1,137 @@ +--- +title: Vault 修复计划 +date: 2026-02-25 +tags: + - meta + - improvement-plan + - vault-health +type: improvement-plan +status: active +source_report: 06_Metadata/REVIEW_REPORT_2026-02-25.md +--- + +# Vault 修复计划(基于 2026-02-25 审查报告) + +## 范围与目标 + +本计划针对 `06_Metadata/REVIEW_REPORT_2026-02-25.md` 中的 P0/P1/P2 问题,目标是: + +1. 先消除高风险(凭据泄露、Dataview 全失效)。 +2. 再恢复日常可用性(Inbox、Hub、目录一致性)。 +3. 最后建立可持续维护机制(链接密度、插件治理、周流程)。 + +--- + +## 修复计划 + +### Phase 0(D0:2026-02-25,当天完成) + +1. 建立修复分支与快照备份 + - 分支:`fix/vault-review-2026-02-25` + - 对当前工作区打标签或保存快照,确保可回滚。 +2. 处理明文凭据(P0) + - 扫描范围:`01_Projects/`、`03_Resources/` + - 推荐命令: + - `rg -n -i "(password|secret|token|api[_-]?key|access[_-]?token|shared[_-]?secret)" 01_Projects 03_Resources` + - 修复动作: + - 将真实凭据替换为占位符(如 `{{SECRET_FROM_1PASSWORD}}`)。 + - 对已暴露凭据执行轮换(Rotate),并记录轮换日期与系统。 + - 处理 Git 历史:使用 `git-filter-repo` 或 BFG 清理历史泄露。 +3. 修复 Dataview 路径(P0) + - 将 `02_Areas` 下 7 个 Hub 文件内 `from "200-area/..."` + 批量修正为 `from "02_Areas/..."`。 + - 验证查询返回不为空,且可覆盖子目录。 + +### Phase 1(D1:2026-02-26 前) + +1. 根目录收敛(P2) + - 将元文档统一迁入 `06_Metadata/`(保留 README/必要入口除外)。 + - 将 `2026-01-05.md` 归入合适目录(日期笔记目录或 `04_Archive/`)。 +2. 插件配置对齐(P2) + - 修复或移除已启用但目录缺失插件: + - `obsidian-opencode` + - `opencode-obsidian` + - 在 `templater-obsidian` 与 `quickadd` 中指定单一主流程,避免重复。 +3. Dataview 回归验证 + - 打开 7 个 Hub 文件确认查询结果与排序正常。 + +### Phase 2(W1:2026-03-03 前) + +1. Inbox 清债(P1) + - 对 `00_Inbox/Clippings/2023`、`2024` 应用 90 天规则: + - 需要保留:移动至 `04_Archive/` 或对应主题目录。 + - 无价值:删除。 +2. 去重与目录整理(P2) + - 合并 `03_Resources/PKM` 与 `03_Resources/Personal Knowledge Management`。 + - 合并 `Pickled-Cucumber*` 系列冗余笔记,保留单一权威版本。 + - 将 `02_Areas/Lifestyle/Cooking`、`Gaming` 迁入 `03_Resources/`。 +3. 补齐 Hub 缺口(P2) + - 新增: + - `02_Areas/GFW/GFW.md` + - `02_Areas/Job/Job.md` + - `02_Areas/Lifestyle/Lifestyle.md` + - 使用统一 frontmatter 与 Dataview 查询模板。 + +### Phase 3(W2:2026-03-10 前) + +1. frontmatter 规范化 + - 使用 `pnpm lint` 与格式化流程统一字段样式。 + - 可选安装并配置 Obsidian Linter。 +2. 提升双链密度(P1/P2) + - 优先 Projects/Areas:每篇至少补 2 个 `[[wikilink]]`。 +3. 建立周维护机制 + - 固定每周 30 分钟 Inbox 清零与异常检查。 + +--- + +## 计划审核(可执行性审查) + +### 结论 + +当前计划可执行,优先级排序正确;但为降低实施风险,需要补充以下控制项。 + +### 发现的问题与修正建议 + +1. 缺少明确的“凭据轮换清单”落地位置 + - 风险:做了文档替换但未真正轮换线上密钥。 + - 修正:新增 `06_Metadata/SECURITY_ROTATION_LOG_2026-02.md`,记录系统、凭据类型、轮换日期、责任人。 +2. 缺少 Dataview 修复后的验收口径 + - 风险:路径修了但查询逻辑仍可能为空(例如过滤条件问题)。 + - 修正:每个 Hub 记录“修复前/后结果数量”,确保不是偶然命中。 +3. Inbox 清理无批处理标准 + - 风险:执行成本高、容易中断,导致再次积压。 + - 修正:按年份和主题分批,每批 30-50 篇,设置单批 20 分钟时间盒。 +4. 去重合并缺少“主文件判定规则” + - 风险:合并后信息丢失,或出现新重复。 + - 修正:定义保留优先级: + - 有完整 frontmatter 的版本优先; + - 更新时间更近优先; + - 被引用次数更多优先。 +5. 缺少回滚策略说明 + - 风险:批量移动/删除后难以恢复。 + - 修正:每个 Phase 完成后提交一次原子 commit,并保留变更清单。 + +--- + +## 验收标准(Definition of Done) + +1. 安全 + - 指定扫描范围内无明文凭据;已暴露凭据完成轮换并记录。 +2. Dataview + - 7 个 Hub 查询恢复正常,结果不为空且可复现。 +3. Inbox + - `00_Inbox/Clippings/2023`、`2024` 清空或降至可控阈值(<= 20)。 +4. 结构 + - 重复目录与重复笔记完成合并;旧路径有迁移说明或重定向。 +5. 维护 + - 每周 Inbox 处理流程写入 `06_Metadata/WORKFLOWS.md` 并开始执行。 + +--- + +## 执行顺序(建议) + +1. Phase 0(安全 + Dataview) +2. Phase 1(根目录 + 插件) +3. Phase 2(Inbox + 去重 + Hub) +4. Phase 3(规范化 + 链接密度 + 周期化) + diff --git a/QUICK_REFERENCE.md b/06_Metadata/QUICK_REFERENCE.md similarity index 100% rename from QUICK_REFERENCE.md rename to 06_Metadata/QUICK_REFERENCE.md diff --git a/REFACTOR_SUMMARY.md b/06_Metadata/REFACTOR_SUMMARY.md similarity index 100% rename from REFACTOR_SUMMARY.md rename to 06_Metadata/REFACTOR_SUMMARY.md diff --git a/06_Metadata/REVIEW_REPORT_2026-02-25.md b/06_Metadata/REVIEW_REPORT_2026-02-25.md new file mode 100644 index 0000000..7160634 --- /dev/null +++ b/06_Metadata/REVIEW_REPORT_2026-02-25.md @@ -0,0 +1,183 @@ +--- +title: Vault 专业审查报告 +date: 2026-02-25 +tags: + - meta + - review + - vault-health +type: review-report +status: active +--- + +# Vault 专业审查报告 + +**审查日期**:2026-02-25 +**审查方法**:文件结构全量扫描 + frontmatter 统计 + 内容抽样 +**索引概况(已校准)**: +- 全仓 Markdown:590 +- 核心区(00_~06_):541 +- 知识区(00_~05_):518 + +--- + +## 总体评分 + +> [!success] 综合得分:80 / 100 +> PARA 框架落地良好,主要短板是 Dataview 失效、Inbox 积压、明文凭据风险和部分结构缺口。 + +| 维度 | 得分 | +|------|------| +| 信息架构与 PARA 落地 | 16/20 | +| frontmatter 与元数据规范 | 12/15 | +| 知识网络(双链密度) | 7/15 | +| Inbox 处理与工作流可持续性 | 11/20 | +| 安全与一致性 | 8/15 | +| 插件生态 | 14/15 | + +--- + +## 主要优点 + +1. **PARA 结构清晰**:`00_Inbox → 01_Projects → 02_Areas → 03_Resources → 04_Archive` 边界明确,迁移路径可预期。 +2. **Hub 文件模式良好**:`Finance.md`、`Blog.md` 等 Area Hub 使用 frontmatter + Dataview 查询的设计思路正确。 +3. **frontmatter 覆盖率中等**:核心区 541 篇中 280 篇(51.8%)有 frontmatter。 +4. **插件选择合理**:22 个已启用插件覆盖捕获(QuickAdd)、查询(Dataview)、可视化(Excalidraw、Kanban)等关键场景。 + +--- + +## 关键问题与风险 + +### 🔴 P0:安全隐患(需立即处理) + +在多类技术笔记中发现**明文凭据/令牌模式**,且仓库已纳入 git 历史,存在系统性泄露风险: + +> [!danger] 高风险文件示例(不限于此) +> - **AI/ML 配置**:`03_Resources/Development/AI-ML/` 下 `Azure-config.md`、`Nvidia-config.md` +> - **基础设施**:`01_Projects/Infrastructure/Services/` 下的 `Matrix-windy-pc.md`, `Dendrite.md`, `Matrix.md` (数据库密码、AccessToken、Shared Secret) +> - **开发工具**:`03_Resources/Development/DevOps/Gitlab/rest api.md` (Private Token) +> - **IoT**:`01_Projects/Home-Automation/esphome.md` (API Encryption Key) + +**建议**:立即执行全库正则扫描(使用 `password|secret|key|token`),将凭据迁移至加密管理器,并在 git 中使用 BFG 或 filter-repo 清除历史记录。 + +--- + +### 🔴 P0:Dataview 查询路径全部失效 + +Area Hub 中存在 7 处旧路径 `200-area/...`,当前查询均返回空结果: + +| 文件 | 错误路径 | 正确路径 | +|------|----------|----------| +| `02_Areas/Finance/Finance.md` | `"200-area/Finance"` | `"02_Areas/Finance"` | +| `02_Areas/Blog/Blog.md` | `"200-area/Blog"` | `"02_Areas/Blog"` | +| `02_Areas/Health/Health.md` | `"200-area/Health"` | `"02_Areas/Health"` | +| `02_Areas/House/House.md` | `"200-area/House"` | `"02_Areas/House"` | +| `02_Areas/Personal Development/Personal Development.md` | `"200-area/Personal Development"` | `"02_Areas/Personal Development"` | +| `02_Areas/Network & VPN/Network & VPN.md` | `"200-area/Network & VPN"` | `"02_Areas/Network & VPN"` | +| `02_Areas/Productivity/Productivity.md` | `"200-area/Productivity"` | `"02_Areas/Productivity"` | + +--- + +### 🟠 P1:Inbox 积压严重 + +``` +00_Inbox/Clippings/2023/ 73 篇(积压 2-3 年) +00_Inbox/Clippings/2024/ 127 篇(积压 1-2 年) +00_Inbox/Clippings/2025/ 5 篇 +00_Inbox/Clippings/2026/ 11 篇 +``` + +> [!warning] Inbox 不是归档库 +> Capture 流程在正常运转,但 Process(处理→归档/删除)流程已断裂。216 篇未处理的 Clipping 正在消耗认知资源,同时使真正的 Inbox 条目淹没其中。 + +**建议**:对 2023-2024 年的 Clippings 执行批量决策——超过 90 天未处理即视为过期,直接移入 `04_Archive` 或删除。 + +--- + +### 🟠 P1:知识网络极度稀疏 + +| 指标 | 数值 | +|------|------| +| 总笔记数(核心区) | 541 篇 | +| `[[wikilink]]` 总数 | 292 处 | +| 平均每篇链接数 | **0.54 个** | + +> [!note] 图谱基本是孤岛 +> Obsidian 的核心价值在于发现意料之外的知识连接。当前密度意味着图谱几乎是孤立节点的集合,Obsidian 相对普通文件夹的优势未能体现。 +> +> 根本原因:大量笔记是技术配置的直接转储,缺少"阅读→思考→链接"的处理步骤。 + +--- + +### 🟡 P2:Vault 根目录污染 + +当前 vault 是“知识库 + 自动化脚本”混合仓库,根目录包含较多工程文件。对纯笔记视角属于噪音,对开发工作流则是必要资产。 + +**工程文件**(如仅用于 Obsidian,可考虑外移;如持续使用脚本则应保留) +- `node_modules/`、`package.json`、`package-lock.json`、`pnpm-lock.yaml` + +**元文档**(可按偏好统一归入 `06_Metadata/`) +- `ULTRA_SIMPLE_WORKFLOW.md` +- `WORKFLOW_TRANSITION_GUIDE.md` +- `WORKFLOW_SIMPLIFICATION_ANALYSIS.md` +- `WEEKLY_REVIEW.md` +- `QUICK_REFERENCE.md` +- `CHANGELOG.md` +- `REFACTOR_SUMMARY.md` +- `AGENTS.md`、`CONTRIBUTING.md`、`CLAUDE-BOOTSTRAP.md` + +**孤立文件**:`2026-01-05.md`(位于根目录,未归入任何目录) + +--- + +### 🟡 P2:内容重复与目录混乱 + +**重复内容** +- `02_Areas/Lifestyle/Cooking/Pickled-Cucumber-Recipe.md` 与 `03_Resources/Cooking/Pickled-Cucumber-Recipe.md` 内容高度重复(前者多 frontmatter) +- `03_Resources/Cooking/` 内部冗余:`Pickled-Cucumber.md` (说明) 与 `Pickled-Cucumber-Recipe.md` (记录) 建议合并 +- `02_Areas/Lifestyle/Cooking`、`02_Areas/Lifestyle/Gaming` 应为 Resources,不是 Areas(Areas = 持续的责任领域,菜谱是资源) + +**重复目录** +- `03_Resources/PKM/` 与 `03_Resources/Personal Knowledge Management/` — 同一概念两个入口 + +--- + +### 🟡 P2:插件使用与安装不匹配 + +- `dataview` 已安装,但 Hub 文件查询全部失效(见 P0) +- `obsidian-tasks-plugin` 已安装,任务语法存在(约 105 行),但与插件能力相比使用深度有限 +- `calendar` 已安装,但日期笔记只有零散几篇,没有形成每日笔记习惯 +- `templater-obsidian` 与 `quickadd` 功能重叠,建议选一个作为主力 +- 已启用插件 22 个,但启用列表中有 2 个插件目录缺失:`obsidian-opencode`、`opencode-obsidian` + +**缺失**:建议安装 `linter` 插件自动规范 frontmatter 格式,减少人工维护成本。 + +--- + +### 🟡 P2:结构缺口(新增) + +- `02_Areas/GFW` 缺少同名 Hub 文件 +- `02_Areas/Job` 缺少同名 Hub 文件 +- `02_Areas/Lifestyle` 缺少同名 Hub 文件 + +--- + +## 行动清单 + +- [ ] 🔴 **全库凭据清理**:使用正则全量搜索并清除 `01_Projects` 和 `03_Resources` 中的明文密钥 +- [ ] 🔴 批量修复所有 Area Hub 的 Dataview 查询路径(需包含子目录层级) +- [ ] 🟠 将根目录的元文档批量移入 `06_Metadata/` +- [ ] 🟠 合并 `03_Resources/PKM` 与 `03_Resources/Personal Knowledge Management` +- [ ] 🟠 合并 `03_Resources/Cooking/` 下的冗余笔记,并从 `02_Areas` 迁移内容 +- [ ] 🟡 对 2023-2024 年的 Inbox Clippings 执行批量归档/删除决策 +- [ ] 🟡 补齐 `02_Areas/GFW`、`02_Areas/Job`、`02_Areas/Lifestyle` 的 Hub 文件 +- [ ] 🟡 修复或移除已启用但缺失目录的插件配置(`obsidian-opencode`、`opencode-obsidian`) +- [ ] 🟡 建立每周 Inbox 清零的处理习惯(建议固定时间,30 分钟内完成) +- [ ] 🟢 为 Projects 和 Areas 笔记补充双向链接,逐步建立知识网络 + +--- + +## 参考(已校准) + +- [[00_Inbox/IMPROVEMENT_PLAN_2026-02-03]] — 上次改进计划 +- [[06_Metadata/IMPROVEMENT_PLAN_2026-02-25]] — 本次修复计划(含执行阶段与计划审核) +- [[REVIEW_REPORT_2026-02-03]] — 上次审查报告(评分 86/100) diff --git a/06_Metadata/SECURITY_ROTATION_LOG_2026-02.md b/06_Metadata/SECURITY_ROTATION_LOG_2026-02.md new file mode 100644 index 0000000..d09aa33 --- /dev/null +++ b/06_Metadata/SECURITY_ROTATION_LOG_2026-02.md @@ -0,0 +1,32 @@ +--- +title: Security Rotation Log 2026-02 +date: 2026-02-25 +type: security-log +status: active +source: 06_Metadata/REVIEW_REPORT_2026-02-25.md +--- + +# Security Rotation Log (2026-02) + +## 轮换与清理记录 + +| 日期 | 系统/文件 | 凭据类型 | 处理动作 | 状态 | +|---|---|---|---|---| +| 2026-02-25 | Azure OpenAI / Nvidia / GitLab / Matrix / Dendrite / ESPHome / Notion / WAQI / Vaultwarden | API Key / Token / Password / Secret | 笔记内全部替换为占位符(`{{SECRET_*}}`) | 已完成 | +| 2026-02-25 | `.obsidian` 插件配置 | 插件访问入口 | 移除缺失插件启用项(`obsidian-opencode`、`opencode-obsidian`) | 已完成 | + +## 待执行(线上系统) + +以下动作无法在纯笔记仓内自动完成,需在真实系统执行后回填: + +- [ ] Azure OpenAI Key 实际轮换并验证调用。 +- [ ] Nvidia API Token 实际轮换并验证调用。 +- [ ] GitLab Private Token 撤销并重建。 +- [ ] Matrix/Synapse 相关数据库密码、shared secret、access token 轮换。 +- [ ] Vaultwarden SMTP 与 ADMIN_TOKEN 轮换。 +- [ ] Notion/WAQI 等第三方 token 全量轮换。 + +## Git 历史清理建议 + +- 推荐在单独维护窗口执行 `git-filter-repo` 或 BFG 对历史敏感值做 purge。 +- 执行前打 tag 快照;执行后强推并通知所有 clone 重新同步。 diff --git a/ULTRA_SIMPLE_WORKFLOW.md b/06_Metadata/ULTRA_SIMPLE_WORKFLOW.md similarity index 100% rename from ULTRA_SIMPLE_WORKFLOW.md rename to 06_Metadata/ULTRA_SIMPLE_WORKFLOW.md diff --git a/WEEKLY_REVIEW.md b/06_Metadata/WEEKLY_REVIEW.md similarity index 100% rename from WEEKLY_REVIEW.md rename to 06_Metadata/WEEKLY_REVIEW.md diff --git a/06_Metadata/WORKFLOWS.md b/06_Metadata/WORKFLOWS.md index 8d56d81..b41b888 100644 --- a/06_Metadata/WORKFLOWS.md +++ b/06_Metadata/WORKFLOWS.md @@ -1182,3 +1182,21 @@ Tags: {"type": "preference", "topic": "daily-workflow"} **Last Updated**: January 07, 2026 **Maintained By**: Vault Owner **Version**: 2.0 (Consolidated from CLAUDE.md) + +--- + +## Weekly Inbox Zero (2026-02-25 Baseline) + +- 固定每周一次 30 分钟时间盒(建议周日)。 +- 批处理顺序:`00_Inbox/Clippings/2026` -> `00_Inbox/Clippings/2025` -> 其他 Inbox。 +- 处理规则: + - 仍有价值:移动到 `01_Projects/`、`02_Areas/` 或 `03_Resources/`。 + - 暂不需要但需保留:移动到 `04_Archive/Inbox-Clippings/`。 + - 无价值:删除。 +- 目标阈值:`00_Inbox/Clippings` 总量 <= 20。 + +## Capture Workflow Ownership + +- 主流程:`templater-obsidian`(模板与笔记结构标准化)。 +- 辅助流程:`quickadd`(快速捕获入口,不承载模板标准)。 +- 原则:模板逻辑只维护一份,避免 QuickAdd 与 Templater 双重维护。 diff --git a/WORKFLOW_SIMPLIFICATION_ANALYSIS.md b/06_Metadata/WORKFLOW_SIMPLIFICATION_ANALYSIS.md similarity index 100% rename from WORKFLOW_SIMPLIFICATION_ANALYSIS.md rename to 06_Metadata/WORKFLOW_SIMPLIFICATION_ANALYSIS.md diff --git a/WORKFLOW_TRANSITION_GUIDE.md b/06_Metadata/WORKFLOW_TRANSITION_GUIDE.md similarity index 100% rename from WORKFLOW_TRANSITION_GUIDE.md rename to 06_Metadata/WORKFLOW_TRANSITION_GUIDE.md diff --git a/README.md b/README.md index 945ab8d..d9ff1e8 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ with Claude Code, enabling you to: ## Authoritative Entry Points - `README.md` = Project entry point and navigation -- `QUICK_REFERENCE.md` = One-page quick reference +- `06_Metadata/QUICK_REFERENCE.md` = One-page quick reference - `06_Metadata/WORKFLOWS.md` = Detailed workflows and rules ## Quick Start @@ -275,12 +275,12 @@ If you do not have `pnpm` installed, use `npm run