TopicsIntroduction (starting with old
devices)How to handle a new FirmwareHow to set up your Mac and Device for Vuln
Research/Exploit DevelopmentHow t...
分类:
其他好文 时间:
2014-05-16 00:20:17
阅读次数:
410
Multiversion concurrency control多版本并发控制Multiversion
concurrency control(MCCorMVCC), is aconcurrency controlmethod commonly used
bydatabase management ...
分类:
其他好文 时间:
2014-05-16 00:05:24
阅读次数:
407
1、解决PNG图片在IE6中背景不透明的CSS与JS代码 - TOPJS代码function
correctPNG() // correctly handle PNG transparency in Win IE 5.5 & 6. { var
arVe...
分类:
其他好文 时间:
2014-05-15 21:14:20
阅读次数:
259
// 创建保存照片文件夹
private void CreateFileJPG() {
File file = new File("/sdcard/image");
if (!file.exists()) {
try {
file.mkdirs();
} catch (Exception e) {
// TODO: handle exceptio...
分类:
移动开发 时间:
2014-05-15 06:39:58
阅读次数:
434
(大部分为翻译)Concurrency vs. Parallelism 并发 vs
并行并发并不一定同时运行,比如使用时间片,使得两个任务交替执行。而并行是执两个任务真正的同时执行。Asynchronous vs. Synchronous 同步
vs 异步 如果一个方法被调用后,调用者只能等到此方....
分类:
其他好文 时间:
2014-05-14 23:12:26
阅读次数:
374
传递消息的集中方式:一:Messagemessage=Message.obtain();
message.obj=data;
message.what=IS_FINISHED;
handle.sendMessage(message);二:Messagemessage=Message.obtain(handle);
message.obj=data;
message.sendToTarget();三:可以在message中传递复杂数据Messag..
分类:
移动开发 时间:
2014-05-14 18:59:52
阅读次数:
331
这是微软官方教程Getting Started with Entity Framework 6
Code First using MVC 5 系列的翻译,这里是第十篇:为ASP.NET MVC应用程序处理并发原文:Handling Concurrency
with the Entity Framew...
分类:
Web程序 时间:
2014-05-14 10:39:02
阅读次数:
695
1. java层面的Surface
对于Surface我们的认识主要是android的类Surface, android的文档描述Surface是“Handle onto a raw buffer
that is being managed by the screen compositor”,这个描...
分类:
移动开发 时间:
2014-05-14 01:43:20
阅读次数:
9126
#ifndef _LOGFILE_H#define _LOGFILE_H#include
#include #include #include class LogFile{protected: CRITICAL_SECTION
_csLock; char * _szFileName; HANDLE....
分类:
编程语言 时间:
2014-05-13 19:15:17
阅读次数:
348
分享两个使用函数:php循环删除目录及目录下的文件和仅删除指定目录下的文件,不删除目录文件夹!代码一:php循环删除目录及目录下的文件<?php//循环删除目录和文件函数functiondelDirAndFile($dirName){if($handle=opendir("$dirName")){while(false!==($item=readdir($han..
分类:
Web程序 时间:
2014-05-13 01:47:25
阅读次数:
410