macos 虚拟机 UTM
官网 https://mac.getutm.app/ 手册 https://docs.getutm.app 镜像下载地址 https://mac.getutm.app/gallery/ ipsw 下载 https://ipsw.me/ 三方工具下载 ipsw ISO https://github.com/ninxsoft/Mist 安装 macOS…
更新日志模板
# Changelog All notable changes to this project will be documented in this file. - Added 新添加的功能。 - Changed 对现有功能的变更。 - Deprecated 已经不建议使用,即将移除的功能。 - Removed 已经移除的功能。 - Fixed 对…
对象映射工具 Mapperly
对象映射工具 Mapperly Mapperly 是一个用于生成对象映射的 .NET 源生成器 以前常用的 AutoMapper 现在开始收费了 dotnet add package Riok.Mapperly​ ​https://www.cnblogs.com/jasongrass/p/18746203#mapperly​ 在 csproj 中,…
Mermaid 流程图
在线编辑器 在线编辑器: https://www.mermaidchart.com/ 流程图示例 (Flowchart Example) --- title: 一个简单的小例子 --- graph TD %% 这是一段注释 A("开始<br>检查咖啡机是否工作") --> B{有电源吗?}; B -- 是 --…
ldap 简单说明
定位:一种轻量级目录访问协议,用于集中存储和查询“身份信息”(用户、组、设备等)。 类比:像一个只读优化的树形数据库(实际可读写),专为“高频查、低频改”设计(如登录认证)。 典型用途:单点登录(SSO)、统一账号管理(如企业 AD、GitLab LDAP 登录)。 安装工具 工具包 openldap, 其中的 ldapsearch 为查询工具, …
macOS 鼠标按钮定义工具
https://github.com/noah-nuebling/mac-mouse-fix/ brew install mac-mouse-fix 可以定义鼠标的按钮与滚轮
MacOS pdf 虚拟打印机
https://github.com/rodyager/RWTS-PDFwriter macOS 自带 pdf 导出功能,在打印界面有导出 pdf 文件功能。 比如 WPS 无法使用内置的导出 pdf 功能,可以安装这个打印机打印出 pdf 文件 第一次安装完成后,打印会没有输出,打印一次,然后再安装一次再用就正常了。
MacOS 映射键位
下在将 control + a f z x c v 映射到对应的 command + 对应组合键 下载并安装 Karabiner-Elements https://karabiner-elements.pqrs.org/ 同意一系列权限 Settings | Complex Modifications | Add your own rule 添加下…
.net 调用 llama.cpp
using LLama; using LLama.Common; using LLama.Sampling; // 引用 LLamaSharp, LLamaSharp.Backend.Cpu // 这个例子中,内存使用的 4 个G // Llava 调用的例子,新版本中被移除 // scisharp.github.io/LLamaSharp/0.2…
MacOS 上安装 docker
为了测试可以使用 colima 这样可以不用安装 docker desktop # 安装 colima brew install colima # 安装 docker compose brew install docker-compose # 启动 colima start # 停止 colima stop # 或是定义一个 pwsh 函数 fun…