2013年2月28日

摘要: 27-Feb-13Trigger syntaxcreate [or replace] trigger [schema .] trigger_identifier{ before | after | instead of }{ dml_event_clause| { ddl_event [or ddl_event]... | database_event [or database_event]... } on { [schema .] schema | database }}[when ( condition ) ]{ pl/sql_block | call_procedure_state... 阅读全文
posted @ 2013-02-28 12:03 operation_master 阅读(194) 评论(0) 推荐(0) 编辑

2013年2月26日

摘要: close examination combined with patience, and you will become an expert in the field.Oracle database 11g architecture------ 阅读全文
posted @ 2013-02-26 16:03 operation_master 阅读(118) 评论(0) 推荐(0) 编辑

2013年1月30日

摘要: 引言:Bootloader是在操作系统运行之前执行的一段小程序。通过这段小程序,我们可以初始化硬件设备、建立内存空间的映射表,从而建立适当的系统软硬件环境,为最终调用操作系统内核做好准备。对于嵌入式系统,Bootloader是基于特定硬件平台来实现的。因此,几乎不可能为所有的嵌入式系统建立一个通用的Bootloader,不同的处理器架构都有不同的Bootloader。Bootloader不但依赖于CPU的体系结构,而且依赖于嵌入式系统板级设备的配置。对于2块不同的嵌入式板而言,即使它们使用同一种处理器,要想让运行在一块板子上的Bootloader程序也能运行在另一块板子上,一般也都需要修改Bo 阅读全文
posted @ 2013-01-30 22:51 operation_master 阅读(371) 评论(0) 推荐(0) 编辑

2013年1月17日

摘要: 1 void insert_sort(int arr[], int len) 2 { 3 int i, j; 4 int key; 5 6 for (j=1; j<len; j++) { 7 key = arr[j]; 8 i = j - 1; 9 while (i >= 0 && arr[i] > key) {10 arr[i+1] = arr[i];11 i = i - 1;12 }13 arr[i+1] = key;14 }1... 阅读全文
posted @ 2013-01-17 14:08 operation_master 阅读(127) 评论(0) 推荐(0) 编辑

2012年12月14日

摘要: Multi-Statement Macros It's common to write a macro that consists of multiple statements. For example, a timing macro:#define TIME(name, lastTimeVariable) NSTimeInterval now = [[NSProcessInfo processInfo] systemUptime];if(lastTimeVariable) NSLog(@"%s: %f seconds", name, now - lastTimeV 阅读全文
posted @ 2012-12-14 11:28 operation_master 阅读(349) 评论(0) 推荐(1) 编辑

2012年12月3日

摘要: /* binary tree node definition */struct tnode{ char *word; /* text at this node */ int count; /* occurrence of this text */ struct tnode *left; /* pointer to next node in the tree */ struct tnode *right; /* pointer to right child */} 阅读全文
posted @ 2012-12-03 11:34 operation_master 阅读(124) 评论(0) 推荐(0) 编辑

2012年8月21日

摘要: convert disk h: to ntfsconvert h:/fs:ntfsdiskpartlist volumeshutdown 定时关机用法: shutdown [-i | -l | -s | -r | -a] [-f] [-m \computername] [-t xx] [-c "comment"] [-d up:xx:yy]没有参数 显示此消息(与 ? 相同)-i 显示 GUI 界面,必须是第一个选项-l 注销(不能与选项 -m 一起使用)-s 关闭此计算机-r 关闭并重启动此计算机-a 放弃系统关机-m \computername 远程计算机关机/重启动/ 阅读全文
posted @ 2012-08-21 21:49 operation_master 阅读(226) 评论(0) 推荐(0) 编辑

2012年8月17日

摘要: EXIF: exchangeable image file format 阅读全文
posted @ 2012-08-17 17:53 operation_master 阅读(103) 评论(0) 推荐(0) 编辑
摘要: ARM工具链中的概念——EABIhttp://blog.csdn.net/flagyan/article/details/6166107EABI(Embedded Application Binary Interface),嵌入式应用程序二进制接口。ABI的定义ABI描述应用程序与操作系统、应用程序与库、应用程序的组成部分之间的低层接口。ABI允许编译好的目标代码在使用兼容ABI的系统中无需改动就能运行。EABI的具体定义Codesourcery上有一个这样的QA:https://support.codesourcery.com/GNUToolchain/kbentry32QuestionWh 阅读全文
posted @ 2012-08-17 09:10 operation_master 阅读(272) 评论(0) 推荐(0) 编辑

2012年8月16日

摘要: 转载请注明出处:http://blog.csdn.net/fzh0803/archive/2011/03/26/6279995.aspx去年做了launcher相关的工作,看了很长时间。很多人都在修改launcher,但还没有详细的文档,把自己积累的东西分享出来,大家一起积累。这份源码是基于2.1的launcher2,以后版本虽有变化,但大概的原理一直还是保留了。一、主要文件和类1.Launcher.java:launcher中主要的activity。2.DragLayer.java:launcher layout的rootview。DragLayer实际上也是一个抽象的界面,用来处理拖动和对 阅读全文
posted @ 2012-08-16 11:17 operation_master 阅读(161) 评论(0) 推荐(0) 编辑

导航