c/docs/index.md

82 lines
2.4 KiB
Markdown
Raw Normal View History

2024-08-01 04:00:11 +02:00
---
# 官方文档相关配置https://vitepress.dev/reference/default-theme-layout
2024-08-16 04:24:26 +02:00
layout: home # home 是首页doc 是文档页page 无样式的文档,自定义页面
2024-08-01 04:00:11 +02:00
home: true
# 官方文档相关配置https://vitepress.dev/reference/default-theme-home-page
2024-08-16 04:24:26 +02:00
lang: zh-CN
2024-08-01 04:00:11 +02:00
title: 许大仙的博客
titleTemplate: Hi终于等到你
editLink: true
lastUpdated: true
2024-08-16 04:24:26 +02:00
# 指定要为当前页面注入的额外头标签。将附加在站点级配置注入的头标签之后
head:
2024-08-01 04:00:11 +02:00
- - meta
- name: description
content: 许大仙前端、Java、大数据、云原生
- - meta
- name: keywords
content: 许大仙,许大仙的博客
2024-08-16 04:24:26 +02:00
# 网站的居中文案
hero:
2024-08-01 04:00:11 +02:00
name: "许大仙同学"
text: ""
2024-08-04 09:51:42 +02:00
tagline: "『这个世纪疯狂,没人性,腐败;你却一直清醒,温柔,一尘不染。』"
2024-08-16 04:24:26 +02:00
image: # text 和 tagline 区域旁的图片
src: /logo.svg
alt: "许大仙"
2024-08-01 04:00:11 +02:00
# 按钮相关
actions:
- theme: brand
text: "首页"
link: "https://aexiar.github.io"
- theme: alt
text: "计组6件套"
link: "https://aexiar.github.io/coa6/notes/"
- theme: alt
text: "c/c++"
link: "/notes/"
- theme: alt
text: "前端"
link: "https://aexiar.github.io/web-design/notes/"
- theme: alt
text: "Java"
link: "https://aexiar.github.io/java/notes/"
- theme: alt
text: "大数据"
link: "https://aexiar.github.io/big-data/notes/"
- theme: alt
text: "云原生"
link: "https://aexiar.github.io/linux/notes/"
- theme: alt
text: "Go"
link: "https://aexiar.github.io/go/notes/"
- theme: alt
text: "Python"
2024-08-19 02:33:05 +02:00
link: "https://aexiar.github.io/python/notes/"
- theme: alt
text: "数据库"
link: "https://aexiar.github.io/db/notes/"
2024-08-01 04:00:11 +02:00
- theme: alt
text: "开源软件"
link: "https://aexiar.github.io/open-software/notes/"
# 按钮下方的描述
features:
2024-08-16 04:24:26 +02:00
- icon: 🧠
title: "学习思路"
2024-08-01 04:00:11 +02:00
details: "学习思路就这么几条:模仿、遍历、分治、动态规划、……"
2024-08-16 04:24:26 +02:00
- icon: ✍️
title: "学习手法"
2024-08-01 04:00:11 +02:00
details: "学习手法就这么几种:缓存、索引、信号/事件、回调/消息循环/dispatcher、……"
2024-08-16 04:24:26 +02:00
- icon: 🚨
title: "注意事项"
2024-08-01 04:00:11 +02:00
details: "注意事项就这么几点:边界值、等价类、数据完整性原子性、死锁、空转、……"
---