代码改变世界

阅读排行榜

System level Programming study(1)

2006-04-08 11:09 by Jeff, 736 阅读, 收藏,
摘要: 算是C++的复习了... 阅读全文

socket tutorial

2005-12-29 12:34 by Jeff, 723 阅读, 收藏,
摘要: 前一段时间看了IBM developerWork上的一篇关于socket的tutorial,由浅入深的实现了server-client程序,现在这里整理一下。 阅读全文

Today I will be master of my emotions

2006-07-23 21:15 by Jeff, 721 阅读, 收藏,
摘要: good article..... 阅读全文

RTP的root task接收kernel mode EVENT的解决方法

2011-01-28 17:42 by Jeff, 710 阅读, 收藏,
摘要: 这两天一直被这个问题block.Vxworks的文档上没有提及Vxworks的RTP的root task如何接收来自kernel mode的event.这里的root rask是指RTP spwan后自动生成的task.据说其他有些公司,也是用这个方法workaround的。目前windriver公司表示无奈。首先搞清楚1个概念: RTP只能看到RTP的PID,不能看到RTP的RTP_ID.1. ... 阅读全文

POJ1019

2012-01-17 16:41 by Jeff, 704 阅读, 收藏,
摘要: #include "stdio.h"#include #define SUM_MAX1 45#define SUM_MAX2 9045#define SUM_MAX3 1395495#define SUM_MAX4 189414495char pre45bits [46]={"112123123412345123456123456712345678123456789"};unsigned int ... 阅读全文

I will act now

2006-07-24 22:19 by Jeff, 698 阅读, 收藏,
摘要: I will act now....come on,come on !!! 阅读全文

创建java的可执行文件

2006-03-20 21:02 by Jeff, 691 阅读, 收藏,
摘要: Jar工具的作用是java程序中若干文件联合压缩到一个Jar包里面。 使用jar工具的时候用到的三类文件: 阅读全文

c语言----memcpy

2011-06-01 16:43 by Jeff, 676 阅读, 收藏,
摘要: 搜索了网上关于,memcpy的使用方法,很多都提到,目标地址和源地址不能有重复.一般目标地址和源地址有重复时使用memmov.但是我们的环境中即使目标地址和源地址重复依然可以用memcpy.网上说VC也是不支持地址重复,但是我用codeblock可以使用,用的是mingw32.copy不能有重复的内存实现: void * __cdecl memcpy (void * dst,const void ... 阅读全文

4个月

2012-07-12 13:54 by Jeff, 674 阅读, 收藏,
摘要: 4个月没写任何东西 阅读全文

Schema的数据扩展类型

2006-04-26 11:11 by Jeff, 667 阅读, 收藏,
摘要: Schema中共有23种扩展数据类型,包括bin.base64、bin.hex、boolean、char、date、dateTime、dateTime.tz、fixed.14.4、float、int、number、time、time.tz、i1、i2、i4、r4、r8、ui1、ui2、ui4、uri、uuid,已经可以覆盖相当广泛的应用: ... 阅读全文

生活的理解

2006-11-01 23:11 by Jeff, 652 阅读, 收藏,
摘要: 变得庸俗一点,会变得快乐一点 阅读全文

RTP affinity

2011-08-24 12:59 by Jeff, 647 阅读, 收藏,
摘要: 以下代码证明: RTP affinity inherits from the task that created it.创建一个RTP,代码: #include "taskLib.h"int main(){ while(1){ taskDelay(1); } taskSuspend(taskIdSelf());}创建一个VIP,在usrAppInit.c中调用myroot().myr... 阅读全文

clearcase不能添加文件

2010-12-28 19:09 by Jeff, 645 阅读, 收藏,
摘要: 今天遇到一个问题,想在已有的Vob里增加一个文件,相当于clearcase的element. 在增加过程中遇到没有权限的问题. 实际上载clearcase增加element过程中,会有一个文件check out的过程。 所以config spec一定要支持当前新增文件的check out. Normally the config spec looks like this: ... 阅读全文

Round-up of 30 AJAX Tutorials

2006-03-29 08:43 by Jeff, 640 阅读, 收藏,
摘要: There are quite a few AJAX demos and examples on the web right now. While these are invaluable to learning AJAX, some people need a bit more information than just a raw piece of code. In todays environment there are many ways to learn AJAX including, books, classes, conferences, workshops and tutorials. Of these the only one that is free and accessible to everyone are web-based tutorials. The following is a list of what I consider the be the best and most helpful AJAX tutorials that I've found o 阅读全文

Team Building

2006-12-18 22:37 by Jeff, 638 阅读, 收藏,
摘要: 上个星期五部门里一起去阳澄湖吃大闸蟹了,师出有名,Team Building. 阅读全文

Debugging in real-time embedded system(1)

2011-05-16 15:36 by Jeff, 633 阅读, 收藏,
摘要: For the recent months, I was always focus on debugging in the real-time system Vxworks, and off course wasted too much time on some bugs. These bugs were tricky but all turned out to be simple after f... 阅读全文

挪威的森林

2006-11-21 23:41 by Jeff, 630 阅读, 收藏,
摘要: 传说中进去之后永远无法出来的森林。 阅读全文

程序员和美工的配合问题(转)

2006-05-02 22:21 by Jeff, 630 阅读, 收藏,
摘要: 美工与程序员,好像很有启发... 阅读全文

C语言常用宏定义技巧

2011-11-28 14:13 by Jeff, 628 阅读, 收藏,
摘要: 1. 防止一个头文件被重复包含#ifndef COMDEF_H#define COMDEF_H2. 重新定义一些类型,防止由于各种平台和编译器的不同,而产生的类型字节数差异,方便移植typedef unsigned long int uint32; /* Unsigned 32 bit value */typedef unsigned short uint16; ... 阅读全文

关于文学(一)

2007-04-24 00:13 by Jeff, 627 阅读, 收藏,
摘要: 这样的回忆并无什么意义,只是我怕自己太健忘了...有一天会像那些女人忘记我一样 忘记文学.... 阅读全文
上一页 1 2 3 4 5 6 7 8 9 ··· 11 下一页