摘要: yum groupinstall -y 'fonts' 之后重启接口项目再重新预览就展示正常了。 阅读全文
posted @ 2024-07-23 10:33 星小梦 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 当你去openssl官网找二进制发行版的时候,很可惜,openssl不提供任何二进制发行版的版本,虽然有第三方,但openssl不推荐也不建议任何一个。 点击到这个位置,会有一些官方的说明和第三方的链接。 最终你会到达这个位置,也就是openssl 二进制发行版的列表页面。自行选择。 在此奉上当前最 阅读全文
posted @ 2024-07-14 21:15 星小梦 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 场景 我使用的electron 27版本。 众所周知,navigator.mediaDevices.getUserMedia API只能在https环境下使用,在非https环境下使用时navigator.mediaDevices会返回undefined。除了例外的这几种情况。 例外的几种情况在MD 阅读全文
posted @ 2024-07-14 14:43 星小梦 阅读(2) 评论(0) 推荐(0) 编辑
摘要: CRC_CCITT,特征多项式:X16+X12+X5+1,即多项式系数为 0x1021,初始值为全 0,对于单个字节来说最高位先计算,不需要取反直接输出。 function calculateCRC_CCITT(buffer) { const POLYNOMIAL = 0x1021; let crc 阅读全文
posted @ 2024-07-12 14:21 星小梦 阅读(2) 评论(0) 推荐(0) 编辑
摘要: blake2.h:112:5: error: size of array element is not a multiple of its alignment 112 | blake2b_state S[4][1]; | ^~~~~~~~~~~~~ blake2.h:113:5: error: si 阅读全文
posted @ 2024-07-03 17:07 星小梦 阅读(8) 评论(0) 推荐(0) 编辑
摘要: Mybatis XML文件SQL对于Date类型比较分析 阅读全文
posted @ 2024-06-21 11:08 星小梦 阅读(16) 评论(0) 推荐(0) 编辑
摘要: Access to XMLHttpRequest at 'http://localhost:8008/paths...' from origin 'http://www.exmaple.com' has been blocked by CORS policy: The request client 阅读全文
posted @ 2024-05-28 17:25 星小梦 阅读(72) 评论(0) 推荐(0) 编辑
摘要: 原文: http://asciima.com/ 阅读全文
posted @ 2024-05-28 16:18 星小梦 阅读(9) 评论(0) 推荐(0) 编辑
摘要: WebSocket协议:https://datatracker.ietf.org/doc/html/rfc6455 Jakarta WebSocket API:https://jakartaee.github.io/websocket/ SpringBoot对WebSocket的支持:https:/ 阅读全文
posted @ 2024-05-15 15:36 星小梦 阅读(4) 评论(0) 推荐(0) 编辑
摘要: https://www.quirksmode.org/js/events_order.html 阅读全文
posted @ 2024-03-30 14:23 星小梦 阅读(3) 评论(0) 推荐(0) 编辑