前面介绍了2篇munin使用的相关文章:[Linux实用工具]Linux监控工具munin的安装和配置[Linux实用工具]Linux监控工具munin的展示(Nginx)这次介绍一下munin-node的插件的安装配置和插件的编写。插件配置munin-node本身就集成了很多的插件,只需要直接建个...
分类:
系统相关 时间:
2014-06-26 00:00:26
阅读次数:
367
上周5晚上在家看Node.js视频的时候,老大来一条短信让研究下 phoengap打包一个web网站。遂 陷入了phonegap的深渊中。phoengap很早开始使用 cli模式安装开发环境 ,借助node npm来管理环境要求:JAVAAndroid SDKAntNode.js以上几个的下载地址就...
分类:
其他好文 时间:
2014-06-25 23:59:48
阅读次数:
306
原文来自于:http://www.infoq.com/cn/articles/new-idea-of-nodejs-asynchronous-processing-tasks?utm_source=infoq&utm_medium=popular_links_homepageNode.js擅长数据密...
分类:
Web程序 时间:
2014-06-25 21:21:47
阅读次数:
436
一改时间以后WA了,我就知道这题是考字典树,可惜代码怎么也不会敲了,郁闷。#include #include #include typedef struct Node{ int flag;struct Node *next[26];}Node,*Tree;char a[200010][6];int ...
分类:
其他好文 时间:
2014-06-24 14:31:01
阅读次数:
161
原来写的一个分页查询,回调了好几层。exports.list = function(req,res) { var params = {}; var current_page = common_util.get_param_value(req,'current_page','Number'...
分类:
Web程序 时间:
2014-06-24 12:41:15
阅读次数:
353
1 #include 2 #include 3 #include 4 #define maxn 5100 5 #include 6 using namespace std; 7 8 struct node 9 { 10 int x,y; 11 int id; 1...
分类:
其他好文 时间:
2014-06-24 11:04:10
阅读次数:
150
介绍
JavaScript 高涨的人气带来了很多变化,以至于如今使用其进行网络开发的形式也变得截然不同了。就如同在浏览器中一样,现在我们也可以在服务器上运行 JavaScript ,从前端跨越到后端,这样巨大的反差让人难以想象,因为仅仅在几年前 Javascript 还如同 Flash 或者 Java applet 那样嵌入网页在沙箱环境中运行。
在深入Node.js之...
分类:
Web程序 时间:
2014-06-22 20:46:15
阅读次数:
354
Given a linked list, remove the nth node from the end of list and return its head.
For example,
Given linked list: 1->2->3->4->5, and n = 2.
After removing the second node from the end, the...
分类:
其他好文 时间:
2014-06-22 20:02:46
阅读次数:
182
/*API-38*/
Element.remove()
删除某个元素对象,无返回值
/*API-39*/
Element.removeData([key]);
删除某个key的value值,如果没有特殊说明则删除所有的元素数据
参数列表:
key
可选参数
字符串类型
key
返回值:元素对象
/*API-105*/
在画布上添加一个字符串,如果...