Nodejs箭头函数表达式(=>)

2017-2-23 Frank NodeJS

js中箭头函数表达式(=>)比函数表达式的语法更短,并没有绑定this,arguments,super,或者new.target。箭头函数通常是匿名的。这...

标签: nodejs

评论(0) 浏览(4676)

tmux使用

2017-2-7 Frank 工具

安装 centos yum install tmux 常用命令 按ctrl+b 之后,c创建新会话 持...

评论(1) 浏览(3284)

scp报错修复

2017-2-6 Frank 服务器

问题scp -r /xx/xx root@xxx.xxx.xxx.xxx:/xxx #报错如下 command-line: line 0: Bad conf...

评论(0) 浏览(3885)

Linux 常用命令

2017-2-3 Frank 服务器

查看系统配置 ...

评论(0) 浏览(2849)

找回 macOS Sierra允许“任何来源” 的应用

2017-2-1 Frank 工具

sudo spctl --master-disable ...

评论(0) 浏览(2223)

PHP 解析非标准json

2017-1-22 Frank PHP

数据来自redis,通过python的dict存入的。用json_decode()解析为空。 >>> a = "汉字" >...

评论(0) 浏览(3333)

人脸识别相关资料

2017-1-3 Frank Python

opencv官网dlib官网window安装skimage通过http://icl.cs.utk.edu/lapack-for-windows/lapack/#...

评论(0) 浏览(2997)

mac 下配置zsh

2017-1-2 Frank 工具

让zsh提高工作效率 brew install zsh #wget 自动安装 wget https://github.com/robbyruss...

评论(0) 浏览(3420)

JS 对象(Object)和字符串(String)互转

2016-12-24 Frank NodeJS

将对象转为字符串var jsObj = {}; jsObj.testArray = [1,2,3,4,5]; jsObj.name = 'CSS3'...

评论(0) 浏览(2044)

no matching cipher found 解决

2016-12-20 Frank 服务器

在做git(托管在bitbucket.org上)拉取的时候报错 [root@instance-6 test]# git pull no match...

评论(0) 浏览(14876)

Top