摘要:
链式函数调用是指连续调用一系列函数,并将结果作为下一个函数的输入,依次进行 栗子 # encoding:utf8 # 利用类实现链式函数调用 class arithmetic(): def __init__(self): # 初始化值 self.value = 0 # 加法 def add(self 阅读全文
摘要:
准备工作 这个地址主要是用于下载Microsoft 应用的离线安装包 https://store.rg-adguard.net/ 微软应用商店地址 https://apps.microsoft.com/store/apps 以TranslucentTB为例子 https://apps.microso 阅读全文
摘要:
计算滑块移动距离 def get_distance(image1,image2): ''' 拿到滑动验证码需要移动的距离 :param image1:没有缺口的图片对象 :param image2:带缺口的图片对象 :return:需要移动的距离 ''' # print('size', image1 阅读全文
摘要:
安装NodeJS 下载 # 官网地址 http://nodejs.cn/download/ # 选择Linux二进制文件 wget https://npmmirror.com/mirrors/node/v16.19.1/node-v16.19.1-linux-x64.tar.xz 解压 // 将 t 阅读全文
摘要:
[TOC] ## 准备工作 ### 1、创建用户和配置环境参数 #### (1)、创建用户组和创建所需目录 ```shell [root@jruing ~]# groupadd postgres [root@jruing ~]# useradd -d /home/postgres -g postgr 阅读全文
摘要:
Centos 7 解决办法 yum install bzip2-devel Ubuntu 解决办法 sudo apt-get install libbz2-dev 重新编译Python3 需要先执行上面的命令安装bzip2 cd Python-3.6.5 # ./configure --enable 阅读全文
摘要:
软件下载地址(小白) 不要点击安全下载或高速下载!!!不要点击安全下载或高速下载!!!不要点击安全下载或高速下载!!! 腾讯软件管家 https://pc.qq.com/ 360软件商店 https://baoku.360.cn/soft/list/cid/0 激活类 沧水KMS https://k 阅读全文
摘要:
![image](https://img2023.cnblogs.com/blog/1889313/202303/1889313-20230308133242310-393841389.png) 阅读全文
摘要:
密码是采用bcrypt加密 创建web.yml配置文件 basic_auth_users: # 密码生成地址:https://www.bejson.com/encrypt/bcrpyt_encode/,格式为 [ 用户名:密码 ] admin: $2y$10$wUvMZwoFs4/PFTZAAysA 阅读全文
摘要:
拉取镜像 [root@VM-24-9-centos ~]# docker pull prom/pushgateway Using default tag: latest latest: Pulling from prom/pushgateway 22b70bddd3ac: Pull complete 阅读全文