摘要: :CocConfig 打开coc-settings.json 添加 { "diagnostic.enableSign": false, } 阅读全文
posted @ 2024-03-15 12:59 modys 阅读(56) 评论(0) 推荐(0) 编辑
摘要: WARNING: The script tabulate is installed in '/Users/modys/Library/Python/3.9/bin' which is not on PATH. python没有添加到环境变量 export PATH=/Users/<you>/Libr 阅读全文
posted @ 2023-10-27 22:39 modys 阅读(319) 评论(0) 推荐(0) 编辑
摘要: vps开启bbr加速,有原版bbr,暴力bbr和bbr-plus,可以自己测试速度用哪个 wget -N --no-check-certificate "https://raw.githubusercontent.com/chiakge/Linux-NetSpeed/master/tcp.sh" & 阅读全文
posted @ 2023-10-12 22:04 modys 阅读(461) 评论(0) 推荐(0) 编辑
摘要: vim 配置了python 补全插件coc.nvim,linux没事,只有mac会自动添加变量名提示。 取消变量名自动提示 设置方法,CocConfig,添加如下: { "inlayHint.enable": false } 答案来自:https://matrix.to/#/#neoclide_co 阅读全文
posted @ 2023-10-03 20:48 modys 阅读(53) 评论(0) 推荐(0) 编辑
摘要: linuxmint 21.2 安装搜狗输入法使用fcitx配置。 搜狗官网下载deb安装包,安装好输入法可以切换到,但是不能输入中文,可以复制动态库来使用 sudo cp /usr/lib/x86_64-linux-gnu/libQt5Qml.so.5 /opt/sogoupinyin/files/ 阅读全文
posted @ 2023-09-25 11:00 modys 阅读(1825) 评论(0) 推荐(0) 编辑
摘要: 报错 Max retries exceeded with url: / (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x000001A73833FD00>: Failed to establ 阅读全文
posted @ 2023-09-23 10:16 modys 阅读(558) 评论(0) 推荐(0) 编辑
摘要: 导入 urllib3 加入urllib3.disable_warnings() 阅读全文
posted @ 2023-09-23 10:13 modys 阅读(84) 评论(0) 推荐(0) 编辑
摘要: selenium 自动化识别验证码x,y坐标 命令move_to_element_with_offset 报错:element not interactable: [object HTMLDivElement] has no size and location 由于>4.0是以中心点偏移,4.0是左 阅读全文
posted @ 2023-09-21 17:16 modys 阅读(705) 评论(0) 推荐(0) 编辑
摘要: 写入文件报错UnicodeEncodeError: 'gbk' codec can't encode character '\ufffd' in position 2494: illegal multibyte sequence 解决方法 with open('./abc.html', 'w', e 阅读全文
posted @ 2023-09-15 15:46 modys 阅读(155) 评论(0) 推荐(0) 编辑
摘要: sublime text 调整主题侧边栏字体大小 ctrl+shift+p,然输入PackageResourceViewer安装。 安装完成后ctrl+shift+p 选择 PackageResourceViewer:open resource 然后输入你需要自定义的主题,我安装的是ayu, 然后选 阅读全文
posted @ 2023-09-14 14:38 modys 阅读(485) 评论(0) 推荐(0) 编辑