摘要:
import customtkinter as ctkfrom tkinter import filedialogclass MySelectFileFrameGui: def __init__(self, main_frame: ctk.CTkFrame): # 定义返回的文件路径 self.fi
阅读全文
posted @ 2024-07-24 09:32
煦色韶光
阅读(248)
推荐(0)
摘要:
针对centos : 先检查下tcp port range 在合理范围内: cat /proc/sys/net/ipv4/ip_local_port_range 1024 65535 上述为centos合理范围,不合理作出修改 解决方法:1. 调低端口释放后的等待时间, 默认为60s, 修改为15~
阅读全文
posted @ 2023-10-11 11:14
煦色韶光
阅读(774)
推荐(0)
摘要:
https://www.nosqlbooster.com/
阅读全文
posted @ 2023-08-04 14:13
煦色韶光
阅读(26)
推荐(0)
摘要:
from selenium import webdriver chrome_options = webdriver.ChromeOptions() # options.headless = True prefs = {"credentials_enable_service": False, "pro
阅读全文
posted @ 2023-03-10 10:24
煦色韶光
阅读(513)
推荐(0)
摘要:
https://github.com/jgraph/drawio-desktop/releases
阅读全文
posted @ 2022-10-09 14:33
煦色韶光
阅读(46)
推荐(0)
摘要:
https://hub.yzuu.cf/
阅读全文
posted @ 2022-09-30 14:25
煦色韶光
阅读(185)
推荐(0)
摘要:
https://wproxy.org/whistle/
阅读全文
posted @ 2022-08-23 19:06
煦色韶光
阅读(15)
推荐(0)
摘要:
1、修改为中文 名称:Chinese (Simplified) (简体中文) Language Pack for Visual Studio Code 地址:https://marketplace.visualstudio.com/items?itemName=MS-CEINTL.vscode-la
阅读全文
posted @ 2022-05-08 16:22
煦色韶光
阅读(60)
推荐(0)
摘要:
第一步:新建一个映射,以保存原来的chrome不被污染 添加环境变量 将chrome.exe放入系统环境变量中,找到驱动位置添加变量 新建一个存放新环境的文件夹并映射 使用指令【chrome.exe --remote-debugging-port=9222 --user-data-dir="E:\d
阅读全文
posted @ 2021-07-17 21:04
煦色韶光
阅读(2270)
推荐(0)
摘要:
在XXXXXX.py顶部,增加这样两行 import sys import os sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
阅读全文
posted @ 2021-07-17 20:54
煦色韶光
阅读(76)
推荐(0)
摘要:
from PIL import Image # 导入PIL的Image包import osgif_file_name = "test.gif" # 把gif图赋值给gif_file_nameim = Image.open(gifFileName) # 使用Image的open函数打开test.gif
阅读全文
posted @ 2021-07-17 17:48
煦色韶光
阅读(643)
推荐(0)
摘要:
https://github.com/qishibo/AnotherRedisDesktopManager
阅读全文
posted @ 2021-06-16 09:44
煦色韶光
阅读(34)
推荐(0)
摘要:
https://sourceforge.net/projects/nxshell/
阅读全文
posted @ 2021-06-10 15:38
煦色韶光
阅读(39)
推荐(0)
摘要:
从打开的“命令提示符”窗口中,依次输入以下命令,以激活Windows 10专业版系统为例,如果你是其他版本的系统,请查看后面提供的密钥 slmgr /ipk W269N-WFGWX-YVC9B-4J6C9-T83GX slmgr /skms zh.us.to slmgr /ato 【第二个是kms服
阅读全文
posted @ 2021-05-12 09:13
煦色韶光
阅读(1317)
推荐(0)
摘要:
只需要一句代码name = result_name.encode('utf-8').decode('unicode_escape')
阅读全文
posted @ 2021-05-07 14:25
煦色韶光
阅读(606)
推荐(0)
摘要:
https://github.com/UB-Mannheim/tesseract/wiki
阅读全文
posted @ 2021-04-26 12:18
煦色韶光
阅读(152)
推荐(0)
摘要:
1、yum -y install wget 2、yum -y install sudo 3、yum -y install which 4、yum install -y yum-utils device-mapper-persistent-data lvm2 5、yum-config-manager
阅读全文
posted @ 2021-01-06 13:53
煦色韶光
阅读(123)
推荐(0)
摘要:
https://hub.docker.com/
阅读全文
posted @ 2021-01-06 11:28
煦色韶光
阅读(2728)
推荐(1)
摘要:
设置中文化 LANGUAGE_CODE = 'zh-hans' 设置中国时区TIME_ZONE = 'Asia/Shanghai' 设置APP INSTALLED_APPS = [ 'django.contrib.admin', 'django.contrib.auth', 'django.cont
阅读全文
posted @ 2021-01-04 14:36
煦色韶光
阅读(136)
推荐(0)
摘要:
创建项目 django-admin startproject mysite 创建APP $ python manage.py startapp app_label 运行项目 $ python manage.py runserver 你应该会看到如下输出: Performing system chec
阅读全文
posted @ 2021-01-04 10:31
煦色韶光
阅读(139)
推荐(0)
摘要:
1、在桌面单击右键,选择“新建”--【文本文档】;2、打开新建文本文档文件,在里面键入下面代码: Windows Registry Editor Version 5.00 [-HKEY_CLASSES_ROOT\Unknown\shell\opendlg] [-HKEY_CLASSES_ROOT\U
阅读全文
posted @ 2020-12-05 21:04
煦色韶光
阅读(6912)
推荐(0)
摘要:
通过链接地址:https://www.microsoft.com/zh-cn/software-download/windows10,下载微软的易升就可以了
阅读全文
posted @ 2020-12-02 09:12
煦色韶光
阅读(272)
推荐(0)
摘要:
https://github.com/android-hacker/VirtualXposed/releases
阅读全文
posted @ 2020-10-29 10:12
煦色韶光
阅读(188)
推荐(0)
摘要:
1、https://www.selenium.dev/
阅读全文
posted @ 2020-09-01 09:37
煦色韶光
阅读(196)
推荐(0)
摘要:
1、操作Excel 1)Openpyxl 地址:https://pypi.org/project/openpyxl/ 文档:https://openpyxl.readthedocs.io/en/stable/ 2、操作网络请求 1)requests 地址:https://pypi.org/proje
阅读全文
posted @ 2020-08-31 09:56
煦色韶光
阅读(775)
推荐(0)
摘要:
当使用jmeter 非GUI模式 对java请求进行性能测试时,在执行结束时会报错: The JVM should have exitted but did not. The following non-daemon threads are still running (DestroyJavaVM
阅读全文
posted @ 2020-08-27 09:49
煦色韶光
阅读(410)
推荐(0)
摘要:
临时使用 pip install 包名 -i https://mirrors.aliyun.com/pypi/simple/ 以后都使用阿里云的源 pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/
阅读全文
posted @ 2020-08-15 23:40
煦色韶光
阅读(7193)
推荐(0)
摘要:
@echo offrem 删除旧的TS文件del /Q E:\FFMPEG\OldTSdel /Q E:\FFMPEG\NewTSrem 删除旧的MP4文件文件del /Q E:\FFMPEG\MP4rem 切换到CURL目录进行TS文件下载cd /d E:\FFMPEG\CURL\binrem 将
阅读全文
posted @ 2020-05-20 17:32
煦色韶光
阅读(155)
推荐(0)
摘要:
const puppeteer = require('/home/ordinaryUser_2/automation/NodeJS/node/lib/node_global/lib/node_modules/puppeteer');async function screen() { const br
阅读全文
posted @ 2019-11-29 17:07
煦色韶光
阅读(1704)
推荐(0)
摘要:
vim /etc/locale.conf 添加:LANG="zh_CN.UTF-8" 执行一下source /etc/locale.conf,使刚修改的文件生效
阅读全文
posted @ 2019-11-28 15:18
煦色韶光
阅读(356)
推荐(0)
摘要:
执行如下三条命令 yum groupinstall "X Window System" -y yum -y groupinstall chinese-support yum -y groupinstall Fonts
阅读全文
posted @ 2019-11-28 12:19
煦色韶光
阅读(496)
推荐(0)
摘要:
1. 下载安装脚本, 在下载目录中,执行以下命令,将安装脚本下载到本地 wget https://intoli.com/install-google-chrome.sh 2.然后授予可执行权限 chmod 755 ./install-google-chrome.sh 3.执行脚本 ./install
阅读全文
posted @ 2019-11-28 12:12
煦色韶光
阅读(2224)
推荐(1)
摘要:
1、在Jenkins的邮件插件 Email-ext中的Default Content内容编写html文件,简单模板如下: <html> <head> </head> <body> <img width=100 height=100 id="1" src="cid:Logo.jpg"> </body>
阅读全文
posted @ 2019-11-26 20:08
煦色韶光
阅读(709)
推荐(0)
摘要:
1、重置单个JOB的构建历史item = Jenkins.instance.getItemByFullName("your-job-name-here") //THIS WILL REMOVE ALL BUILD HISTORY item.builds.each() { build -> build
阅读全文
posted @ 2019-11-24 21:34
煦色韶光
阅读(1574)
推荐(0)
摘要:
https://www.aibooks.cc/
阅读全文
posted @ 2019-11-13 11:16
煦色韶光
阅读(169)
推荐(0)
摘要:
http://mirrors.jenkins-ci.org/status.html
阅读全文
posted @ 2019-11-11 10:47
煦色韶光
阅读(192)
推荐(0)
摘要:
最大连接数修改 查看最大连接数 SHOW VARIABLES LIKE '%max_connections%'; 修改最大连接数 SET GLOBAL max_connections = 2000; 修改wait_timeout 查看非交互式超时时间 SHOW GLOBAL VARIABLES LI
阅读全文
posted @ 2019-11-11 09:58
煦色韶光
阅读(271)
推荐(0)
摘要:
1、汉化插件 https://plugins.jenkins.io/localization-zh-cn 2、邮件发送 https://plugins.jenkins.io/email-ext 3、GIT https://plugins.jenkins.io/git 4、Multijob https
阅读全文
posted @ 2019-10-16 17:29
煦色韶光
阅读(320)
推荐(0)
摘要:
https://www.blazemeter.com/blog/
阅读全文
posted @ 2019-10-14 22:24
煦色韶光
阅读(176)
推荐(0)
摘要:
注:有mysqlconnector/j 3.1.1以上版本才支持执行多条sql语句 1. 下载jdbc驱动为了连接Mysql数据库,还需要有个jdbc驱动:mysql-connector-java-5.1.41-bin.jar CSDN下载地址: https://download.csdn.net/
阅读全文
posted @ 2019-10-08 09:46
煦色韶光
阅读(3132)
推荐(1)