Skip to content

Commit

Permalink
Upload code 0003
Browse files Browse the repository at this point in the history
  • Loading branch information
Pokonliu committed Nov 6, 2024
1 parent 9661d42 commit a50b919
Show file tree
Hide file tree
Showing 7 changed files with 103 additions and 84 deletions.
1 change: 1 addition & 0 deletions docs/AI/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# AI 算法
1 change: 1 addition & 0 deletions docs/LCMS/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# 每日 Leetcode
1 change: 1 addition & 0 deletions docs/RK3588/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# 嵌入式 RK3588
1 change: 1 addition & 0 deletions docs/VIE/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# VIE 项目
15 changes: 15 additions & 0 deletions docs/blog/posts/MySec.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
date:
created: 2024-11-06
---

# 个人第二个 Blog

首次用 MKdocs 部署属于自己的 Blog

<!-- more -->

1.刷题
2.工作项目
3.算法学习
4.Test
79 changes: 14 additions & 65 deletions docs/index.md
Original file line number Diff line number Diff line change
@@ -1,75 +1,24 @@
# Welcome to MkDocs
# 刘天阳的作战中心

For full documentation visit [mkdocs.org](https://www.mkdocs.org).
## LCMS

## Commands
- 每日一题
- 数据结构、算法笔记

- `mkdocs new [dir-name]` - Create a new project.
- `mkdocs serve` - Start the live-reloading docs server.
- `mkdocs build` - Build the documentation site.
- `mkdocs -h` - Print help message and exit.
## VIE

## Project layout
- 工业纺织项目架构 + 实现

mkdocs.yml # The configuration file.
docs/
index.md # The documentation homepage.
... # Other markdown pages, images and other files.
## RK3588

## 中文测试
- 嵌入式 AI 实现、部署细节

I like to drink :beers: after i played :soccer:
## AI

## Commands
- CV
- NLP
- 多模态

- `mkdocs new [dir-name]` - Create a new project.
- `mkdocs serve` - Start the live-reloading docs server.
- `mkdocs build` - Build the documentation site.
- `mkdocs -h` - Print help message and exit.
## BLOG

## Project layout

mkdocs.yml # The configuration file.
docs/
index.md # The documentation homepage.
... # Other markdown pages, images and other files.

## 中文测试

I like to drink :beers: after i played :soccer:

## Commands

- `mkdocs new [dir-name]` - Create a new project.
- `mkdocs serve` - Start the live-reloading docs server.
- `mkdocs build` - Build the documentation site.
- `mkdocs -h` - Print help message and exit.

## Project layout

mkdocs.yml # The configuration file.
docs/
index.md # The documentation homepage.
... # Other markdown pages, images and other files.

## 中文测试

I like to drink :beers: after i played :soccer:

## Commands

- `mkdocs new [dir-name]` - Create a new project.
- `mkdocs serve` - Start the live-reloading docs server.
- `mkdocs build` - Build the documentation site.
- `mkdocs -h` - Print help message and exit.

## Project layout

mkdocs.yml # The configuration file.
docs/
index.md # The documentation homepage.
... # Other markdown pages, images and other files.

## 中文测试

I like to drink :beers: after i played :soccer:
- 记录生活、学习
89 changes: 70 additions & 19 deletions mkdocs.yml
Original file line number Diff line number Diff line change
@@ -1,49 +1,100 @@
# yaml-language-server: $schema=https://squidfunk.github.io/mkdocs-material/schema.json

site_name: My Docs
# Project information
site_name: LTY's Homepage
site_url: https://mydomain.org/mysite
site_author: Liu Tianyang

# Repository
repo_name: Pokonliu/HomePage
repo_url: https://github.com/Pokonliu/HomePage

# Copyright
copyright: Copyright &copy; 1995 - 2024 LTY

# Configuration
theme:
language: zh

name: material

favicon: assets/favicon.ico

font:
text: Roboto
code: Roboto Mono

icon:
logo: simple/alienware

palette:
# Dark Mode
- scheme: slate
- media: "(prefers-color-scheme)"
toggle:
icon: material/weather-sunny
name: Dark mode
primary: green
accent: deep purple

# Light Mode
- scheme: default
icon: material/link
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/toggle-switch
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
accent: indigo
toggle:
icon: material/weather-night
name: Light mode
primary: blue
accent: deep orange
icon: material/toggle-switch-off
name: Switch to system preference

features:
- announce.dismiss

- content.action.edit
- content.action.view
- content.code.annotate
- content.code.copy
# - content.code.select
# - content.footnote.tooltips
# - content.tabs.link
- content.tooltips

# - header.autohide

# - navigation.expand
- navigation.footer
- navigation.top
- navigation.tabs
- navigation.tabs.sticky
- navigation.indexes
- navigation.instant
# - navigation.instant.prefetch
- navigation.instant.progress
# - navigation.prune
- navigation.sections
- navigation.tabs
# - navigation.tabs.sticky
- navigation.top
- navigation.tracking
- navigation.path


- search.highlight
- search.share
- search.suggest

- toc.follow
# - toc.integrate

nav:
- HOME: index.md
- LCMS: LCMS/index.md
- VIE: VIE/index.md
- RK3588: RK3588/index.md
- AI: AI/index.md
- BLOG: blog/index.md

plugins:
- search
- blog

copyright: Copyright &copy; 1995 - 2024 LTY

extra:
social:
- icon: fontawesome/solid/paper-plane
Expand Down

0 comments on commit a50b919

Please sign in to comment.