Hexo
未读1、安装 hexo-tag-aplayer 插件1npm install --save hexo-tag-aplayer
2、修改主题配置文件_config.butterfly.yml里的aplayerInject参数,假如无就添加1234# Inject the css and script (aplayer/meting)aplayerInject: enable: true # 开启音乐播放器 per_page: true #每个页面都有Aplayer
3、修改根目录下_config.yml里的aplayer参考,假如无就添加123aplayer: asset_inject: false meting: true
4、添加音乐播放器,在\camel52\source\music\index.md文件修改和添加以下内容,日期可以改成自己当前的123456789101112---title: musicdate: 2024-07-04 16:57:08type: musicaplayer: truetop_img: falsecomments: falseaside: fal ...
butterfly
未读Hexo安装及配置Butterfly主题参考教程:https://blog.anheyu.com/posts/sdxhu.html
一,安装butterfly主题1,在blog文件夹右键选择Open Git Bash here运行终端1hexo init camel52
2,进入目录1cd camel52
3,查看是否有文件1ls
4,clone安装butterfly主题到themes/butterfly目录1git clone -b master https://github.com/jerryc127/hexo-theme-butterfly.git themes/butterfly
5,在根目录文件_config.yml里把主题改为butterfly1theme: butterfly
改主题的时候可以顺便把语言改成language: zh-CN
6,安装pug 以及 stylus 的渲染器1npm install hexo-renderer-pug hexo-renderer-stylus --save
7,在根目录添加文件_config.butterfly.yml8,在ca ...
Hexo
未读1,next主教程https://theme-next.iissnan.com/getting-started.html
2,Hexo之Next主题美化代码https://cloud.tencent.com/developer/article/2201625
3,next文章样式美化https://marmalade.vip/nextthemebeautify3.html
4,在每篇文章末尾添加“本文结束”标记;添加文章置顶功能https://marmalade.vip/nextthemebeautify1.html
5,RGB颜色值与十六进制颜色码转换工具https://www.sioe.cn/yingyong/yanse-rgb-16/
6,NexT 行内代码背景颜色设置https://zengfanyongcn.github.io/2022/04/17/code-background/
7,next主题highlight的对应效果https://theme-next.js.org/highlight/
8,next主题官网https://theme-next.js.org/
9, ...
Hexo-next
未读1,在这个\blog\zhangzz\themes\next\source\js文件夹新建文件click_love.js,粘贴一下代码:12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788//点击显示爱心功能!(function (e, t, a) { function n() { c( ".heart{width: 10px;height: 10px;position: fixed;background: #f00;transform: rotate(45deg);-webkit-transform: rotate(45deg);-moz-transform: rotate(45deg);}.heart:after,.heart:befor ...
Windows
未读
纯净系统下载网站https://msdn.itellyou.cn/https://hellowindows.cn/https://latest10.win/https://www.sysmini.com/https://msdn.sjjzm.com/win10.htmlhttps://www.newxitong.com/
软件下载网站:https://www.hezibuluo.com/
油小猴(插件网站)https://www.youxiaohou.com/
安知鱼主题关于页面的设置教程
https://docs.anheyu.com/page/about.html
收藏的其他网站:阿里的图标网
https://www.iconfont.cn/
fontawesome图标
https://fontawesome.com.cn/v5
emoji图标
https://www.emojiall.com/zh-hans/all-emojis
著名的无版权可商用的图片网站https://pixabay.com/
PVE-虚拟机
未读一、PVE 扩容命令(这一步可以不做)1、删除local-lvm1lvremove pve/data #回车 【 y 】确认
2、把local-lvm存储空间分配给localpve/data #回车 【 y 】确认12lvextend -l +100%FREE -r pve/rootresize2fs /dev/mapper/pve-root
二、网卡直通1、打开PVE节点的shell,输入命令:1nano /etc/default/grub
12345GRUB_CMDLINE_LINUX_DEFAULT="quiet"改为:GRUB_CMDLINE_LINUX_DEFAULT="quiet intel_iommu=on video=efifb:off"编辑完文件后按 【 Ctrl + X 】 【 Y 】 回车 update-grub
2、继续输入以下命令1nano /etc/modules
在文件下面添加新内容
1234vfiovfio_iommu_type1vfio_pcivfio_virqfd
编辑完文件后按【 Ctrl + X ...
idm序列号永久激活码2024:TUTR2-i2nHo-GQBC6-ZECwH
3ZV2M-XQVN1-H0AMJ-B1MRX56ECU-E6CY3-FMNLR-ZA787
5505O-M38P8-NHRL2-XAKWJ
KCC05-BJ2L2-ZM95G-6SFJ4
1QK5Z-4EQIM-XH4RD-BLXKT
TGG94-HRKYT-NIE2X-8A9MT
NCU51-ZEXKM-414SK-HM247
83NFH-WM0FW-GJRQ3-WQ8HL
A3RJ1-3X8AT-85C48-ET4YN
Hexo-next
未读
安装abbrlink插件1npm install hexo-abbrlink --save
配置 - 修改_config.yml配置文件123#permalink: :year/:month/:day/:title/ #此处是默认,注释掉#permalink_defaults: #此处是默认,也注释掉permalink: posts/:abbrlink.html # 使用此处代替,也可以直接使用 :/abbrlink
修改_config.next.yml配置文件,在尾部添加以下内容123456789101112131415## abbrlink configabbrlink: alg: crc32 #support crc16(default) and crc32 进制 rep: hex #support dec(default) and hex 算法 drafts: false #(true)Process draft,(false)Do not process draft. false(default) ## Gene ...
Hexo-next
未读安装依赖12# 使用 npmnpm install --save canvas-nest.js
设置修改_layout.njk,路径在\blog\zhangzz\themes\next\layout文件夹内
在< /body>之前添加以下代码
123{% if theme.canvas_nest %}<script type="text/javascript" src="//cdn.bootcss.com/canvas-nest.js/1.0.0/canvas-nest.min.js"></script>{% endif %}
修改配置文件根目录打开_config.next.yml,在里面添加如下代码:(可以放在最后面)
123456# --------------------------------------------------------------# background settings# ---------------------------------- ...
Hexo
未读鹏叔的技术博客上的内容,还没来的赢看,先收藏