知识库索引
快速导航
📝 当前项目
- TODO - 待办事项
- Personal Development - 个人发展项目
- 做一个磁带音乐播放器 - 音乐播放器项目
🎯 生活领域
📚 学习资源
- AI系统索引 - AI相关资源
- Anthropic技术资源索引 - Anthropic技术资源
- 编程技能索引 - 编程技能资源
- PMP - 项目管理资源
- BetterLife - 生活品质资源
📖 日记记录
知识库统计
最受欢迎的文件(入链数)
table length(file.inlinks) as 入链数, length(file.outlinks) as 出链数
from ""
where file.name != "知识库索引"
sort length(file.inlinks) desc
limit 10按标签统计文件数量
table length(rows) as 文件数量
from ""
where file.name != "知识库索引"
flatten file.tags as tag
group by tag
sort length(rows) desc最近更新的文件
table file.mtime as 修改时间, file.ctime as 创建时间
from ""
where file.name != "知识库索引"
sort file.mtime desc
limit 10按文件夹统计
table length(rows) as 文件数量
from ""
where file.name != "知识库索引"
group by file.folder
sort length(rows) desc待办事项统计
table file.name as 文件名, length(file.tasks) as 任务数
from ""
where file.tasks
sort length(file.tasks) desc核心内容(标记为#核心的文件)
table file.mtime as 修改时间
from ""
where contains(file.tags, "#核心")
sort file.mtime desc项目进度跟踪
table file.mtime as 最后更新, length(file.tasks) as 任务数
from "1-Projects"
sort file.mtime desc学习资源按类型分组
table length(rows) as 数量
from "3-Resources"
group by file.folder
sort length(rows) desc标签云
最后更新:2025年1月