作为前端(html、javascript、css)的三大马车之一的css,一直以静态语言存在,HTML5火遍大江南北了、javascript由于NODE.JS而成为目前前后端统一开发语言的不二之选。只有css似乎成为前端开发的被忽视的角色了。
分类:
其他好文 时间:
2014-06-18 20:10:49
阅读次数:
130
zookeeper基本是基于API和console进行znode的操作,并没有一个比较方便的操作界面,这里也发现了taobao 伯岩写的一个工具,可以比较方便的查询zookeeper信息。工具的开发语言主要是node.js(最近比较火),其标榜的是无阻塞的api使用。其原理主要是基于google的V...
分类:
其他好文 时间:
2014-06-18 20:03:33
阅读次数:
219
1、根据id获取树的某个节点:var zTree = $.fn.zTree.getZTreeObj("mytree");var node = zTree.getNodeByParam("id",1);2、设置node节点选中状态:zTree.selectNode(node);3、设置node节点ch...
分类:
其他好文 时间:
2014-06-18 14:34:34
阅读次数:
196
node 起始Javascript 工具 → 组 件 → 框架 → 应用(业务模版组织) 浏览器兼容 功能模版 功能模版组织 (实现特效)Javascript 先天缺乏(弱项)模块commonJs规范希望...
分类:
其他好文 时间:
2014-06-18 13:16:13
阅读次数:
208
Given a binary tree, find its maximum depth.The maximum depth is the number of nodes along the longest path from the root node down to the farthest le...
分类:
其他好文 时间:
2014-06-18 12:51:52
阅读次数:
205
本文出自:http://blog.csdn.net/svitter
node.js大家知道的可能比较多,但是jade大家可能就不知道了。。GFW封杀掉google以后,今天在百度上找了好久也没有找到——哎,仍需前进。
肯定有在github上获取一些框架的小白和我一样,看了到了json,jade,less这些莫名奇妙的东西然后怅然不知所云。
jade可以用来生成html文件,写法要简单很多...
分类:
Web程序 时间:
2014-06-17 22:26:49
阅读次数:
329
测试oracle 11g cluster 中OLR的重要性
called an Oracle Local Registry (OLR): each node in a cluster has a local registry for node-specific resources
测试一:模拟olr异常丢失的情况:
这里首先将olr renam
[root@vm...
分类:
数据库 时间:
2014-06-17 22:14:36
阅读次数:
359
题目
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 th...
分类:
其他好文 时间:
2014-06-17 21:38:12
阅读次数:
193
为什么使用Sass作为前端(html、javascript、css)的三大马车之一的css,一直以静态语言存在,HTML5火遍大江南北了、javascript由于NODE.JS而成为目前前后端统一开发语言的不二之眩只有css似乎成为前端开发的被忽视的角色了。Sass让css有了动态语言的特点,在初次学习css时,有..
分类:
其他好文 时间:
2014-06-17 18:06:18
阅读次数:
219
#include "stdafx.h"#include "stdlib.h"typedef struct Node{ int data; struct Node* next;} LinkNode;void PrintNodes(LinkNode *&List){ LinkNode ...
分类:
其他好文 时间:
2014-06-17 15:25:14
阅读次数:
158