码迷,mamicode.com
首页 >  
搜索关键字:ansible playbook node    ( 29958个结果
Node.js初体验
NODE.JS的简单学习。...
分类:Web程序   时间:2014-09-02 00:20:13    阅读次数:154
fdfsfds
#include #include #include #include #include #define N 200002using namespace std;struct node{ int l,r; int lz;} q[4*N];struct Line{ int x,y;}...
分类:其他好文   时间:2014-09-01 22:35:33    阅读次数:229
简单链表-C语言复习
实现一个基本的链表,包括在链表后添加数据节点和输出链表i所有数据的功能 1 #include 2 #include 3 4 typedef struct node 5 { 6 int data; 7 struct node *link; 8 }NODE; 9 10 //定义头指针1...
分类:编程语言   时间:2014-09-01 22:33:13    阅读次数:319
HDU 3726 Graph and Queries treap树
题目来源:HDU 3726 Graph and Queries 题意:见白书 思路:刚学treap 参考白皮书 #include #include #include using namespace std; struct Node { Node *ch[2]; int r; int v; int s; Node(int v): v(v) { ch[0] = ch[1] ...
分类:其他好文   时间:2014-09-01 21:12:23    阅读次数:234
使用MeanJS Yeoman Generator
1、首先全局安装该生成器sudo npm install -g generator-meanjs2、为项目创建一个路径mkdir xmen && cd xmen3、创建appyo meanjs根据提示,输入应用名,描述,关键词,是否创建crud例子。。4、运行appsudo NODE_ENV=dev...
分类:Web程序   时间:2014-09-01 20:52:43    阅读次数:373
Cheatsheet: 2014 08.01 ~ 08.31
Web Slow Server? This is the Flow Chart You're Looking For A Strolll Through Node: Introduction .NET Essential Truths Everyone Should Know about Perfo...
分类:其他好文   时间:2014-09-01 19:31:33    阅读次数:278
Node.js+socket.io在线聊天室
Node.js+socket.io实现在线聊天室,照着这个教程做的,稍加改动即可实现。        Node.js:0.10.31        Express:3.* 创建工程chat: 添加几个文件,工程结构如下 代码: package.json: { "name": "application-name", "version": "0.0.1", "pr...
分类:Web程序   时间:2014-09-01 17:45:32    阅读次数:254
Egret及Node.js的安装部署
最近在学Html5游戏开发,我选择的是国内的一个游戏开发框架egret。因为涉及到node.js这个近年来新兴起来的技术。借此机会把这方面知识学习一下。 node.js以及egret的操作类似于Linux是基于命令行的操作,虽然现在Node有集成软件开发出来,但是安装部署的时候,不注意...
分类:Web程序   时间:2014-09-01 17:15:23    阅读次数:436
Node.js开发之Express框架安装
Express框架安装 1.在命令行中使用全局模式安装 $ sudo npm install express@3.0.6 -g 2.建立工程 $ express -t ejs 文件名 3.建立后提示进入其中并运行 $cd 文件名 && npm install 4.启动...
分类:Web程序   时间:2014-09-01 15:27:43    阅读次数:170
Ambari打包环境
l 操作系统:CentOS6.5 64bitl JDK:1.7.0_45 64 bitl Node.js:v0.10.31l Brunch:1.7.14l Python:2.6.6l Python setuptools - python 2.6l Apache Maven:3.0.5
分类:其他好文   时间:2014-09-01 15:21:33    阅读次数:269
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!