摘要: 代码: #coding=utf-8 import os,sys,re import requests from webob.exc import strip_tags from xpinyin import Pinyin def str2dict(str): dict = {} groups1 = 阅读全文
posted @ 2023-02-09 14:32 河北大学-徐小波 阅读(34) 评论(0) 推荐(0) 编辑
摘要: 代码: <?php set_time_limit(0); ini_set('memory_limit', '-1'); //error_reporting(E_ALL); //ini_set('display_errors', 0); /** + * UMD编码,文本转umd文件 + */ clas 阅读全文
posted @ 2023-02-09 14:20 河北大学-徐小波 阅读(261) 评论(0) 推荐(0) 编辑
摘要: 我有一个小抓取工具,运行-》点开始按钮后经常会卡死 调整之前的代码: # Connect Events self.func = self.start.Bind( wx.EVT_BUTTON, self.kaishizhuaqu ) def kaishizhuaqu( self, event ): d 阅读全文
posted @ 2023-02-08 16:22 河北大学-徐小波 阅读(248) 评论(0) 推荐(0) 编辑
摘要: ipconfig/displaydns 查询当前 DNS 缓存 ipconfig/flushdns 清空本机缓存 互联网上常见的公共 DNS 服务器的 IP 地址如下: 首选 DNS 服务器地址 备用 DNS 服务器地址阿里 223.5.5.5 223.6.6.6腾讯 119.29.29.29 18 阅读全文
posted @ 2023-02-02 14:42 河北大学-徐小波 阅读(88) 评论(0) 推荐(0) 编辑
摘要: 问题原因:使用idea64 run springboot项目时出现这个错误:java.lang.NoClassDefFoundError: javax/xml/bind/JAXBException 解决方法:在pom.xml中添加以下依赖。 <dependency> <groupId>javax.x 阅读全文
posted @ 2023-02-02 11:50 河北大学-徐小波 阅读(305) 评论(0) 推荐(0) 编辑
摘要: keytool VS openssl keytool 和 openssl 是俩个证书管理工具。 keytool 是 java JDK 自带的证书管理工具,使用 keytool 可以生成密钥,创建证书。只要装了 jdk,并正确设置了环境变量,就可以之间通过命令行执行 keytool 命令来管理证书。 阅读全文
posted @ 2023-01-31 17:19 河北大学-徐小波 阅读(72) 评论(0) 推荐(0) 编辑
摘要: AI修复照片一、前言最近闲来无事,翻了翻以前的老照片,看着多年前的老照片,感慨万千,仿佛又回到了以前的青春岁月。只可惜青春易逝,无法重来。意气风发,头角峥嵘的画面只能永远地留存在相片之中了。只叹当时没有多拍几张照片留作纪念,可惜当时设备也不好,照片效果不佳。留下遗憾。最近学习了Python,发现可以 阅读全文
posted @ 2023-01-31 09:43 河北大学-徐小波 阅读(145) 评论(0) 推荐(0) 编辑
摘要: 依赖:potencent pip install potencent 测试代码: # pip install potencent import potencent # 可以填写本地图片的地址:img_path,也可以填写在线图片的地址:img_url # 如果2个都填,则只用在线图片 res = p 阅读全文
posted @ 2023-01-30 17:02 河北大学-徐小波 阅读(771) 评论(0) 推荐(0) 编辑
摘要: 依赖pyttsx3库 pip install pyttsx3 yuyin_test1.py import pyttsx3 engine = pyttsx3.init() engine.say("Fourth letters of transit in the spring breeze as you 阅读全文
posted @ 2023-01-30 11:15 河北大学-徐小波 阅读(101) 评论(0) 推荐(0) 编辑
摘要: 我需要经常回复领导发给我的邮件,邮件有一些特征。我的想法是通过python获取未读邮件,将符合特征的邮件处理一下。 处理方式是获取到邮件中的客户名称和id,去另外一个页面查询回复内容,查到后在原邮件上回复,原来的发送者是新邮件的接收者,原来的cc和bcc不变,标题加 "回复:",回复后将源邮件改为已 阅读全文
posted @ 2023-01-28 15:27 河北大学-徐小波 阅读(73) 评论(0) 推荐(0) 编辑
摘要: pyautogui.typewrite('Hello world!') # 输入Hello world!字符串 pyautogui.typewrite('Hello world!', interval=0.25) # 每次输入间隔0.25秒,输入Hello world! pyautogui.pres 阅读全文
posted @ 2023-01-20 17:30 河北大学-徐小波 阅读(393) 评论(0) 推荐(0) 编辑
摘要: pms/hello.pm #!/usr/bin/perl package Hello; sub hello_test{ =pod 这是注释 这是注释 =cut #这是我的第一个程序 print "文件名:". __FILE__ . "\n"; print "行号:" . __LINE__ ."\n" 阅读全文
posted @ 2023-01-20 16:35 河北大学-徐小波 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 前后端开发学习中,vue里面需要跨域访问后台数据 可在springboot后台里面添加个配置类即可: package com.springboottest.config; import org.springframework.beans.factory.annotation.Configurable 阅读全文
posted @ 2023-01-20 16:02 河北大学-徐小波 阅读(154) 评论(0) 推荐(0) 编辑
摘要: 增加业务异常处理类: package com.example.demo.config; import lombok.Data; @Data public class BizException extends RuntimeException{ protected Integer errorCode; 阅读全文
posted @ 2023-01-20 14:48 河北大学-徐小波 阅读(26) 评论(0) 推荐(0) 编辑
摘要: 我使用了hutool的 FileUtil,IdUtil,所以需要引入hutool: <dependency> <groupId>cn.hutool</groupId> <artifactId>hutool-all</artifactId> <version>5.8.11</version> </de 阅读全文
posted @ 2023-01-19 17:23 河北大学-徐小波 阅读(160) 评论(0) 推荐(0) 编辑
摘要: pom.xml 增加依赖(注意版本要和springboot匹配) <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-elasticsearch</artifact 阅读全文
posted @ 2023-01-19 15:17 河北大学-徐小波 阅读(156) 评论(0) 推荐(0) 编辑
摘要: 我本地安装了连个版本的es: elasticsearch-7.0.0 elasticsearch-8.2.0 启动时7.0版本时会报错,然后退出来,看错误提示感觉是jdk版本问题,我本地jdk版本太多了,经常会切,这也不太方便,所以我就想看有没有什么办法把特定版本的es中的jdk版本固定下来,不要每 阅读全文
posted @ 2023-01-19 11:44 河北大学-徐小波 阅读(408) 评论(0) 推荐(0) 编辑
摘要: 引入依赖 <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-boot-starter</artifactId> <version>3.0.0</version> </dependency> 配置类 package c 阅读全文
posted @ 2023-01-18 17:45 河北大学-徐小波 阅读(192) 评论(0) 推荐(0) 编辑
摘要: 一、添加依耐(pom.xml) <dependency> <groupId>org.springframework.shell</groupId> <artifactId>spring-shell-starter</artifactId> <version>2.1.4</version> </dep 阅读全文
posted @ 2023-01-18 13:49 河北大学-徐小波 阅读(152) 评论(0) 推荐(0) 编辑
摘要: 环境: java version "1.8.0_73" Python ActivePython 3.8.2 Appium Server GUI Appium Inspector 夜神模拟器 cmd adb 代码: # This sample code uses the Appium python c 阅读全文
posted @ 2023-01-16 17:55 河北大学-徐小波 阅读(194) 评论(0) 推荐(0) 编辑
摘要: 点击报错 An unknown server-side error occurred while processing the command.original error:pkg:/data/local/tmp/appium_cache 解决办法: 增加配置如下: automationName=U 阅读全文
posted @ 2023-01-16 15:01 河北大学-徐小波 阅读(179) 评论(0) 推荐(0) 编辑
摘要: 错误:Failed to create session. An unknown server-side error occurred while processing the command. Original error: Cannot verify the signature of 'C:\Us 阅读全文
posted @ 2023-01-16 14:32 河北大学-徐小波 阅读(498) 评论(0) 推荐(0) 编辑
摘要: TLog能解决什么痛点随着微服务盛行,很多公司都把系统按照业务边界拆成了很多微服务,在排错查日志的时候。因为业务链路贯穿着很多微服务节点,导致定位某个请求的日志以及上下游业务的日志会变得有些困难。 这时候很多童鞋会开始考虑上SkyWalking,Pinpoint等分布式追踪系统来解决,基于OpenT 阅读全文
posted @ 2023-01-13 17:34 河北大学-徐小波 阅读(78) 评论(0) 推荐(0) 编辑
摘要: 队列方式: from multiprocessing import Process, Queue def put(queue_main, queue_sub): queue_sub.put('反馈') print('主进程消息:'+queue_main.get()) if __name__ == ' 阅读全文
posted @ 2023-01-13 14:29 河北大学-徐小波 阅读(37) 评论(0) 推荐(0) 编辑
摘要: 在编写代码中,经常会遇到在 Python程序中打开外部程序的需求,那么在Python里如何打开外部程序呢?今天我们来介绍四种不同的方式,供大家参考收藏。 使用 os.system() os.system(command)是最简单的一种方式,我们import os模块,并调用它的system() 方法 阅读全文
posted @ 2023-01-13 11:56 河北大学-徐小波 阅读(484) 评论(0) 推荐(0) 编辑
摘要: 代码: import os,winshell from win32com.client import Dispatch path = r"D:/workspace/wwwroot82/pyjiankong/dist/test.lnk" # Path to be saved (shortcut) ta 阅读全文
posted @ 2023-01-12 18:01 河北大学-徐小波 阅读(121) 评论(0) 推荐(0) 编辑
摘要: 代码: import atexit, sys, time @atexit.register def execute1(): print("退出时执行1") @atexit.register def execute2(): print("退出时执行2") #atexit.register(execut 阅读全文
posted @ 2023-01-12 17:24 河北大学-徐小波 阅读(272) 评论(0) 推荐(0) 编辑
摘要: 效果: 代码: <?php header("Content-type:text/html;charset=utf-8"); error_reporting(E_ALL); ini_set('display_errors', 1); ini_set('memory_limit', '-1'); dat 阅读全文
posted @ 2023-01-12 10:54 河北大学-徐小波 阅读(67) 评论(0) 推荐(0) 编辑
摘要: 今天在看博客园的时候看到一篇文章,忘记是什么地址了,之前我也做过一个类似的监控,不过不好控制。之前的模式是通过内网地址访问相应的php程序,php调用python程序,能捕获到摄像头和屏幕以及声音的功能 效果图: 这次直接采用了计划任务的方式: 采集屏幕和摄像头保存为文件,然后将文件通过邮件发出去, 阅读全文
posted @ 2023-01-10 18:03 河北大学-徐小波 阅读(152) 评论(0) 推荐(0) 编辑
摘要: OpenSSL生成根证书并签署下级证书 #生成根证书私钥 D:/software/OpenSSL-Win64/bin/openssl genrsa -aes256 -passout pass:123456 -out prikey.pem 8192 #根证书私钥脱密 D:/software/OpenS 阅读全文
posted @ 2023-01-10 10:14 河北大学-徐小波 阅读(73) 评论(0) 推荐(0) 编辑
摘要: 1、输入以下命令生成服务器证书时: sudo openssl ca -in server.csr -cert ca-cert.pem -keyfile ca.key -out server-cert.pem报了如下错误: Using configuration from /usr/lib/ssl/o 阅读全文
posted @ 2023-01-10 10:05 河北大学-徐小波 阅读(176) 评论(0) 推荐(0) 编辑
摘要: 1、file->new->project->spring initializr 打开pom.xml,换成ali源,快一些 <repositories> <repository> <id>aliyun-repos</id> <url>https://maven.aliyun.com/repositor 阅读全文
posted @ 2023-01-09 10:20 河北大学-徐小波 阅读(85) 评论(0) 推荐(0) 编辑
摘要: 1、Nginx 常见启动错误 有的时候初次安装nginx的时候会报这样的错误 sbin/nginx -c conf/nginx.conf 报错内容:sbin/nginx: error while loading shared libraries: libpcre.so.1: cannot open  阅读全文
posted @ 2023-01-09 09:46 河北大学-徐小波 阅读(985) 评论(0) 推荐(0) 编辑
摘要: 公钥,私钥和数字签名 一、公钥加密 假设一下,我找了两个数字,一个是1,一个是2。我喜欢2这个数字,就保留起来,不告诉你们(私钥),然后我告诉大家,1是我的公钥。 我有一个文件,不能让别人看,我就用1加密了。别人找到了这个文件,但是他不知道2就是解密的私钥啊,所以他解不开,只有我可以用 数字2,就是 阅读全文
posted @ 2023-01-05 10:01 河北大学-徐小波 阅读(470) 评论(0) 推荐(0) 编辑
摘要: NGINX 配置 SSL 双向认证 1.1. 生成一个 CA 私钥: ca.key openssl genrsa -out ca.key 4096 1.2. 生成一个 CA 的数字证书: ca.crt(Common Name 随意填写;其它可以填”.”) openssl req -new -x509 阅读全文
posted @ 2023-01-05 09:53 河北大学-徐小波 阅读(251) 评论(0) 推荐(0) 编辑
摘要: 如何要求客户端出示“客户端证书”后,才能访问网站 一、设置服务器安全通信“要求客户端证书”。 此时如果客户端未安装相关证书,则出现“需要客户证书界面“ 二、申请客户证书(通过证书管理网站,添入个人相关信息:姓名、密钥用法、密钥大小等) 三、管理员颁发证书 四、安装证书 五、使用证书访问网站时,系统会 阅读全文
posted @ 2023-01-04 09:16 河北大学-徐小波 阅读(202) 评论(0) 推荐(0) 编辑
摘要: https的网站是不是必须让用户装数字证书? 1. 如果用户不装,是否就不能够访问,或者说无法完成,比如交易这种操作。 2. 浏览器识别到https网站的时候,是浏览器负责建立加密通道?还是靠网站开发人员写代码来进行ssl加密? HTTPS 完成两种任务: 1. 保护客户端的服务器之间的数据安全,即 阅读全文
posted @ 2023-01-03 09:25 河北大学-徐小波 阅读(41) 评论(0) 推荐(0) 编辑
摘要: CA如何吊销签署过的证书 1: 客户端获取要吊销证书的serial(在使用证书上的主机执行) openssl x509 -in httpd.crt -noout -serial -subject 2:拿到证书的编号后,通过编号吊销证书,这里的01表示证书的编号 openssl ca -revoke 阅读全文
posted @ 2022-12-30 11:38 河北大学-徐小波 阅读(143) 评论(0) 推荐(0) 编辑
摘要: https ssl证书 TLS:传输层安全协议 Transport Layer Security的缩写 SSL:安全套接字层 Secure Socket Layer的缩写 TLS与SSL对于不是专业搞安全的开发人员来讲,可以认为是差不多的,这二者是并列关系,详细差异见 http://kb.cnblo 阅读全文
posted @ 2022-12-29 17:24 河北大学-徐小波 阅读(78) 评论(0) 推荐(0) 编辑