1 ealsticsearch常用术语 Index 索引 类比mysql中的表 6.0之后 Document 文档数据 类比mysql 表中的一行数据 Field字段 类比mysql表字段 Query DSL 查询语法 2 elasticsearch crud create 创建文档 read 读取 ...
分类:
其他好文 时间:
2020-07-16 21:38:56
阅读次数:
78
用户体验一直是前端开发需要考虑的重要部分,在数据请求时常见到锁屏的loading动画,而现在越来越多的产品倾向于使用Skeleton Screen Loading(骨架屏)替代,以优化用户体验 Skeleton Screen Skeleton Screen(骨架屏)就是在页面数据尚未加载前先给用户展 ...
分类:
Web程序 时间:
2020-07-16 18:29:18
阅读次数:
72
css中:focus-within是什么 在css中 :focus-within 是一个伪类,现在已经被列入到css选择器中(css Level 4 selector)。css中伪类:focus-within能非常方便处理获取焦点状态, 当元素本身或其后代获得焦点时,:focus-within伪类的 ...
分类:
Web程序 时间:
2020-07-16 18:25:07
阅读次数:
80
Shader "Unlit/WaterEffect"{ Properties { _MainTex ("Base (RGB)", 2D) = "white" {} _StartX("StartX",Float) = 0.5 _StartY("StartY",Float) = 0.5 _WaveStr ...
分类:
其他好文 时间:
2020-07-16 18:09:20
阅读次数:
59
学习使用PIL生成随机验证码图片的实例! 效果: 代码: # 使用生成随机验证码图片 # Python 3.5.1 import string from random import randint, sample from PIL import Image, ImageDraw, ImageFont ...
分类:
其他好文 时间:
2020-07-16 12:26:42
阅读次数:
69
一个数最多能取8-9次根号。 #include <bits/stdc++.h> using namespace std; #define debug printf("bug!!!\n"); typedef long long ll; const int MAXN=1e5+10; const ll M ...
分类:
其他好文 时间:
2020-07-16 10:11:53
阅读次数:
74
链接:https://leetcode-cn.com/problems/subsets-ii/ 代码 class Solution { public: vector<vector<int>> ans; vector<int> path; vector<vector<int>> subsetsWith ...
分类:
其他好文 时间:
2020-07-16 00:27:10
阅读次数:
75
Description A wqb-number, or B-number for short, is a non-negative integer whose decimal form contains the sub- string "13" and can be divided by 13. ...
分类:
其他好文 时间:
2020-07-15 23:20:22
阅读次数:
96
只做分享学习 以下方法对于大多数Root检测的App (不限于仅银行类App),均适用。 另,"主用户 + Island用户" 情况下: 如果App仅安装在 Island下,当绕不过Root检测时,需在主用户下也安装一下该App,所有的防检测设置在主用户下使用如下方法即可,设置好后,Island用户 ...
分类:
移动开发 时间:
2020-07-15 15:51:34
阅读次数:
143
redis的基本命令 redis的value有五种类型,每个类型有对应的方法 type key 描述这个key对应的value的类型 object encoding key 这个key对应的value操作过的类型 String: set key value 设置值 get key 获取值 set k ...
分类:
其他好文 时间:
2020-07-15 15:44:55
阅读次数:
64