merge in new changes
Some checks failed
renovate / renovate (push) Has been cancelled
test-build / build (push) Has been cancelled

This commit is contained in:
2025-08-11 16:24:43 -05:00
parent a484feb7cd
commit 1dc4ccfbc6
125 changed files with 9304 additions and 20383 deletions

View File

@@ -0,0 +1,4 @@
---
title: '二愣的小书屋 🔖'
description: '生活总是这样,不能让人处处都满意但我们还要热情地活下去'
---

View File

@@ -0,0 +1,4 @@
---
title: 'Golang 🚀'
description: 'Go 语言的词法分析与语法分析及折腾下 Go 编译原理吗'
---

View File

@@ -0,0 +1,4 @@
---
title: 'kubernetes 💩'
description: 'Kubernetes 是一个开源系统,用于自动化部署、扩展和管理容器化应用程序。'
---

View File

@@ -0,0 +1,4 @@
---
title: 'Laravel 🐛'
description: '最优雅的 PHP 框架'
---

View File

@@ -0,0 +1,4 @@
---
title: '生活 💃'
description: '房贷要还的,水电费要交的,小孩学费也贵的,钱肯定要不够的呀。所以工作不敢扔,我大部分的快乐,都是来自于生活的夹缝。'
---

View File

@@ -0,0 +1,4 @@
---
title: 'MySQL'
description: 'MySQL is an open-source relational database management system (RDBMS).'
---

View File

@@ -0,0 +1,4 @@
---
title: 'Nginx 🐕‍🦺'
description: '高性能的 HTTP 和反向代理 Web 服务器,奈何反向代理的 PHP-FMP 服务太慢。'
---

View File

@@ -0,0 +1,4 @@
---
title: 'PHP 🐘'
description: 'PHP is a popular general-purpose scripting language that is especially suited to web development.'
---

View File

@@ -0,0 +1,4 @@
---
title: 'Tool 🪜'
description: '停止折腾就老了吧'
---

View File

@@ -0,0 +1,4 @@
---
title: 'What Is?'
description: '什么是快乐星球,什么是快乐星球,什么是快乐星球'
---

12
src/content/config.ts Normal file
View File

@@ -0,0 +1,12 @@
import { defineCollection, z } from 'astro:content';
const categoryCollection = defineCollection({
type: 'content',
schema: () =>
z.object({
title: z.string(),
description: z.string(),
}),
});
export const collections = { categories: categoryCollection };