```sql select exists(1) from sqlite_master where name = 'folders'; select load_extension('/Users/...
102025年2月19日
一些sqlite代码片段
安装过程 ```bash git clone https://github.com/ph3at/libenvpp.git cd libenvpp git checkout v1.4.0 mkdir ...
102025年4月17日
libenvpp构建过程
wt c++ web framework https://www.webtoolkit.eu/wt/ ```bash cd ~/Library git clone https://github.c...
102025年4月17日
wt库构建过程
```bash # 查看本地安装的dotnet工具列表 dotnet tool list # 查看全局安装的dotnet工具列表 dotnet tool list --global # 安装dotn...
102025年4月17日
查看本地安装的dotnet工具列表
首先在```pubspec.yaml```中添加```build_runner```依赖: ```yaml dev_dependencies: build_runner: ``` 之后运行bu...
102025年4月17日
Flutter运行build_runner
命令列表 ```bash # 描述rc的行为,排查错误 kubectl describe rc nginx # 描述pod的行为,排查错误 kubectl describe pod PodNa...
102025年4月17日
k8s命令
替换源 homebrew在国内访问都不太顺畅。可以替换成国内中科大的镜像源。 需要替换的是4个模块的镜像: Homebrew Homebrew Core Homebrew-bottles Home...
102025年4月17日
homebrew整理
演示通过将Rust编译为WebAssembly、打包为npm包,并通过vite运行示例页面 首先根据 https://developer.mozilla.org/zh-CN/docs/WebAssem...
102025年4月17日
Rust编译WebAssembly示例
### ExternalProject用法 ```cmake include(ExternalProject) set(MultiMarkdown_ROOT ${CMAKE_BINARY_DIR...
92025年2月19日
CMake 引入外部工程方法
安装过程 ```bash git clone https://github.com/pantor/inja.git cd inja git checkout v3.4.0 # 安装指定版本 mkd...
92025年4月17日
inja模板库安装过程