1. 官方网站 https://docs.npmjs.com/ 2. 显示Global Module安装过什么 npm list --depth=0 -g ...
分类:
其他好文 时间:
2016-12-02 07:41:35
阅读次数:
161
Time Complexity: O(N) The depth of the directory/file is calculated by counting how many "\t"s are there.The time complexity is O(n) because each subs ...
分类:
其他好文 时间:
2016-11-30 07:47:50
阅读次数:
187
AVL 树的插入、删除、旋转归纳 参考链接: http://blog.csdn.net/gabriel1026/article/details/6311339 1126号注:先前有一个概念搞混了: 节点的深度 Depth 是指从根节点到当前节点的长度; 节点的高度 Height 是指从当前节点向下, ...
分类:
其他好文 时间:
2016-11-28 23:05:52
阅读次数:
276
Computer Science An Overview _J. Glenn Brookshear _11th Edition For our example in Figure 11.7, we chose a starting configuration that produces amanag ...
分类:
其他好文 时间:
2016-11-24 16:00:30
阅读次数:
188
由于项目原因需要定期检查磁盘空间占用情况,常用检查命令如下: 于一日发现在使用Flume + Kafka进行数据同步时,某一局点数据无法进行消费,通过df -lh查看发现系统空间满了,如下: /dev/xvda1 20G 20G 0G 100% / 然后,通过du --max-depth=1 -h ...
分类:
其他好文 时间:
2016-11-23 07:00:08
阅读次数:
561
Monocular Vision: a condition in which one eye is blind, seeing with only one eye Binocular Vision: seeing with two eyes simultaneously Depth Percepti ...
分类:
其他好文 时间:
2016-11-22 09:51:04
阅读次数:
228
此文为翻译,原文地址在这儿:https://hacks.mozilla.org/2015/08/es6-in-depth-modules/【转】 ES6 是 ECMAScript 第 6 版本的简称,这是新一代的 JavaScript 的标准。ES6 in Depth 是关于 ES6 的一系列新特性 ...
分类:
其他好文 时间:
2016-11-20 10:51:13
阅读次数:
181
可以递归查找目录下的文件,通过遍历硬盘来查找 用.来表示当前目录,用/来表示系统根目录 命令选项: -name 按照文件名查找文件。 -perm 按照文件权限来查找文件。 -prune 使用这一选项可以使find命令不在当前指定的目录中查找,如果同时使用-depth选项,那么-prune将被find ...
分类:
系统相关 时间:
2016-11-18 09:45:15
阅读次数:
164
Z pre-pass In the rendering Process, the first pass render to a depth buffer to get the front layer of depth. Next, we use this depth layer to cull th ...
分类:
其他好文 时间:
2016-11-17 19:07:28
阅读次数:
221
Given a binary tree, find its maximum depth. The maximum depth is the number of nodes along the longest path from the root node down to the farthest l ...
分类:
其他好文 时间:
2016-11-13 07:49:37
阅读次数:
170