摘要: 【sftp】sftp 操作 1. 登录 ```bash #密码登录 sftp -P 22 zhangsan@192.168.0.100 #秘钥登录 sftp -P 22 -i ~/.ssh/id_rsa zhangsan@192.168.0.100 ``` 2. 更改远程工作目录 ```bash c 阅读全文
posted @ 2025-02-19 11:55 ReRound 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 【MSVC】MSVC 配置 MSVC 编译器路径 - 新建变量: WK10_BIN > C:\Program Files (x86)\Windows Kits\10\bin WK10_INCLUDE > C:\Program Files (x86)\Windows Kits\10\Include\1 阅读全文
posted @ 2025-02-19 10:20 ReRound 阅读(7) 评论(0) 推荐(0) 编辑
摘要: https://zhuanlan.zhihu.com/p/649753530 阅读全文
posted @ 2025-02-18 09:09 ReRound 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 【vcpkg】安装与使用 安装 mkdir /path/to/vcpkg_dir cd /path/to/vcpkg_dir git clone https://github.com/microsoft/vcpkg cd vcpkg ./bootstrap-vcpkg.bat 更新 vcpkg cd 阅读全文
posted @ 2025-02-07 10:07 ReRound 阅读(255) 评论(0) 推荐(0) 编辑
摘要: 【CPP】调用父类的重写方法 在C++中,如果你有一个子类重写了父类的方法,你可以通过以下几种方式调用父类的重写方法: 1. 使用作用域解析运算符 :: 你可以使用作用域解析运算符 :: 来显式调用父类的方法。 class Parent { public: void print() { std::c 阅读全文
posted @ 2025-02-06 10:01 ReRound 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 【VS】 Visual Studio 安装离线插件 进入安装目录 C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\IDE 在命令行执行 /path/to/extension/xxx.vsix (可以直接拖进命 阅读全文
posted @ 2025-01-24 09:44 ReRound 阅读(134) 评论(0) 推荐(0) 编辑
摘要: 【VS】VS 主题插件 VS 主题插件推荐 # 名字不完全对但是关键是下面 -- 自带 doxygen 高亮(好像只有行注释) -- /// @brief describe gruvbox-material One Dark Pro Obsidian Nordesque Cyberpunk Pale 阅读全文
posted @ 2025-01-23 15:42 ReRound 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 【VS-Qt】Visual Studio无法找到 ui_xxx.h ui_xxx.h 文件是 Qt 使用 ui 文件生成的的头文件 我是用 cmake 构建的项目 ui_xxx.h 文件会生成到 ${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}_autogen/ 阅读全文
posted @ 2025-01-23 09:56 ReRound 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 包的编写 创建包 包的命名规则 包名必须以 + 开头,例如 +mypackage 。 包名不能包含空格或特殊字符。 包中的函数或类文件名必须与函数名或类名一致。 目录结构 /path/to/mypackage/ ├── +mypackage/ │ ├── myfunction.m │ └── myc 阅读全文
posted @ 2025-01-20 09:28 ReRound 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 动态添加路径 import sys # 添加当前工作目录到 Python 的路径中 current_dir = os.getcwd() if current_dir not in sys.path: sys.path.append(current_dir) 阅读全文
posted @ 2025-01-20 09:27 ReRound 阅读(5) 评论(0) 推荐(0) 编辑
点击右上角即可分享
微信分享提示