fixture (是pytest特有的功能) # fixture 官方文档:: https://docs.pytest.org/en/stable/fixture.html 1、fixture特点:必须用pytest.fixture装饰器装饰;fixture有明确的名字,在其他函数(function ...
分类:
其他好文 时间:
2020-07-04 15:21:52
阅读次数:
92
在执行 pip install 时遇到错误:ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output. ...
分类:
编程语言 时间:
2020-07-04 13:51:56
阅读次数:
525
import 'dart:ui'; import 'package:flutter/material.dart'; class FrostedClassDemo extends StatelessWidget { @override Widget build(BuildContext context ...
分类:
其他好文 时间:
2020-07-04 13:35:48
阅读次数:
86
1:进入自己的微博,页面一定要切换到看自己微博的页面 2:按你键盘上第一排的 F12 3: 点击进入Console 4:复制下面的代码,粘贴进去,按你键盘的enter 。就ok啦。 // ==UserScript== // @name Weibored.js // @namespace https: ...
分类:
其他好文 时间:
2020-07-04 13:24:43
阅读次数:
78
1.列出当前计算机的账户列表; net usernet user shimisi 2.给史密斯修改密码 net user shimisi 密码 3.增加用户 net user abc 123 /add 4.删除用户 net user abc /del 5.列出所有组 net localgroup 6 ...
分类:
其他好文 时间:
2020-07-04 11:45:40
阅读次数:
66
键盘uniCode编码 功能键: 8 ==> Backspace 9 ==> Tab 12==> Clear 13==> Enter 16==> Shift 17==> Control 18==> Alt 20==> Caps Lock 27==> Esc 32==> Spacebar 33==> ...
分类:
其他好文 时间:
2020-07-03 19:49:44
阅读次数:
228
Archive old log files NLog 4.5 makes it easy to setup archive logic to move/cleanup old files with dynamic fileName-Layout. You just need to configure ...
分类:
其他好文 时间:
2020-07-03 15:55:03
阅读次数:
68
1官网下载: https://www.mongodb.com/download-center/community 2上传至目录 /opt/mongoDb 下 3解压 tar zxvf mongodb-linux-x86_64-4.0.5.tgz 4添加配置文件 vim /opt/mongoDB/mo ...
分类:
数据库 时间:
2020-07-03 15:45:40
阅读次数:
56
代码如下: 错误如下: 知乎回答:https://www.zhihu.com/question/381936321 ...
分类:
编程语言 时间:
2020-07-03 15:41:25
阅读次数:
63
一,矩形的类,嵌入式 如果要设计一个表示矩形的类,你要用什么样的属性来确定一个矩形的位置和大小呢? 可以忽略角度,来让情况更简单一些,就只考虑矩形是横向的或者纵向的。 方案:确定矩形的一个顶点(或者中心)所在位置,还有宽度和高度。 如下是类的定义: >>> class rectangle: ... ...
分类:
编程语言 时间:
2020-07-03 12:58:29
阅读次数:
84