The following is from Max Howell @twitter: Google: 90% of our engineers use the software you wrote (Homebrew), but you can't invert a binary tree on a ...
分类:
其他好文 时间:
2020-04-28 16:57:01
阅读次数:
57
user root root;worker_processes 1; #设置值和CPU核心数一致error_log /usr/local/nginx/logs/nginx_error.log crit; #日志位置和日志级别pid /usr/local/nginx/nginx.pid;#Specif ...
分类:
其他好文 时间:
2020-04-28 15:18:17
阅读次数:
66
并非重装后用相同用户名+密码就可以解密的。 Advanced EFS Data Recovery这个软件对格式化重装系统后恢复EFS文件没有任何效果。 把NTFS分区转换成FAT32分区无效。 私钥不是在刚做完系统时产生,而是第一次加密时产生,所以加密完再用GHOST还原为刚做完系统时,肯定丢失私钥 ...
方法一: mybatis-plus: configuration: log-impl: org.apache.ibatis.logging.stdout.StdOutImpl #开启sql日志 方法二: logging: level: com.chz.mapper: debug ...
分类:
数据库 时间:
2020-04-27 22:52:20
阅读次数:
698
``` /** * 102. Binary Tree Level Order Traversal * 1. Time:O(n) Space:O(n) * 2. Time:O(n) Space:O(n) */ // 1. Time:O(n) Space:O(n) class Solution { pu... ...
分类:
其他好文 时间:
2020-04-27 13:04:46
阅读次数:
47
If a machine can save only 3 significant digits, the float numbers 12300 and 12358.9 are considered equal since they are both saved as 0.123×105 with ...
分类:
其他好文 时间:
2020-04-27 11:23:14
阅读次数:
43
什么是AES “AES 是 Advanced Encryption Standard(高级加密标准)的缩写,是密码学中最常用的加密算法之一。这個标准用來替代原先的 DES(Data Encryption Standard),已经被多方分析且广为世界所使用。” 分组密码在加密时明文分组的长度是固定的, ...
分类:
其他好文 时间:
2020-04-26 23:57:07
阅读次数:
158
主要使前三条语句,来看是否还存在锁表 MySQL锁概述 相对其他数据库而言,MySQL的锁机制比较简单,其最显著的特点是不同的存储引擎支持不同的锁机制。比如,MyISAM和MEMORY存储引擎采用的是表级锁(table level locking);BDB存储引擎采用的是页面锁(page level ...
分类:
数据库 时间:
2020-04-26 10:31:22
阅读次数:
76
```bash global maxconn 100000 chroot /data/soft/haproxy stats socket /var/lib/haproxy/haproxy.sock mode 600 level admin uid 1000 gid 1000 daemon nbpro... ...
分类:
其他好文 时间:
2020-04-25 23:42:52
阅读次数:
69
目录 1. The Gist 1.1 为什么要学它(Motivation) 1.2 High level idea 1.3 4个例子 2. Big-Oh Notation 2.1 文本定义 2.2 图形定义 2.3 数学定义 3. 2个例子 3.1 k阶多项式是O(n^k) 3.2 k阶多项式不是O ...
分类:
编程语言 时间:
2020-04-25 11:05:55
阅读次数:
88