摘要: 注意: centos7.9 因为已经停止维护,所以安装程序的时候,可能会报各种错误.遇到下面错误时的参考解决方案,已成功于霖磐服务器操作通过:安装 google-chrome 时显示报错: ``` -->正在解决依赖关系 ***** , 它被软件包 google-chrome-*** 需要 One 阅读全文
posted @ 2025-04-09 09:27 动灵 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 开发环境: mysql 5.7 python 3.8 php 7 centos7.9 使用 mysql的aes_encrypt 进行数据加密,使用 hex(aes_encrypt(原文, 密钥)) 加密生成密文,并使用 aes_decrypt(unhex(密文), 密钥) 进行解密。 --注意,当密 阅读全文
posted @ 2025-04-03 17:27 动灵 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 背景: 使用paddleocr识别表格图片文字内容,但是由于图片拍摄或扫描角度问题,不一定是水平平衡的,可能存在一定的倾斜角度。 所以如果是仅按坐标从左上到右下进行排序的话,可能本来同一行的文字,被切分成了上下行。 因此需要使用阈值来进行近似判断。下面就是一个可用例子。 def sort_top_l 阅读全文
posted @ 2024-07-01 16:02 动灵 阅读(446) 评论(0) 推荐(1) 编辑
摘要: #!/bin/bash # 检测进程是否在运行process=$(ps aux | grep "pytest.py" | grep -v grep) # 如果进程在运行,则终止它if [ -n "$process" ]; then kill $(pgrep -f "pytest.py")fi #!/ 阅读全文
posted @ 2024-04-25 09:31 动灵 阅读(153) 评论(0) 推荐(0) 编辑
摘要: ************************************************************** windows: >> 一、安装及配置 mosquitto 1.下载并安装 mosquitto (官网下载地址 https://mosquitto.org/download/ 阅读全文
posted @ 2024-03-27 15:55 动灵 阅读(2954) 评论(0) 推荐(0) 编辑
摘要: 项目git: https://gitee.com/kekingcn/file-online-preview 项目克隆出来后,进入项目目录后,使用maven 进行编译生成打包(如何安装 maven 可百度搜索): # 下载包 wget https://dlcdn.apache.org/maven/ma 阅读全文
posted @ 2024-03-27 15:27 动灵 阅读(501) 评论(0) 推荐(0) 编辑
摘要: 参考链接: https://blog.csdn.net/a772304419/article/details/133277368 自启动 参考链接: https://blog.csdn.net/qq_32953185/article/details/108460302 参数配置 参考链接: http 阅读全文
posted @ 2024-03-12 16:40 动灵 阅读(25) 评论(0) 推荐(0) 编辑
摘要: 环境:centos7 + php7.3(thinkphp6) wkhtmltopdf: https://wkhtmltopdf.org/index.html 坑点: 1.linux系统 html生成的pdf中文乱码(解决方法参考:https://juejin.cn/post/706974915732 阅读全文
posted @ 2023-06-30 11:37 动灵 阅读(580) 评论(0) 推荐(0) 编辑
摘要: /** * 截取身份证年、月、日,通过与当前时间戳的比较计算年龄 * @param string $idcard 身份证 * @return int */ function getAgeByID($idcard) { // 过了这年的生日才算多了一周岁 if(empty($idcard)) retu 阅读全文
posted @ 2021-12-07 14:38 动灵 阅读(181) 评论(0) 推荐(0) 编辑
摘要: 最近做了一个项目需要 php+shell_exec() 调用python,在win下能正常调用到,然而转移到centos上时结果一直是null,各种尝试后总结如下: 1.检查 php.ini disable_functions= 中是否有shell_exec,若有则删除,保存后重启php 2.pyt 阅读全文
posted @ 2021-09-04 14:33 动灵 阅读(647) 评论(0) 推荐(0) 编辑
点击右上角即可分享
微信分享提示