Working with AI, or, The Amplifier of Thought

Recently, I needed to write a recommendation for a drawing tutorial. This small task brought me face to face with a fundamental question: a good recommendation must be honest—it needs to present both strengths and limitations. Any recommendation that’s nothing but praise is a form of deception. When faced with this situation, most people might simply tell AI: “Write a sincere recommendation.” This is a mistake. You’ll likely get text that “looks sincere,” filled with just-right praise and harmless flaws. This output is mediocre garbage because it misunderstands the nature of AI from the very beginning. ...

July 19, 2025 · 3 min · 3089 字 · Miss-you

Hugo 文章目录管理教程

Hugo 文章目录管理教程 这篇文章演示了如何为每个Hugo文章创建独立的目录结构。 优势 便于管理:每个文章有自己的目录 资源整理:图片、附件等资源放在同一目录 版本控制:便于跟踪文章的变更历史 SEO友好:目录名可以作为URL的一部分 目录结构 1 2 3 4 5 6 7 8 9 10 content/posts/ ├── 20250715-hugo-tutorial/ │ ├── index.md # 文章内容 │ ├── cover.jpg # 封面图片 │ └── images/ # 文章图片 │ └── diagram.png └── another-post/ ├── index.md └── assets/ └── file.pdf 使用方法 1. 创建文章目录 1 hugo new posts/文章名称/index.md 2. 或者手动创建 1 2 mkdir -p content/posts/20250715-my-article touch content/posts/20250715-my-article/index.md 这样每个文章都有自己的独立空间了! ...

July 15, 2025 · 1 min · 483 字 · Miss-you