摘要: @startuml autonumber participant Participant as Foo actor Actor as Foo1 boundary Boundary as Foo2 control Control as Foo3 entity Entity as Foo4 databa 阅读全文
posted @ 2024-06-05 17:40 atom_lxh 阅读(9) 评论(0) 推荐(0) 编辑
摘要: https://openjfx.cn/scene-builder/#download 阅读全文
posted @ 2024-06-03 20:20 atom_lxh 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 一、SimpleMailSender.java package org.fh.util.mail; import java.util.Date; import java.util.Properties; import javax.mail.Address; import javax.mail.Bod 阅读全文
posted @ 2024-06-02 16:49 atom_lxh 阅读(3) 评论(0) 推荐(0) 编辑
摘要: import math from scipy.optimize import fsolve def func(x): return (math.pow(32.0,x)-math.pow(x,2.0)) print(fsolve(func,10)) def func1(x): return (5*ma 阅读全文
posted @ 2024-05-27 17:36 atom_lxh 阅读(15) 评论(0) 推荐(0) 编辑
摘要: 图像显示窗口名支持中文 使用cv2.imshow()显示图像默认是不支持中文名称的窗口的,如果你的窗口名参数中包含中文将会显示为乱码。这是由于在OpenCV-Python包中,imshow函数的窗口标题是gbk编码,而Python3默认UTF-8编码。因而窗口标题包含中文时,会显示乱码。 解决这个问 阅读全文
posted @ 2024-02-03 17:46 atom_lxh 阅读(701) 评论(0) 推荐(0) 编辑
摘要: import fitz def pdf2img(pdf_path, img_dir): doc = fitz.open(pdf_path) # 打开pdf for page in doc: # 遍历pdf的每一页 zoom_x = 2.0 # 设置每页的水平缩放因子 zoom_y = 2.0 # 设 阅读全文
posted @ 2024-02-03 16:15 atom_lxh 阅读(14) 评论(0) 推荐(0) 编辑
摘要: import os os.system("say --voice=\"Sin-ji\" 您好,我叫 Sin-ji 。我講廣東話") os.system("say --voice=\"Mei-Jia\" 您好,我叫美佳。我說國語") os.system("say --voice=\"Ting-Ting 阅读全文
posted @ 2024-01-26 09:27 atom_lxh 阅读(73) 评论(0) 推荐(0) 编辑
摘要: macbook 下,要绑定 80 端口的话。一种方式是用 root 权限启动,即 sudo 启动服务进程。但 sudo 指令存在一定的安全问题,能不使用的情况下我们都尽量不要使用。所以这里给出另外一种解决方法 端口映射 在 /etc/pf.anchors/ 目录下创建一份 xxx.forwardin 阅读全文
posted @ 2023-11-22 23:47 atom_lxh 阅读(215) 评论(0) 推荐(0) 编辑
摘要: macos 关闭防火墙、windows关闭防火墙,macos 与 windows10之间互ping不通、以及TCP通信也不通。 Macos 关闭防火墙、windows(工作组模式)打开防火墙,在高级设置里边增加流入流出规则,可以解决以上问题。 阅读全文
posted @ 2023-11-21 22:31 atom_lxh 阅读(468) 评论(0) 推荐(0) 编辑
摘要: Error: error:0308010C:digital envelope routines::unsupported at new Hash (node:internal/crypto/hash:69:19) at Object.createHash (node:crypto:133:10) a 阅读全文
posted @ 2023-11-20 19:19 atom_lxh 阅读(53) 评论(0) 推荐(0) 编辑