07 2022 档案
摘要:use libc::*; use std::{fs::File, io::Write}; fn main() { let args: Vec<String> = std::env::args().collect(); let mut file = File::options().append(tru
阅读全文
摘要:git-fetch-with-cli [net] git-fetch-with-cli = true 查询命令行: wmic:root\cli>process where caption="git.exe" get ExecutablePath, caption, CommandLine Capti
阅读全文
摘要:作用 在 GeoServer 中 查询、删除可以通过 url 指定工作区: http://127.0.0.1:8888/geoserver/camera_workspace/wfs 但是插入必须要通过 featureNS 指定工作区的 uri url: http://127.0.0.1:8888/g
阅读全文
摘要:查找图层对应id <qgis> <layer-tree-group> <layer-tree-group checked="Qt::Checked" name="xxx" expanded="1"> <customproperties/> <layer-tree-layer checked="Qt:
阅读全文
摘要:SQL WITH a as (SELECT id, row_number() OVER() rn FROM camera) UPDATE camera SET id = (SELECT rn FROM a WHERE camera.id = a.id); 什么是WITH子句 如果你想多次使用某个表,
阅读全文
摘要:# 添加编译目标 首先明确一下,Rust 有个平台支持等级的概念,处于等级1的平台可以使用 `rustup default [stable-x86_64-pc-windows-msvc]` 设置为主机平台,其它等级的只能使用以下方式设置为编译目标: ``` rustup target add aar
阅读全文