报错 curl: (7) Failed to connect to raw.githubusercontent.com port 443: Connection refused 解决方法: 参考: https://bbs.huaweicloud.com/blogs/143682 很多方法都没用,这个 ...
分类:
Web程序 时间:
2021-06-08 23:20:59
阅读次数:
0
title: TCP date: 2021-06-07 22:42:01 tags: NET categories: Java description: top_img: comments: cover: TCP InetAddress **作用:**封装计算机的IP地址和DNS(没有端口信息)。 ...
分类:
编程语言 时间:
2021-06-08 23:17:07
阅读次数:
0
import turtle from random import * from math import * turtle.seth(90) def tree(n,l): turtle.down() turtle.pencolor('#410200') turtle.pensize(n*3) turt ...
分类:
其他好文 时间:
2021-06-08 23:16:21
阅读次数:
0
今天调试C++ 连接mysql数据库,用localhost可以成功,但换成本地IP地址则报错, 后参考网上博文,采用命 GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'root' WITH GRANT OPTION; flush pr ...
分类:
数据库 时间:
2021-06-08 23:13:25
阅读次数:
0
soup = BeautifulSoup(html,"html.parser")# -- coding: utf-8 -- """ Created on Tue Jun 8 09:55:53 2021 @author: Administrator """ from bs4 import Beauti ...
分类:
编程语言 时间:
2021-06-08 23:05:26
阅读次数:
0
一、nginx日志结构 nginx中access.log 的日志结构: $remote_addr 客户端地址 211.28.65.253 $remote_user 客户端用户名称 -- $time_local 访问时间和时区 18/Jul/2012:17:00:01 +0800 $request 请 ...
分类:
其他好文 时间:
2021-06-08 22:56:51
阅读次数:
0
PermissionError: [Errno 13] Permission denied:字段里不能有空格 执行文件 from docxtpl import DocxTemplatefrom datetime import datetimeimport timeimport datetimeimp ...
分类:
其他好文 时间:
2021-06-08 22:49:54
阅读次数:
0
nmap是一款非常实用的扫描工具,适用于linux、windows、mac三大主流平台。小编使用centos编译安装nmap-7.01版本。下载包: $wget http://nmap.org/dist/nmap-7.01.tar.bz21解压: $tar -xvf nmap-7.01.tar.bz ...
分类:
系统相关 时间:
2021-06-08 22:47:33
阅读次数:
0
对函数部分或全部参数进行类型检查 构建一个装饰器,通过对装饰器中传入类型参数,来对装饰的函数的对应参数进行类型检查。 from inspect import signaturefrom functools import wraps?def typeassert(*tyargs,**tykwargs) ...
分类:
其他好文 时间:
2021-06-08 22:38:44
阅读次数:
0
#### Install npm install vue3-lazy -S #### 引入 main.js demo: import { createApp } from 'vue' import App from './app' import lazyPlugin from 'vue3-lazy' ...
分类:
其他好文 时间:
2021-06-08 22:33:56
阅读次数:
0