Invert a binary tree. 4 / \ 2 7 / \ / \ 1 3 6 9 to 4 / \ 7 2 / \ / \ 9 6 3 1 Trivia:This problem was inspired by this original tweet by Max Howell: Go ...
分类:
其他好文 时间:
2017-07-11 22:59:27
阅读次数:
159
具体参考官网:https://brew.sh/index_zh-cn.html 1.安装homebrew /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install) ...
分类:
其他好文 时间:
2017-07-08 12:22:53
阅读次数:
390
步骤 http://facebook.github.io/react-native/docs/getting-started.html#content 依照React Native官网步骤一步步安装,记录例如以下 1.安装Homebrew (依照官网 在命令终端输入命令就可以) 2.安装nvm(no ...
分类:
系统相关 时间:
2017-07-07 13:10:34
阅读次数:
220
mac上运行zanphp的demo 初入PHP的深坑,需要配置下zanphp的环境来运行下zanphp的demo。 安装php 需要安装些基本的软件,通过brew安装安装php,这里版本选了5.6 brew tap homebrew /homebrew-php brew install php56 ...
分类:
Web程序 时间:
2017-07-02 10:10:36
阅读次数:
868
在Mac机上,我最开始是通过homebrew来安装nvm,如下: 安装完成后,在命令行输入nvm list,发现出现如下提示: What?!!我不是才安装了nvm的吗。 尝试了很多方案,仅仅只有一种看似还行,就是在你打开terminal后,运行如下代码: 就可以在这个打开的terminal页中,运行 ...
分类:
系统相关 时间:
2017-06-25 10:10:20
阅读次数:
1867
1. brew install nginx 2. brew install php70 3. 配置Nginx ① 定义根目录 root /usr/local/sk 将这一部分放到server块里面,去掉其他location块里面的root ② nginx + php 整合,只需将 location ...
分类:
系统相关 时间:
2017-06-22 15:12:50
阅读次数:
180
参考:https://jingyan.baidu.com/album/fec7a1e5ec30341190b4e7e5.html?picindex=3 1.在打开的命令行工具中输入如下语句: ruby -e "$(curl --insecure -fsSL https://raw.githubuse ...
分类:
系统相关 时间:
2017-06-20 20:13:04
阅读次数:
201
参照pcl安装说明:http://www.pointclouds.org/documentation/tutorials/compiling_pcl_macosx.php 其中macports可以用homebrew代替,没什么问题。 再有mac下安装cmake应该去cmake官网下载dmg二进制安装 ...
分类:
系统相关 时间:
2017-06-20 14:48:51
阅读次数:
855
这段时间以来学习vue的一点小小的的总结和体会,--给未来的自己。 vue 环境的安装: Mac 环境(打开终端键入一下命令) 首先安装HomeBrew /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew ...
分类:
其他好文 时间:
2017-06-18 16:16:08
阅读次数:
169
http://blog.sina.com.cn/s/blog_6145ed810102vqu6.html 我是使用 brew 来安装的,让我们再回顾一下整个过程吧。如果你没有装 brew ,先看步骤一,否则直接看步骤二。 步骤一:安装 Homebrew 先看看是否满足下面条件: 满足了,就可以安装 ...
分类:
系统相关 时间:
2017-06-18 13:16:20
阅读次数:
203