1、GRSEC and PaX
加固主机系统。
2、Use Docker in combination with AppArmor/SELinux/TOMOYO
使用强制访问控制(mandatory access control (MAC))对Docker中使用的各种资源根据业务场景的具体分析进行资源的访问的控制。
3、Limit traffic with ip...
分类:
其他好文 时间:
2015-08-07 01:49:35
阅读次数:
203
" Configuration file for vimset modelines=0 " CVE-2007-2438" Normally we use vim-extensions. If you want true vi-compatibility" remove change the fol....
分类:
系统相关 时间:
2015-08-06 22:09:55
阅读次数:
223
使用eclipse 打开 Android2.2 的Virtual Devices后,出现问题如下:其LogCat日志如下:查找相关资料,出现问题原因是: 该模拟器不支持OpenGL ES,需要使用android 4.0以上的版本,且对于符合版本的模拟器将其Use Host GPU打上对勾。如下图所....
分类:
移动开发 时间:
2015-08-06 20:25:42
阅读次数:
256
UVA10271【Chopsticks】Description:In China, people use a pair of chopsticks to get food on the table, but Mr. L is a bit different. He usesa set of three chopsticks – one pair, plus an EXTRA long chopsti...
分类:
其他好文 时间:
2015-08-06 18:23:38
阅读次数:
117
Objects are structures allocated on the heap. Special rules apply to the use of objects to ensure they are properly garbage-collected.Objects are neve...
分类:
编程语言 时间:
2015-08-06 16:28:30
阅读次数:
136
背景:公司的数据由SQLServer2008 R2升级至SQLServer2012,并配置了AlwaysOn,本脚本用于将主节点的Login迁移至辅助节点。1.在主节点执行以下脚本创建存储过程:USE masterGOIF OBJECT_ID ('sp_hexadecimal') IS NOT NU...
分类:
数据库 时间:
2015-08-06 15:02:02
阅读次数:
344
使用VS2012编译和使用C++ STL(STLport)http://cstriker1407.info/blog/use-vs2012-to-compile-and-use-the-c-stl-stlport/参考网址:【http://blog.csdn.net/lwc91319/article...
分类:
编程语言 时间:
2015-08-06 12:53:15
阅读次数:
241
在这里要注意interrupt()方法,在线程正常运行的时候,调用 interrupt() 并不能结束线程。
正确的结束线程的姿势如下:
public volatile boolean stop = false;
//volatile : every time use this variable ,system will check this value
private int i =0...
分类:
编程语言 时间:
2015-08-06 11:11:34
阅读次数:
144
Since applications on the iPhone using Xamarin.iOS are compiled to static code, it is not possible to use any facilities that require code generation ...
分类:
移动开发 时间:
2015-08-06 09:24:56
阅读次数:
214
上篇我们知道了Data Binding的最简单的用法,那么Data Binding其中最为重要也是最复杂的其实就是在xml布局文件中给对应的控件进行数据绑定了,接下来就一一说明Data Binding的使用各个场景的语法。
我们以User类这个Model为例:public class User {
private String userName;
private String use...
分类:
移动开发 时间:
2015-08-06 00:41:51
阅读次数:
242