共有 261 篇文章
📅 最近更新
2024-04-13
- 2024-09-18
官方安装教程 https://docs.hoppscotch.io/documentation/self-host/community-edition/install-and-build Chrome 插件 https://chromewebstore.google.com/detail/hoppscotch-browser-extens/amknoiejhlmhancpahfcfcfhllgkpbld 安装后在插件中添加域名https://post.akvicor.com来启用插件 初始化数据库 在安装成功且访问之前, 需要先初始化数据库, 否则
2024-04-09
- 2024-09-18
引脚定义 展示所有串口 dtoverlay -a | grep uart 查看特定串口信息 dtoverlay -h uart2 开启串口 UART2-5 vim /boot/config.txt # 或 (新版本系统中路径发生变化) vim /boot/firmware/config.txt 在文件结尾添加如下: dtoverlay=uart2 dtoverlay=uart3 dtoverlay=uart4 dtoverlay=uart5 重启后查看是否生效: # UART1 ls /dev/ttyS0 #
2024-03-24
- 2024-09-18
扩充固件 将.img文件中的分区使用fdisk扩充7G 写入固件 启用魔法 echo 0xDEADBEEF > /etc/config/google_fu_mode ShadowSocksR Plus+ 添加Socks5 opkg update opkg install ipt2socks
2024-03-16
- 2024-09-18
由于css中限制了标签的宽高, 如果标题过长会无法显示, 因此需要修改css中的属性 在virgo/assets/scss/partials/content/nav.
2024-03-02
- 2024-09-18
找到主题的layouts/_default/single.html文件 在{{ define "main" }}后面添加以下内容 {{ $IsNav := eq .Title "Nav"}} {{ $IsSearch := eq .Title "Search"}} {{ $IsArchive := eq .Title "Archive"}} {{ $IsAbout := eq .Title "About"}} {{ $IsSecrets := eq .Section "secrets"}}
2024-02-20
- 2024-09-18
Special pages Interwiki (more information) Editors CodeEditor (more information) WikiEditor (more information) Parser hooks CategoryTree (more information) Cite (more information) ImageMap (more information) InputBox (more information) Math (more information) ParserFunctions (more information) Poem (more information) Scribunto (more information) SyntaxHighlight_GeSHi (more information) TemplateData (more information) API PageImages (more information) Other MultimediaViewer (more information) OATHAuth (more information) LocalSettings.php 网站图标 $wgFavicon = "$wgResourceBasePath/resources/assets/snowflake_128.png"; 短URL 在编译好的docker镜像
2024-02-08
- 2024-09-18
M = moveto(M X,Y):起始 将画笔移动到指定的坐标位置 L = lineto(L X,Y):连线 画直线到指定的坐标位置 H = horizontal lineto(H X):水平线 画水平线到指定的X坐标位置 V = vertical lineto(V Y):垂直线 画垂直
2024-02-06
- 2024-09-18
使触摸板敲击(不是按压)时也产生左键事件 sudo apt install xserver-xorg-input-synaptics sudo vim /etc/X11/xorg.conf.d/50-synaptics.conf 在文件中添加以下内容 Section "InputClass" Identifier "touchpad catchall" Driver "synaptics" MatchIsTouchpad "on" Option "TapButton1" "1" #单指敲击产生左键事件 Option "TapButton2" "2" #双指敲击产生中键事件 Option "TapButton3" "3" #三指
2024-01-29
- 2024-09-18
暴力删除registry镜像文件 直接进入这个目录删除仓库 /HHD4/docker/docker_hub/docker/registry/v2/repositories 进入docker实例执行垃圾回收 /bin/registry garbage-collect /etc/docker/registry/config.yml 重启registry
2024-01-26
- 2024-09-18
RawMessage Scan&Value json.RawMessage 以[]byte形式存储json数据,但在父结构体marshal和unmarshal时不会重复序列化,仅仅将数据复制到新json字符串中 通过继承Scanne