上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 23 下一页
摘要: 场景:pip3 install httpx[http2] 当在Mac中执行此命令时出现 zsh: no matches found: httpx[http2] 注意:此问题适用于所有相关场景 zsh: no matches found: xxx 解决办法: 1.编辑 zprofile 文件 vim 阅读全文
posted @ 2023-04-23 20:55 程序员小艺 阅读(361) 评论(0) 推荐(0) 编辑
摘要: def getoid(): resp = requests.get("https://www.bilibili.com/video/BV1rJ411g7Mz/?p=14&spm_id_from=pageDriver&vd_source=cd6ee6b033cd2da64359bad72619ca8a 阅读全文
posted @ 2023-04-03 22:55 程序员小艺 阅读(707) 评论(0) 推荐(1) 编辑
摘要: composer require elasticsearch/elasticsearch="^7.0" <?php require_once 'vendor/autoload.php'; # 引入开发包 use Elasticsearch\ClientBuilder; $client = Clien 阅读全文
posted @ 2023-01-04 17:50 程序员小艺 阅读(440) 评论(0) 推荐(0) 编辑
摘要: 1.Hyperf RPC 服务搭建 创建服务提供者 composer create-project hyperf/hyperf-skeleton micro_server cd micro_server 安装注册中心Nacos 适配器 composer require hyperf/service- 阅读全文
posted @ 2022-11-05 15:26 程序员小艺 阅读(469) 评论(0) 推荐(0) 编辑
摘要: 1、下载swoole-cli https://github.com/swoole/swoole-src/releases/tag/v5.0.0 https://wenda-1252906962.file.myqcloud.com/dist/swoole-cli-v4.8.12-cygwin-x64. 阅读全文
posted @ 2022-10-15 00:40 程序员小艺 阅读(388) 评论(0) 推荐(0) 编辑
摘要: 修改xadmin.css 356行左右注释掉 .layui-table td, .layui-table th{ min-width: 80px;} 阅读全文
posted @ 2022-10-02 00:47 程序员小艺 阅读(22) 评论(0) 推荐(0) 编辑
摘要: .table-container { width: 100%; height: 100%; overflow: auto; } /* 首列固定 */ .table-container thead tr > th:first-child, .table-container tbody tr > td: 阅读全文
posted @ 2022-09-11 00:14 程序员小艺 阅读(788) 评论(0) 推荐(0) 编辑
摘要: 使用yield之前 function actionIndex($message = 'hello world') { $valuesArray = []; // 获取初始内存使用量 echo '开始'.round(memory_get_usage() / 1024 / 1024, 2) . ' MB 阅读全文
posted @ 2022-08-31 17:57 程序员小艺 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 1、改变图片颜色 import cv2 image = cv2.imread("red.jpg") #image[:, :, ::-1] #[:, :, :]分别代表b,g,r(蓝绿红),:-1代表颜色值反转(红变蓝) #最后一堆,表示颜色,蓝0,绿1,2红 cv2.imshow('image', 阅读全文
posted @ 2022-08-13 22:16 程序员小艺 阅读(38) 评论(0) 推荐(0) 编辑
摘要: from hyperlpr import HyperLPR_plate_recognition import cv2 image = cv2.imread("7.jpg") data = HyperLPR_plate_recognition(image) print(data) 报错修改: Lib\ 阅读全文
posted @ 2022-08-13 17:11 程序员小艺 阅读(207) 评论(0) 推荐(1) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 23 下一页