- 浏览: 115528 次
- 性别:
- 来自: 武汉
最新评论
-
TheMatrix:
tab切换时,每次都重新加载onCreateView方法,这个 ...
android FragmentTabHost -
458832194:
...
android FragmentTabHost -
simplehappy:
main_relative.xml和main_linear.x ...
android FragmentTabHost -
tkpc:
感谢Google这么快就搜索到我想要的,楼主的做法是可行的,算 ...
android FragmentTabHost
文章列表
http://www.ibm.com/developerworks/cn/linux/l-hadoop-1/
http://www.ibm.com/developerworks/cn/linux/l-hadoop-2/
http://www.ibm.com/developerworks/cn/linux/l-hadoop-3/
http://hadoop.apache.org/common/docs/r0.18.2/cn/quickstart.html#FullyDistributed
http://www.cnblogs.com/wayne1017/archive/2007/03/20 ...
http://sphinxsearch.com/
Sphinx是由俄罗斯人Andrew Aksyonoff开发的一个全文检索引擎.
1.体验
下载源码,在linux下安装。按照http://sphinxsearch.com/docs/1.10/quick-tour.html中的步骤。
安装:
$ wget http://sphinxsearch.com/downloads/sphinx-1.10-beta.tar.gz
$ tar xfv sphinx-1.10-beta.tar.gz
$ cd sphinx-1.10.beta
$ ./configur ...
faplayer
http://www.eoeandroid.com/thread-34061-1-1.html
opengl es lesson for android
http://insanitydesign.com/wp/projects/nehe-android-ports/
http://pikuorguk.livejournal.com/338526.html
opengl es tutoial
http://www.zeuscmd.com/tutorials/opengles/index.php
http://blog.jayway.com/2010/0 ...
opengl es for wince
http://www.zeuscmd.com/tutorials/opengles/index.php
NeHe OpenGL tutorials for android
http://insanitydesign.com/wp/projects/nehe-android-ports/
1. http://developer.android.com/
2. sdk:
3. ndk:
4. http://source.android.com
5. http://android.git.kernel.org/
6. toolchain: http://android.kernel.org/pub/android-toolchain-20081019.tar.bz2
参考
Android.mk文件语法规范及使用模板
http://www.codesourcery.com/sgpp/lite/arm/portal/release1294
pl ...
#define _CRTDBG_MAP_ALLOC
#include <stdlib.h>
#include <crtdbg.h>
下面的语句放在主函数开头,就不用每个出口都写上_CrtDumpMemoryLeaks(); 了
#ifdef _DEBUG
_CrtSetDbgFlag(_CRTDBG_ALLOC_MEM_DF| _CRTDBG_LEAK_CHECK_DF);
#endif
how to:dbghelp, dr.watson
如何捕捉程序异常
使用dbghelp获取调用堆栈
#inclu ...
揭秘淘宝286亿海量图片存储与处理架构
Nginx下配置FastCGI (Nginx FastCGI )
软件的架构与设计模式之层次原则
2010年InfoQ中文站高性能架构内容回顾:在路上
又拍网架构中的分库设计
http://www.allthingsdistributed.com/
Protocol Buffers
http://www.javabloger.com/article/couchdb-erlang-rabbitmq-red5-linux-poppen-architecture. ...
http://blog.csdn.net/awgn/archive/2006/01/05/571576.aspx
1. 下划线加大写字母开头的变量保留lua内部使用(全局变量)
2. false和nil为假,其他都为真,0和空串为真
3.字符串可包含0,字符串不可修改
4.~=不等于
5.(a and b) or c 类似C中的a ? b : c
6.for循环条件只在开始计算一次
7.
http://lucene.apache.org/
1. 基本概念
2.
1.裁剪
移植到CE平台上不需要所有的encoder/decoder, muxer/demuxer, protocol等, 通过configure可以确定需要的功能,裁剪后,可以确定哪些源文件是需要的.
2.代码移植
2.1 VC
将需要的源文件加入到VC工程。以下的工作就是不断的改编译不通过的地方。参考下面的链接。
2.2 CE
从VC移植到CE,问题不大,主要是少一 些runtime函数,参考以下链接。
3.代码在这里
参考:
制作FFmpeg SDK for MS Visual Studio
http://www.mirrors.docunex ...
Q:__security_check_cooki
A:C/C++ | 代码生成 | 缓冲区安全检查
-----------------------------------------------------------------------------------------------------------------------------------------------
Q:WINCE ARM Datatype misalignment
A:(*((const __unaligned uint16_t*)(p)))
(*((const __unaligned uint32_t*) ...
gcc:预处理语句--#include和#include_next
makefile详解[.d依赖文件]
如下的代码: gcc不会去链接没有用到的f1,而vc却要去做无聊的事
#define HAVE_F1 0
if (HAVE_F1){
f1();
}
mingw如何使用vc编译的dll
pexports one.dll > one.def
dlltool --dllname one.dll --def one.def --output-lib one.a
参考http://hi.baidu.com/opaq ...