摘要: WSL: Windows Subsystem for Linux 安装Wsl后,在特定文件夹打卡WSL终端,只需要:按住Shift键,右键 Ubuntu装机必备: for developer vim cmake git python conda/miniconda 阅读全文
posted @ 2025-11-19 21:38 梦一场6688 阅读(3) 评论(0) 推荐(0)
摘要: Git中的一笔commit提交,可以成为patch 生成Patch 带有commit信息: git format-patch -1 HEAD only代码 应用Patch check是否有冲突 git apply --check 0001-xxx.patch 应用Patch git apply 00 阅读全文
posted @ 2025-10-08 21:33 梦一场6688 阅读(7) 评论(0) 推荐(0)
摘要: 添加/删除用户 sudo useradd -m -d /home/newuser -s /bin/bash newuser sudo passwd newuser 新建/删除用户 su: Super User即系统管理员 useradd: 新建用户 userdel: 删除用户 passwd : 修改 阅读全文
posted @ 2025-09-14 14:25 梦一场6688 阅读(11) 评论(0) 推荐(0)
摘要: 应用场景:Windows电脑 + Android开发 Windows: cmd --> Powershell Linux: bash scripts cmd: bat scripts (xxx.bat) powershell: cmdlet (xxx.ps1) alias命令: Get-Alias 阅读全文
posted @ 2025-09-07 22:22 梦一场6688 阅读(12) 评论(0) 推荐(0)
摘要: 从LunarG网站上下载Vulkan SDK: https://www.lunarg.com/vulkan-sdk/ 目前[2025/08/30]最新SDK为:1.4.321.1 安装SDK后打开:vulkanCapsViewer.exe VulkanCapsViewer的android版本为:ht 阅读全文
posted @ 2025-08-30 15:16 梦一场6688 阅读(165) 评论(0) 推荐(0)
摘要: 普通指针语法: datatype *var_name; int* ptr; uint_8 *buffer; 函数指针语法: return_type (*FuncPtr) (parameter type, ....); 应用场景: 利用函数指针来调用函数:dlopen/dlsym 将函数作为参数传入: 阅读全文
posted @ 2025-04-12 17:22 梦一场6688 阅读(14) 评论(0) 推荐(0)
摘要: 下载文件: wget https://pjreddie.com/media/files/yolov3.weights wget https://raw.githubusercontent.com/quic/qidk/refs/heads/master/Solutions/VisionSolution 阅读全文
posted @ 2025-01-30 18:10 梦一场6688 阅读(51) 评论(0) 推荐(0)
摘要: Jupyter Notebook (.pynb)是一个集bash脚本和Python脚本为一体的、交互式脚本文件 安装install 建议conda安装:conda install jupyter 启动 Running the Notebook jupyter notebook VSCode中使用 V 阅读全文
posted @ 2025-01-19 12:01 梦一场6688 阅读(57) 评论(0) 推荐(0)
摘要: 一、现有test.sh脚本如下: #!/bin/bash echo "Hello World" echo字符串 需要加引号'''' 方法一: 方法二: sh test.sh拓展名为sh,那么用sh解释执行就可以了 二、for循环打印 #/bin/bash for SCENE in animal bu 阅读全文
posted @ 2024-12-03 20:49 梦一场6688 阅读(18) 评论(0) 推荐(0)
摘要: 一、环境配置 安装platform-tools: https://developer.android.com/tools/releases/platform-tools?hl=zh-cn Android手机打开开发者权限: 设置-->关于本机-->版本信息-->多次点击[版本号] 设置-->其他设置 阅读全文
posted @ 2024-07-11 19:32 梦一场6688 阅读(80) 评论(0) 推荐(0)