摘要: 原文 https://developer.aliyun.com/article/1436840 { "builder": { "gc": { "defaultKeepStorage": "20GB", "enabled": true } }, "registry-mirrors": [ "https 阅读全文
posted @ 2024-03-20 12:21 过错 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 一 1 全局设置pip加速。 查找pip.ini文件,添加以下代码 [global] index-url = http://pypi.tuna.tsinghua.edu.cn/simple/ [install] trusted-host = pypi.tuna.tsinghua.edu.cn 2 执 阅读全文
posted @ 2024-03-11 15:39 过错 阅读(2) 评论(0) 推荐(0) 编辑
摘要: dotnet publish --configuration Release 发布 dynamic d = new ExpandoObject(); oracle里的38位数字,目前的orm没有太好的解决办法。 阅读全文
posted @ 2024-01-12 15:48 过错 阅读(2) 评论(0) 推荐(0) 编辑
摘要: https://gitee.com/wangqianlong1993/IdentityServer4 name "IdentityServer4c#" https://github.com/AFei19911012/WPFSamples https://github.com/anncwb/vue-v 阅读全文
posted @ 2023-11-11 17:25 过错 阅读(59) 评论(0) 推荐(0) 编辑
摘要: 问题:不论装哪个版本的postgresql,都报 The program "postgres" was found by ".../initdb.exe" but was not the same version as initdb. 和 The database cluster initialis 阅读全文
posted @ 2023-10-12 08:47 过错 阅读(65) 评论(0) 推荐(1) 编辑
摘要: 以下代码为gpt自动生成 计算NDVI(归一化植被指数)需要计算红外波段和可见光波段的反射率,所以需要使用遥感图像处理软件或库来读取和处理遥感图像数据。以下是一个简单的C#代码示例,用于计算NDVI: using System; using System.Drawing; using Accord. 阅读全文
posted @ 2023-04-18 17:08 过错 阅读(216) 评论(1) 推荐(0) 编辑
摘要: using System; using System.IO; using System.Net; using System.Text; class Program { static void Main() { // API的URL string apiUrl = "https://api.opena 阅读全文
posted @ 2023-04-14 12:59 过错 阅读(318) 评论(0) 推荐(0) 编辑
摘要: Git 每次提交代码,都要写 Commit message(提交说明) 1 $ git commit -m "hello world" 上面代码的-m 参数,就是用来指定 commit mesage 的。 如果一行不够,可以只执行git commit,就会跳出文本编辑器,让你写多行. 1 $ git 阅读全文
posted @ 2023-04-03 19:36 过错 阅读(55) 评论(0) 推荐(0) 编辑
摘要: 资料 https://www.bilibili.com/video/av205290948/?p=5&vd_source=046ea4f5c29b8099c725f82685b9c821 https://www.cnblogs.com/fenglovellx/p/8137551.html https 阅读全文
posted @ 2023-04-03 16:05 过错 阅读(135) 评论(0) 推荐(0) 编辑
摘要: 查看docker 运行参数的命令 docker run -v /var/run/docker.sock:/var/run/docker.sock assaflavie/runlike redis-6379 说明:redis-6379是容器名。 执行会下载镜像。然后会看到当时运行redis-6379这 阅读全文
posted @ 2022-12-07 17:04 过错 阅读(407) 评论(0) 推荐(0) 编辑