有时候在开发过程中,总是会遇到一些莫名奇妙的错误,或者在使用fragement和viewpage的时候,就会出现下面这个错误,如果出现找不到android-support-v4 包的时候,可以使用下面的方法进行添加:Project->properties->Java Build Path->Libr...
分类:
移动开发 时间:
2014-07-22 22:53:15
阅读次数:
265
一:mmc的命令例如以下:1:对mmc读操作mmc read addr blk# cnt 2:对mmc写操作 mmc write addr blk# cnt3:对mmc擦除操作mmc erase blk# cnt4:又一次搜索mmc设备mmc rescan5:列出mmc的分区mmc part ...
分类:
其他好文 时间:
2014-07-22 22:51:54
阅读次数:
222
#include
using namespace std;
int n=0;
template
void Swap(T *a,T *b)
{
T temp=*a;
*a=*b;
*b=temp;
}
template
void Perm(T A[],int k,int m)
{
if(k>m)
{
for(int i=0;i
{
cou...
分类:
其他好文 时间:
2014-07-20 00:12:42
阅读次数:
250
In this article, I gathered up all the dumps, who found. If you see something new table will be updated.If you want to replenish the base - write in c...
分类:
移动开发 时间:
2014-07-19 23:12:35
阅读次数:
867
1. 文件名查找
使用find查询时,由于磁盘查询,所以速度较慢,
所以linux下查询更常使用which, whereis, locate来查询,由于是利用数据库查询,所以速度很快。
2. which
我们常用的ls命令,如果我们想知道这些常用命令放在哪儿, 就使用which命令来查询地址。
which使用PATH 环境变量去查找文件名,...
分类:
系统相关 时间:
2014-07-19 18:34:19
阅读次数:
306
编译内核配置脚本: #!/bin/bash export CCOMPILER=arm-xilinx-linux-gnueabi-gccexport ARCH=armexport CROSS_COMPILE=arm-xilinx-linux-gnueabi-export PATH=$PATH:/roo...
分类:
其他好文 时间:
2014-07-19 16:04:15
阅读次数:
207
安装vs2008(VS2008TeamSuite90DayTrialCHSX1429243)的时候遇到问题显示:无法打开数据文件'C:\Users\用户名\AppData\Local\Temp\SIT30368.tmp\deffactory.dat',如下图解决方案:新建一个名为'deffactor...
分类:
其他好文 时间:
2014-07-19 12:19:55
阅读次数:
217
/*** CVE-2014-4014 Linux Kernel Local Privilege Escalation PoC** Vitaly Nikolenko* http://hashcrack.org** Usage: ./poc [file_path]* * where file_path ...
分类:
系统相关 时间:
2014-07-19 12:16:25
阅读次数:
328
例子说明get和post的方法使用:
一、示例用的GET方法:
import tornado.ioloop
import tornado.web
class MainHandler(tornado.web.RequestHandler):
def get(self):
self.write("Hello, world")
application...
分类:
其他好文 时间:
2014-07-19 12:02:22
阅读次数:
205
Your little brother has just learnt to write one, two and three, in English. He has written a lot of those words in a paper, your task is to recognize...
分类:
其他好文 时间:
2014-07-19 11:30:29
阅读次数:
225