2017-01-13 Bruce Wang
最近工作上接手了两个项目,可它们依赖的node版本不同,于是想到了之前用的nvm(Node Version Manager)。 https://github.com/creationix/nvm 之前安装nvm的方式是通过npm install nvm,而新版本可以通过脚本或者手动安装。目前,nvm没有提供windows的支持,但是在其文档中提到了nvm-windows这个工具。 https://github.com/coreybutler/nvm-windows 安装 在安装nvm-windows前,需要做以下步骤: 卸载系统中已有的node.js 删除node.js安装目录(例如C:\Program Files\no 继续阅读 »
2016-05-28 ALEX LIN
安装Node.js ``` Using Ubuntu curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash - sudo apt-get install -y nodejs Using Debian, as root curl -sL https://deb.nodesource.com/setup_6.x | bash - apt-get install -y nodejs ``` 继续阅读 »
2016-03-21 wansong
仓库github地址: https://github.com/markaii/wechat-auth npm地址: https://www.npmjs.com/package/wechat-auth 继续阅读 »
2017-02-11 Lu Huang
前面的博客 GitHub Pages + Jekyll + Netlify 实现 https 个性域名,讲述了如何通过 GitHub Pages + Jekyll + Netlify 实现了自定义域名支持 https 访问的个人主页(博客)。本文将介绍如何在 Mac 上配置 Jekyll 本地编译环境,实现网站的本地预览。 继续阅读 »
2014-08-08 veryyoung
GFW最近好猖狂,不翻墙完全没法用了! GoAgent抽风厉害,而且速度太不理想。 Baidu搜索结果充斥着广告和垃圾,完全不能看!!! Google了一番,收集下Google的代替方案,有钱买vpn的土豪和能忍受baidu的忽略。 1.http://www.aol.com/ 美国在线,集成了Google搜索引擎,大赞! 2.https://duckduckgo.com/ DuckDuckGo 是一个新兴的搜索引擎,承诺绝不收集用户的任何数据。界面简洁大方,搜索结果也比较理想,但中文搜索太寒酸.. 短域名:http://dgg.gg 3.https://startpage.com/ 中文搜索结果比鸭子好,据说用了Google 继续阅读 »
2015-11-30 Klaus Ma
Configuring a remote for a fork List the current configured remote repository for your fork. $git remote -v origin https://github.com/YOUR_USERNAME/YOUR_FORK.git (fetch) origin https://github.com/YOUR_USERNAME/YOUR_FORK.git (push) 继续阅读 »
2019-01-06 Vaniot
redis https://github.com/antirez/redis/blob/5.0/src/adlist.h https://github.com/antirez/redis/blob/5.0/src/adlist.c 结构体的定义 结构体的实现,双向链表的相关定义于adlist.h中 节点: ```C++ typedef struct listNode { struct listNode *prev; //前一个节点 struct listNode *next; //后一个节点 void *value; //节点的值 } listNode; more 迭代器: C++ typedef s 继续阅读 »
2015-11-18 W.Y.
ES6
more 参考原文:[ES6 In Depth: The Future](https://hacks.mozilla.org/2015/08/es6-in-depth-the-future/) 原文作者:[Jason Orendorff](https://hacks.mozilla.org/author/jorendorffmozillacom/) 原文日期:2015-08-21 继续阅读 »
2016-10-21 Meng Lei
Nginx是一个俄罗斯开发的高性能HTTP服务器和反向代理服务器,功能丰富、性能强悍、运行稳定、应用广泛,完全使用C语言编写,可运行于各种Unix Like OS,并有Windows移植版本(不推荐用于生产环境)。 安装 在Ubuntu中,可以直接使用sudo apt-get install nginx 命令安装nginx,安装之后,默认的配置文件保存在 /etc/nginx 文件夹内,默认提供http服务的目录位置在 /usr/local/nginx/html。 配置 nginx的主配置文件是:nginx.conf ``` user www-data; #用户与用户组 worker_processes 4; #对外提 继续阅读 »
2015-11-18 W.Y.
ES6
more 参考原文:[ES6 In Depth: Generators, continued](https://hacks.mozilla.org/2015/07/es6-in-depth-generators-continued/) 原文作者:[Jason Orendorff](https://hacks.mozilla.org/author/jorendorffmozillacom/) 原文日期:2015-07-09 继续阅读 »