Loading

摘要: Windows 配置 VSCode + neovim + leap.vim 安装 VSCode Neovim 按照网上的教程来即可 安装插件 在 vim 配置文件中找到 💡 找出配置文件位置的方法 可以通过:h init.vim 查看帮助 可以在本机上搜索 *.vim,比如 init.vim文件, 阅读全文
posted @ 2024-03-14 19:05 ZXYFrank 阅读(161) 评论(0) 推荐(0) 编辑
摘要: Resolver error: Error: XHR failed at y.onerror (vscode-file://vscode-app/d:/ProgramFiles/MicrosoftVSCode/resources/app/out/vs/workbench/workbench.desk 阅读全文
posted @ 2024-02-20 19:46 ZXYFrank 阅读(746) 评论(0) 推荐(0) 编辑
摘要: 注意用户名和地址写对 注意 .ssh 的权限必须是 700 https://stackoverflow.com/a/34887294/21005715 阅读全文
posted @ 2024-01-12 23:08 ZXYFrank 阅读(9) 评论(0) 推荐(0) 编辑
摘要: grep -P '[\p{Han}]+' **/*.md -oh | tr -d '\s' > cat.log -P 是正则表达式匹配 -h, --no-filename Suppress the prefixing of file names on output. This is the defa 阅读全文
posted @ 2023-12-28 14:54 ZXYFrank 阅读(23) 评论(0) 推荐(0) 编辑
摘要: 问题来源 安装了zsh-autocomplete 但是 Alt + ↓ 键用不了 我是在 https://github.com/marlonrichert/zsh-autocomplete 这里发现了 > Depending on your terminal, not all keybindings 阅读全文
posted @ 2023-06-21 15:55 ZXYFrank 阅读(26) 评论(0) 推荐(0) 编辑
摘要: 绕开代理 https://blog.csdn.net/m0_68734901/article/details/128411072 sudo -E add-apt-repository ppa:git-core/ppa sudo apt-get update sudo apt-get install 阅读全文
posted @ 2023-05-14 10:54 ZXYFrank 阅读(489) 评论(0) 推荐(0) 编辑
摘要: https://github.com/pjreddie/darknet/issues/2356#issuecomment-756701965 请看这个issue sudo cp cuda/include/cudnn*.h /usr/local/cuda/include sudo cp cuda/li 阅读全文
posted @ 2023-05-14 10:11 ZXYFrank 阅读(70) 评论(0) 推荐(0) 编辑
摘要: 其实这里有一个悖论 我的服务器不设置代理就没办法上网,但是Anaconda又提示这个 export https_proxy="http://ABCD:XXX" export http_proxy="http://ABCD:XXX" ProxyError: Conda cannot proceed d 阅读全文
posted @ 2023-05-13 19:10 ZXYFrank 阅读(149) 评论(0) 推荐(0) 编辑
摘要: colors = (np.array(colors) * 255).astype(np.int) color = colors[i] cv2.rectangle(img, (x0, y0), (x1, y1), color, 2) """ tuple(colors[i]) (0, 255, 0) t 阅读全文
posted @ 2023-04-29 09:56 ZXYFrank 阅读(378) 评论(0) 推荐(0) 编辑
摘要: https://stackoverflow.com/a/34926983 curl -x "" "0.0.0.0:8000" 阅读全文
posted @ 2023-03-22 10:48 ZXYFrank 阅读(35) 评论(0) 推荐(0) 编辑