(Buying Guide)Nexiq USB Link 1 or 2? WiFi or Bluetooth? Nexiq 1 or Nexiq 2? Nexiq 1 is discontinued. no more updates but for most people it will still ...
分类:
其他好文 时间:
2020-10-22 22:45:27
阅读次数:
25
Description Xiaoqiang wrote a decimal number \(X\), but some of the handwriting has been blurred (we replaced it with ?). Now given another decimal nu ...
分类:
其他好文 时间:
2020-10-18 10:17:30
阅读次数:
29
1、抽离第三方包时报错webpack.optimize.CommonsChunkPlugin has been removed, please use config.optimization.splitChunks instead. 2、经查证又是因为版本问题重新编写配置 与 plugins 同级添 ...
分类:
Web程序 时间:
2020-10-14 20:40:45
阅读次数:
45
线段树 对于维护区间内的信息,我们可使用RMQ,但这种做法的缺点是无法快速修改,而线段树这种数据结构则可以实现实时的查询、修改(单点、区间)。 原理: 线段树是一种二叉搜索树,对于每个节点,他代表区间L~R的信息,而其两个子节点分别代表L~mid、mid+1~R的信息。 建树: 只需要遍历到每个叶子 ...
分类:
其他好文 时间:
2020-10-13 16:58:38
阅读次数:
18
"The Java Language Specification Java SE 12 Edition" 17.4.4 Synchronization OrderEvery execution has a synchronization order. A synchronization order ...
分类:
编程语言 时间:
2020-10-12 20:09:47
阅读次数:
29
checksec warmup_csaw_2016 Arch: amd64-64-little RELRO: Partial RELRO Stack: No canary found NX: NX disabled PIE: No PIE (0x400000) RWX: Has RWX segmen ...
分类:
其他好文 时间:
2020-10-10 17:07:34
阅读次数:
20
本文旨在理一下vue中diff算法的主要逻辑和关键细节。 从一个简单的demo切入: p标签渲染一个items数组 {{ item }} 复制代码 先把实际顺序说明: items数据发生变化 Dep.notify patch(oldVNode, vnode, ...) patchVnode(oldV ...
分类:
编程语言 时间:
2020-10-08 18:57:45
阅读次数:
23
MySQL 2006-MySQLserver has gone away MySQL 2006-MySQLserver has gone away 方式一(验证无误): 找到 mysql安装目录下的my.ini配置文件,加入以下代码: max_allowed_packet=2048M wait_ti ...
分类:
数据库 时间:
2020-10-06 21:23:44
阅读次数:
56
Problem: The highest building in our city has only one elevator. A request list is made up with N positive numbers. The numbers denote at which floors ...
分类:
编程语言 时间:
2020-10-05 22:34:28
阅读次数:
52
1.查看防火墙的状态 [root@localhost HMK]# firewall-cmd --state 查看防火墙的运行状态 not running [root@localhost HMK]# systemctl status firewalld.service 查看防火墙服务是否开启 ● fi ...
分类:
其他好文 时间:
2020-09-24 21:47:59
阅读次数:
46