会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
SHUN-ReRound
博客园
首页
新随笔
联系
订阅
管理
2025年5月23日
【python】uv 教程
摘要: 复制于 https://zhuanlan.zhihu.com/p/1908630076704159010 备用 中文文档: https://hellowac.github.io/uv-zh-cn/getting-started/ 一、安装uv 不建议在python环境中安装uv(尤其是conda环境
阅读全文
posted @ 2025-05-23 14:16 ReRound
阅读(1415)
评论(0)
推荐(0)
2025年2月19日
【sftp】sftp 操作
摘要: 【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
阅读(38)
评论(0)
推荐(0)
【MSVC】MSVC 配置
摘要: 【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
阅读(108)
评论(0)
推荐(0)
2025年2月18日
【Windows】scoop 安装(Gitee镜像)
摘要: https://zhuanlan.zhihu.com/p/649753530 Git 克隆失败: PS C:\Users\shun> Invoke-Expression (New-Object System.Net.WebClient).DownloadString('https://get.sco
阅读全文
posted @ 2025-02-18 09:09 ReRound
阅读(42)
评论(0)
推荐(0)
2025年2月7日
【vcpkg】安装与使用
摘要: 【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
阅读(1243)
评论(0)
推荐(0)
2025年2月6日
【CPP】调用父类的重写方法
摘要: 【CPP】调用父类的重写方法 在C++中,如果你有一个子类重写了父类的方法,你可以通过以下几种方式调用父类的重写方法: 1. 使用作用域解析运算符 :: 你可以使用作用域解析运算符 :: 来显式调用父类的方法。 class Parent { public: void print() { std::c
阅读全文
posted @ 2025-02-06 10:01 ReRound
阅读(244)
评论(0)
推荐(0)
2025年1月24日
【VS】 Visual Studio 安装离线插件
摘要: 【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
阅读(446)
评论(0)
推荐(0)
2025年1月23日
【VS】VS 主题插件
摘要: 【VS】VS 主题插件 VS 主题插件推荐 # 名字不完全对但是关键是下面 -- 自带 doxygen 高亮(好像只有行注释) -- /// @brief describe gruvbox-material One Dark Pro Obsidian Nordesque Cyberpunk Pale
阅读全文
posted @ 2025-01-23 15:42 ReRound
阅读(23)
评论(0)
推荐(0)
【VS-Qt】Visual Studio无法找到 ui_xxx.h
摘要: 【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
阅读(155)
评论(0)
推荐(0)
2025年1月20日
【Matlab】包的编写
摘要: 包的编写 创建包 包的命名规则 包名必须以 + 开头,例如 +mypackage 。 包名不能包含空格或特殊字符。 包中的函数或类文件名必须与函数名或类名一致。 目录结构 /path/to/mypackage/ ├── +mypackage/ │ ├── myfunction.m │ └── myc
阅读全文
posted @ 2025-01-20 09:28 ReRound
阅读(73)
评论(0)
推荐(0)
下一页
公告