Arrayss work well for unordered sequences, and even for...
分类:
其他好文 时间:
2014-06-22 21:45:52
阅读次数:
184
”茄子快传”是联想开发的一款近距离文件共享软件,它通过wifi-direct(速度飞快,不需要联网)或者普通的网络(速度慢)在不同手机间传递文件。其中,共享传输已安装程序文件apk这一功能引起我了强烈的兴趣。于是我开始分析它的具体实现,我们知道普通程序是没有权限访问/data/app目录的权限的,它是怎么获取到apk文件的呢?...
分类:
移动开发 时间:
2014-06-22 21:45:17
阅读次数:
318
今天单独启动了Data Guard的primary 数据库,出现了这个错误:ORA-03113: end-of-file on communication channel...
分类:
其他好文 时间:
2014-06-22 19:01:38
阅读次数:
205
13 8086中定义数据的方法
db 一个字节
dw 一个字表示两个字节
dd 两个字,表示4个字节
dup 表示数据重复的指令
db N dup(xx)
;//dup表示定义的数据,N表示重复的个数
dw N dup(xx)
;// dup表示定义的数据,N表示重复的个数
dd N dup(xx)
;// dup表示定义的数据,N表示重复的个数
data se...
分类:
其他好文 时间:
2014-06-22 17:28:21
阅读次数:
193
网上一个连接mysql的jsp代码段,给了数据库的备份文件,但是只有frm,查了下资料,原来只有frm也能导入。 过程如下:1.在mysql目录下的data目录中,找到要导入表所在的数据库的名称,把frm文件放进去,比如我这里是offer.frm,数据库名称是netshop,放到数据库netshop目录下之后,在mysql中show tables显示如下在这里table是显示的,但是desc of...
分类:
数据库 时间:
2014-06-22 17:01:04
阅读次数:
268
//防止页面进行跳转
$(document).ready(function(){
$("#submit").click(function(){
var str_data=$("#form1 input[type=text]").map(function(){
return ($(this).attr("name")+'='+$(this).val());
})...
分类:
其他好文 时间:
2014-06-22 16:04:47
阅读次数:
200
在使用md5函数之前要先安装openssl,以及libssl-dev。
包含头文件:#include
两种方式:
第一种:
int MD5_Init(MD5_CTX *c);
int MD5_Update(MD5_CTX *c, const void *data, size_t len);
int MD5_Final(unsigned char *md, MD5_CTX *c);...
分类:
系统相关 时间:
2014-06-22 15:37:03
阅读次数:
1261
题目如下:
Oil Deposits
The GeoSurvComp geologic survey company is responsible for detectingunderground oil deposits. GeoSurvComp works with one large rectangularregion of land a...
分类:
其他好文 时间:
2014-06-22 14:36:31
阅读次数:
232
jquery的给元素绑定的事件可以用data方法取出来
通过$(element).data("events")来获取
// 比如给一个button绑定两个click事件
$("button").click(function() { alert("1") });
$("button").click(function() { alert("2") });
// 这个时候点...
分类:
Web程序 时间:
2014-06-22 00:28:22
阅读次数:
226
(image from Anatomy of an open source cloud) A cloud data center consists of large numbers of physical servers, each running a hypervisor with one or ...
分类:
其他好文 时间:
2014-06-21 14:48:04
阅读次数:
225