后续添加:Keepalived实现mysql故障迁移heartbeat+DRBD+mysql高可用MMM构建mysql高可用集群配置环境[root@wdds_1~]#uname-aLinuxwdds_12.6.32-504.el6.x86_64#1SMPWedOct1504:27:16UTC2014x86_64x86_64x86_64GNU/Linux[root@wdds_1~]#ifconfigeth0|grep"inetaddr:"inetaddr:10...
分类:
数据库 时间:
2015-08-17 19:43:46
阅读次数:
177
5.14 Match
经常,一个简单的if/else还不够,因为你可能会有多于两种情况.而且,条件会变得更加复杂.Rust有一个关键字,match,允许你替代复杂的if/else组合,来实现一些更强大的功能.看一下:
let x = 5;
match x {
1 => println!("one"),
2 => println!("two"),
...
分类:
其他好文 时间:
2015-08-17 19:41:46
阅读次数:
163
Problem Description
In China, foreign brand commodities are often much more expensive than abroad. The main reason is that we Chinese people tend to think foreign things are better and we are willi...
分类:
其他好文 时间:
2015-08-17 19:41:16
阅读次数:
139
学习Android最好的教材莫过于Google提供的SDK文档。伟仔从Android1.5一路走来,伴随着几个重要版本的更迭与变迁,感受着一个移动系统从青涩到成熟的苦涩成长经历。是的,从出生牛犊不怕虎直到想成就霸业的野心,这个绿色小机器人快速的成长着,成长着。
随着版本的越来越高,文档的也越来越齐备。但是,这个系统也越来越庞大,学习曲线也逐渐陡峭。由于Java的普及性,Android的学习曲线是线...
分类:
其他好文 时间:
2015-08-17 19:40:36
阅读次数:
113
1,配置内核,使内核启动时加载logo,在源代码的主目录下make menuconfig
Device Drivers --->
Graphics support --->
选上 并 进入 Bootup logo -->
选上 Standard 224-color Linux logo...
分类:
系统相关 时间:
2015-08-17 19:43:05
阅读次数:
182
源代码如下
#include
#include
typedef struct Item *node;
struct Item{
int data;
char c;
};
static Item *pq;
static int N ;
void swap(Item &a,Item &b){struct Item t = a;a = b;b = t;}
//自底向上堆化 完全二叉树 ...
分类:
其他好文 时间:
2015-08-17 19:42:34
阅读次数:
93
今天在搞工作流,tomcat7.0.57 总是报错,解析不了web.xml引用的joa.xml .
后经查找资料发现:
tomcat 7.0.52开始的版本才会出这个问题,
是因为安全的考虑tomcat 7.0.52开始的版本把xmlBlockExterna属性默认为false,要解决这个问题,
两种方法:
1、把tomcat版本换成7.0.52之前的版本。
2、把xmlBlo...
分类:
Web程序 时间:
2015-08-17 19:40:58
阅读次数:
540
onActivityResult方法的使用...
分类:
移动开发 时间:
2015-08-17 19:41:19
阅读次数:
166
畅通工程续
Time Limit: 3000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 36731 Accepted Submission(s): 13502
Problem Description
某省自从实行了很多年的畅通工程计划后,终于修...
分类:
其他好文 时间:
2015-08-17 19:39:48
阅读次数:
79
1、查找目标shell进程:
例如:我想要查找 odm_clean 脚本运行进程
ps -ef | grep "odm_clean"
hadoop 3702 46809 0 17:17 pts/16 00:00:00 grep odm_clean
hadoop 28376 28349 0 13:47 pts/11 00:00:00 bash ./odm_cle...
分类:
系统相关 时间:
2015-08-17 19:39:32
阅读次数:
382
Cow Marathon
Time Limit: 2000MS
Memory Limit: 30000K
Total Submissions: 4182
Accepted: 2116
Case Time Limit: 1000MS
Description
After hearing about the epidemi...
分类:
其他好文 时间:
2015-08-17 19:40:01
阅读次数:
134
雪崩是指平时正常调用和被调用的A系统和B系统,突然A系统对B系统的访问超出B系统的承受能力,造成B系统崩溃。
注意将雪崩效应与拒绝服务攻击相区别:两者都是因为B系统过载导致崩溃,但后者是人为的蓄意攻击。
注意将雪崩效应与访问量激增区别:如果A系统直接面对用户,那么激增的用户将直接带来A系统和B系统的流量激增,不过这种case可以通过预估而对A系统和B系统做扩容应对。
一种雪崩case
如果...
分类:
其他好文 时间:
2015-08-17 19:41:31
阅读次数:
111
1、NavgationController pop 回来不进入viewdisload,利用原来加载的视图
不是啊,他pop回来的时候不进viewdidload
直接进去viewwillApper这个方法
2、push 过去后,隐藏UIToolBar
RushViewController *rushViewControler=[[RushViewController
allo...
分类:
其他好文 时间:
2015-08-17 19:40:12
阅读次数:
120
IOS的开发过程中,当需要给测试人员发布测试包的时候,直接使用xcode来做的效率是非常低下的。尤其是当有一点小改动需要重新出包时,那简直是个折磨的人的工作。
通过fir.im 可以轻松实现,具体操作如下:
http://blog.fir.im/fir_cli/...
分类:
移动开发 时间:
2015-08-17 19:39:24
阅读次数:
211
Android ADB工具-操作手机和获取手设备信息(四)标签(空格分隔): Android ADB6. 其他命令
命令
功能 adb shell input text
发送文本内容
adb shell input keyevent
发送键盘事件
adb shell wm size
获取设备分辨率
adb shell getp...
分类:
移动开发 时间:
2015-08-17 19:40:42
阅读次数:
557
CNN检测领域发展的非常迅速;有overfeat, rcnn, spp, fast rcnn, faster rcnn...
分类:
其他好文 时间:
2015-08-17 19:38:37
阅读次数:
267
(一)在一个LSprite上画一张图,new另一个Sprite进行图片的mask效果 ,效果如下:
loading...
var loader;
init(50,"mylegend",500,350,main);
function main(){
loader = new LLoader();
loader.addEventListener(L...
分类:
其他好文 时间:
2015-08-17 19:40:16
阅读次数:
176