题目如下: Given a rectangular cake with height h and width w, and two arrays of integers horizontalCuts and verticalCuts where horizontalCuts[i] is the di ...
分类:
其他好文 时间:
2020-06-22 15:31:47
阅读次数:
45
elasticsearch 单节点常见问题 记录elasticsearch 单节点使用时,出现健康状态为 集群健康值:yellow (23 of 46),主要是后面的数字时前面数字的两倍,则这个问题时分片副本问题。 ES 健康的三种状态 状态为green 时,(代表健康状态,说明分片备份都可以用) ...
分类:
其他好文 时间:
2020-06-20 01:29:26
阅读次数:
212
这是一道面试题,当时面试官问的是如何判断页面中两个元素是否发生碰撞(当时太久没有练习DOM方面的操作的api了,没有想到,现在又研究了一下) 场景:一个container容器中,有两个正方形方块,颜色分别为yellow,blue 给container容器绑定了mousehover事件,鼠标和yell ...
分类:
其他好文 时间:
2020-06-17 18:24:15
阅读次数:
133
# 判断是否启动了Redis,仅作为提醒 REDIS_PIDS=$(ps -ef | grep redis | grep -v grep | awk '{print $2}') if [ "$REDIS_PIDS" = "" ]; then Echo_Yellow "Redis is not run ...
分类:
系统相关 时间:
2020-06-11 19:50:58
阅读次数:
93
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Title</title></head> <style> /*[id='id1']{*/ /* background: #fac237;*/ /*}*/ /*区分标 ...
分类:
Web程序 时间:
2020-06-10 23:01:23
阅读次数:
261
CIDR详解划分 已知University在/22地址块中 整个该网络在200.100.104.0/21。 第一步: 排大小: Department2 300 Department1 200 Department3 100 Department4 80 然后对CIDR地址块进行化解:200.100. ...
分类:
其他好文 时间:
2020-06-10 22:55:35
阅读次数:
95
Color_Text() { echo -e " \e[0;$2m$1\e[0m" } Echo_Red() { echo $(Color_Text "$1" "31") } Echo_Green() { echo $(Color_Text "$1" "32") } Echo_Yellow() { ...
分类:
系统相关 时间:
2020-06-10 11:24:04
阅读次数:
72
<script> document.body.style.background = 'red'; console.log(1) Promise.resolve().then(()=>{ console.log(2) document.body.style.background = 'yellow'; ...
分类:
其他好文 时间:
2020-06-09 23:39:30
阅读次数:
90
Linux 系统 应用程序的安装和管理 主要用到的三种最常用的程序安装和管理的方法 rpm Redhat packages manager Yum yellow dog update mangaer 源码编译安装 Prm 是红帽做的一个有关软件安装包和软件的管理工具,他会自带一个小型的数据库,去记录 ...
分类:
系统相关 时间:
2020-06-09 18:55:47
阅读次数:
100
代码1: 划一个简单的x及y轴,标出原点O及坐标为(100,100)的A点。 import turtle turtle.goto(0,0) turtle.dot(20,"yellow") turtle.write("O", font=('Arial', 10, 'normal')) turtle.f ...
分类:
编程语言 时间:
2020-06-09 09:27:00
阅读次数:
82