大三下课表

Mon Wed Thur 1-2 计⽹ L1-403 OS L1-503 3-4 计网 323 论题 L1-406 OS 240 7-10 实训 326 13-14 马原 L1-605

二月 15, 2023 · 1 分钟 · 21 字 · HCY

Markdown (HTML) 砌体 (瀑布) 布局

直接上我的 markdown 源码就好了 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 <style> .blog_photo_album_grid { -webkit-column-count: 3; -webkit-column-gap: 10px; -webkit-column-fill: auto; -moz-column-count: 3; -moz-column-gap: 10px; -moz-column-fill: auto; column-count: 3; column-gap: 10px; column-fill: auto; } .blog_photo_album_block { background-color: none; display: block; padding: 10px; word-wrap: break-word; margin-bottom: 10px; -webkit-column-break-inside: avoid; -moz-column-break-inside: avoid; column-break-inside: avoid; border-style: solid; border-width: 1px; border-radius: 5px; border-color: #f0f0f0; box-shadow: 3px 3px 3px #f0f0f0; } </style> <div class="blog_photo_album_grid"> <div class="blog_photo_album_block"><img src="/pictures/photo_album/eat/doge....

二月 15, 2023 · 1 分钟 · 154 字 · HCY

Hexo next 开启 fancybox 查看图片大图

修改主题配置文件 开启 fancybox开关即可 1 2 3 # FancyBox is a tool that offers a nice and elegant way to add zooming functionality for images. # For more information: https://fancyapps.com/fancybox fancybox: true

二月 15, 2023 · 1 分钟 · 31 字 · HCY

Hexo Giscus 评论 (NexT 主题)

详情请参考官方网站 Giscus 官方网站 1 https://giscus.app/zh-CN Hexo-next-giscus 官方仓库 1 https://github.com/next-theme/hexo-next-giscus 参考的博客,不保证链接长期有效 1 https://getiot.tech/knowledge-base/hexo/hexo-comments 看域名,这个有可能在大陆被 ban 掉,科学上网 1 https://ithelp.ithome.com.tw/articles/10306883 自己实践过的步骤 准备工作 你的仓库必须是公开的 (public),否则访客将无法查看 discussion 你的 GitHub 已安装 giscus app ,否则访客将无法评论和回应 在你的仓库中启用 Discussions 功能 Hexo 配置 在你的 Hexo 博客目录中执行以下命令,安装 hexo-next-giscus 插件 1 npm install hexo-next-giscus --save 然后在 Hexo 或者 theme 的 _config.yml (我的是 _config.next.yml) 配置文件添加如下内容 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 giscus: enable: false repo: # Github repository name repo_id: # Github repository id category: # Github discussion category category_id: # Github discussion category id # Available values: pathname | url | title | og:title mapping: pathname # Available values: 0 | 1 reactions_enabled: 1 # Available values: 0 | 1 emit_metadata: 1 # Available values: light | dark | dark_high_contrast | transparent_dark | preferred-color-scheme theme: light # Available values: en | zh-CN lang: en # Place the comment box above the comments input_position: bottom # Load the comments lazily loading: lazy Giscus 配置...

二月 12, 2023 · 1 分钟 · 193 字 · HCY

Git 修改 / 添加 / 删除远程仓库

以下操作都是对管理本地的远端配置 修改远程仓库地址 1 git remote set-url origin <remote-url> 仓库路径查询查询 1 git remote -v 添加远程仓库 1 2 // 注:项目地址形式为:https://gitee.com/xxx/xxx.git或者 git@gitee.com:xxx/xxx.git git remote add origin <你的项目地址> 删除指定的远程仓库 1 git remote rm origin

二月 12, 2023 · 1 分钟 · 30 字 · HCY