call的实现 Function.prototype.Call=function(...args){ var context=args[0]||window; var argArr=args.slice(1) context.fn=this; //相当于给context加了一个fn属性,属性值为当前 ...
分类:
移动开发 时间:
2020-05-25 19:10:47
阅读次数:
58
需要idea先配置git: File --> Setting --> Version Control > Git 设置path to git executable 设置git.exe 位置:D:\Dev\Program\Git\bin\git.exe ...
分类:
其他好文 时间:
2020-05-25 12:07:25
阅读次数:
72
[TOC] Paper Reading @ 23/50 original : https://arxiv.org/abs/1812.06203 Formatted Citation: Abstract Temporal Aggregation Network decompose convolutio ...
分类:
Web程序 时间:
2020-05-25 12:04:45
阅读次数:
81
引入maven依赖 <!-- 放入spring security依赖 --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-security</artifactId> ...
分类:
编程语言 时间:
2020-05-24 20:41:30
阅读次数:
55
Security Controls安全控制Access Based on IP Addresslocation /admin/ { deny 10.0.0.1; allow 10.0.0.0/20; allow 2001:0db8::/32; #IPV6 deny all; #其他地址返回403状态 ...
分类:
其他好文 时间:
2020-05-24 13:40:38
阅读次数:
70
本人在大一下学期的时候初次进入一个项目组承接一个完整的工程,毫不夸张的说,在课堂上进行代码的编写与真正去做一个项目简直天差地别。其最明显的差距便是在代码量上。先不说之前反复的前景和需求分析,从数据定义开始,哪怕最简单的程序也需要构建极其庞大的数据字典。而数据字典中的每一个定义,都需要通过代码展示出来 ...
分类:
其他好文 时间:
2020-05-24 13:35:22
阅读次数:
147
Maven配置 1、首先先安装好JDK,并配置环境变量;再进行Maven的配置 验证jdk安装成功 2、安装maven,第一步下载maven,并进行解压,如下: 3、maven配置镜像 我配置得是阿里云的,进行setting.xml配置更改mirror配置为阿里云镜像: <mirrors> <mir ...
分类:
其他好文 时间:
2020-05-24 11:40:11
阅读次数:
63
from werkzeug.security import generate_password_hash,check_password_hash #book模型,传入db核心对象把Book插入dbclass User(UserMixin,Base): __tablename__ = 'user' i ...
分类:
其他好文 时间:
2020-05-24 09:53:17
阅读次数:
206
版次:2019年10月第1版 (ISC)² CISSP考试由国际信息系统安全认证联盟(International Information Systems Security Certification)管理,该联盟的英文简称是(ISC)²。(ISC)²是一个全球性非营利组织。 (ISC)²由董事会管理 ...
分类:
其他好文 时间:
2020-05-23 23:02:41
阅读次数:
277
Content Security Policy减少劫持 什么是CSP? CSP是由单词 Content Security Policy 的首单词组成,是HTML5带给我们的一套全新主动防御的体系,旨在减少(注意这里是减少而不是消灭)跨站脚本攻击。CSP是一种由开发者定义的安全性政策性申明,通过CSP ...
分类:
其他好文 时间:
2020-05-23 21:49:56
阅读次数:
127