杂记

新博客地址:http://gengliming.com

vscode 识别jsx:

"files.associations": {
        "*.jsx":"javascriptreact"
    }
  1. npm设置淘宝镜像:npm config set registry https://registry.npm.taobao.org
    查看当前配置:npm config list

2.terminal查找:
http://www.ruanyifeng.com/blog/2009/10/5_ways_to_search_for_files_using_the_terminal.html

  1. node支持es7: // http://morning.work/page/2015-11/es6-es7-develop-npm-module-using-babel.html

4.正则表达式可视化展示:https://regexper.com/

5.题题题:https://leetcode.com
http://www.lintcode.com/zh-cn/

  1. line-height=0不影响基线;x的基线是其底部;inline-block在内部没有linebox或者overflow不是visible时,基线是其底部;

7.table-cell垂直居中:

.container, .content {
    vertical-align: middle;
}  
.container {
  display: table-cell;
}

8.可视化数据结构:
http://www.cs.usfca.edu/~galles/visualization/Algorithms.html

你可能感兴趣的:(杂记)