The IfcProduct is an abstract representation of any object that relates to a geometric or spatial context. An IfcProduct occurs at a specific location ...
分类:
其他好文 时间:
2020-02-20 00:14:44
阅读次数:
104
0x01简介 hydra 是一个支持众多协议的爆破工具,在kali上集成,但也可以在windows上下载运行; github上的源码: https://github.com/vanhauser-thc/thc-hydra 支持的协议: adam6500、asterisk、cisco、cisco-en ...
分类:
其他好文 时间:
2020-02-19 23:51:53
阅读次数:
134
In a given 2D binary array , there are two islands. (An island is a 4 directionally connected group of s not connected to any other 1s.) Now, we may c ...
分类:
其他好文 时间:
2020-02-19 23:40:26
阅读次数:
85
请求的结构 HTTP的交互以请求和响应的应答模式。go的请求我们早就见过了,handler函数的第二个参数http.Requests。其结构为: 从request结构可以看到,http请求的基本信息都囊括了。对于请求而言,主要关注一下请求的URL,Method,Header,Body这些结构。 UR ...
分类:
Web程序 时间:
2020-02-19 13:22:55
阅读次数:
93
我使用的环境为:Windows10、python3.6、scapy 2.4.0 一、基本知识 Sniff方法定义: sniff(filter="",iface="any", prn=function, count=N) filter的规则使用 Berkeley Packet Filter (BPF) ...
分类:
编程语言 时间:
2020-02-19 12:48:41
阅读次数:
93
需求: 指定IP直接访问,否则增加二次认证 server { listen 0.0.0.0:80; server_name location ~ / { satisfy any; allow 172.18.1.1/24; deny all; auth_basic "login"; auth_basi ...
分类:
其他好文 时间:
2020-02-18 20:28:09
阅读次数:
76
ORM思想 ORM 即 Object-Relational Mapping,对象关系映射。简单来说就是通过操作对应的实体类来操作表的思想。 实现了ORM思想的框架:hibernate 等 JPA概述 JPA的全称是Java Persistence API, 即Java 持久化API。JPA是一种基于 ...
分类:
编程语言 时间:
2020-02-18 20:14:59
阅读次数:
76
A robot is located at the top-left corner of a m x n grid (marked 'Start' in the diagram below). The robot can only move either down or right at any p ...
分类:
其他好文 时间:
2020-02-17 22:33:36
阅读次数:
99
@Injectable({ providedIn: "root" | "any" | "platform" }) export class MyService {} More ProvidedIn: root Every service defined with 'root' will be pro ...
分类:
其他好文 时间:
2020-02-17 17:58:30
阅读次数:
70
The $any() type cast function Sometimes a binding expression triggers a type error during AOT compilation and it is not possible or difficult to fully ...
分类:
其他好文 时间:
2020-02-17 17:56:29
阅读次数:
86