知识库索引

快速导航

📝 当前项目

🎯 生活领域

📚 学习资源

📖 日记记录

知识库统计

最受欢迎的文件(入链数)

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

标签云

AI 编程 个人发展 项目管理 生活 学习 技术


最后更新:2025年1月