docs: sth

This commit is contained in:
rand777 2025-02-26 19:06:03 +08:00
parent dfdb063890
commit c2b09c8616
30 changed files with 2194 additions and 82 deletions

View File

@ -105,12 +105,12 @@ export default defineUserConfig({
* markdown enhance * markdown enhance
* @see https://theme-plume.vuejs.press/config/plugins/markdown-enhance/ * @see https://theme-plume.vuejs.press/config/plugins/markdown-enhance/
*/ */
// markdownEnhance: { markdownEnhance: {
// chartjs: true, chartjs: true,
// echarts: true, echarts: true,
// mermaid: true, mermaid: true,
// flowchart: true, flowchart: true,
// }, },
/** /**
* markdown power * markdown power
@ -118,9 +118,9 @@ export default defineUserConfig({
*/ */
markdownPower: { markdownPower: {
pdf: true, pdf: true,
audioReader: true,
}, },
// markdownPower: { // markdownPower: {
// pdf: true, // 启用 PDF 嵌入 @[pdf](/xxx.pdf) // pdf: true, // 启用 PDF 嵌入 @[pdf](/xxx.pdf)
// caniuse: true, // 启用 caniuse 语法 @[caniuse](feature_name) // caniuse: true, // 启用 caniuse 语法 @[caniuse](feature_name)

View File

@ -2,7 +2,6 @@ import {defineNavbarConfig} from 'vuepress-theme-plume'
export const navbar = defineNavbarConfig([ export const navbar = defineNavbarConfig([
{text: '首页', link: '/'}, {text: '首页', link: '/'},
// {text: '博客', link: '/blog/'},
{ {
icon: '/note.svg', icon: '/note.svg',
text: '学习笔记', text: '学习笔记',
@ -24,7 +23,8 @@ export const navbar = defineNavbarConfig([
{icon: '/univ-town.svg', text: '像素大学城', link: ''}, {icon: '/univ-town.svg', text: '像素大学城', link: ''},
{icon: '/command_block.gif', text: 'CQMUA服务器中心', link: ''}, {icon: '/command_block.gif', text: 'CQMUA服务器中心', link: ''},
{icon: '/analyse.svg',text: '学情分析系统',link: ''}, {icon: '/analyse.svg',text: '学情分析系统',link: ''},
{icon: '/zzfy.svg',text: '掌中方圆',link: ''} {icon: '/zzfy.svg',text: '掌中方圆',link: ''},
{icon: '/internship.svg',text: '网络实习就业信息网',link:''}
] ]
}, },
{ {
@ -40,14 +40,10 @@ export const navbar = defineNavbarConfig([
icon: '/public-service.svg', icon: '/public-service.svg',
text: '公共服务', text: '公共服务',
items: [ items: [
{ {icon: '/openai.svg',text: '生成式人工智能',link: '/notes/公共服务/生成式人工智能/README.md'},
icon: '/openai.svg', {icon: 'fluent-color:data-area-20', text: '数据中心', link: '/notes/公共服务/生成式人工智能/README.md'},
text: '生成式人工智能', {icon: '/mirror.svg', text: '重庆医科大学开源软件镜像站', link: '/notes/公共服务/重医校级开源软件镜像站/README.md'},
link: '/notes/公共服务/GPT/GPT.md' {icon: '/overleaf.svg', text: 'Overleaf在线协作企业版', link: '/notes/公共服务/Overleaf在线协作企业版/README .md'},
},
{icon: 'fluent-color:data-area-20', text: '数据中心', link: ''},
{icon: '/mirror.svg', text: '重庆医科大学开源软件镜像站', link: ''},
{icon: '/overleaf.svg', text: 'Overleaf在线协作企业版', link: '/notes/公共服务/Overleaf在线协作企业版.md'},
{text: '', link: ''} {text: '', link: ''}
] ]
}, },

View File

@ -10,48 +10,51 @@ const campusWiki = defineNoteConfig({
const publicService = defineNoteConfig({ const publicService = defineNoteConfig({
dir: '公共服务', dir: '公共服务',
link: '/public-service/', link: '/public-service/',
sidebar: [ sidebar: 'auto'
{ // : [
prefix: 'GPT', // {
icon: '/openai.svg', // prefix: 'GPT',
text: '生成式人工智能', // icon: '/openai.svg',
// link: 'GPT', // text: '生成式人工智能',
items: [ // // link: 'GPT',
{ // items: [
text: '公共调用网站及应用部署集合', // {
link: 'GPT', // text: '公共调用网站及应用部署集合',
icon: 'devicon:openapi', // link: 'GPT',
items: [ // icon: 'devicon:openapi',
{ // items: [
text: 'LobeChat', // {
link: 'LobeChat', // text: 'LobeChat',
}, // link: 'LobeChat',
{ // },
text: 'MidJourneyProxy', // {
link: 'MidJourneyProxy', // text: 'MidJourneyProxy',
} // link: 'MidJourneyProxy',
] // }
}, // ]
// },
] //
}, // ]
{ // },
prefix: 'Overleaf', // {
icon: '/overleaf.svg', // prefix: 'Overleaf',
text: 'Overleaf在线协作企业版', // icon: '/overleaf.svg',
link: 'Overleaf在线协作企业版', // text: 'Overleaf在线协作企业版',
items: [ // link: 'Overleaf在线协作企业版',
{ // items: [
icon: 'skill-icons:latex-light', // {
text: "30分钟学会LaTeX", // icon: 'skill-icons:latex-light',
link: "https://cn.overleaf.com/learn/latex/Learn_LaTeX_in_30_minutes", // text: "30分钟学会LaTeX",
} // link: "https://cn.overleaf.com/learn/latex/Learn_LaTeX_in_30_minutes",
] // }
}, // ]
{ // },
prefix: '' // {
} // prefix: '重医开源软件镜像站',
] // icon: '/mirror.svg',
// text: '重医校级开源软件镜像站',
// }
// ]
}) })
const CSDIY = defineNoteConfig({ const CSDIY = defineNoteConfig({

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 5.3 KiB

View 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="1740476585978" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="4610" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M239.9 347.3c0 79.3 64.2 143.5 143.5 143.5S527 426.6 527 347.3s-64.2-143.5-143.5-143.5-143.6 64.3-143.6 143.5z" fill="#FFB74D" p-id="4611"></path><path d="M670.5 672.9s-78.9-169.8-287-169.8-287 169.8-287 169.8v93.3h574v-93.3z" fill="#607D8B" p-id="4612"></path><path d="M206.6 203.7l177.9 72.7 219.3-89.5-219.2-89.6-219.2 89.6 33.6 13.7" fill="#666666" p-id="4613"></path><path d="M594.5 188.9h8.7v88.4h-8.7v-88.4z" fill="#666666" p-id="4614"></path><path d="M582.3 276h33.2v86.1h-33.2V276z" fill="#666666" p-id="4615"></path><path d="M653.2 610.6V577c0-9.5 7.7-17.2 17.2-17.2h69c9.5 0 17.2 7.7 17.2 17.2v33.6h15.1v-41.3c0-11.6-9.9-20.9-22.2-20.9h-88.6c-12.2 0-22.2 9.4-22.2 20.9v41.3h14.5z" fill="#685849" p-id="4616"></path><path d="M889.5 926.7H520.8c-17.6 0-32-14.4-32-32V645.3c0-17.6 14.4-32 32-32h368.7c17.6 0 32 14.4 32 32v249.5c-0.1 17.5-14.5 31.9-32 31.9z" fill="#CCC6AC" p-id="4617"></path><path d="M927.6 719.9c0 11.9-8.9 21.5-19.8 21.5H502.4c-10.9 0-19.8-9.6-19.8-21.5v-87.6c0-11.9 8.9-21.5 19.8-21.5h405.4c10.9 0 19.8 9.6 19.8 21.5v87.6z" fill="#50545F" p-id="4618"></path><path d="M813.2 747.5h40.6v43.8h-40.6z" fill="#937B67" p-id="4619"></path><path d="M594.6 741.6h-35.5V610.2h35.5v131.4zM851 610.8h-35.5v130.6H851V610.8z" fill="#67574A" p-id="4620"></path><path d="M556.4 751.1H597v43.8h-40.6z" fill="#937B67" p-id="4621"></path><path d="M847.7 788.5h-28.4v-35.8h28.4v35.8zM591 752.8h-28.4v35.8H591v-35.8z" fill="#ECD288" p-id="4622"></path><path d="M856.8 752.8h-46.4v-11.1h46.4v11.1zM600 741.6h-46.4v11.1H600v-11.1z" fill="#937B67" p-id="4623"></path></svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View 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="1740502090716" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="4532" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M512 0C229.216 0 0 229.216 0 512s229.216 512 512 512 512-229.216 512-512S794.784 0 512 0zM314.4 186.784c22.4 0 40.416 18.4 40.416 40.416s-18.016 40.416-40.416 40.416a40.544 40.544 0 0 1-40.416-40.384c0-22.4 18.016-40.416 40.416-40.416z m-30.784 129.632h61.6v428.416H283.616z m151.968 0h166.4c158.368 0 228 113.184 228 214.4 0 109.984-86.016 214.4-227.2 214.4h-167.2z m61.6 55.584v317.6H595.2c139.616 0 171.616-105.984 171.616-158.816 0-86.016-54.784-158.816-174.816-158.816z" fill="#A6CE39" p-id="4533"></path></svg>

After

Width:  |  Height:  |  Size: 849 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 364 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 KiB

View File

@ -1 +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="1740334385776" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5097" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M512 357.29A154.71 154.71 0 1 0 666.71 512 154.71 154.71 0 0 0 512 357.29z m0 231.44A76.74 76.74 0 1 1 588.74 512 76.74 76.74 0 0 1 512 588.74z" p-id="5098"></path><path d="M832.46 0H191.54C85.76 0 0 85.76 0 191.54v640.92C0 938.24 85.76 1024 191.54 1024h640.92c105.78 0 191.54-85.76 191.54-191.54V191.54C1024 85.76 938.24 0 832.46 0z m-503 912.53L711 789.9a55.25 55.25 0 0 0 35.7-69.51 55.25 55.25 0 0 0-69.51-35.7L111.47 866.52V329.45L234.1 711a55.25 55.25 0 0 0 69.51 35.7 55.25 55.25 0 0 0 35.7-69.51L157.48 111.47h537.07L313 234.1a55.25 55.25 0 0 0-35.7 69.51 55.25 55.25 0 0 0 69.51 35.7l565.72-181.83v537.07L789.9 313a55.25 55.25 0 0 0-69.51-35.7 55.25 55.25 0 0 0-35.7 69.51l181.83 565.72z" p-id="5099"></path></svg> <?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="1740476764853" class="icon" viewBox="0 0 1755 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5674" data-spm-anchor-id="a313x.search_index.0.i2.31903a81RJBHQT" xmlns:xlink="http://www.w3.org/1999/xlink" width="342.7734375" height="200"><path d="M3.451079 469.133592c0.021065-97.627279 350.461852-165.978312 549.943369-174.21105l0.175538-0.007021L876.310859 1.184078l333.353906 298.569273s537.876879 45.334474 541.166463 163.580461c3.286074 118.249498-435.513581 162.225307-435.51358 162.225307l33.503205-61.227695s197.199521-39.19064 192.81809-100.997612c-4.381431-61.80346-271.761092-104.912111-271.761092-104.912111l78.943002 71.956585v133.949627l-33.503205 61.231206L881.20135 1022.556126v-114.794908c-0.073726 0 356.205459-319.73917 356.20546-319.73917l68.214112-37.508985v-77.306987l-40.472068 37.361533 45.931304 44.193476-73.673348 35.992336-58.20844 48.753957s-348.548486 18.301604-609.99847 0l-53.988503-59.928713c153.314992 19.962195 674.031264 21.492887 708.099702 0l-74.066554-69.011056 85.33259-80.189323L916.308974 146.554214v47.212733c3.029788 2.373275 101.840194 91.932823 101.840194 91.932823l62.21422 5.195928 54.810022 50.460187-61.290889-3.918011s191.842098 169.773446 191.266333 173.129735c-0.91982 5.346891-115.904308 0-115.904309 0L950.746042 331.195739h-143.379535l38.45338-45.639911h56.200284c-5.185396-4.307705-20.892547-17.662645-20.892547-17.662645l30.368095-27.454162S837.236074 205.615769 839.072202 205.615769V146.554214l-157.921112 144.341484 57.836299-2.67169-52.650903 49.213866-62.884775 6.347459-96.496814 89.025911 26.439551 25.358237 296.122272-271.069472 61.978999 53.335502-362.142158 329.36217-54.497564-56.639129-83.745726-80.347308 80.638701-74.389543s-275.981029 42.374902-278.691337 110.70838C211.077565 518.961842 410.759195 564.327913 410.759195 564.327913v-131.516669l47.395292-25.783038-2.155608 137.284851 38.857118-31.154505 54.497564 56.639129-22.398664 20.959251S881.131135 907.757708 881.20135 907.757708v114.794907l-432.617201-396.997007C249.411579 613.341666 3.430015 566.767893 3.45459 469.133592z" fill="#027DB4" p-id="5675" data-spm-anchor-id="a313x.search_index.0.i1.31903a81RJBHQT" class="selected"></path></svg>

Before

Width:  |  Height:  |  Size: 1.0 KiB

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.4 KiB

View File

@ -74,9 +74,319 @@ description="大学通关秘籍看这里!
## 关于我们 ## 关于我们
不必在意我们的名字,因为你就是下一个故事。 项导文档,人人为我,我为人人。不必在意我们的名字,因为你就是下一个故事。
所有贡献者名单: 所有贡献者名单:
- [个人](friends-persons.md) - [个人](friends-persons.md)
- [组织](friends-organizations.md) - [组织](friends-organizations.md)
::: echarts Stocks
```js
const upColor = '#ec0000'
const upBorderColor = '#8A0000'
const downColor = '#00da3c'
const downBorderColor = '#008F28'
function splitData(rawData) {
const categoryData = []
const values = []
for (let i = 0; i < rawData.length; i++) {
categoryData.push(rawData[i].splice(0, 1)[0])
values.push(rawData[i])
}
return {
categoryData,
values,
}
}
// Each item: opencloselowesthighest
const data0 = splitData([
['2013/1/24', 2320.26, 2320.26, 2287.3, 2362.94],
['2013/1/25', 2300, 2291.3, 2288.26, 2308.38],
['2013/1/28', 2295.35, 2346.5, 2295.35, 2346.92],
['2013/1/29', 2347.22, 2358.98, 2337.35, 2363.8],
['2013/1/30', 2360.75, 2382.48, 2347.89, 2383.76],
['2013/1/31', 2383.43, 2385.42, 2371.23, 2391.82],
['2013/2/1', 2377.41, 2419.02, 2369.57, 2421.15],
['2013/2/4', 2425.92, 2428.15, 2417.58, 2440.38],
['2013/2/5', 2411, 2433.13, 2403.3, 2437.42],
['2013/2/6', 2432.68, 2434.48, 2427.7, 2441.73],
['2013/2/7', 2430.69, 2418.53, 2394.22, 2433.89],
['2013/2/8', 2416.62, 2432.4, 2414.4, 2443.03],
['2013/2/18', 2441.91, 2421.56, 2415.43, 2444.8],
['2013/2/19', 2420.26, 2382.91, 2373.53, 2427.07],
['2013/2/20', 2383.49, 2397.18, 2370.61, 2397.94],
['2013/2/21', 2378.82, 2325.95, 2309.17, 2378.82],
['2013/2/22', 2322.94, 2314.16, 2308.76, 2330.88],
['2013/2/25', 2320.62, 2325.82, 2315.01, 2338.78],
['2013/2/26', 2313.74, 2293.34, 2289.89, 2340.71],
['2013/2/27', 2297.77, 2313.22, 2292.03, 2324.63],
['2013/2/28', 2322.32, 2365.59, 2308.92, 2366.16],
['2013/3/1', 2364.54, 2359.51, 2330.86, 2369.65],
['2013/3/4', 2332.08, 2273.4, 2259.25, 2333.54],
['2013/3/5', 2274.81, 2326.31, 2270.1, 2328.14],
['2013/3/6', 2333.61, 2347.18, 2321.6, 2351.44],
['2013/3/7', 2340.44, 2324.29, 2304.27, 2352.02],
['2013/3/8', 2326.42, 2318.61, 2314.59, 2333.67],
['2013/3/11', 2314.68, 2310.59, 2296.58, 2320.96],
['2013/3/12', 2309.16, 2286.6, 2264.83, 2333.29],
['2013/3/13', 2282.17, 2263.97, 2253.25, 2286.33],
['2013/3/14', 2255.77, 2270.28, 2253.31, 2276.22],
['2013/3/15', 2269.31, 2278.4, 2250, 2312.08],
['2013/3/18', 2267.29, 2240.02, 2239.21, 2276.05],
['2013/3/19', 2244.26, 2257.43, 2232.02, 2261.31],
['2013/3/20', 2257.74, 2317.37, 2257.42, 2317.86],
['2013/3/21', 2318.21, 2324.24, 2311.6, 2330.81],
['2013/3/22', 2321.4, 2328.28, 2314.97, 2332],
['2013/3/25', 2334.74, 2326.72, 2319.91, 2344.89],
['2013/3/26', 2318.58, 2297.67, 2281.12, 2319.99],
['2013/3/27', 2299.38, 2301.26, 2289, 2323.48],
['2013/3/28', 2273.55, 2236.3, 2232.91, 2273.55],
['2013/3/29', 2238.49, 2236.62, 2228.81, 2246.87],
['2013/4/1', 2229.46, 2234.4, 2227.31, 2243.95],
['2013/4/2', 2234.9, 2227.74, 2220.44, 2253.42],
['2013/4/3', 2232.69, 2225.29, 2217.25, 2241.34],
['2013/4/8', 2196.24, 2211.59, 2180.67, 2212.59],
['2013/4/9', 2215.47, 2225.77, 2215.47, 2234.73],
['2013/4/10', 2224.93, 2226.13, 2212.56, 2233.04],
['2013/4/11', 2236.98, 2219.55, 2217.26, 2242.48],
['2013/4/12', 2218.09, 2206.78, 2204.44, 2226.26],
['2013/4/15', 2199.91, 2181.94, 2177.39, 2204.99],
['2013/4/16', 2169.63, 2194.85, 2165.78, 2196.43],
['2013/4/17', 2195.03, 2193.8, 2178.47, 2197.51],
['2013/4/18', 2181.82, 2197.6, 2175.44, 2206.03],
['2013/4/19', 2201.12, 2244.64, 2200.58, 2250.11],
['2013/4/22', 2236.4, 2242.17, 2232.26, 2245.12],
['2013/4/23', 2242.62, 2184.54, 2182.81, 2242.62],
['2013/4/24', 2187.35, 2218.32, 2184.11, 2226.12],
['2013/4/25', 2213.19, 2199.31, 2191.85, 2224.63],
['2013/4/26', 2203.89, 2177.91, 2173.86, 2210.58],
['2013/5/2', 2170.78, 2174.12, 2161.14, 2179.65],
['2013/5/3', 2179.05, 2205.5, 2179.05, 2222.81],
['2013/5/6', 2212.5, 2231.17, 2212.5, 2236.07],
['2013/5/7', 2227.86, 2235.57, 2219.44, 2240.26],
['2013/5/8', 2242.39, 2246.3, 2235.42, 2255.21],
['2013/5/9', 2246.96, 2232.97, 2221.38, 2247.86],
['2013/5/10', 2228.82, 2246.83, 2225.81, 2247.67],
['2013/5/13', 2247.68, 2241.92, 2231.36, 2250.85],
['2013/5/14', 2238.9, 2217.01, 2205.87, 2239.93],
['2013/5/15', 2217.09, 2224.8, 2213.58, 2225.19],
['2013/5/16', 2221.34, 2251.81, 2210.77, 2252.87],
['2013/5/17', 2249.81, 2282.87, 2248.41, 2288.09],
['2013/5/20', 2286.33, 2299.99, 2281.9, 2309.39],
['2013/5/21', 2297.11, 2305.11, 2290.12, 2305.3],
['2013/5/22', 2303.75, 2302.4, 2292.43, 2314.18],
['2013/5/23', 2293.81, 2275.67, 2274.1, 2304.95],
['2013/5/24', 2281.45, 2288.53, 2270.25, 2292.59],
['2013/5/27', 2286.66, 2293.08, 2283.94, 2301.7],
['2013/5/28', 2293.4, 2321.32, 2281.47, 2322.1],
['2013/5/29', 2323.54, 2324.02, 2321.17, 2334.33],
['2013/5/30', 2316.25, 2317.75, 2310.49, 2325.72],
['2013/5/31', 2320.74, 2300.59, 2299.37, 2325.53],
['2013/6/3', 2300.21, 2299.25, 2294.11, 2313.43],
['2013/6/4', 2297.1, 2272.42, 2264.76, 2297.1],
['2013/6/5', 2270.71, 2270.93, 2260.87, 2276.86],
['2013/6/6', 2264.43, 2242.11, 2240.07, 2266.69],
['2013/6/7', 2242.26, 2210.9, 2205.07, 2250.63],
['2013/6/13', 2190.1, 2148.35, 2126.22, 2190.1],
])
function calculateMA(dayCount) {
const result = []
for (let i = 0; i < data0.values.length; i++) {
if (i < dayCount) {
result.push('-')
continue
}
let sum = 0
for (let j = 0; j < dayCount; j++) sum += +data0.values[i - j][1]
result.push(sum / dayCount)
}
return result
}
const option = {
tooltip: {
trigger: 'axis',
axisPointer: {
type: 'cross',
},
},
legend: {
data: ['日K', 'MA5', 'MA10', 'MA20', 'MA30'],
},
grid: {
left: '10%',
right: '10%',
bottom: '15%',
},
xAxis: {
type: 'category',
data: data0.categoryData,
boundaryGap: false,
axisLine: { onZero: false },
splitLine: { show: false },
min: 'dataMin',
max: 'dataMax',
},
yAxis: {
scale: true,
splitArea: {
show: true,
},
},
dataZoom: [
{
type: 'inside',
start: 50,
end: 100,
},
{
show: true,
type: 'slider',
top: '90%',
start: 50,
end: 100,
},
],
series: [
{
name: '日K',
type: 'candlestick',
data: data0.values,
itemStyle: {
color: upColor,
color0: downColor,
borderColor: upBorderColor,
borderColor0: downBorderColor,
},
markPoint: {
label: {
formatter: param =>
param == null ? '' : Math.round(param.value).toString(),
},
data: [
{
name: 'Mark',
coord: ['2013/5/31', 2300],
value: 2300,
itemStyle: {
color: 'rgb(41,60,85)',
},
},
{
name: 'highest value',
type: 'max',
valueDim: 'highest',
},
{
name: 'lowest value',
type: 'min',
valueDim: 'lowest',
},
{
name: 'average value on close',
type: 'average',
valueDim: 'close',
},
],
tooltip: {
formatter: param => `${param.name}<br>${param.data.coord || ''}`,
},
},
markLine: {
symbol: ['none', 'none'],
data: [
[
{
name: 'from lowest to highest',
type: 'min',
valueDim: 'lowest',
symbol: 'circle',
symbolSize: 10,
label: {
show: false,
},
emphasis: {
label: {
show: false,
},
},
},
{
type: 'max',
valueDim: 'highest',
symbol: 'circle',
symbolSize: 10,
label: {
show: false,
},
emphasis: {
label: {
show: false,
},
},
},
],
{
name: 'min line on close',
type: 'min',
valueDim: 'close',
},
{
name: 'max line on close',
type: 'max',
valueDim: 'close',
},
],
},
},
{
name: 'MA5',
type: 'line',
data: calculateMA(5),
smooth: true,
lineStyle: {
opacity: 0.5,
},
},
{
name: 'MA10',
type: 'line',
data: calculateMA(10),
smooth: true,
lineStyle: {
opacity: 0.5,
},
},
{
name: 'MA20',
type: 'line',
data: calculateMA(20),
smooth: true,
lineStyle: {
opacity: 0.5,
},
},
{
name: 'MA30',
type: 'line',
data: calculateMA(30),
smooth: true,
lineStyle: {
opacity: 0.5,
},
},
],
}
```
:::

View File

@ -62,11 +62,27 @@ groups:
- title: MUA - title: MUA
desc: 中国大学生Minecraft高校联盟, https://www.mualliance.cn desc: 中国大学生Minecraft高校联盟, https://www.mualliance.cn
list: list:
- name: -
link: name: MUA官网
location: link: https://www.mualliance.cn/
location: 中国
avatar:
organization: organization:
desc: desc:
-
name: 渝高联CQMUA官网
link:
location: 中国,重庆市
avatar:
organization:
desc: 重庆市 Minecraft 高校联盟
-
name: 上海交通大学SJMC
link: https://mc.sjtu.cn
location: 中国,上海闵行
avatar:
organization: 上海交通大学、MUA
desc:
- title: 重庆医科大学LaTeX用户组 - title: 重庆医科大学LaTeX用户组
desc: CQMU LaTeX user group. desc: CQMU LaTeX user group.
list: list:
@ -82,4 +98,29 @@ groups:
organization: PGuide Studio、信息中心 organization: PGuide Studio、信息中心
desc: desc:
avatar: /overleaf.svg avatar: /overleaf.svg
- title: 北京大学信息科学技术学院
dsc: Peking University
list:
-
name:
link:
location:
avatar:
organization:
desc:
-
name: CS-DIY
link: https://csdiy.wiki/
location: Global
avatar: https://csdiy.wiki/images/title.png
organization: zhongyinmin@pku.edu.cn
desc: 一本计算机的自学指南。
# -
# name:
# link:
# location:
# avatar:
# organization:
# desc:
--- ---

View File

@ -72,14 +72,14 @@ list:
organization: 项导工作室、CQMUtug、CQMUA等 organization: 项导工作室、CQMUtug、CQMUA等
socials: socials:
- icon: qq - icon: qq
link: link: https://qm.qq.com/q/2iLBaNcsnO
- icon: github - icon: github
link: https://github.com/MultipledMe link: https://github.com/MultipledMe
backgroundColor: backgroundColor:
color: color:
nameColor: nameColor:
- name: db1 - name: db1
link: http://117.72.14.208/colibri-wp/members/ link: https://medseek.site/colibri-wp/members/
avatar: /avatar/db1.jpg avatar: /avatar/db1.jpg
desc: 逃不过 相忘江湖之间 desc: 逃不过 相忘江湖之间
location: 中国,重庆沙坪坝 location: 中国,重庆沙坪坝
@ -172,13 +172,39 @@ list:
avatar: https://wanghaolin.github.io/images/android-chrome-512x512.png avatar: https://wanghaolin.github.io/images/android-chrome-512x512.png
desc: My research interest includes data mining in healthcare, predictive models and intelligent systems. desc: My research interest includes data mining in healthcare, predictive models and intelligent systems.
location: 中国,重庆沙坪坝 location: 中国,重庆沙坪坝
organization: 重庆医科大学医学信息学院副教授 organization: 中国科学院大学、香港城市大学
socials: socials:
- icon: qq - icon: { svg: '<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512" viewBox="0 0 512 512"><path fill="#96a9b2" d="M511.824 425.007c1.941-5.245-220.916-173.519-220.916-173.519c-27.9-20.589-42.574-20.913-70.164 0c0 0-222.532 168.138-220.659 173.311l-.045.038c.023.045.06.076.091.117a48.5 48.5 0 0 0 8.119 14.157c1.473 1.786 3.248 3.282 4.955 4.837l-.083.064c.136.121.317.177.453.298c7.235 6.454 16.359 10.634 26.495 11.827c.159.019.287.102.446.121h.612c1.541.147 3.006.517 4.584.517h420.721c20.717 0 38.269-13.028 45.241-31.291c.083-.136.211-.234.287-.374z"/><path fill="#b9c5c6" d="M256.133 232.176L1.216 423.364V152.515c0-26.4 21.397-47.797 47.797-47.797h414.24c26.4 0 47.797 21.397 47.797 47.797v270.849z"/><path fill="#edece6" d="m4.189 135.896l217.645 170.949c27.47 20.271 41.918 20.591 69.083 0L508.22 136.167c-3.77-6.834-9.414-12.233-15.869-16.538l2.989-2.342c-7.295-6.641-16.62-10.946-26.971-12.058l-424.455.015c-10.322 1.097-19.662 5.417-26.942 12.043l2.967 2.313c-6.38 4.245-11.972 9.551-15.75 16.296"/><path fill="#dce2e2" d="M4.118 136.254C2.207 141.419 221.63 307.099 221.63 307.099c27.47 20.271 41.918 20.591 69.083 0c0 0 219.103-165.546 217.258-170.64l.045-.037c-.022-.045-.059-.074-.089-.115a47.7 47.7 0 0 0-7.994-13.939c-1.45-1.759-3.198-3.231-4.878-4.763l.082-.063c-.134-.119-.312-.175-.446-.294c-7.124-6.354-16.107-10.47-26.086-11.645c-.156-.019-.283-.1-.439-.119h-.602c-1.517-.145-2.96-.509-4.514-.509H48.81c-20.398 0-37.68 12.828-44.543 30.809c-.082.134-.208.231-.283.368z"/><path fill="#597b91" d="M291.401 154.645h-38.632a6.155 6.155 0 0 0-6.155 6.155v21.722a6.155 6.155 0 0 0 6.155 6.155h31.415a6.155 6.155 0 0 1 6.155 6.155v11.616a6.155 6.155 0 0 1-6.155 6.155h-31.415a6.155 6.155 0 0 0-6.155 6.155v23.578a6.155 6.155 0 0 0 6.155 6.155h41.316a6.155 6.155 0 0 1 6.155 6.155v12.441a6.155 6.155 0 0 1-6.155 6.155h-75.76a6.155 6.155 0 0 1-6.155-6.155V136.461a6.155 6.155 0 0 1 6.155-6.155h74.81c3.749 0 6.627 3.322 6.092 7.033l-1.733 12.028a6.156 6.156 0 0 1-6.093 5.278"/></svg>' }
link: haolin.wang@outlook.com link: haolin.wang@outlook.com
- icon: { svg: '<svg t="1740503329549" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="6742" width="200" height="200"><path d="M512 0C229.216 0 0 229.216 0 512s229.216 512 512 512 512-229.216 512-512S794.784 0 512 0zM314.4 186.784a40.416 40.416 0 1 1-40.416 40.448 40.315 40.315 0 0 1 40.416-40.416z m-30.784 129.632h61.6v428.416h-61.6z m151.968 0h166.4c158.368 0 228 113.184 228 214.4 0 109.984-86.016 214.4-227.2 214.4h-167.2z m61.6 55.584v317.6H595.2c139.616 0 171.616-105.984 171.616-158.816 0-86.016-54.784-158.816-174.816-158.816z" fill="#A6CE39" p-id="6743"></path></svg>' }
link: https://orcid.org/0000-0002-1735-9525
- icon: { svg: '<svg xmlns="http://www.w3.org/2000/svg" width="384" height="512" viewBox="0 0 384 512"><path fill="currentColor" d="M343.759 106.662V79.43L363.524 64h-213.89L20.476 176.274h85.656a82 82 0 0 0-.219 6.225c0 20.845 7.22 38.087 21.672 51.861c14.453 13.797 32.252 20.648 53.327 20.648c4.923 0 9.75-.368 14.438-1.024c-2.907 6.5-4.374 12.523-4.374 18.142c0 9.875 4.499 20.43 13.467 31.642c-39.234 2.67-68.061 9.732-86.437 21.163c-10.531 6.5-19 14.704-25.39 24.531c-6.391 9.9-9.578 20.515-9.578 31.962c0 9.648 2.062 18.336 6.219 26.062c4.156 7.726 9.578 14.07 16.312 18.984c6.718 4.968 14.469 9.101 23.219 12.469c8.734 3.344 17.406 5.718 26.061 7.062A167 167 0 0 0 180.555 448c13.469 0 26.953-1.734 40.547-5.187c13.562-3.485 26.28-8.642 38.171-15.493c11.86-6.805 21.515-16.086 28.922-27.718c7.39-11.68 11.094-24.805 11.094-39.336c0-11.016-2.25-21.039-6.75-30.14c-4.468-9.073-9.938-16.542-16.452-22.345c-6.501-5.813-13-11.155-19.516-15.968c-6.5-4.845-12-9.75-16.468-14.813c-4.485-5.046-6.735-10.054-6.735-14.984c0-4.921 1.734-9.672 5.216-14.265c3.455-4.61 7.674-9.048 12.61-13.306c4.937-4.25 9.875-8.968 14.796-14.133c4.922-5.147 9.141-11.827 12.61-20.008c3.485-8.18 5.203-17.445 5.203-27.757c0-13.453-2.547-24.46-7.547-33.314c-.594-1.022-1.218-1.803-1.875-3.022l56.907-46.672v17.119c-7.393.93-6.624 5.345-6.624 10.635V245.96c0 5.958 4.875 10.834 10.834 10.834h3.989c5.958 0 10.833-4.875 10.833-10.834V117.293c0-5.277.778-9.688-6.561-10.63m-107.36 222.48c1.14.75 3.704 2.78 7.718 6.038c4.05 3.243 6.797 5.695 8.266 7.414a444 444 0 0 1 6.376 7.547c2.813 3.375 4.718 6.304 5.718 8.734q1.5 3.717 3.047 8.946a38.3 38.3 0 0 1 1.485 10.562c0 17.048-6.564 29.68-19.656 37.859c-13.125 8.18-28.767 12.274-46.938 12.274c-9.187 0-18.203-1.093-27.063-3.196c-8.843-2.116-17.311-5.336-25.39-9.601c-8.078-4.258-14.577-10.204-19.5-17.797c-4.938-7.64-7.407-16.415-7.407-26.25c0-10.32 2.797-19.29 8.422-26.906c5.594-7.625 12.938-13.391 22.032-17.315c9.063-3.946 18.25-6.742 27.562-8.398a158 158 0 0 1 28.438-2.555c4.47 0 7.936.25 10.405.696c.455.219 3.032 2.07 7.735 5.563c4.704 3.462 7.625 5.595 8.75 6.384zm-3.359-100.579c-7.406 8.86-17.734 13.288-30.953 13.288c-11.86 0-22.298-4.764-31.266-14.312c-9-9.523-15.422-20.328-19.344-32.43c-3.937-12.109-5.906-23.984-5.906-35.648q.002-20.54 10.781-34.976c7.187-9.65 17.5-14.485 30.938-14.485c11.875 0 22.374 5.038 31.437 15.157c9.094 10.085 15.61 21.413 19.517 33.968c3.922 12.54 5.873 24.53 5.873 35.984c0 13.446-3.702 24.61-11.076 33.454z"/></svg>'}
link: https://scholar.google.com/citations?user=VoI6E_oAAAAJ
backgroundColor: backgroundColor:
color: color:
nameColor: nameColor:
- name: Yinmin Zhong
link: https://yinminzhong.com/
avatar: https://yinminzhong.com/authors/admin/avatar_hu2b4b56f5afc928ec43842fb514d8660e_5130794_3000x3000_fill_q75_lanczos_center.jpg
desc: I have a broad interest in building efficient systems for training and serving deep learning models, with a primary focus on large language models (LLMs) currently.
location: 中国,北京市
organization:
socials:
backgroundColor:
color:
nameColor:
- name: Xin Jin
link: https://xinjin.github.io/
avatar: https://xinjin.github.io/files/xinjin.jpg
desc: I am an Associate Professor in the School of Computer Science at Peking University. I work on computer systems and networking. My research has received USENIX NSDI Best Paper Award (2018) and USENIX FAST Best Paper Award (2019).
location: 中国,北京
organization: 北京大学,计算机科学学院
socials:
- icon: fxemoji:email
link:
backgroundColor:
color:
nameColor:
# - name: # - name:
# link: # link:
# avatar: # avatar:

View File

@ -0,0 +1,5 @@
---
title: LaTeX学习
createTime: 2025/02/25 18:56:04
permalink: /public-service/latex/
---

View File

@ -2,6 +2,7 @@
title: Overleaf在线协作企业版 title: Overleaf在线协作企业版
createTime: 2025/02/19 10:52:51 createTime: 2025/02/19 10:52:51
permalink: /public-service/overleaf/ permalink: /public-service/overleaf/
icon: /overleaf.svg
--- ---
- 内网地址:[http://192.168.183.171/](http://192.168.183.171/) - 内网地址:[http://192.168.183.171/](http://192.168.183.171/)

View File

@ -0,0 +1,7 @@
---
title: PGuide Alist
createTime: 2025/02/25 18:31:27
permalink: /public-service/data-center/pguide-alist/
icon: https://alist.nn.ci/logo.svg
---

View File

@ -0,0 +1,6 @@
---
title: README
createTime: 2025/02/25 18:33:00
permalink: /public-service/data-center/
icon: fluent-color:data-area-20
---

View File

@ -0,0 +1,6 @@
---
title: docker私有镜像管理
createTime: 2025/02/25 18:48:25
permalink: /public-service/data-center/docker-registry/
icon: /docker.svg
---

View File

@ -2,6 +2,7 @@
title: GPT API公共调用网站及应用部署集合 title: GPT API公共调用网站及应用部署集合
createTime: 2025/02/24 02:20:55 createTime: 2025/02/24 02:20:55
permalink: /public-service/GPT/ permalink: /public-service/GPT/
icon: /openai.svg
--- ---
此页面汇集了目前市面上 98%以上的大模型,且涵盖了 github 上主流的开源框架和技术欢迎挨个体验。UpStream Sync 功能启用可以自动同步 此页面汇集了目前市面上 98%以上的大模型,且涵盖了 github 上主流的开源框架和技术欢迎挨个体验。UpStream Sync 功能启用可以自动同步

View File

@ -0,0 +1,11 @@
---
title: 重庆医科大学开源软件镜像站
createTime: 2025/02/25 18:31:57
permalink: /public-service/cqmu-mirror/
icon: /mirror.svg
---
## 使用方式
## 新镜像请求

View File

@ -0,0 +1,6 @@
---
title: 新镜像请求
createTime: 2025/02/25 18:35:12
permalink: /public-service/cqmu-mirror/new/
icon: icon-park:pull-requests
---

View File

@ -34,11 +34,7 @@ permalink: /campus-wiki/english/
学长、学姐们说:如果大学期间你不能坚持学习英语,那么大一很有可能就是你英语的巅峰水平。因此,同学们不如趁着这个巅峰,入学以后再加上有规律的英语学习,争取考个好成绩。后面就可以专注于自己的专业学习或者考雅思、托福什么的了。否则大学四年、五年都耗在四、六级上面,还挺不划算的。 学长、学姐们说:如果大学期间你不能坚持学习英语,那么大一很有可能就是你英语的巅峰水平。因此,同学们不如趁着这个巅峰,入学以后再加上有规律的英语学习,争取考个好成绩。后面就可以专注于自己的专业学习或者考雅思、托福什么的了。否则大学四年、五年都耗在四、六级上面,还挺不划算的。
也有很多同学在问:“老师,我是否有必要去考雅思或者托福?”这个就完全是看同学们自己的个性化学业规划了,老师不能给你一个统一的回复。首先,雅思、托福的考试费用并不便宜;其次,雅思、托福的成绩都有有效期;再次,考研、保研或者就业的时候,要看你要去的那个学校或者公司的要求。因此,同学们提前做好学业和就业规划,这样也可以有效地去准备需要的证书。 也有很多同学在问:“老师,我是否有必要去考[雅思](https://www.chinaielts.org/about_ielts/what_is_ielts.shtml)或者[托福](https://toefl-main.neea.cn/html1/folder/1507/1026-1.htm)?”这个就完全是看同学们自己的个性化学业规划了,老师不能给你一个统一的回复。首先,雅思、托福的考试费用并不便宜;其次,雅思、托福的成绩都有有效期;再次,考研、保研或者就业的时候,要看你要去的那个学校或者公司的要求。因此,同学们提前做好学业和就业规划,这样也可以有效地去准备需要的证书。
[https://toefl-main.neea.cn/html1/folder/1507/1026-1.htm](https://toefl-main.neea.cn/html1/folder/1507/1026-1.htm)
[https://www.chinaielts.org/about_ielts/what_is_ielts.shtml](https://www.chinaielts.org/about_ielts/what_is_ielts.shtml)
提示:如果你是即将念研究生的同学,但是导师或学校要求必须过六级,这是可以咨询是否可以使用托福和雅思成绩来进行认定,绝大部分高校在申请博士生、会考复试、夏令营、保研录取时均认可这两种语言考核方式。 提示:如果你是即将念研究生的同学,但是导师或学校要求必须过六级,这是可以咨询是否可以使用托福和雅思成绩来进行认定,绝大部分高校在申请博士生、会考复试、夏令营、保研录取时均认可这两种语言考核方式。

View File

@ -248,7 +248,7 @@ ros2 run turtlesim turtle_teleop_key
关于小海龟中蕴藏的ROS奥义我们在后续教程中将持续探索。 关于小海龟中蕴藏的ROS奥义我们在后续教程中将持续探索。
至此,感谢ROS2在VMware安装成功。 至此,恭喜ROS2在VMware安装成功。
::: :::

View File

@ -7,6 +7,10 @@ icon: https://www.originbot.org/assets/img/favicon.png
OriginBot使用与开发过程主要在PC端完成完成以上Ubuntu和ROS2的环境配置后还需要将OriginBot的PC端功能包下载到电脑上并且完成编译便于后续操作使用。 OriginBot使用与开发过程主要在PC端完成完成以上Ubuntu和ROS2的环境配置后还需要将OriginBot的PC端功能包下载到电脑上并且完成编译便于后续操作使用。
:::tip
如果你觉得下载过慢,可以参照[VMWare安装](1.VMWare%E5%AE%89%E8%A3%85.md)中的`ROS2系统安装``配置镜像源`操作。
:::
:::steps :::steps
1. 创建PC端工作空间 1. 创建PC端工作空间
@ -21,7 +25,53 @@ OriginBot电脑端的功能包都放置在[originbot_desktop代码仓库](https:
```shell ```shell
cd ~/dev_ws/src cd ~/dev_ws/src
sudo apt install git #安装git
git clone https://gitee.com/guyuehome/originbot_desktop.git git clone https://gitee.com/guyuehome/originbot_desktop.git
``` ```
3. r 3. 安装功能包和依赖
为满足后续机器人开发的使用,还需要安装一系列功能包与依赖库:
这个过程需要反复确认,不要走开!
```shell
sudo apt install python3-colcon-ros
sudo apt install python3-colcon-common-extensions # ROS2编译器
sudo apt install ros-${ROS_DISTRO}-nav2* # 安装导航功能包
sudo apt install ros-${ROS_DISTRO}-xacro # 安装模型解析功能包
sudo apt install ros-${ROS_DISTRO}-teleop-twist-keyboard # 安装键盘控制节点
sudo apt install ros-${ROS_DISTRO}-rmw-cyclonedds-cpp # 安装Cyclone DDS
sudo apt install ros-${ROS_DISTRO}-cv-bridge # 安装图像处理包
sudo apt install ros-${ROS_DISTRO}-robot-state-publisher # 安装机器人状态发布者包
sudo apt install ros-${ROS_DISTRO}-joint-state-publisher # 安装关节状态发布者包
sudo apt install ros-${ROS_DISTRO}-joint-state-publisher-gui # 安装关节状态发布者包
sudo apt install ros-${ROS_DISTRO}-image-transport # 安装图像压缩包
sudo apt install ros-${ROS_DISTRO}-image-transport-plugins # 安装图像压缩包
sudo apt install libzbar-dev
```
一次下载完
```shell
cd ~/dev_ws/src/originbot_desktop/
./install_prereq.sh
```
4. 编译工作空间
```shell
cd ~/dev_ws
colcon build
```
5. 设置环境变量
为方便后续使用,我们需要配置环境变量,让系统知道工作空间的位置:
```shell
gedit ~/.bashrc
```
```shell
source ~/dev_ws/install/setup.sh
```
至此OriginBot电脑端的功能包配置完毕。
::: :::

View File

@ -2,4 +2,7 @@
title: 中智讯一代小车 title: 中智讯一代小车
createTime: 2025/02/25 05:25:26 createTime: 2025/02/25 05:25:26
permalink: /learning-notes/zcloud-car1/ permalink: /learning-notes/zcloud-car1/
icon: /zzx.png
--- ---
https://www.zonesion.com.cn/index/index/productinfo/id/25.html

View File

@ -27,6 +27,10 @@
}, },
"dependencies": { "dependencies": {
"@waline/client": "^3.5.5", "@waline/client": "^3.5.5",
"echarts": "^5.6.0" "annotation": "^0.1.0",
"chart": "^0.1.2",
"echarts": "^5.6.0",
"flowchart": "^1.2.0",
"mermaid": "^11.4.1"
} }
} }

1646
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff