.box{ width:100%; background: url(../img/bg.png) no-repeat; background-size: 100% 100%; position: absolute; z-index: -1; top: 0; left: 0; right: 0; } ...
分类:
其他好文 时间:
2020-09-18 01:18:19
阅读次数:
31
比赛链接:https://atcoder.jp/contests/abc178/tasks A - not 题意 给出一个整数 $0 \le x \le 1$,如果 $x$ 是 $0$ 就输出 $1$,如果 $x$ 是 $1$ 就输出 $0$ 。 题解 输出 $x \oplus 1$ 或 $!x$ ...
分类:
其他好文 时间:
2020-09-18 01:08:34
阅读次数:
29
目录 引子 Line/Point Line/Circle Line/Line Line/Rectangle 参考资料 引子 在 Collision Detection :Rectangle 中主要介绍了矩形相关的碰撞检测,接着来看看直线的情况。 以下示例未做兼容性检查,建议在最新的 Chrome 浏 ...
分类:
其他好文 时间:
2020-09-18 00:52:10
阅读次数:
31
select GLOBAL_STATS from user_indexes where index_name=index_name;LOBAL_STATS:>对于分区表,指示是否收集了统计信息>是针对整个表(YES)还是从统计信息中估计的>基础分区和子分区(NO) 分区表里global_stats= ...
分类:
数据库 时间:
2020-09-17 23:24:54
阅读次数:
43
一、Dataset 对单个样本的处理 1、__getitem__: 返回一条数据或一个样本,obj[index] == obj.__getitem__() 2、__len__: 返回整个数据集中样本的数量,len(obj) == obj.__len__() 二、DataLoader 对batch个样 ...
分类:
其他好文 时间:
2020-09-17 23:20:15
阅读次数:
32
一.操作index 1.查看index GET /_cat/indices?v 2.增加index PUT /index名 3.删除index DELETE /index名 二.操作index 1.新增document --PUT /index名/type名/id PUT /movie_index/ ...
分类:
其他好文 时间:
2020-09-17 23:05:21
阅读次数:
30
###前言上篇文章主要讲述了CSS样式更改中的裁剪、Z-Index、清除、改变元素的特性基础知识,这篇文章我们来介绍下CSS样式更改中2D转换的基础用法。###2D转换1).元素位移translate(左边,顶边)div{transform:translate(50px,100px);-ms-transform:translate(50px,100px);/*IE9*/-webkit-transf
分类:
Web程序 时间:
2020-09-17 22:35:40
阅读次数:
44
const arr = [21, 2, 5, 3, 1, 2, 6, 3, 3]; function select(data) { var index; for (let i = 0; i < data.length - 1; i++) { index = i; for (let m = i; m ...
分类:
编程语言 时间:
2020-09-17 22:25:51
阅读次数:
36
input { stdin{ } elasticsearch { hosts => ["http://127.0.0.1:9200"] user => "admin" index => "*" password => "admin" #设置为true,将会提取ES文档的元数据信息,例如index、t ...
分类:
其他好文 时间:
2020-09-17 21:46:29
阅读次数:
33
new Vue() 实例的初始化 Vue.js 是由 原型链 写法来实现的库,其构造函数在 src/core/instance/index.js function Vue(options) { if (process.env.NODE_ENV !== 'production' && !(this i ...
分类:
其他好文 时间:
2020-09-17 21:27:26
阅读次数:
41