摘要: 前期准备 准备好termux以及远程连接ssh.[提前搞定,不多赘述了。] 1.安装 termux。 termux-app_v0.119.0-beta.3+apt-android-7-github-debug_arm64-v8a.apk 2.ssh 每次重新打开都需要重启ssh以及配置端口。否则就会 阅读全文
posted @ 2025-11-02 02:09 愤怒的蒲公英 阅读(8) 评论(0) 推荐(0)
摘要: 问题描述 开启vpn后使用git clone 克隆github仓库失败,报错提示 Failed to connect to 127.0.0.1 port XXX after 7890 ms: Couldn't connect to server 解决方案 查看vpn软件端口号并修改git http与 阅读全文
posted @ 2025-10-28 11:08 愤怒的蒲公英 阅读(6) 评论(0) 推荐(0)
摘要: 生成/编译成功,调试失败 报错调试目标exe找不到,检查 链接器->常规->输出文件 与 配置属性->调试菜单->命令 提供的文件路径是否一致。 调试目标: ps:命令不支持相对路径,注意保证路径完整。否则出现Basepath argument is not fully qualified. 参数名 阅读全文
posted @ 2025-10-24 10:58 愤怒的蒲公英 阅读(5) 评论(0) 推荐(0)
摘要: 问题 git 拉取代码后偶尔会出现"Encountered 3 file(s) that should have been pointers, but weren't"提示。这些损坏的文件即便删除,还原代码后仍然会出现。 解决方法 删除git lfs格式配置文件后丢弃所有修改即可。 git rm . 阅读全文
posted @ 2025-09-11 12:17 愤怒的蒲公英 阅读(25) 评论(0) 推荐(0)
摘要: Git报错 git push推送代码时出现如下报错 error: RPC failed; HTTP 500 curl 22 The requested URL returned error: 500 send-pack: unexpected disconnect while reading sid 阅读全文
posted @ 2025-09-11 11:36 愤怒的蒲公英 阅读(90) 评论(0) 推荐(0)
摘要: 1.安装扩展 1.rust-analyzer 2.Native Debug 2.新建项目 1.启动vs code并打开文件夹 workspace 。 2.快捷键Ctrl+Shift+`唤起终端。注意终端位置,此时终端应该在workspace文件夹内。 3.终端运行cargo new hello_wo 阅读全文
posted @ 2025-09-10 12:15 愤怒的蒲公英 阅读(97) 评论(0) 推荐(0)
摘要: 前期准备 1.系统环境:Windows 10 2.C 编译环境 安装 rust 编译工具前,确保电脑已具备 C 编译环境,本篇使用 MSVC 编译环境( Visual Studio 2019),MSVC 安装略。 Rust 编译工具安装 1.进入官方网址下载 64 位rustup-init.exe。 阅读全文
posted @ 2025-09-09 19:04 愤怒的蒲公英 阅读(18) 评论(0) 推荐(0)
摘要: 问题及原因 使用clion调试代码,出现“无法定位程序输入点qt_version_6_4”字样,确认为更改环境变量导致:本机环境存在多个环境变量,调试需要的qt版本的路径在环境变量中处于靠后位置,前方存在其他版本Qt的环境变量路径导致该问题。 解决方案 1.将需要的qt版本的对应环境移置最上方(最前 阅读全文
posted @ 2024-12-09 11:25 愤怒的蒲公英 阅读(94) 评论(0) 推荐(0)
摘要: 问题 从github私人仓库克隆代码报错: Failed sending data to the peer 解决 git config --local http.postBuffer 524288000 上述命令需要本地已有git仓库。可将local变更为global配置全局属性。 阅读全文
posted @ 2024-11-08 00:40 愤怒的蒲公英 阅读(138) 评论(0) 推荐(0)
摘要: 搜索文件 使用file(GLOB_RECURSE fileList searchDir/*.cpp)搜索searchDir目录下所有cpp文件,将路径保存到fileList中。 GLOB_RECURSE:启用递归搜索。 ps:searchDir不会被展开,如果searchDir中存在C/test/. 阅读全文
posted @ 2024-11-06 15:25 愤怒的蒲公英 阅读(136) 评论(0) 推荐(0)