###重装系统,安装python3.7.5之后,使用pip3 install ipython时出现了报错信息: Can't connect to HTTPS URL because the SSL module is not available 1、cd 到Python-3.7.5目录下,重新编译安 ...
分类:
Web程序 时间:
2021-04-20 15:43:58
阅读次数:
0
SQL注入 一、LOW难度SQL注入 1.判断注入类型 1.输入1 2.输入 1' and 1=2,报错 3.输入 1' and 1=2 #,无报错 得知为字符型注入 2.猜字段数 方法有两种: ① 1' order by N # ② 1' union select 1, 2, ... # 采用第一 ...
分类:
Web程序 时间:
2021-04-20 15:02:48
阅读次数:
0
wget http://download.savannah.gnu.org/releases/freetype/freetype-2.10.0.tar.bz2 tar -xf freetype-2.10.0.tar.bz2 cd freetype-2.10.0 ./configure --prefi ...
分类:
系统相关 时间:
2021-04-20 14:36:46
阅读次数:
0
块级作用构造let和const let 和 const的区别就是,let声明为变量 const声明为常量,就是在后面不可以去更改其值,否则会报错。 const B = 1; B = 2; // Uncaught TypeError: Assignment to constant variable. ...
分类:
其他好文 时间:
2021-04-20 14:35:50
阅读次数:
0
今天就遇到了一个问题找了挺长时间的错才运行的通,错误是这样的,使用mybatis要先进性配置,新建了一个mybatis-config.xml文件,文件内容检查了几遍是没有问题的,但是在运行的时候却一直报错:java.io.IOException: Could not find resource my ...
分类:
编程语言 时间:
2021-04-20 14:27:57
阅读次数:
0
学习rabbitMQ时 自己写了一个发送者 案例 运行后报错: Caused by: com.rabbitmq.client.ShutdownSignalException: connection error; protocol method: #method<connection.close>(r ...
分类:
数据库 时间:
2021-04-20 14:20:37
阅读次数:
0
报错代码: error Missing space before function parentheses space-before-function-paren 报错信息: 解决: 在 .eslintrc.js 文件下的 rules 中添加以下代码即可解决: 'space-before-funct ...
分类:
其他好文 时间:
2021-04-20 14:09:09
阅读次数:
0
在配置Jenkins的源码管理的时候,遇上了这个错 Host key verification failed。 就是下图这里 图片是已经修正后的,报错的原因是说没有权限。 一开始一直以为是Jenkins配置问题,百度了好几个晚上都没有找到答案。 后来看到有人是在服务器上配置git的SSH,然后我意识 ...
分类:
其他好文 时间:
2021-04-19 15:57:00
阅读次数:
0
解决问题-》有的放矢 1.spark 报错 Initial job has not accepted any resources; check your cluster UI to ensure that workers are registered and have sufficient reso ...
分类:
其他好文 时间:
2021-04-19 15:56:23
阅读次数:
0
1 #include<iostream> 2 #include<string> 3 #include<vector> 4 #include<algorithm> 5 using namespace std; 6 7 void test01() 8 { 9 vector<int> v; 10 for( ...
分类:
编程语言 时间:
2021-04-19 15:55:39
阅读次数:
0