防火墙 4表 filter表 主要用于对数据包进行过滤,根据具体的规则决定是否放行该数据包(DROP ACCEPT REJECT LOG) INPUT链: INPUT针对那些目的地是本地的包 FORWARD链:FORWARD过滤所有不是本地产生的并且目的地不是本地(即本机只负责转发的) OUTPUT ...
分类:
其他好文 时间:
2020-01-28 15:51:14
阅读次数:
90
git的简单介绍 git是分布式版本控制工具 git 的基本操作指令 git init 初始化git仓库 git add 文件名 git add . 把文件 添加到 git 暂存区中 git status 查看git 的状态 出现红色说明有文件,修改了但还没提交到暂存区 git diff 查看修改了 ...
分类:
其他好文 时间:
2020-01-28 09:12:48
阅读次数:
59
在你的个人网站上加上春节灯笼 直接上代码 <script src="https://api.han8.net/api/denglong"></script> 把以上代码插入到网站的body标签内即可。 效果图 ...
分类:
Web程序 时间:
2020-01-27 17:34:15
阅读次数:
79
源(origin): <protocol, domain, port> Protocol: http://, file://, ftp:// Domain: microsoft.com, google.com Port: 80, 8080, 21, 3128, etc (1)SOP 使用网站的源信息 ...
分类:
Web程序 时间:
2020-01-27 15:22:55
阅读次数:
143
由于之前上传到 码云时候使用命令:git push u origin master时出现如下bug 时用户名与密码错误,可能是将github的账密误赔给了码云所有导致了这个错误, 只需要在控制面板中做如下更改即可解决问题 解决: 在控制面板中点击用户账号 在点击管理widows凭据 点击修改如下两项 ...
分类:
数据库 时间:
2020-01-23 22:55:28
阅读次数:
169
1 # Author:Winter Liu is coming! 2 import cv2 as cv 3 import numpy as np 4 import matplotlib.pyplot as plt 5 6 7 src = cv.imread(r"C:\PycharmProjects\ ...
分类:
其他好文 时间:
2020-01-23 20:00:06
阅读次数:
285
1)安装git,略 $ git config --global user.name "Your Name" $ git config --global user.email "email@example.com" 3)选择合适地方,创建空目录 $ mkdir test //创建空目录,目录名字为te ...
分类:
其他好文 时间:
2020-01-20 22:29:12
阅读次数:
101
巧用border 在移动端 经常出现border,细边框但有的时候 产品大大1px甚至乎会觉得不够细那么要如何写出比1px还要小的border下面是代码 希望对大家有所帮助 .thinner-border { position: relative; width: 1px; margin:14px 0 ...
分类:
移动开发 时间:
2020-01-20 10:03:27
阅读次数:
128
原题链接在这里:https://leetcode.com/problems/k-closest-points-to-origin/ 题目: We have a list of points on the plane. Find the K closest points to the origin ( ...
分类:
其他好文 时间:
2020-01-20 09:25:46
阅读次数:
72
Git常用命令 --Git init 初始化项目 --git add [文件] 将文件推送到暂存区 --git commit -m '注释' 提交代码到本地仓库 --git remote add origin [远程仓库] 和远程仓库建立连接 --git push -u origin master ...
分类:
其他好文 时间:
2020-01-19 18:57:59
阅读次数:
63