-webkit-text-size-adjust:none;中文版chrome浏览器里字体显示仍为12px的bug-webkit-appearance: none;修复iphone圆角的bug-webkit-tap-highlight-color:rgba(0,0,0,0);去除手机点击蓝色背景-w...
分类:
移动开发 时间:
2014-06-26 00:28:28
阅读次数:
279
In May 2011, I read a request for installation Openvswitch on Qemu image. I started to play with Openvswitch and finally became fan of this project. I...
分类:
其他好文 时间:
2014-06-24 10:31:56
阅读次数:
259
In a previous tutorial we showed how to install Openvswitch on Qemu image with Microcore Linux. At the end of tutorial we created Openvswitch extensio...
分类:
其他好文 时间:
2014-06-24 10:15:40
阅读次数:
610
准备 qemu, 编译 arm 的运行环境
$ wget http://wiki.qemu-project.org/download/qemu-2.0.0.tar.bz2$ tar xzvf qemu-2.0.0.tar.bz2$ mkdir ./qemu-2.0.0/bin$ cd ./qemu-2.0.0/bin/$ ../configure --target-list=arm-soft...
分类:
移动开发 时间:
2014-06-22 19:48:39
阅读次数:
386
1.qemu-kvm、kvm、qemu 和 qemu-system-x86_64四种命令的区别
qemu 和 qemu-system-x86_64:启动qemu虚拟机的命令,x86_64为64位系统时使用的命令
qemu-x86_64 仅仅模拟CPU
qemu-system-x86_64 模拟整个PC
qemu-kv和 kvm:如果要开启kvm支持,需要使用qemu-kvm或者kvm...
分类:
其他好文 时间:
2014-06-22 17:31:44
阅读次数:
305
root@OpenstackIcehouse2:~# cat /etc/nova/nova-compute.conf [DEFAULT] compute_driver=libvirt.LibvirtDriver [libvirt] virt_type=qemu libvirt_inject_part...
分类:
其他好文 时间:
2014-06-21 16:38:02
阅读次数:
580
In May 2011, I read a request for installation Openvswitch on Qemu image. I started to play with Openvswitch and finally became fan of this project. I...
分类:
其他好文 时间:
2014-06-21 14:42:43
阅读次数:
400
一 代码编排1 缩进。4个空格的缩进(编辑器都可以完成此功能),不使用Tap,更不能混合使用Tap和空格。2 每行最大长度79,换行可以使用反斜杠,最好使用圆括号。换行点要在操作符的后边敲回车。3 类和top-level函数定义之间空两行;类中的方法定义之间空一行;函数内逻辑无关段落之间空一行;其他...
分类:
编程语言 时间:
2014-06-20 20:15:10
阅读次数:
263
把 c 编译成 arm 指令的可执行文件
/usr/bin/arm-linux-gnueabi-g++ hello.cpp
cat hello.cpp
#include
void crash(){
char *a=0;
*a=0;
}
int main()
{
printf("hello world\n");
crash();...
分类:
数据库 时间:
2014-06-18 06:50:45
阅读次数:
424
根据源码所见,移动端为了将将单击事件更加灵敏,所以现在的JQM,ST...框架都将JS单击事件封装成tap,或者touch或者touchstart事件,其实现本质是将click触发多次,以打成移动端触屏灵敏的效果.所以这里如果使用手机浏览器访问你的st,或者jqm项目,就得使用js修改成click事...
分类:
其他好文 时间:
2014-06-15 21:59:07
阅读次数:
933