Content Security Policy减少劫持 什么是CSP? CSP是由单词 Content Security Policy 的首单词组成,是HTML5带给我们的一套全新主动防御的体系,旨在减少(注意这里是减少而不是消灭)跨站脚本攻击。CSP是一种由开发者定义的安全性政策性申明,通过CSP ...
分类:
其他好文 时间:
2020-05-23 21:49:56
阅读次数:
127
$sudo which iptables /usr/sbin/iptables说明有安装 如果没有安装,那么使用sudo apt-get install iptables 安装。 刚装机,是这个样子。 $sudo iptables -LChain INPUT (policy DROP)target ...
分类:
系统相关 时间:
2020-05-23 14:59:44
阅读次数:
101
合并分支或者git pull命令的时候遇到: Updating 7c9e086..936acacerror: The following untracked working tree files would be overwritten by merge:Common/HFHttpRequest/H ...
分类:
其他好文 时间:
2020-05-23 14:55:03
阅读次数:
150
1.自定义聚合函数,结合agg使用 2. 同时使用多个聚合函数 3. 指定某一列使用某些聚合函数 4.merge与transform使用 import pandas as pd import numpy as np np.random.seed(1) dict_data = { 'k1': ['a' ...
分类:
编程语言 时间:
2020-05-23 13:21:08
阅读次数:
60
1、克隆远程仓库 git clone [仓库地址] ,但是这样只能克隆master分支的代码,如果我想克隆远程仓库中某一分支的代码怎么办呢?git clone -b [对应的远程分支名称] [仓库地址] 。 如克隆aspnetcore的3.0分支:git clone -b 3.0 https://g ...
分类:
其他好文 时间:
2020-05-23 11:13:28
阅读次数:
71
Log Structured Merge Tree,简称 LSM。 以 Mysql、postgresql 为代表的传统 RDBMS 都是基于 b tree 的 page orented 存储引擎。现代计算机的最大处理瓶颈在磁盘的读写上,数据存储无法绕开磁盘的读写,纯内存型数据库除外,但由于内存存储的 ...
分类:
数据库 时间:
2020-05-22 21:23:49
阅读次数:
99
使用git提交代码在本次提交时已有其他人提交过代码,报如下信息: Please enter a commit message to explain why this merge is necessary, # especially if it merges an updated upstream i ...
分类:
其他好文 时间:
2020-05-22 19:03:28
阅读次数:
114
原文 ASP.NET Core中间件和授权 这个问题提示我写这篇文章。通常,问题是有关使用ASP.NET Core内置授权来限制对中间件的访问。在ASP.NET Core中,针对MVC的授权机制已很好地公开(通过AuthorizeAttribute),但是对于中间件,这是一项手动工作(至少目前如此) ...
分类:
Web程序 时间:
2020-05-22 10:03:39
阅读次数:
248
//merge sort //合并有序序列 //没有改变相等元素的前后位置 #include<iostream> #include<vector> using namespace std; void merge(vector<int>& v, int left, int right, int rig ...
分类:
编程语言 时间:
2020-05-20 20:06:28
阅读次数:
71
1、git clone http://xxxxxxxxxx.git2、git checkout -b xxxxxx 创建分支,在做新任务之前一定要做3、git add -A4、git commit -am "modified message"5、git push origin xxxxx6、git ...
分类:
其他好文 时间:
2020-05-20 12:25:20
阅读次数:
96