日记内容

今天天气很好,阳光明媚。有一点冷,也有一点风,早上慢慢的向公司走,看到路边的桃花开了,很好看,不知道和小区里的哪个开的更早,没有上帝视角,只能在一个时刻观察生活。

AI到来之后,资讯发展的更快了,还没抓住今天看到的信息,又有更加新鲜的来了。

脑子一直在转,但好像又没有获得什么,还是应该慢下来吧。

保留思考的时间还是更重要一些吧。

下班之后收到了几个TODO,明天一早再去解决。

Diary Content (English Version)

The weather was great today, with bright sunshine. A bit cold and a bit windy. I walked slowly to the company in the morning, and saw the peach blossoms blooming by the roadside. They were beautiful. I wondered if they bloomed earlier than the ones in our residential area. Without a bird’s-eye view, I could only observe life at one moment at a time.

After the arrival of AI, information has been developing even faster. Before I could even process what I saw today, something even fresher had already arrived.

My mind has been constantly running, but it feels like I haven’t gained anything. Maybe I should slow down after all.

Retaining time for thinking seems more important.

After getting off work, I received a few TODOs. I’ll tackle them first thing tomorrow morning.

什么是分类

分类(Categories)用于将文章归类到不同的主题或板块。与标签不同,分类具有层级结构。

如何使用分类

在文章的 front-matter 中使用 categories 字段:

1
2
categories:
- 技术

或者多级分类:

1
2
3
categories:
- 技术
- 前端

分类页面

创建分类页面:

1
hexo new page categories

编辑 source/categories/index.md

1
2
3
4
---
title: 分类
type: categories
---

这样就可以在博客上浏览所有分类了。

总结

分类帮助读者快速找到感兴趣的文章,也是博客结构化的重要方式。

Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.

Quick Start

Create a new post

1
$ hexo new "My New Post"

More info: Writing

Run server

1
$ hexo server

More info: Server

Generate static files

1
$ hexo generate

More info: Generating

Deploy to remote sites

1
$ hexo deploy

More info: Deployment

0%