摘要: 错误场景:使用git下载安装Docker 错误原因:下载包太大、git缓存不足、网速慢 错误解决: 查看当前git配置:git config -l httpBuffer加大:git config --global http.postBuffer 524288000 修改配置文件: vim ~/.ba 阅读全文
posted @ 2020-11-19 14:35 趙楊 阅读(1818) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/sxdcgaq8080/p/8926789.html 阅读全文
posted @ 2020-10-12 17:34 趙楊 阅读(215) 评论(0) 推荐(0) 编辑
摘要: Java-Mqtt-ActiveMq(3) 1、maven <dependency> <groupId>org.eclipse.paho</groupId> <artifactId>org.eclipse.paho.client.mqttv3</artifactId> <version>1.2.5< 阅读全文
posted @ 2020-09-25 10:57 趙楊 阅读(332) 评论(0) 推荐(0) 编辑
摘要: Java-Mqtt-ActiveMq(2) 不使用回调函数获取订阅信息 1、maven <!-- https://mvnrepository.com/artifact/org.fusesource.hawtbuf/hawtbuf --> <dependency> <groupId>org.fuses 阅读全文
posted @ 2020-09-25 10:52 趙楊 阅读(322) 评论(0) 推荐(0) 编辑
摘要: Java-Mqtt-ActiveMq(1) 通过Java基于Mqtt协议与ActiveMq交互,订阅(获取消息)/推送主题 1、Maven依赖 <dependency> <groupId>org.springframework.integration</groupId> <artifactId>sp 阅读全文
posted @ 2020-09-25 10:40 趙楊 阅读(829) 评论(0) 推荐(0) 编辑
摘要: userName = userName.replace("\"", ""); 阅读全文
posted @ 2020-09-16 17:41 趙楊 阅读(604) 评论(0) 推荐(0) 编辑
摘要: /** * 静态 */ private static String FaceDataPath; @Value("${config.FACE_DATA_PATH}") public void setFaceDataPath(String faceDataPath) { FaceDataPath = f 阅读全文
posted @ 2020-09-16 17:40 趙楊 阅读(339) 评论(0) 推荐(0) 编辑
摘要: Python-Dlib人脸识别 前言:基于dlib实现人脸识别功能。Anaconda是基于Windows和Linux -X86系统,Miniforge是基于ARM 一、环境 windows/linux+python(Anaconda/Miniforge)+cmake+dlib 二、安装过程 1、wi 阅读全文
posted @ 2020-09-10 15:32 趙楊 阅读(482) 评论(0) 推荐(0) 编辑
摘要: 编写Linux(Ubuntu)开机脚本,首先必须了解,Linux开机过程以及开机会加载哪些脚本文件。 1、Linux开机用户登陆之前系统默认都是root用户进行。 上图可见/etc/init.d/目录为开机自动加载的服务(实质为脚本,文件以shell语言编写脚本)。 2、/etc/init.d/目录 阅读全文
posted @ 2020-08-28 14:58 趙楊 阅读(534) 评论(0) 推荐(0) 编辑
摘要: FTP协议 1、FTP基本概念 FTP(File Transfer Protocol)文件传输协议,作为网络共享文件的传输协议,在网络应用软件中广泛使用。FTP和操作系统无关,任何系统的程序上只要符合FTP协议,就可以实现相互传输,实现了不同操作系统之间的文件共享。FTP提高了文件的共享性和可靠高效 阅读全文
posted @ 2020-08-06 14:10 趙楊 阅读(403) 评论(0) 推荐(0) 编辑