feat: the nav bar, test content, friend personals
@ -1,4 +1,4 @@
|
||||
import { defineClientConfig } from 'vuepress/client'
|
||||
import { defineClientConfig } from '@vuepress/client'
|
||||
// import RepoCard from 'vuepress-theme-plume/features/RepoCard.vue'
|
||||
// import NpmBadge from 'vuepress-theme-plume/features/NpmBadge.vue'
|
||||
// import NpmBadgeGroup from 'vuepress-theme-plume/features/NpmBadgeGroup.vue'
|
||||
|
@ -28,7 +28,16 @@ export default defineUserConfig({
|
||||
/* 页内信息 */
|
||||
// editLink: true,
|
||||
// lastUpdated: true,
|
||||
// contributors: true,
|
||||
contributors: {
|
||||
mode: 'block',
|
||||
info: [
|
||||
{
|
||||
username: 'rand777',
|
||||
name: '王加强',
|
||||
}
|
||||
],
|
||||
|
||||
},
|
||||
// changelog: false,
|
||||
|
||||
/**
|
||||
@ -54,6 +63,32 @@ export default defineUserConfig({
|
||||
*/
|
||||
cache: 'filesystem',
|
||||
|
||||
notes: {
|
||||
// 声明所有笔记的目录,(默认配置,通常您不需要声明它)
|
||||
dir: '/notes/',
|
||||
link: '/', // 声明所有笔记默认的链接前缀, 默认为 '/' (默认配置,通常您不需要声明它)
|
||||
notes: [
|
||||
// 每个笔记都是 `notes` 数组中的一个对象
|
||||
{
|
||||
// 声明笔记的目录,相对于 `notes.dir`,这里表示 `notes/typescript` 目录
|
||||
dir: 'public-service',
|
||||
// 声明笔记的链接前缀,与 `notes.link` 拼接,这里表示 `/typescript/`
|
||||
// 笔记内的所有文章会以 `/typescript/` 作为访问链接前缀。
|
||||
link: '/public-service/',
|
||||
// 配置 笔记侧边导航栏,用于导航向笔记内的所有文档
|
||||
// 声明为 `auto` 的,将根据目录结构自动生成侧边栏导航
|
||||
sidebar: 'auto'
|
||||
},
|
||||
{
|
||||
dir: 'rust',
|
||||
link: '/rust/',
|
||||
sidebar: [
|
||||
{ text: '简介', items: ['foo'] }
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
/**
|
||||
* 为 markdown 文件自动添加 frontmatter 配置
|
||||
* @see https://theme-plume.vuejs.press/config/basic/#autofrontmatter
|
||||
@ -77,6 +112,9 @@ export default defineUserConfig({
|
||||
// lineNumbers: true, // 启用行号
|
||||
// },
|
||||
|
||||
// 开发环境和生产环境都启用git贡献功能
|
||||
git: process.env.NODE_ENV === 'production',
|
||||
|
||||
/* 本地搜索, 默认启用 */
|
||||
search: false,
|
||||
|
||||
|
@ -4,50 +4,74 @@ export const navbar = defineNavbarConfig([
|
||||
{text: '首页', link: '/'},
|
||||
// {text: '博客', link: '/blog/'},
|
||||
{
|
||||
icon: 'material-symbols:book',
|
||||
icon: '/note.svg',
|
||||
text: '学习笔记',
|
||||
items: [
|
||||
{icon: 'mage:robot-happy', text: '机器学习', link: '/学习笔记/机器学习/README.md'},
|
||||
{icon: '/AI.svg', text: '机器学习', link: '/学习笔记/机器学习/1.README.md'},
|
||||
{icon: 'logos:google-developers', text: '全栈开发', link: '/学习笔记/全栈开发/README.md'},
|
||||
{icon: 'mdi:graphics-processing-unit', text: '计算机图形学', link: '/学习笔记/计算机图形学/README.md'},
|
||||
]
|
||||
},
|
||||
{
|
||||
icon: 'eos-icons:project',
|
||||
icon: '/project.svg',
|
||||
text: '项目文档',
|
||||
items: [
|
||||
{icon: '/match.svg', text: '全国大学生竞赛组队系统', link: ''},
|
||||
{icon: '/mirror.svg', text: '重庆医科大学开源软件镜像站', link: ''},
|
||||
{icon: '/overleaf.svg', text: 'Overleaf在线协作企业版', link: ''},
|
||||
{icon: '/zhiyu.png', text: '植愈:AI情绪小帮手', link: ''},
|
||||
{icon: '/robot.png', text: '智慧中草药生态养护平台', link: ''},
|
||||
{icon: '/minecraft.svg', text: 'CYMC群组服', link: ''},
|
||||
{icon: '/command_block.gif', text: 'CQMUA服务器中心', link: ''},
|
||||
|
||||
]
|
||||
},
|
||||
{
|
||||
icon: 'material-symbols:code',
|
||||
icon: '/code.svg',
|
||||
text: 'CS-DIY',
|
||||
items: [
|
||||
{text: '前言', link: '/notes/cs-diy/1.前言.md'},
|
||||
{icon:'/dev-standard.svg', text: '开发规范' , link: '/notes/cs-diy/2.开发规范.md'},
|
||||
{icon: '/path.svg', text: '学习路线', link: '/notes/cs-diy/3.学习路线.md'}
|
||||
]
|
||||
},
|
||||
{
|
||||
icon: 'material-symbols:public',
|
||||
icon: '/public-service.svg',
|
||||
text: '公共服务',
|
||||
items: [
|
||||
{
|
||||
icon: 'mage:robot-happy',
|
||||
icon: '/openai.svg',
|
||||
text: '生成式人工智能',
|
||||
link: '/notes/public-service/1.GPT API公共调用及部署应用集合.md'
|
||||
link: '/notes/公共服务/1.GPT-API.md'
|
||||
},
|
||||
{icon: '/data-center.svg', text: '数据中心', link: ''},
|
||||
{text: '', link: ''}
|
||||
]
|
||||
},
|
||||
{
|
||||
icon: 'basil:university-solid',
|
||||
icon: '/wiki.svg',
|
||||
text: '大学百科',
|
||||
items: [
|
||||
{text: '申请学生邮箱', link: '/notes/university-encyclopedia/1.申请学生邮箱.md'},
|
||||
{icon: '/email.svg', text: '申请学生邮箱', link: '/notes/大学百科/大学生活类/申请学生邮箱.md'},
|
||||
]
|
||||
},
|
||||
{
|
||||
icon: '/manage.svg',
|
||||
text: '后台管理',
|
||||
items: [
|
||||
{icon: '/OAuth2.svg', text: 'OAuth登录(测试版)', link: 'https://hrtcsm.logto.app/demo-app'},
|
||||
{icon: 'icon-park:data-lock', text: '数据中心', link: ''},
|
||||
{icon: '/control.svg', text: '项导运维控制中台', link: ''},
|
||||
{icon: '/vpn.svg', text: 'VPN服务', link: ''},
|
||||
{icon: '/cloud.svg', text: '云计算资源调度中心', link: ''},
|
||||
],
|
||||
},
|
||||
{
|
||||
icon: '/link.svg',
|
||||
text: '友情链接',
|
||||
items: [
|
||||
{icon: '/friend.svg', text: '个人', link: '/friends/persons/'},
|
||||
{icon: '/organ.svg', text: '组织', link: '/friends/organizations/'},
|
||||
]
|
||||
},
|
||||
{icon: 'material-symbols:login', text: 'OAuth登录(未上线)', link: 'https://hrtcsm.logto.app/demo-app'},
|
||||
|
||||
])
|
||||
|
@ -2,6 +2,32 @@ import { defineThemeConfig } from 'vuepress-theme-plume'
|
||||
import {navbar} from './navbar'
|
||||
import {notes} from './notes'
|
||||
|
||||
// 首页异步检查各服务在线状态
|
||||
async function checkStatus() {
|
||||
try {
|
||||
const response = await fetch('https://status.cqmu.online/api/badge/35/status');
|
||||
if (response.ok) {
|
||||
const svgText = await response.text();
|
||||
if (svgText.includes('Status: Up')) {
|
||||
return '所有服务均在线';
|
||||
}
|
||||
}
|
||||
return '部分服务离线';
|
||||
} catch (error) {
|
||||
console.error('Error fetching status:', error);
|
||||
return '服务离线';
|
||||
}
|
||||
}
|
||||
|
||||
// 返回信息
|
||||
|
||||
async function getFooterMessage() {
|
||||
const statusMessage = await checkStatus();
|
||||
return `${statusMessage} <a href="https://status.cqmu.online/" target="_blank"><img src="https://status.cqmu.online/api/badge/35/status" alt="Status Badge" style="vertical-align: middle; display: inline-block;"></a>`;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* @see https://theme-plume.vuejs.press/config/basic/
|
||||
*/
|
||||
@ -13,8 +39,9 @@ export default defineThemeConfig({
|
||||
social: [
|
||||
{icon: 'github', link: 'https://github.com/PGuideStudio'},
|
||||
{icon: 'gitlab', link: 'https://zds.cqmu.edu.cn/pguide-studio'},
|
||||
// { icon: 'qq', link: 'https://qm.qq.com/q/UIXh30Arqc'}
|
||||
],
|
||||
navbarSocialInclude: ['github', 'gitlab'], // 允许显示在导航栏的 social 社交链接
|
||||
navbarSocialInclude: ['github', 'gitlab', 'qq'], // 允许显示在导航栏的 social 社交链接
|
||||
aside: true, // 页内侧边栏, 默认显示在右侧
|
||||
outline: [2, 3], // 页内大纲, 默认显示 h2, h3
|
||||
|
||||
@ -28,12 +55,23 @@ export default defineThemeConfig({
|
||||
// nextPage: true, // 是否启用下一页链接
|
||||
// createTime: true, // 是否显示文章创建时间
|
||||
|
||||
/* 站点页脚 */
|
||||
/* 站点页脚,message显示在线情况 */
|
||||
footer: {
|
||||
message: 'PGuide Studio © 2023-2025',
|
||||
copyright: '',
|
||||
message: await getFooterMessage(),
|
||||
copyright: 'PGuide Studio © 2023-2025',
|
||||
},
|
||||
notFound : {
|
||||
code : '⚡404⚡',
|
||||
title : '🌌 迷路的[0️⃣1️⃣]在数字森林里🌀徘徊',
|
||||
quote : [
|
||||
'"💻 我点故我在,但🔗已不在" —— 赛博笛卡尔',
|
||||
'"🕳️ 宇宙最伟大的谜团不是黑洞,而是404的奇点" —— 星际访客日志',
|
||||
'"👁️ 当你在凝视404时,404也在凝视你的🔄" —— 尼采的键盘',
|
||||
'"🔄 所有的网页终将消逝,正如我们终将成为别人的缓存" —— 二进制佛陀'
|
||||
][Math.floor(Math.random()*4)],
|
||||
linkLabel : '🚀让量子隧穿带你重返现实🌐',
|
||||
linkText : '🌠回到已知宇宙 →'
|
||||
},
|
||||
|
||||
/**
|
||||
* @see https://theme-plume.vuejs.press/config/basic/#profile
|
||||
*/
|
||||
|
1
docs/.vuepress/public/AI.svg
Normal file
After Width: | Height: | Size: 8.8 KiB |
1
docs/.vuepress/public/OAuth2.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1739564028211" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="21679" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M853.205333 85.333333C900.394667 85.333333 938.666667 123.605333 938.666667 170.794667v682.410666A85.461333 85.461333 0 0 1 853.205333 938.666667H170.794667A85.461333 85.461333 0 0 1 85.333333 853.205333V170.794667C85.333333 123.605333 123.605333 85.333333 170.794667 85.333333h682.410666z m-280.448 189.781334h-120.149333l-177.493333 473.770666h92.16l45.056-125.610666h197.973333l43.690667 125.610666h94.890666L572.757333 275.114667zM516.096 354.986667l67.584 193.194666h-144.725333l68.949333-193.194666h8.192z" fill="#00B375" p-id="21680"></path></svg>
|
After Width: | Height: | Size: 888 B |
1
docs/.vuepress/public/avatar/man.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1739565711736" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5887" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M498.133333 512l284.16-249.386667a384 384 0 1 0 0 498.773334z" fill="#FFC107" p-id="5888"></path><path d="M600.106667 240.853333c-24.106667-25.173333-61.653333-36.053333-77.44-20.266666s8.32 48.853333 8.32 48.853333h40.533333v40.533333s33.706667 23.253333 48.853333 8.32 4.906667-52.266667-20.266666-77.44z" fill="#263238" p-id="5889"></path><path d="M704 512m-42.666667 0a42.666667 42.666667 0 1 0 85.333334 0 42.666667 42.666667 0 1 0-85.333334 0Z" fill="#FFC107" p-id="5890"></path><path d="M874.666667 512m-42.666667 0a42.666667 42.666667 0 1 0 85.333333 0 42.666667 42.666667 0 1 0-85.333333 0Z" fill="#FFC107" p-id="5891"></path></svg>
|
After Width: | Height: | Size: 974 B |
1
docs/.vuepress/public/cloud.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1739552426100" class="icon" viewBox="0 0 1364 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="7154" xmlns:xlink="http://www.w3.org/1999/xlink" width="266.40625" height="200"><path d="M1170.798767 874.539458a74.656718 74.656718 0 1 0 74.570905 74.656717 74.779307 74.779307 0 0 0-74.570905-74.656717zM733.082385 93.56154a332.816951 332.816951 0 0 1 226.483228 87.442753c2.133049 2.133049 3.34668 3.677671 4.572571 4.903561a51.352544 51.352544 0 0 0 8.213465 7.919251 46.963856 46.963856 0 0 0 39.228489 19.810387 46.350911 46.350911 0 0 0 45.970885-46.007662 54.956661 54.956661 0 0 0-18.265765-39.007829 75.894867 75.894867 0 0 0-9.807122-8.838668l-3.346681-2.451781A422.858592 422.858592 0 0 0 732.739136 0.001594a429.613247 429.613247 0 0 0-428.007331 400.400282 311.768415 311.768415 0 0 0 7.012092 623.451017h73.663747a45.762484 45.762484 0 0 0 45.958626-45.100503 33.099037 33.099037 0 0 0-9.120623-25.596589 45.529565 45.529565 0 0 0-33.491323-14.624871h-75.196109a221.530632 221.530632 0 0 1 0-443.061264h42.01126a41.766082 41.766082 0 0 0 31.0518-15.544288 45.872814 45.872814 0 0 0 10.358773-38.689097c-0.306473-3.052467-0.306473-6.399147-0.306473-9.807123A337.683735 337.683735 0 0 1 733.082385 93.56154z m202.124789 245.90133a56.97938 56.97938 0 0 0-40.78537-16.451448H723.275263a74.423799 74.423799 0 0 0-133.033613 30.769846 76.875579 76.875579 0 0 0 16.42693 62.765582 74.399281 74.399281 0 0 0 57.849762 25.290117 71.775876 71.775876 0 0 0 61.184184-33.51584H871.607986a25.486259 25.486259 0 0 1 17.346348 7.355341L1034.651393 561.594188a25.743696 25.743696 0 0 0 17.971551 7.93151h86.756255a74.779307 74.779307 0 0 0 58.756921 30.463373h0.600686a74.975449 74.975449 0 0 0 73.676006-61.858423 79.229289 79.229289 0 0 0-16.451448-63.746294 74.889637 74.889637 0 0 0-57.825244-25.903062 70.966788 70.966788 0 0 0-61.196443 32.608682H1090.674578a23.635165 23.635165 0 0 1-17.052133-6.70562l-121.767681-119.144276z m355.263002 334.876447a70.366102 70.366102 0 0 0-66.982645 41.680269h-220.66025a57.494254 57.494254 0 0 0-40.785369 16.157234L793.089714 900.687697a24.431993 24.431993 0 0 1-17.346347 7.355342h-95.901397a61.527433 61.527433 0 0 0-34.999167-28.036111 69.569273 69.569273 0 0 0-26.185016-5.479729 76.814285 76.814285 0 0 0-70.917753 47.233552 74.693495 74.693495 0 0 0 1.507845 56.672907 76.985909 76.985909 0 0 0 40.797629 40.527933 81.313302 81.313302 0 0 0 26.785702 4.572571 69.998335 69.998335 0 0 0 60.277025-30.475633h122.67484a57.776209 57.776209 0 0 0 41.104101-17.064392l165.286786-168.510878a29.029082 29.029082 0 0 1 19.491655-9.439355h209.051069l2.733735 0.907159a73.688264 73.688264 0 1 0 52.982978-124.624005z m-507.163066-86.229122H679.51098a68.282088 68.282088 0 0 0-59.970552-31.088578 72.609481 72.609481 0 0 0-74.583165 74.350245 73.553417 73.553417 0 0 0 75.490323 74.963191 70.672574 70.672574 0 0 0 60.583498-32.608682H782.117996a71.530698 71.530698 0 0 0 60.571239 33.5281h0.612945a74.656718 74.656718 0 1 0-59.970553-119.144276z" fill="#1296db" p-id="7155" data-spm-anchor-id="a313x.search_index.0.i0.6b953a81X6LA9U" class="selected"></path></svg>
|
After Width: | Height: | Size: 3.2 KiB |
1
docs/.vuepress/public/code.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1739558677650" class="icon" viewBox="0 0 1218 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="23714" xmlns:xlink="http://www.w3.org/1999/xlink" width="237.890625" height="200"><path d="M1022.510104 46.720607c-278.207697-30.749118-556.415393-30.749118-834.62309 0-65.633062 7.726104-130.989498 69.612588-141.307147 135.362123-38.688758 259.998938-31.642085 519.997877 21.140019 779.996815 358.317498 51.01073 716.639848 51.01073 1074.957346 0 52.782104-259.998938 59.828777-519.997877 21.135166-779.996815-10.307943-65.749536-75.674085-127.636019-141.302294-135.362123z" fill="#B3E5FF" p-id="23715"></path><path d="M436.719014 833.569972c-63.075488-64.104341-127.990294-128.135886-192.545971-190.556209 60.498502-59.566711 123.467223-121.496872 186.702862-184.227791 16.641213 16.57327 33.364929 33.22419 50.122616 49.923639-46.152796 45.987791-92.062938 91.611602-136.852019 136.26965a12736.366408 12736.366408 0 0 1 139.904607 139.603715 11194.227261 11194.227261 0 0 0-47.332095 48.986996z" fill="#FF0000" opacity=".47" p-id="23716"></path><path d="M797.710559 832.871128a11605.380246 11605.380246 0 0 0-47.084587-48.724929 12443.754768 12443.754768 0 0 1 140.370502-139.598863c-44.687166-44.439659-90.543924-89.92273-136.706427-135.837725 16.757687-16.675185 33.471697-33.28728 50.103204-49.812019 63.289024 62.638711 126.214066 124.335924 186.57183 183.533801-64.691564 62.245611-129.844171 126.243185-193.254522 190.439735z" fill="#16BD00" opacity=".47" p-id="23717"></path><path d="M604.431773 886.963564a7139.337706 7139.337706 0 0 1-66.550294-15.457062c29.225251-152.741005 63.691829-306.243943 96.474388-459.465402a43017.512038 43017.512038 0 0 1 69.369934 15.21926c-32.268133 152.823507-67.671355 306.408948-99.294028 459.703204z" fill="#005EB9" opacity=".47" p-id="23718"></path><path d="M1022.510104 46.720607c-278.207697-30.749118-556.415393-30.749118-834.62309 0-65.633062 7.726104-130.989498 69.612588-141.307147 135.362123a2265.757725 2265.757725 0 0 0-15.825895 133.275298 9879.915981 9879.915981 0 0 1 1148.889175 0 2261.676284 2261.676284 0 0 0-15.830749-133.275298c-10.307943-65.749536-75.674085-127.636019-141.302294-135.362123z" fill="#5C92B0" p-id="23719"></path></svg>
|
After Width: | Height: | Size: 2.3 KiB |
BIN
docs/.vuepress/public/command_block.gif
Normal file
After Width: | Height: | Size: 29 KiB |
1
docs/.vuepress/public/control.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path fill="none" stroke="#8aadf4" stroke-linecap="round" stroke-linejoin="round" d="m11.5 15.5l.5-3.47C10.5 16 8.34 15.28 7.52 15.5c-.23.06 1.67-.48 2.48-2c-.9.33-1.56.5-1.98.5c1.42-1.23 1.91-2.4 1.5-3.5c-.34 2.33-4.61 4.11-5.53 2.06c-.6-1.37-.28-2.23.97-2.57c0 1.06.51 1.59 1.54 1.59V10.5l1.97.91C8.16 8.14 6 6.83 2 7.5C1 6.35.5 5.52.5 5c0-.78.25-1 1-1s1-.02 2.03-1.05C5.09 1.46 7.1 1.1 9.5 2.57Q9.17 1.625 10.55.5c1.48.73 2.13 1.73 1.94 3s-1.02 1.94-2.5 2c.49.37 1.15.37 2 0a2.41 2.41 0 0 0 1.48-2c1.35 1.67 2.02 3.33 2.02 5s-.35 3.02-1.04 4.06l-.5-2.06c-.98 3.5-1.56 4.3-2.47 5Z" stroke-width="1"/></svg>
|
After Width: | Height: | Size: 691 B |
1
docs/.vuepress/public/data-center.svg
Normal file
After Width: | Height: | Size: 6.2 KiB |
1
docs/.vuepress/public/dev-standard.svg
Normal file
After Width: | Height: | Size: 11 KiB |
1
docs/.vuepress/public/email.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1739563615675" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="10406" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M171.471 960A107.628 107.628 0 0 1 64 852.53V424.4l103.653-31.344v297.77c0.807 0.511 5.813 0.98 14.345 1.41V124a59.626 59.626 0 0 1 4.715-23.355 59.939 59.939 0 0 1 5.534-10.192 60.363 60.363 0 0 1 7.326-8.881 60.512 60.512 0 0 1 8.881-7.326 60 60 0 0 1 10.19-5.531A59.586 59.586 0 0 1 242 64h540a59.576 59.576 0 0 1 23.355 4.716 60 60 0 0 1 10.19 5.531 60.386 60.386 0 0 1 8.881 7.326 60.369 60.369 0 0 1 7.326 8.881 59.807 59.807 0 0 1 5.532 10.192A59.589 59.589 0 0 1 842 124v568.2c8.1-0.42 12.849-0.878 13.634-1.374V393.75l104.256 31.99v426.79A107.628 107.628 0 0 1 852.417 960zM333 307.2c0 98.812 80.389 179.2 179.2 179.2a22.425 22.425 0 0 0 22.4-22.4 22.428 22.428 0 0 0-22.4-22.4 135.494 135.494 0 0 1-27.087-2.729 133.523 133.523 0 0 1-25.227-7.833 134.2 134.2 0 0 1-22.83-12.392 135.206 135.206 0 0 1-19.89-16.411 135.046 135.046 0 0 1-16.411-19.891 134.381 134.381 0 0 1-12.394-22.829 133.67 133.67 0 0 1-7.83-25.228 135.3 135.3 0 0 1-2.729-27.087 135.294 135.294 0 0 1 2.729-27.086 133.759 133.759 0 0 1 7.83-25.228 134.519 134.519 0 0 1 12.394-22.832 135.454 135.454 0 0 1 16.411-19.891 135.252 135.252 0 0 1 19.89-16.411 134.615 134.615 0 0 1 22.83-12.392 133.727 133.727 0 0 1 25.227-7.83 135.354 135.354 0 0 1 27.087-2.731 135.371 135.371 0 0 1 27.087 2.731 133.792 133.792 0 0 1 25.228 7.83 134.609 134.609 0 0 1 22.829 12.392 135.4 135.4 0 0 1 19.893 16.411 135.64 135.64 0 0 1 16.411 19.891 134.7 134.7 0 0 1 12.391 22.832 133.759 133.759 0 0 1 7.83 25.228 135.3 135.3 0 0 1 2.732 27.086 22.423 22.423 0 0 0 22.4 22.4 22.425 22.425 0 0 0 22.4-22.4c0-98.811-80.39-179.2-179.2-179.2S333 208.39 333 307.2z m287.959 137.241A22.254 22.254 0 0 0 636.8 451a22.251 22.251 0 0 0 15.838-6.559 22.433 22.433 0 0 0 0-31.681l-60.909-60.909 41.8-41.8a1.114 1.114 0 0 0 0.275-1.129 1.122 1.122 0 0 0-0.87-0.765l-136.1-24.021a3.011 3.011 0 0 0-0.517-0.046 2.982 2.982 0 0 0-2.115 0.876 2.987 2.987 0 0 0-0.83 2.632l24.023 136.106a1.111 1.111 0 0 0 0.763 0.871 1.137 1.137 0 0 0 0.337 0.051 1.122 1.122 0 0 0 0.792-0.323l40.769-40.774z" fill="#FFD578" p-id="10407"></path><path d="M529.445 573.662a30.944 30.944 0 0 1-33.094 0L64.003 424.397V852.53a107.627 107.627 0 0 0 107.468 107.467h680.947a107.627 107.627 0 0 0 107.471-107.471V425.74z m0 0" fill="#F5AE6B" p-id="10408"></path></svg>
|
After Width: | Height: | Size: 2.6 KiB |
1
docs/.vuepress/public/friend.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1739554064953" class="icon" viewBox="0 0 1026 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="20977" xmlns:xlink="http://www.w3.org/1999/xlink" width="200.390625" height="200"><path d="M588.07232 992c-19.2 19.2-51.2 22.4-67.2 6.4l-16-16 73.6-73.6 16 16c16 16 12.8 48-6.4 67.2z" fill="#FA6161" p-id="20978"></path><path d="M434.47232 979.2c-12.8 0-22.4-3.2-32-12.8-9.6-9.6-12.8-19.2-12.8-32s3.2-22.4 12.8-32l115.2-115.2c9.6-9.6 19.2-12.8 32-12.8s22.4 3.2 32 12.8c16 16 16 44.8 0 60.8l-115.2 115.2c-9.6 12.8-19.2 16-32 16zM309.67232 880c-9.6-9.6-12.8-19.2-12.8-32s3.2-22.4 12.8-32l115.2-115.2c9.6-9.6 19.2-12.8 32-12.8s22.4 3.2 32 12.8c16 16 16 44.8 0 60.8l-115.2 115.2c-9.6 9.6-19.2 12.8-32 12.8-12.8 3.2-25.6-3.2-32-9.6zM213.67232 790.4c-9.6-9.6-12.8-19.2-12.8-32s3.2-22.4 12.8-32l115.2-115.2c9.6-9.6 19.2-12.8 32-12.8s22.4 3.2 32 12.8c9.6 9.6 12.8 19.2 12.8 32s-3.2 22.4-12.8 32l-115.2 115.2c-9.6 9.6-19.2 12.8-32 12.8s-25.6-3.2-32-12.8zM114.47232 700.8c-9.6-9.6-12.8-19.2-12.8-32s3.2-22.4 12.8-32l115.2-115.2c6.4-6.4 19.2-9.6 28.8-9.6 12.8 0 22.4 3.2 32 12.8 9.6 9.6 12.8 19.2 12.8 32s-3.2 22.4-12.8 32L175.27232 704c-9.6 9.6-19.2 12.8-32 12.8-9.6-3.2-19.2-6.4-28.8-16z" fill="#4A90E2" p-id="20979"></path><path d="M978.47232 438.4c-12.8 16-51.2 57.6-73.6 80L674.47232 278.4l-115.2 108.8c-51.2 48-118.4 51.2-118.4 51.2h-9.6c-54.4 0-108.8-41.6-134.4-60.8 51.2-54.4 240-249.6 313.6-310.4 25.6-22.4 83.2-51.2 147.2-51.2 70.4 0 131.2 28.8 185.6 86.4 70.4 73.6 80 150.4 80 201.6 0 60.8-25.6 112-44.8 134.4z" fill="#4A90E2" p-id="20980"></path><path d="M908.07232 668.8c-19.2 19.2-51.2 22.4-67.2 6.4l-153.6-144-12.8 16-12.8 12.8 147.2 147.2c16 16 12.8 48-6.4 67.2-9.6 9.6-22.4 16-35.2 16-12.8 0-22.4-3.2-32-9.6l-150.4-150.4-25.6 25.6 147.2 153.6c6.4 6.4 12.8 19.2 9.6 32 0 12.8-6.4 25.6-16 35.2-9.6 9.6-22.4 16-35.2 16-12.8 0-22.4-3.2-32-9.6l-16-16c28.8-32 28.8-83.2 0-112-16-16-35.2-22.4-57.6-22.4h-16c3.2-22.4-6.4-48-22.4-67.2-16-16-35.2-22.4-57.6-22.4h-16v-9.6c0-22.4-9.6-41.6-22.4-57.6-16-16-35.2-22.4-57.6-22.4-6.4 0-12.8 0-19.2 3.2V544c0-22.4-9.6-41.6-22.4-57.6-16-16-35.2-22.4-57.6-22.4s-41.6 9.6-57.6 22.4l-73.6 73.6 6.4-6.4c-19.2-19.2-76.8-70.4-92.8-99.2 0 0 0-3.2-3.2-3.2C-26.32768 332.8-13.52768 217.6 82.47232 118.4c67.2-70.4 147.2-80 198.4-76.8 70.4 3.2 128 35.2 153.6 57.6 9.6 9.6 25.6 22.4 44.8 44.8-99.2 99.2-224 227.2-230.4 236.8l-12.8 12.8 12.8 12.8c3.2 3.2 83.2 86.4 172.8 86.4h9.6c6.4 0 83.2-6.4 144-60.8l89.6-83.2 128 131.2 118.4 124.8c19.2 12.8 16 48-3.2 64z" fill="#FA6161" p-id="20981"></path></svg>
|
After Width: | Height: | Size: 2.6 KiB |
1
docs/.vuepress/public/link.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1739558722794" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="25734" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M286.726 942.076c-112.93 0-204.8-91.874-204.8-204.784 0-112.946 91.87-204.8 204.8-204.8 112.926 0 204.8 91.854 204.8 204.8 0 112.91-91.874 204.784-204.8 204.784z m314.87-501.766c-98.817 0-179.194-80.378-179.194-179.193 0-98.816 80.376-179.193 179.194-179.193 98.817 0 179.21 80.377 179.21 179.193 0 98.815-80.377 179.193-179.21 179.193z m212.49 394.444c-70.587 0-128.012-57.409-128.012-127.99 0-70.587 57.425-127.992 128.011-127.992 70.564 0 127.989 57.406 127.989 127.992 0 70.582-57.425 127.99-127.989 127.99zM255.683 717.537l289.11-439.93 68.462 44.99-289.11 439.93z m539.284 36.672L571.238 277.69l74.154-34.816 223.73 476.519z" fill="#17abe3" p-id="25735" data-spm-anchor-id="a313x.search_index.0.i3.59c13a81AHI7JT" class="selected"></path></svg>
|
After Width: | Height: | Size: 1.1 KiB |
1
docs/.vuepress/public/manage.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1739553737094" class="icon" viewBox="0 0 1258 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="7568" xmlns:xlink="http://www.w3.org/1999/xlink" width="245.703125" height="200"><path d="M1075.726629 962.735543H91.223771c-27.794286 0-50.263771-22.440229-50.263771-50.234514V200.235886c0-27.794286 22.469486-50.234514 50.234514-50.234515h984.6784c27.794286 0 50.234514 22.469486 50.234515 50.234515v712.440685a50.410057 50.410057 0 0 1-50.3808 50.058972z" fill="#C4F7E0" p-id="7569"></path><path d="M1203.258514 838.4512H218.580114c-27.794286 0-50.234514-22.440229-50.234514-50.234514V75.776c0-27.794286 22.440229-50.234514 50.234514-50.234514h984.6784c27.794286 0 50.234514 22.469486 50.234515 50.234514V788.187429c0 27.618743-22.645029 50.234514-50.234515 50.234514z" fill="#31CA84" p-id="7570"></path><path d="M614.6048 333.531429a128.731429 128.731429 0 1 0 257.462857 0 128.731429 128.731429 0 0 0-257.462857 0z" fill="#FFFFFF" opacity=".503" p-id="7571"></path><path d="M743.336229 485.668571c-151.903086 0-187.245714 77.706971-187.245715 187.245715h374.491429c0-110.240914-34.874514-187.245714-187.245714-187.245715z" fill="#FFFFFF" opacity=".665" p-id="7572"></path><path d="M269.663086 138.678857a27.413943 27.413943 0 1 0 54.857143 0 27.413943 27.413943 0 0 0-54.857143 0zM354.859886 138.678857a27.4432 27.4432 0 1 0 54.857143 0 27.4432 27.4432 0 0 0-54.857143 0zM439.881143 138.678857a27.4432 27.4432 0 1 0 54.857143 0 27.4432 27.4432 0 0 0-54.857143 0z" fill="#FFFFFF" p-id="7573"></path><path d="M0.672914 837.4272a171.446857 171.446857 0 1 0 342.893715 0 171.446857 171.446857 0 0 0-342.893715 0z" fill="#328861" p-id="7574"></path><path d="M274.6368 816.859429c0-9.4208-5.851429-14.218971-15.594057-15.096686-6.173257 0-11.995429-2.925714-15.945143-8.045714-3.949714-5.149257-5.3248-11.819886-3.949714-18.168686 3.774171-17.846857 2.925714-20.392229-12.873143-29.666743l-10.093714-5.851429a20.392229 20.392229 0 0 0-30.017829 2.779429c-11.644343 9.596343-16.7936 9.4208-27.940571 0a20.567771 20.567771 0 0 0-29.988572-3.101257l-16.7936 9.771886c-7.548343 3.598629-11.146971 13.019429-8.250514 21.269942 5.149257 17.846857-2.399086 29.315657-20.392229 31.188115-7.548343 0.877714-12.522057 5.149257-12.873143 12.346514-0.848457 14.043429-0.848457 28.291657 0 42.335086 0 9.069714 5.675886 13.7216 15.096686 14.570057 6.173257 0 11.995429 2.750171 15.945143 7.723886a23.113143 23.113143 0 0 1 4.622629 17.993142c-3.423086 18.695314-3.423086 20.772571 13.370514 30.339658 3.598629 2.048 7.021714 4.476343 10.825143 6.3488 8.572343 6.173257 20.216686 4.622629 27.062857-3.774172 12.873143-11.819886 16.822857-11.644343 30.339657 0 5.3248 3.803429 10.971429 7.197257 16.822857 10.298514 12.170971-8.221257 24.341943-15.447771 35.313372-23.844571a16.852114 16.852114 0 0 0 1.521371-14.043429c-6.144-16.091429 3.803429-30.164114 21.0944-31.890285a11.702857 11.702857 0 0 0 12.346514-11.644343c0.877714-13.897143 1.024-27.940571 0.351086-41.837714zM200.411429 866.391771c-7.548343 8.074971-17.846857 12.522057-28.642743 12.522058-16.296229 0-31.012571-10.4448-37.361372-26.565486a44.821943 44.821943 0 0 1 8.747886-46.811429c11.4688-12.346514 28.964571-15.945143 44.032-9.245257 15.096686 6.670629 25.044114 22.293943 25.044114 39.789714 0.175543 11.293257-4.096 22.235429-11.819885 30.3104z" fill="#FFFFFF" p-id="7575"></path></svg>
|
After Width: | Height: | Size: 3.4 KiB |
1
docs/.vuepress/public/note.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1739558941481" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="33548" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M798.42 76.032c37.804 4.244 66.988 29.9 73.858 67.306C883.114 202.426 896 314.252 896 512c0 177.468-5.76 285.732-11.306 348.78-4.224 48.078-39.872 83.73-87.916 88.304C739.882 954.498 648.49 960 512 960s-227.882-5.5-284.78-10.916c-48.04-4.574-83.69-40.226-87.914-88.304C133.76 797.732 128 689.466 128 512c0-177.466 5.76-285.732 11.306-348.78 4.224-48.078 39.872-83.73 87.916-88.304C284.118 69.502 375.51 64 512 64c145.9 0 235.242 6.284 286.42 12.032z" fill="#53B5FF" p-id="33549"></path><path d="M298.666 69.52v884.956c-28.202-1.654-51.86-3.53-71.444-5.392-48.044-4.574-83.692-40.226-87.916-88.304C133.76 797.73 128 689.466 128 512c0-177.468 5.76-285.732 11.306-348.782 4.224-48.076 39.872-83.73 87.916-88.3 19.584-1.866 43.242-3.74 71.444-5.396z" fill="#FCBF28" p-id="33550"></path><path d="M426.666 268.05c0-16.306 12.268-29.768 28.544-30.596 25.686-1.306 70.572-2.788 142.124-2.788 71.552 0 116.436 1.48 142.122 2.788 16.278 0.828 28.544 14.29 28.544 30.596v18.568c0 16.304-12.266 29.766-28.544 30.594-25.686 1.308-70.57 2.788-142.122 2.788-71.552 0-116.438-1.48-142.124-2.788-16.276-0.828-28.544-14.29-28.544-30.594v-18.568zM426.666 438.716c0-16.306 12.268-29.916 28.524-30.96 18.708-1.202 45.674-2.422 78.144-2.422 32.468 0 59.434 1.22 78.144 2.42 16.256 1.046 28.522 14.656 28.522 30.96v18.57c0 16.306-12.266 29.916-28.522 30.96-18.71 1.202-45.676 2.422-78.144 2.422-32.47 0-59.436-1.22-78.144-2.42-16.256-1.046-28.524-14.656-28.524-30.96v-18.57z" fill="#FFFFFF" p-id="33551"></path></svg>
|
After Width: | Height: | Size: 1.8 KiB |
1
docs/.vuepress/public/openai.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1739563416013" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="4361" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M565.265178 954.519092c-22.289934 0-48.400999-8.151747-67.952455-14.838727a103.425292 103.425292 0 0 1-26.875292-11.272338c-12.737105-7.769634-15.411897-8.342804-19.806198-24.773669 21.971506-5.158528 81.581157-41.905075 103.871091-55.342721 148.896757-89.159735 119.028246-10.444426 119.028246-364.981743 15.029784 3.566389 82.791182 32.415932 82.791182 57.316972 0 133.102747 20.570425 273.847757-52.604243 354.91943-22.799418 25.47421-91.834527 58.972796-138.388646 58.972796z m-433.061569-299.321966c258.626916 136.860193 184.369594 157.048504 357.721593 52.094759 44.579867-27.193719 90.433445-49.292596 132.593263-77.568969v101.896839c-95.528287 22.226248-272.319304 227.038896-419.050754 100.686815l-25.856323-25.155782c-37.319718-43.943012-45.344094-72.410442-45.344094-151.889977z m375.744596-19.105658c-19.933569-13.310275-79.479535-51.330533-101.896839-57.316972v-133.739602a1158.312326 1158.312326 0 0 0 101.896839-57.316973c43.943012 10.189684 70.690933 47.063603 114.633945 57.316973v127.371049c-17.831947 12.10025-95.846715 58.718054-114.633945 63.749211z m-426.693016-178.31947c0-63.685525-4.26693-90.306074 38.84817-145.776166 23.945757-30.88748 47.509402-39.612396 82.090641-57.953828v261.110652c44.134069 23.372588 83.873836 49.037854 129.345301 74.448379l131.765351 78.396881c-59.545966 15.921381-63.685525 61.32916-109.602788 33.753328-104.699003-62.730242-272.38299-129.345301-272.38299-243.91556z m866.123138 127.37105c0 79.543221-47.573087 161.188063-121.002497 178.31947v-165.582365c0-82.791182 9.743885-84.574377-48.910483-116.608196L565.265178 362.371082c15.79401-23.62733 22.608361-19.105657 48.146256-34.835982 41.714019-25.47421 39.039227-16.112438 117.053995 28.785857 94.190891 54.196382 216.849212 100.559444 216.849212 228.885777z m-541.326961-197.425127v-95.528287c43.751956-23.181531 90.688187-50.94842 133.357489-76.804743 82.154327-49.547338 95.528287-63.303412 185.006449-63.303412 48.464684 0 102.533695 36.746548 125.651541 65.405034 42.223503 52.22213 39.930824 92.662439 39.930824 151.125751-31.078536-16.494551-192.393971-121.002497-222.899337-121.002498s-229.650003 123.422547-261.110652 140.108155z m-50.94842 159.213812c-16.36718-10.95391-63.112355-39.99451-82.791183-44.579867 0-168.320842-33.880699-314.606493 67.952455-390.519639 56.043262-41.714019 113.169178-53.814269 181.376375-30.696423 25.47421 8.661231 35.536523 20.888852 56.36169 26.429493-11.781822 16.048752-80.68956 50.311565-102.278953 63.303412-154.564769 93.235608-120.620384 7.451206-120.620384 376.063024z m-292.953415 121.002498c0 169.148754 115.143429 280.853165 274.293556 273.847756 59.800708-2.674792 26.811606-7.705949 69.417222 25.47421 97.820966 76.741057 228.822091 73.747838 319.637649 1.018969a251.939936 251.939936 0 0 0 52.604244-55.661149c58.20857-85.274918-10.95391-45.598836 81.96327-83.619094 130.236898-53.241099 199.399378-217.358696 128.64476-355.428914-27.448461-53.559526-40.249252-28.849543-28.276373-104.699003 18.723544-118.582447-63.176041-230.032116-157.621674-269.771884-98.90362-41.586648-129.090559 12.737105-178.892639-37.574459A161.888604 161.888604 0 0 0 580.103905 28.913674C474.003821-27.766443 331.284559 1.528898 258.428319 93.681853c-81.326415 102.979494 9.489143 54.705866-92.407697 98.648878C15.149614 257.353652-33.251385 439.175825 41.579107 561.06992c56.807488 92.598753 20.570425 4.967471 20.570424 106.800625z" fill="#10A37F" p-id="4362"></path></svg>
|
After Width: | Height: | Size: 3.7 KiB |
1
docs/.vuepress/public/organ.svg
Normal file
After Width: | Height: | Size: 6.0 KiB |
1
docs/.vuepress/public/path.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1739563954791" class="icon" viewBox="0 0 1032 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="18063" xmlns:xlink="http://www.w3.org/1999/xlink" width="201.5625" height="200"><path d="M577.084624 439.449841h304.270772l93.513922 144.395172-93.513922 134.334533h-304.270772" fill="#5CE68F" p-id="18064"></path><path d="M881.355396 748.927218h-304.270772c-16.985015 0-30.747673-13.762658-30.747673-30.747672s13.762658-30.747673 30.747673-30.747673h288.212287l72.53581-104.205914-73.19586-113.028445h-287.552237c-16.985015 0-30.747673-13.766758-30.747673-30.747673s13.762658-30.747673 30.747673-30.747673h304.270772a30.747673 30.747673 0 0 1 25.807547 14.033238l93.513922 144.395172a30.747673 30.747673 0 0 1-0.573956 34.281605l-93.513923 134.334533a30.747673 30.747673 0 0 1-25.23359 13.180502z" fill="#6E6E96" p-id="18065"></path><path d="M470.541888 131.161373V47.757286h106.542736v933.806826h-106.542736V409.739389" fill="#FFA607" p-id="18066"></path><path d="M577.084624 1012.311785h-106.546836a30.747673 30.747673 0 0 1-30.747673-30.747673V409.739389a30.747673 30.747673 0 0 1 61.495346 0v541.07705h45.05149V78.504958h-45.05149v52.656415a30.747673 30.747673 0 0 1-61.495346 0V47.757286a30.747673 30.747673 0 0 1 30.747673-30.747673h106.546836a30.747673 30.747673 0 0 1 30.747673 30.747673v933.806826c0 16.985015-13.762658 30.747673-30.747673 30.747673z" fill="#6E6E96" p-id="18067"></path><path d="M557.967771 161.749158H151.200657L57.682634 306.078735l93.518023 134.252539H557.967771" fill="#FFCC71" p-id="18068"></path><path d="M557.967771 471.078947H151.196557a30.743573 30.743573 0 0 1-25.229491-13.172303L32.453144 323.654105a30.747673 30.747673 0 0 1-0.573957-34.293905l93.518022-144.329576a30.747673 30.747673 0 0 1 25.803448-14.029139h406.771214c16.985015 0 30.747673 13.766758 30.747673 30.747673s-13.762658 30.747673-30.747673 30.747673H167.915092L94.723331 305.459682l72.531711 104.123919H557.967771c16.985015 0 30.747673 13.766758 30.747673 30.747673s-13.762658 30.747673-30.747673 30.747673z" fill="#6E6E96" p-id="18069"></path></svg>
|
After Width: | Height: | Size: 2.2 KiB |
1
docs/.vuepress/public/project.svg
Normal file
After Width: | Height: | Size: 5.0 KiB |
1
docs/.vuepress/public/public-service.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1739558589580" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="14543" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M968.704 460.8c0-202.752-165.888-368.64-368.64-368.64s-368.64 165.888-368.64 368.64c0 188.416 141.312 342.016 323.584 364.544 10.24 2.048 22.528 4.096 36.864 4.096h12.288c202.752-2.048 364.544-165.888 364.544-368.64z" fill="#91E71B" p-id="14544"></path><path d="M231.424 514.048c0-22.528 2.048-45.056 6.144-65.536 14.336 14.336 45.056 14.336 53.248-8.192 14.336 8.192 32.768 10.24 32.768 26.624 0 55.296 2.048 114.688 51.2 114.688 2.048 0 28.672 10.24 40.96 43.008 4.096 12.288 22.528 0 40.96 0 10.24 0 0 16.384 0 51.2s73.728 88.064 73.728 88.064c0 22.528 0 40.96 2.048 55.296-16.384 0-30.72 2.048-40.96 6.144-147.456-26.624-260.096-155.648-260.096-311.296zM673.792 817.152c-2.048-10.24-10.24-14.336-24.576-10.24 12.288-51.2 18.432-79.872 43.008-102.4 36.864-32.768 4.096-67.584-24.576-63.488-22.528 4.096-8.192-26.624-28.672-28.672-20.48-2.048-45.056-40.96-73.728-53.248-14.336-6.144-30.72-26.624-53.248-26.624-20.48 0-51.2 16.384-51.2 4.096 0-45.056-4.096-77.824-6.144-90.112 0-10.24-6.144-4.096 20.48-2.048 14.336 0 8.192-30.72 22.528-30.72 14.336-2.048 49.152 14.336 59.392 8.192 8.192-6.144 61.44 137.216 61.44 24.576 0-14.336-6.144-36.864 0-49.152 28.672-51.2 53.248-92.16 51.2-98.304-2.048-4.096-28.672-6.144-49.152 2.048-8.192 2.048 2.048 14.336-8.192 16.384-38.912 8.192-73.728-10.24-61.44-28.672 12.288-18.432 57.344-8.192 61.44-47.104 2.048-22.528 4.096-47.104 6.144-65.536 53.248 8.192 47.104-69.632-30.72-77.824 159.744-4.096 292.864 98.304 344.064 241.664-2.048-2.048-6.144-4.096-8.192-4.096-24.576-59.392-81.92-16.384-61.44 36.864-104.448 79.872-77.824 137.216-43.008 169.984 18.432 16.384 34.816 43.008 47.104 61.44-12.288 34.816 45.056 20.48 73.728-38.912-38.912 122.88-139.264 219.136-266.24 251.904z" fill="#1C91FF" p-id="14545"></path><path d="M591.872 849.92c-16.384 0-30.72-2.048-40.96-4.096-192.512-24.576-339.968-190.464-339.968-385.024 0-215.04 174.08-389.12 389.12-389.12s389.12 174.08 389.12 389.12c0 212.992-172.032 387.072-385.024 389.12h-12.288z m8.192-737.28c-192.512 0-348.16 155.648-348.16 348.16 0 176.128 131.072 323.584 305.152 346.112 14.336 2.048 30.72 4.096 45.056 2.048 192.512-2.048 346.112-157.696 346.112-348.16s-155.648-348.16-348.16-348.16z" fill="#1C2754" p-id="14546"></path><path d="M57.344 782.336L141.312 921.6c4.096 6.144 10.24 10.24 16.384 10.24h106.496c36.864 0 75.776-10.24 106.496-30.72l210.944-126.976c10.24-6.144 12.288-18.432 6.144-26.624-20.48-34.816-61.44-53.248-102.4-43.008l-75.776 16.384c-6.144-36.864-38.912-63.488-77.824-57.344l-102.4 14.336c-30.72 4.096-61.44 14.336-90.112 30.72L61.44 755.712c-6.144 6.144-8.192 16.384-4.096 26.624z" fill="#FFD2BF" p-id="14547"></path><path d="M264.192 952.32H157.696c-14.336 0-26.624-8.192-34.816-20.48l-83.968-141.312c-10.24-18.432-2.048-40.96 14.336-53.248l77.824-47.104c30.72-18.432 63.488-28.672 98.304-34.816l102.4-14.336c40.96-6.144 79.872 18.432 94.208 53.248l55.296-12.288c49.152-10.24 98.304 10.24 122.88 53.248 12.288 18.432 6.144 43.008-14.336 55.296l-210.944 126.976c-32.768 22.528-73.728 34.816-114.688 34.816z m-188.416-178.176l81.92 137.216h104.448c34.816 0 67.584-10.24 96.256-26.624L569.344 757.76c-16.384-26.624-49.152-40.96-79.872-32.768l-96.256 22.528-4.096-22.528c-4.096-26.624-28.672-45.056-53.248-40.96l-102.4 14.336c-28.672 4.096-57.344 14.336-81.92 28.672l-75.776 47.104z" fill="#1C2754" p-id="14548"></path><path d="M247.808 798.72c-8.192 0-16.384-6.144-18.432-14.336-4.096-10.24 2.048-22.528 12.288-26.624l165.888-57.344c10.24-4.096 22.528 2.048 26.624 12.288s-4.096 24.576-14.336 28.672L253.952 798.72h-6.144z" fill="#1C2754" p-id="14549"></path></svg>
|
After Width: | Height: | Size: 3.8 KiB |
BIN
docs/.vuepress/public/robot.png
Normal file
After Width: | Height: | Size: 62 KiB |
1
docs/.vuepress/public/vpn.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1739552679628" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="4228" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M665.6 509.952H347.648c-12.8 0-21.504 8.704-21.504 21.504v204.8c0 12.8 8.704 21.504 21.504 21.504h315.904c12.8 0 21.504-8.704 21.504-21.504v-204.8c2.048-12.8-8.704-21.504-19.456-21.504z m-132.096 151.552s0 2.048 0 0c0 12.8-8.704 23.552-21.504 23.552s-21.504-8.704-21.504-21.504v-2.048c-12.8-6.144-21.504-21.504-21.504-36.352 0-23.552 19.456-42.496 42.496-42.496s42.496 19.456 42.496 42.496c0.512 14.848-7.68 29.696-20.48 36.352z" fill="#FF6A00" p-id="4229"></path><path d="M981.504 492.544C970.752 243.2 763.904 44.544 512 44.544S53.248 243.2 42.496 492.544v31.744C48.64 778.24 256 983.04 512 983.04s462.848-204.8 469.504-458.752v-31.744z m-171.008-219.648c-42.496 34.304-91.648 51.2-130.048 61.952-23.552-87.552-64-159.744-108.544-198.144 95.744 14.848 179.2 64 238.592 136.192z m-358.4-136.192C409.6 175.104 369.152 247.296 345.6 332.8c-38.4-10.752-85.504-27.648-128-61.952C275.456 198.656 358.4 151.552 452.096 136.704z m373.248 596.992c-16.896-14.848-38.4-27.648-59.904-40.448-29.696-14.848-45.056 14.848-16.896 27.648 19.456 8.704 38.4 21.504 57.344 36.352-61.952 74.752-149.504 123.904-249.856 134.656 21.504-14.848 45.056-40.448 64-72.704 6.656-16.896-21.504-27.648-36.352-2.048-25.6 36.352-51.2 57.344-74.752 57.344-21.504 0-49.152-21.504-72.704-55.296-21.504-31.744-42.496-14.848-38.4 0 19.456 29.696 40.448 53.248 61.952 70.656-98.304-8.704-183.296-57.344-243.2-130.048 19.456-14.848 38.4-27.648 57.344-36.352 27.648-14.848 10.752-42.496-16.896-27.648-19.456 10.752-40.448 23.552-59.904 38.4-42.496-59.904-66.048-132.096-68.096-208.896H261.12c8.704 0 16.896-6.656 16.896-16.896S271.872 491.52 261.12 491.52H130.048c4.096-72.704 27.648-140.8 68.096-198.144 38.4 34.304 91.648 55.296 138.752 68.096-4.096 21.504-8.704 42.496-10.752 66.048 0 19.456 32.256 19.456 32.256 0 16.896-149.504 96.256-283.648 153.6-283.648s136.704 136.704 155.648 288.256c2.048 19.456 34.304 16.896 31.744 0-2.048-21.504-6.656-42.496-10.752-64 49.152-12.8 102.4-34.304 140.8-68.096 38.4 55.296 61.952 123.904 66.048 194.048h-132.096c-8.704 0-16.896 6.144-16.896 16.896 0 10.752 6.144 16.896 16.896 16.896H896c-2.048 75.776-27.648 146.432-70.656 205.824z" fill="#36ab60" p-id="4230" data-spm-anchor-id="a313x.search_index.0.i0.1a573a81nInOyK" class="selected"></path><path d="M512 317.952c-59.904 0-106.496 47.104-106.496 106.496v31.744h42.496v-31.744c0-34.304 27.648-64 64-64s64 27.648 64 64v149.504h42.496V424.448c0-59.904-46.592-106.496-106.496-106.496z" fill="#FF6A00" p-id="4231"></path></svg>
|
After Width: | Height: | Size: 2.7 KiB |
1
docs/.vuepress/public/wiki.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1739558497352" class="icon" viewBox="0 0 1126 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="9274" xmlns:xlink="http://www.w3.org/1999/xlink" width="219.921875" height="200"><path d="M460.8 747.52c0-63.488-3.072-83.968-15.36-88.064-8.192-4.096-15.36-12.288-15.36-20.48 0-21.504 67.584-18.432 138.24 6.144 32.768 11.264 61.44 20.48 64.512 20.48s3.072-75.776 0-168.96l-5.12-169.984 26.624 6.144c14.336 3.072 63.488-3.072 108.544-14.336s108.544-23.552 141.312-26.624l58.368-7.168v205.824c0 156.672-3.072 206.848-12.288 209.92-7.168 2.048-57.344 11.264-110.592 21.504-53.248 9.216-158.72 36.864-233.472 62.464-74.752 24.576-137.216 45.056-140.288 45.056s-5.12-36.864-5.12-81.92z" fill="#4E9FFE" p-id="9275"></path><path d="M363.52 637.952c-51.2-12.288-116.736-25.6-145.408-29.696l-54.272-6.144V393.216c0-169.984 3.072-208.896 14.336-208.896 40.96 0 202.752 34.816 285.696 61.44 126.976 40.96 199.68 82.944 199.68 115.712 0 20.48-8.192 27.648-37.888 36.864-20.48 6.144-59.392 25.6-88.064 44.032l-51.2 33.792-3.072 89.088c-2.048 57.344-7.168 89.088-15.36 92.16-7.168 2.048-53.248-6.144-104.448-19.456z" fill="#00C358" p-id="9276"></path><path d="M563.2 685.056c-41.984-15.36-84.992-27.648-95.232-24.576-16.384 3.072-17.408-5.12-15.36-105.472l3.072-108.544 44.032-29.696c23.552-16.384 70.656-39.936 104.448-53.248l60.416-23.552-2.048 185.344c-1.024 113.664-6.144 185.344-12.288 186.368-5.12 1.024-45.056-10.24-87.04-26.624z" fill="#348AC4" p-id="9277"></path></svg>
|
After Width: | Height: | Size: 1.6 KiB |
BIN
docs/.vuepress/public/zhiyu.png
Normal file
After Width: | Height: | Size: 135 KiB |
@ -11,8 +11,8 @@ config:
|
||||
text: Start from here, build projects as our dreams.
|
||||
actions:
|
||||
- theme: brand
|
||||
text: ✅服务在线状态
|
||||
link: https://status.cqmu.online/status/pguide
|
||||
text: 开始阅读
|
||||
link: /
|
||||
|
||||
- theme: alt
|
||||
text: 😊语雀文档↗
|
||||
|
9
docs/notes/campus-wiki.ts
Normal file
@ -0,0 +1,9 @@
|
||||
import {defineNoteConfig} from "vuepress-theme-plume";
|
||||
|
||||
export default defineNoteConfig({
|
||||
dir: '大学百科',
|
||||
link: '/campus-wiki/',
|
||||
sidebar: [
|
||||
'/campis-life/申请学生邮箱.md',
|
||||
]
|
||||
})
|
@ -1,44 +0,0 @@
|
||||
---
|
||||
title: 前言
|
||||
createTime: 2025/02/14 12:40:42
|
||||
permalink: /article/write-forward/
|
||||
---
|
||||
|
||||
> 这是你的故事,也是我们的故事。这个过程没有学分,没有陪伴,你只知道自己在变强。
|
||||
|
||||
一本关于计算机各方向的自学指南,无论天南或海北,希望可以帮到你,灵感和部分素材来自CS自学指南。
|
||||
同时,这也是献给项导工作室、Med Explorers、CYMC、美术社团、钱悳班学弟学妹们的一份礼物。这本指南能对你们的本科生涯有哪怕一点点帮助,对于编者们而言也是莫大的欣慰与鼓舞。
|
||||
|
||||
|
||||
|
||||
## 常见问题
|
||||
|
||||
### 我该选择哪一部分进行学习?
|
||||
|
||||
兴趣是最好的老师,如果你有自己十分乐意花时间钻研的项目或者技术,就朝那个方向一直学习。都不感兴趣先试试前端开发吧,实在不行可能说明计算机不太符合你的胃口,看看其他好玩的也不错。
|
||||
我看不懂英文感觉很难
|
||||
用翻译
|
||||
|
||||
### 我想从事这些行业需要准备什么吗?
|
||||
|
||||
毕业工作去找实习,熟悉主流开发技术;读研究生去读、发表论文、练英语,选择性钻研底层技术。
|
||||
|
||||
### 自学需要逃课去吗?
|
||||
|
||||
不要逃课,尊重老师是起码的。可以在课上完成任务后自学。
|
||||
|
||||
### 我没有基础/我怕学不会怎么办?
|
||||
|
||||
学呗,不学肯定学不会。实在有困难问问其他人怎么学的,学不下去就换条路或者睡个大觉。
|
||||
|
||||
### 我该怎样找到自己的兴趣点?
|
||||
|
||||
多实践、多思考
|
||||
|
||||
### 实习真的很重要吗?
|
||||
|
||||
是的,尤其是当下的就业环境。实习还有钱拿,好点的公司有概率转正,姑且大胆一试吧。
|
||||
|
||||
### 我感觉请教大佬们很不好意思?
|
||||
|
||||
当一个礼貌懂事的小朋友来提问的时候,没有人会拒绝的~~
|
@ -1,6 +0,0 @@
|
||||
---
|
||||
title: 计算机常识
|
||||
createTime: 2025/02/14 14:30:42
|
||||
permalink: /article/3xmmbo6a/
|
||||
---
|
||||
|
@ -1,8 +0,0 @@
|
||||
---
|
||||
title: Demo
|
||||
createTime: 2025/02/14 08:56:39
|
||||
permalink: /demo/
|
||||
---
|
||||
|
||||
- [bar](./bar.md)
|
||||
- [foo](./foo.md)
|
@ -1,7 +0,0 @@
|
||||
---
|
||||
title: bar
|
||||
createTime: 2025/02/14 08:56:39
|
||||
permalink: /demo/dli40z8a/
|
||||
---
|
||||
|
||||
[foo](./foo.md)
|
@ -1,7 +0,0 @@
|
||||
---
|
||||
title: foo
|
||||
createTime: 2025/02/14 08:56:39
|
||||
permalink: /demo/7rgbnyqi/
|
||||
---
|
||||
|
||||
[bar](./bar.md)
|
50
docs/notes/friends.md
Normal file
@ -0,0 +1,50 @@
|
||||
---
|
||||
friends: true
|
||||
title: Thanks to these guys for contributing PGuide Docs~
|
||||
description: 我们所铭记的人们
|
||||
permalink: /friends/persons/
|
||||
pageLayout: friends
|
||||
|
||||
list:
|
||||
- name: 李徵
|
||||
link: https://www.li-zheng.icu/
|
||||
avatar: /avatar/man.svg
|
||||
desc: 我与我周旋久,宁做我。
|
||||
location: 中国,河北
|
||||
organization: 项导工作室
|
||||
socials:
|
||||
- icon: qq
|
||||
link:
|
||||
- name: Elysia_Realme
|
||||
link: https://chenhy.pguide.studio/
|
||||
avatar: https://chenhy.pguide.studio/githubFindNew/pictures/CircleElysia.jpg
|
||||
location: 中国,重庆涪陵
|
||||
organization: 项导工作室、CQMUA
|
||||
desc: 兄弟你好香,今夜星光闪闪,爱你的♥满满。
|
||||
socials:
|
||||
- icon: qq
|
||||
link:
|
||||
- name: 廖凡勋
|
||||
link: https://github.com/DKwms
|
||||
avatar: https://avatars.githubusercontent.com/u/98271041?v=4
|
||||
desc: 楼上的好恐怖呀
|
||||
location: 中国,重庆沙坪坝
|
||||
organization: 项导工作室
|
||||
socials:
|
||||
- icon: github
|
||||
link: https://github.com/DKwms
|
||||
backgroundColor:
|
||||
color:
|
||||
nameColor: #73BD79
|
||||
|
||||
# - name:
|
||||
# link:
|
||||
# avatar:
|
||||
# desc:
|
||||
# location:
|
||||
# organization:
|
||||
# socials:
|
||||
# backgroundColor:
|
||||
# color:
|
||||
# nameColor:
|
||||
---
|
10
docs/notes/index.ts
Normal file
@ -0,0 +1,10 @@
|
||||
import {defineNoteConfig} from "vuepress-theme-plume";
|
||||
|
||||
export default defineNoteConfig({
|
||||
dir: '/notes/',
|
||||
link: '/',
|
||||
|
||||
// notes:[
|
||||
//
|
||||
// ].
|
||||
})
|
@ -1,8 +0,0 @@
|
||||
---
|
||||
title: GPT API公共调用及部署应用集合
|
||||
createTime: 2025/02/14 09:12:27
|
||||
permalink: /article/GPT-API-deploy-assets/
|
||||
---
|
||||
|
||||
此页面汇集了目前市面上 98%以上的大模型,且涵盖了 github 上主流的开源框架和技术,欢迎挨个体验。UpStream Sync 功能启用可以自动同步 fork 的项目,尝试到市面上最新的大模型功能。One API 配合统一身份认证系统方便配置,欢迎体验。
|
||||
|
@ -1,10 +0,0 @@
|
||||
---
|
||||
title: 申请学生邮箱
|
||||
createTime: 2025/02/14 13:24:17
|
||||
permalink: /article/apply-student-email/
|
||||
---
|
||||
|
||||
进入信息门户:https://portal.paas.cqmu.edu.cn/main.html
|
||||

|
||||
点击电子邮箱申请即可
|
||||

|
6
docs/notes/公共服务/1.GPT-API.md
Normal file
@ -0,0 +1,6 @@
|
||||
---
|
||||
title: GPT-API
|
||||
createTime: 2025/02/15 04:14:58
|
||||
permalink: /article/gpt-api/
|
||||
---
|
||||
*
|
7
docs/notes/大学百科/大学生活类/申请学生邮箱.md
Normal file
@ -0,0 +1,7 @@
|
||||
---
|
||||
title: 申请学生邮箱
|
||||
createTime: 2025/02/15 00:18:33
|
||||
permalink: /article/3bw3rlpi/
|
||||
---
|
||||
|
||||
123
|
7
docs/open/学习笔记/机器学习/1.README.md
Normal file
@ -0,0 +1,7 @@
|
||||
---
|
||||
title: 1.README
|
||||
createTime: 2025/02/15 03:58:34
|
||||
permalink: /open/ml/1.README.md
|
||||
---
|
||||
|
||||
123
|
@ -1,7 +1,7 @@
|
||||
---
|
||||
title: 支持向量机
|
||||
createTime: 2025/02/14 13:37:55
|
||||
permalink: /article/svm/
|
||||
permalink: /open/ml/svm.md
|
||||
---
|
||||
|
||||
## 支持向量机是什么
|
8
docs/open/导航/1.get-started.md
Normal file
@ -0,0 +1,8 @@
|
||||
---
|
||||
title: 开始阅读
|
||||
createTime: 2025/02/15 03:50:34
|
||||
permalink: /open/get-started
|
||||
---
|
||||
|
||||
千里之行,始于足下。项导文档(PGuide Docs)由几大组织联合编写,凝聚了无数前辈的心血,为了就是让后来者少走弯路,希望能够帮到你。
|
||||
|
7
docs/open/常用软件教程/1.IDE.md
Normal file
@ -0,0 +1,7 @@
|
||||
---
|
||||
title: 1.IDE
|
||||
createTime: 2025/02/14 22:46:46
|
||||
permalink: /open/IDE/
|
||||
---
|
||||
|
||||
IDE是什么
|