07 2022 档案
摘要:如果你点击了没反应, 那就是你的win11系统不兼容,只能安装docker4.4.4及以下版本,如果是以上版本会点击了没反应 下载地址:https://docs.docker.com/desktop/release-notes/#docker-desktop-444 默认会安装在C盘 可以配置软链接
阅读全文
摘要:FileSaver.js /* FileSaver.js * A saveAs() FileSaver implementation. * 1.3.2 * 2016-06-16 18:25:19 * * By Eli Grey, http://eligrey.com * License: MIT *
阅读全文
摘要:以下命令请慎用 删除所有状态为退出的容器 docker rm $(docker ps --all -q -f status=exited) 删除tag标签为<none>的镜像 (windows系统不可用) docker rmi -f $(docker images | grep "<none>" |
阅读全文
摘要:appid和appkey生成没有固定逻辑,一般根据自己的需求 Md5PwdEncoder类参考: https://www.cnblogs.com/pxblog/p/10528162.html public static void main(String[] args) { PwdEncoder pw
阅读全文
摘要:m3u8测试播放地址 https://leshiyuncdn.ahjunqin.top/20231221/11lQU4M0/index.m3u8 播放页面html页面代码 <script src="//cdn.jsdelivr.net/npm/hls.js@latest"></script> <di
阅读全文
摘要:示例代码 数据库查询方法,可以根据自己整合的框架来写即可 import org.apache.ibatis.annotations.Select; import java.util.List; import java.util.Map; /** * 数据库备份 */ public interface
阅读全文