相关文章
Python 物联网入门指南(四)
原文:zh.annas-archive.org/md5/4fe4273add75ed738e70f3d05e428b06 译者:飞龙 协议:CC BY-NC-SA 4.0 第九章:构建光学字符识别的神经网络模块
本章介绍以下主题: 使用光学字符识别(OCR)系统 使…
编程日记
2024/6/8 4:25:41
postgresql uuid
示例数据库版本PG16,对于参照官方文档截图,可以在最上方切换到对应版本查看,相差不大。 方法一:自带函数 select gen_random_uuid(); 去掉四个斜杠,简化成32位 select replace(gen_random_uuid()::text, -, ); 官网介绍…
编程日记
2024/9/11 7:29:33
minio-docker单节点部署SDK测试文件上传下载
目录 一,docker部署minio单节点单磁盘
二,SDK测试上传下载 一,docker部署minio单节点单磁盘
1.拉取镜像
# 下载镜像
docker pull minio/minio
2.查看镜像
docker images 3.启动minio(新版本)
创建本机上的挂载目录,这个可以…
编程日记
2024/4/16 18:27:35
【Go】go mod初始化
遇到问题
创建go项目时使用 go mod init 命令提示如下错误: go: cannot determine module path for source directory /Users/easton/go/basic-go (outside GOPATH, module path must be specified) 解决方案一
这是因为go mod init 初始化项目时,需要…
编程日记
2024/6/7 22:09:29
bugku-web-需要管理员
页面源码
<html>
<head>
<meta http-equiv"Content-Type" content"text/html; charsetUTF-8">
<title>404 Not Found</title>
</head>
<body>
<div idmain><i>
<h2>Something error:</h2…
编程日记
2024/6/7 13:12:30
【SpringBoot】返回参数
返回参数 返回页面返回数据返回 html 代码返回 json 数据两数相加用户登录 返回页面
首先在 static 文件夹中创建 index.html 文件: 代码:
<html>
<body><h1>hello word!!!</h1><p>this is a html page</p>
<…
编程日记
2024/4/16 18:11:20