1.安装nodejs,下载2.新建一个文件夹Chatroom,在命令行下进入该目录下运行:npm install socket.io npm install mime运行完毕之后会在Chatroom下产生一个node_modules文件夹。3.下载一个自定义库文件,首页文件,后台文件,压缩包,下.....
分类:
Web程序 时间:
2014-07-16 22:50:10
阅读次数:
189
elasticSearch node 的配置如下:# Every node can be configured to allow or deny being eligible as the master,# and to allow or deny to store the data.## Allo...
分类:
其他好文 时间:
2014-07-16 21:53:05
阅读次数:
257
一、数组的深浅拷贝 在使用JavaScript对数组进行操作的时候,我们经常需要将数组进行备份,事实证明如果只是简单的将它赋予其他变量,那么我们只要更改其中的任何一个,然后其他的也会跟着改变,这就导致了问题的发生。 var arr = ["One","Two","Three"];var arrto ...
分类:
Web程序 时间:
2014-07-16 21:45:36
阅读次数:
196
./pdsh -R ssh -w node-10-0[0-5] hostname-R:指定传输方式,默认为rsh,本例为ssh,如果希望ssh传输需要另行安装pdsh-rcmd-ssh,如果希望ssh无密码访问需要提前配置好。-w:指定待执行命令host,也可以这样配置,node_[1-9, 35,...
分类:
其他好文 时间:
2014-07-16 21:42:57
阅读次数:
275
语言:Python描述:使用递归实现 1 def getList(self, node): 2 if node is None: 3 return [] 4 5 if node.left is None and node.right ...
分类:
其他好文 时间:
2014-07-16 21:37:16
阅读次数:
174
在做商品拍卖的时候,要求在商品的拍卖页面需要实时的更新当前商品的最高价格。实现的方式有很多,比如:1.setInterval每隔n秒去异步拉取数据(缺点:更新不够实时)2. AJAX轮询方式方式推送数据(缺点:服务端需要在死循环中反复查询数据库)3.websocket推送数据(缺点:仅支持html5...
分类:
Web程序 时间:
2014-07-16 21:29:21
阅读次数:
198
The Problem. 求解8数码问题。用最少的移动次数能使8数码还原. Best-first search.使用A*算法来解决,我们定义一个Seach Node,它是当前搜索局面的一种状态,记录了从初始到达当前状态的移动次数和上一个状态。初始化时候,当前状态移动次数为0,上一个状态为null,将...
分类:
其他好文 时间:
2014-07-16 21:29:13
阅读次数:
187
##Grunt的配置和使用(一) Grunt 和 Grunt 的插件都是通过 Node.js 的包管理器 npm 来安装和管理的。为了方便使用 Grunt ,你应该在全局范围内安装 Grunt 的命令行接口(CLI)。要做到这一点,你可能需要使用 sudo (OS X,*nix,BSD 等平台中)权...
分类:
其他好文 时间:
2014-07-16 20:42:56
阅读次数:
167
Write a program to sort a stack in ascending order (with biggest items on top). You may use at most one additional stack to hold items, but you may no...
分类:
其他好文 时间:
2014-07-16 20:35:03
阅读次数:
288
Update: July 10, 2014I got so many books in DB, so it is a better choice to focus on one book for each domain and finish those exercises.0. Blog --- u...
分类:
其他好文 时间:
2014-07-16 20:16:58
阅读次数:
177