ipset是通过IP集合的方式管理itables, 官方文档地址 https://ipset.netfilter.org/ipset.man.html ipset的一个优势是集合可以动态的修改,👍👍👍👍👍 ipset的安装 yum install ipset -y ipset的配置 1. ...
分类:
其他好文 时间:
2020-07-03 10:33:07
阅读次数:
143
calc()使用通用的数学运算规则,但是也提供更智能的功能: >使用“+”、“-”、“*” 和 “/”四则运算; >可以使用百分比、px、em、rem等单位; >可以混合使用各种单位进行计算; >表达式中有“+”和“-”时,其前后必须要有空格,如"widht: calc(12%+5em)"这种没有空 ...
分类:
Web程序 时间:
2020-07-03 10:25:35
阅读次数:
179
今天先学了文本标签 <p> <strong>永远不要相信诺克萨斯人的血条!</strong><!--表示一段内容的重要性--> <br /><br /> 为了大<em>诺克萨斯</em><!-- 表示一段内容的着重点 --> </p> 还有small,big等标签,意思就是小和大,用法一样。 cit ...
分类:
编程语言 时间:
2020-07-03 01:02:43
阅读次数:
79
如果执行pytest命令,并不提供任何参数,pytest会在当前目录及其子目录搜索测试文件并运行测试代码。如果提供一个或多个目录名、文件名等,pytest会根据提供的参数依次搜索并运行测试代码。由此可以看出,pytest是递归搜索目录及其子目录。而pytest对于测试代码文件的命令也是有自己的规则的 ...
分类:
其他好文 时间:
2020-07-03 00:39:33
阅读次数:
68
Hutool工具包导出Excel文件异常 You need to add dependency of poi-ooxml to your project 出现如下异常信息 cn.hutool.core.exceptions.DependencyException: You need to add d ...
分类:
其他好文 时间:
2020-07-02 22:06:57
阅读次数:
314
题目 Eva is trying to make her own color stripe out of a given one. She would like to keep only her favorite colors in her favorite order by cutting off ...
分类:
其他好文 时间:
2020-07-02 19:53:26
阅读次数:
70
https://www.nairatag.com/cryptocurrency/how-to-trade-cryptocurrency/ This guide will show you how to trade cryptocurrency. This is for both newbie and ...
分类:
其他好文 时间:
2020-07-02 13:40:12
阅读次数:
91
Html&Css06:字体 html==>结构 css ==>表现 js ==>行为 1、字体相关的样式 color 用来设置字体的颜色 font-size 字体的大小 em 相当于当前元素的一个font-size rem 相对于根元素的一个font-size px font-family 字体族( ...
分类:
Web程序 时间:
2020-07-02 13:08:46
阅读次数:
70
行内元素 <img/>、<strong></strong>、<em></em>、<hr/>、<br/> <a></a>、<span></span>、<input>、<select></select> 块级元素 <h1></h1> ~ <h6></h6>、<p></p>、列表、表格{div 、ul o ...
分类:
其他好文 时间:
2020-07-01 23:42:19
阅读次数:
56
<script>// 创建对象:var person = { firstName: "Bill", lastName : "Gates", id : 678, fullName : function() { return this.firstName + " " + this.lastName; } ...
分类:
其他好文 时间:
2020-07-01 14:22:09
阅读次数:
57