上周被android交叉编译搞惨了,还好最后弄好了,写个小结以后备用吧。
步骤,1、下载cygwin的devel和shells模块 2、 2、设置环境变量 a、设置NDK_ROOT b、设置Path
编辑Path,在后面追加4个环境...
分类:
移动开发 时间:
2014-04-30 01:02:38
阅读次数:
626
1、安装httpd软件包:Yum install
httpd2、启动apache服务:[root@redhat Desktop]# /etc/init.d/httpd startStarting httpd:
[ OK ]3、安装mod-ssl软件包[root@redhat Desktop]# yu...
分类:
其他好文 时间:
2014-04-29 20:50:11
阅读次数:
431
Ubuntu默认是安装好了tcpdump工具的,如果没有安装的话使用sudo apt-get
install tcpdump即可安装。 (如果遇到tcpdump: no suitable device
found的问题,检查一下是不是在用root权限运行tcpdump,tcpdump只能在root权...
分类:
其他好文 时间:
2014-04-29 20:18:22
阅读次数:
620
After having installed Ubuntu OS, you should
update config file for root account. The commands are listed as follow:vi
/etc/lightdm/lightdm.conf #open...
分类:
其他好文 时间:
2014-04-29 19:21:56
阅读次数:
555
PHP MySQL补充:1、与服务器建立一个连接时mysql_connect-打开一个到 MySQL
服务器的连接语法格式:resource mysql_connect ( 主机 , 用户名 , 密码 )
$mydb=mysql_connect("localhost","root","root");...
分类:
其他好文 时间:
2014-04-29 18:36:44
阅读次数:
578
这道题也很简单,只要把二叉树按照宽度优先的策略遍历一遍,就可以解决问题,采用递归方法越是简单。下面是AC代码:
1 /** 2 * Sum Root to Leaf Numbers 3 * 采用递归的方法,宽度遍历 4 */ 5 int result=0; 6...
分类:
其他好文 时间:
2014-04-28 10:05:40
阅读次数:
682
所有包含Heap Profling功能的工具(MAT, Yourkit, JProfiler,
TPTP等)都会使用到两个名词,一个是Shallow Size,另一个是 Retained Size.
这是两个在平时不太常见的名词,本文会对这两个名词做一个详细的解释。Shallow Size对象自身占...
分类:
其他好文 时间:
2014-04-28 04:44:45
阅读次数:
455
自己写的最新版本extjs4.2的树结点的操作,记录一下,以后可能会用到。
var tree = new Ext.tree.TreePanel({
flex: 1,
animate: true,
autoScroll: true,
anchor: '100% 93%',
store: new Ext.data.TreeStore({
root:{
expanded: true...
分类:
Web程序 时间:
2014-04-27 19:00:19
阅读次数:
1278
在Linux上启动VNC Server(如果没安装的话那就先安装)
执行vncserver命令:
[root@linux root]# vncserver
You will require a password to access your desktops.
Password: ----为了不想任何人都可以任意遥控此计算机。因此当第
Verify: ---1次启动VNC se...
分类:
系统相关 时间:
2014-04-27 18:33:08
阅读次数:
1009