import java.awt.Button;import java.awt.Color;import java.awt.FlowLayout;import java.awt.Frame;import java.awt.GridLayout;import java.awt.Label;import ...
分类:
其他好文 时间:
2016-06-21 15:24:39
阅读次数:
136
shell 笔记 shell 笔记 shell 笔记 通配符 没有 '.' [Aa] 表示 A 或者 a ? 表示任意字符 * 表示任意字符串 IFS data='name, sex, rollno, location' oldIFS=$IFS IFS=', ' for i in $data; do ...
分类:
系统相关 时间:
2016-06-21 15:27:15
阅读次数:
305
1. svo 源码:https://github.com/uzh-rpg/rpg_svo 国内对齐文章源码的研究: (1)冯斌: 对其代码重写 https://github.com/yueying/OpenMVO 对原理的一步步分析 http://fengbing.net/ (2)白巧克力: 对文章 ...
分类:
其他好文 时间:
2016-06-21 15:25:48
阅读次数:
154
在web集成和网站前端领域,JSON越来越普遍,在Scrapy架构中,Scrapy dict数据结构本质上就是json,所以,由XML格式转换成JSON格式很有必要。 ...
分类:
编程语言 时间:
2016-06-21 15:25:17
阅读次数:
228
原理和操作步骤见如下转载的两篇文章, 我所使用的 svn 客户端软件是 Mac 下面的 Versions.app v1.06 这个版本包含一个多人开发的bug bug 的解决方案见我之前转载的两篇文章~ 另外就是如本文转载的第一篇文章,我也深受 UserInterfaceState.xcuserst ...
分类:
其他好文 时间:
2016-06-21 15:23:36
阅读次数:
142
打一个补丁 http://blogs.msdn.com/b/webdev/archive/2014/11/11/dialog-box-may-be-displayed-to-users-when-opening-projects-in-microsoft-visual-studio-after-in ...
分类:
Web程序 时间:
2016-06-21 15:25:26
阅读次数:
300
我们有A,B,C,D四个不同的类别,在最开始的时候只有三个类别,并且两个类别是做同样的事: 1 function categoryHandle(category) { 2 if(category !== 'A') { 3 console.log('B, C'); 4 } else { 5 conso ...
分类:
Web程序 时间:
2016-06-21 15:26:06
阅读次数:
174
现在很多人都喜欢上网购物,当然对我这种喜欢便宜的人来说,双十一,节假日抢购无疑是我的最爱。但是对于全国这么多人来说 大家都争先恐后地去抢一件上平,那服务器还不得炸了才怪;所以今天我就来说说用消息服务来处理这个问题。用户发送请求后,服务器 接到请求后,向消息队列发送一个消息,就立刻返回“订单正在处理” ...
分类:
编程语言 时间:
2016-06-21 15:24:18
阅读次数:
210
什么是Oozie? Oozie是一种Java Web应用程序,它运行在Java servlet容器——即Tomcat——中,并使用数据库来存储以下内容: 工作流定义 当前运行的工作流实例,包括实例的状态和变量 Oozie工作流是放置在控制依赖DAG(有向无环图 Direct Acyclic Grap ...
分类:
其他好文 时间:
2016-06-21 15:24:41
阅读次数:
192
npm install <name>安装nodejs的依赖包 例如npm install express 就会默认安装express的最新版本,也可以通过在后面加版本号的方式安装指定版本,如npm install express@3.0.6 npm install <name> -g 将包安装到全局 ...
分类:
Web程序 时间:
2016-06-21 15:25:10
阅读次数:
158
Given an array of n integers where n > 1, nums, return an array output such that output[i] is equal to the product of all the elements of nums except ...
分类:
编程语言 时间:
2016-06-21 15:22:27
阅读次数:
161
btn.layer.cornerRdius = width/2.0;btn.layer.maskToBounds = width/2.0; btn.layer.cornerRdius = width/2.0;btn.layer.maskToBounds = width/2.0; ...
分类:
其他好文 时间:
2016-06-21 15:24:31
阅读次数:
122
The blktrace utility extracts event traces from the kernel (via the relaying through the debug file system). Usage $blktrace -d <device> [ -r debug_pa ...
分类:
系统相关 时间:
2016-06-21 15:24:04
阅读次数:
375
转自:http://www.cnblogs.com/LMySQL/p/5060604.html 前言:假设如果有个服务器几十个链接突然达到上千个链接,show processlist,general_log,还有慢查询日志这些都不能用,你怎么把这些链接过来的SQL情况了解清楚,如果你觉得那些好用的都 ...
分类:
数据库 时间:
2016-06-21 15:24:25
阅读次数:
418
Add Binary 本题收获:1.string中默认每个元素为char型 2.从int型转化为char型 s[i] - '0' 从char型转化为int型 s[i] + '0' 3.char型和int型相加时按上式会报错 s = (char)(s[i] + '0') +s s = (char)(s ...
分类:
其他好文 时间:
2016-06-21 15:24:15
阅读次数:
150