- 浏览: 50204 次
- 性别:
- 来自: 北京
最新评论
-
ghostprayer:
看完LZ的帖子,个人不大同意LZ的看法,不知道LZ对重构有怎么 ...
对敏捷的一点思考 ---- 敏捷是强调结果的 -
blackskuller:
几个噩梦般的经验后,我深深感觉到
实际项目上完全敏捷是危险的. ...
对敏捷的一点思考 ---- 敏捷是强调结果的 -
anchor:
敏捷不是包治百病。小团队 小项目 高风险 需求变化频繁 ...
对敏捷的一点思考 ---- 敏捷是强调结果的 -
shunzhao:
我觉得不是这么简单的
别人JIT式的编程和面向信息流的架构 ...
对敏捷的一点思考 ---- 敏捷是强调结果的 -
dch1287:
所以敏捷需要所有团队成员都是人精一级 至少是比较聪明的一类
并 ...
对敏捷的一点思考 ---- 敏捷是强调结果的
文章列表
1) 定义一个靠右对其的图片。关键是靠右,以及padding-right: 8px.boxHeader{ background-image: url(../img/blue_top_900x27.png); background-repeat: no-repeat; background-x-position: right; background-y-position: top; background-color: #e8e8e8; padding-right: 8px; background-attachment: scroll; background-position: right top; ...
- 2008-11-13 06:31
- 浏览 746
- 评论(0)
一直很抵触CSS,因为总觉得无章可循,没有能力驾驭。但是看到别人漂亮的page也总是手痒、心痒。
实战了一下。记之。
1)效果:有条蓝色的底线; 内容距离Border 10px。
.header{ background-color:#FFFFFF; border-bottom-width: 3px; border-bottom-style: solid; border-bottom-color: #52a9d4; padding: 10px;}2)在h1中嵌入了<a>。因为h1存在默认的margin, padding,此处需要清除之。float很明白。.headerCon ...
- 2008-11-12 03:24
- 浏览 709
- 评论(0)
使用VS2005运行TCPMP。1)打开模拟器,设置共享目录到.\armv4dbg,这样\Storage Card就映射到了可行文件。
2)修改player_ce3项目的调试、部署属性,将%CSIDL_PROGRAM_FILES%\player_ce3\player_ce3.exe替换成\Storage Card\player_ce3.exe。 关于CSIDL, MSDN说得明白:CSIDL (constant special item ID list) values provide a unique system-independent way to identify special fo ...
- 2008-10-28 15:14
- 浏览 1506
- 评论(0)
typedef struct datadef{ int No; int Type; int Flags; int Format1; // DF_MINMAX:min, DF_ENUMSRING:string class, DF_ENUMCLASS:node class, nodeclass int Format2; // DF_MINMAX:max const tchar_t* Name; int Class; int Size;} datadef;其中:int NO 数据唯一 ...
- 2008-10-28 15:12
- 浏览 1052
- 评论(0)
common\Stream.h中定义了 struct stream// read from streamtypedef int (*streamread)(void* This,void* Data,int Size);// read from stream to blocktypedef int (*streamreadblock)(void* This,block* Block,int Ofs,int Size);// seektypedef filepos_t (*streamseek)(void* This,filepos_t Pos,int SeekMode);// write t ...
- 2008-10-23 09:59
- 浏览 658
- 评论(0)
使用OutputDebugString() 但是只能使用在debug模式下用debug view来看代码。自己本想写个简单的文件日志。但发现FTPMP中已然有了。FTPMP自己封装了debug功能的代码,在Platform_win32.c中。void DebugMessage(const tchar_t* Msg,...)。 C也这么多年了,不知道有没有向log4j那样的好东西。
使用wcstok() 从unicode字符串中分割字串时总是出错。
弹出对话框很简单了。 MessageBox(NULL, Content, Title, MB_OK|MB_SETFOREGROU ...
- 2008-10-22 09:56
- 浏览 804
- 评论(0)
以下是在emulator下调试时的代码路径。
int WINAPI WinMain(HINSTANCE hInstance,HINSTANCE hParent,TCHAR* Cmd,int CmdShow){
Context(); HMODULE Module; SetCursor(LoadCursor(NULL, IDC_WAIT)); Module = Load(T("interface.plg")); if (Module) { v ...
- 2008-10-21 08:25
- 浏览 1210
- 评论(0)
写得很好、很有用,不得不转载。http://blog.csdn.net/navi_dx/archive/2007/11/14/1885780.aspx
去年年底帮别人做一个项目,了解了一下TCPMP,觉得这个软件的结构写得很好就做了些记录,今天偶然翻出来看看觉得可能对正在研究这个软件的人 ...
- 2008-10-20 06:58
- 浏览 2832
- 评论(0)
Blog Images未命名.jpg未命名_thumb.jpg未命名2.jpg未命名2_thumb.jpgcscf-realtime-log
- 2008-10-17 09:40
- 浏览 632
- 评论(0)