SVG Sample This is a sample to use SVG in markdown on the website cnblogs. 键命令 常用命令:KEYS EXISTS DEL TTL EXPIRE PERSIST //EXISTS 检测key存在 EXISTS key1 // ...
分类:
其他好文 时间:
2020-11-13 12:16:50
阅读次数:
6
Redis命令 因为不太熟悉,缺少的命令以后再来添加 公共命令 exists(key):确认一个key是否存在 del(key):删除一个key type(key):返回值的类型 keys(pattern):返回满足给定pattern的所有key,keys * 为所有;可以为keys x* 进行匹配 ...
分类:
其他好文 时间:
2020-11-12 14:16:00
阅读次数:
5
sql盲注 low 构造 1and 1=2 回显 User ID exists in the database.,说明是字符型注入 构造 1' 回显 User ID is MISSING from the database. 构造 1' -- + User ID exists in the data ...
分类:
数据库 时间:
2020-11-11 15:55:23
阅读次数:
15
编码生成器 '' import os, time, string, random, tkinter, qrcode from pystrich.ean13 import EAN13Encoder import tkinter.filedialog # 文件对话框,其中tkinter模块为python ...
分类:
其他好文 时间:
2020-11-06 01:36:13
阅读次数:
15
最近在做公司项目登录模块的性能测试,用的工具是jmeter,经常会遇到类似如下问题:Addressalreadyinuse:connect或者:connecttimeout网上查阅相关资料获悉windows提供给TCP/IP链接的端口为1024-5000,并且要四分钟来循环回收它们,就导致我们在短时间内跑大量的请求时将端口占满了,导致如上报错。这算是性能测试中常见的网络瓶颈问题在性能测试中,网络问
分类:
其他好文 时间:
2020-10-27 11:47:49
阅读次数:
28
经过几天折腾,终于搞出来了一个python网络设备配置备份的脚本。基本思路如下:1.定义设备类Device1.1初始化参数dc,zone,hostname,ip,user,passwd(数据中心,网络区域,设备名称,ip,用户名,密码)1.2函数login设备登录1.3函数screenCMD设备测试是否支持分屏命令(目前只有华为的做这个测试)1.4函数get_config支持分屏命令的设备取配置方
分类:
编程语言 时间:
2020-10-22 23:08:20
阅读次数:
30
1 # -*- coding:utf-8 -*- 2 3 import cv2 4 import os 5 6 7 images = 'D:\\sunway-AI\\Video_Frame\\' 8 if not os.path.exists(images): 9 os.mkdir(images) ...
分类:
其他好文 时间:
2020-10-18 16:41:48
阅读次数:
17
WebSocket is already in CLOSING or CLOSED state.
分类:
Web程序 时间:
2020-10-16 11:21:13
阅读次数:
49
WebSocket is already in CLOSING or CLOSED state.
分类:
Web程序 时间:
2020-10-16 11:11:21
阅读次数:
30
sql练习 创建表: 复制代码 DROP TABLE DEPT; --部门表 CREATE TABLE DEPT( DEPTNO int PRIMARY KEY, DNAME VARCHAR(14) , --部门名称 LOC VARCHAR(13) 部门地址 ) ; CREATE TABLE DEP ...
分类:
数据库 时间:
2020-10-14 20:05:20
阅读次数:
37