自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(20)
  • 资源 (15)
  • 收藏
  • 关注

原创 June 29th Friday (六月 二十九日 金曜日)

  The Unix domain protocols are not an actual protocol suite, but a way of performingclient/server communication on a single host using the same API that is used for clientsand servers on different ho

2007-07-14 11:46:00 815

原创 June 28th Thursday (六月 二十八日 木曜日)

   In ARM pseudo-instruction, some can be used to allocalte and initialize a block of memory units.  DCB     -  to allocate a block of "byte" type memory units and to initialize them by specified da

2007-07-14 11:44:00 796

原创 June 27th Wednesday (六月 二十七日 水曜日)

  SWI  SWI{condition} 24bits-immediate-value  The "SWI" is used to make a soft interrupt, so usr application can invoke some system calls.The 24bits-immediate-value is specified the type of system c

2007-07-14 11:42:00 675

原创 June 26th Tuesday (六月 二十六日 火曜日)

(definetree->generator  (lambda(tree)    (let((caller’*))      (letrec       ((generate-leaves  (lambda()    (letloop((treetree))     (cond((null?tree)’skip)   ((pair?tree)    (loop(cartree))    (loop

2007-07-14 11:40:00 761

原创 June 25th Monday (六月 二十五日 月曜日)

   At ARM chip when more than one exception occur, how to deal with them? Or is therea sequence of deal with exceptions?  Yes, there is a priority of deal with that similarsitutation.  There is a ta

2007-07-14 11:39:00 945

原创 June 22th Friday (六月 二十二日 金曜日)

 (defun zip-list (al bl)  (if (not (equal (length al) (length bl))) nil    (progn      (let ((ls nil)) (while (not (null al))   (setq ls (cons (cons (car al) (car bl)) ls))   (setq al (cdr al))   (set

2007-07-14 11:37:00 599

原创 June 21th Thursday (六月 二十一日 木曜日)

  Modify, modify, modify again.  This mission, we spent more time in modifing codes,took more time to modify the format codes and comments.  This project will be delayeda week.  Modify!  It make us

2007-07-14 11:36:00 676

原创 June 20th Wednesday (六月 二十日 水曜日)

  I am going to put scheme away for time.  I found MIT modify its curriculum forthe interpretion of computer program, they substituted python language for schemelanguage.  Python is a interesting an

2007-07-14 11:33:00 730

原创 June 19th Tuesday (六月 十九日 火曜日)

  Yesterday I felt my body is not mine.  I think that is why I nearly do exercise.These days my Japanese learning plan is delayed.  I must finished the first text booksas soon as I can.  And then, I c

2007-07-14 11:30:00 782

原创 June 15th Wednesday (六月 十五日 金曜日)

  Tomorrow our department will make a trip to Yanzhou.  However, the progress ofthis mission was procastinated too later.  I am afraid, not I felt that will bea fact that we can not finished our proje

2007-07-14 11:29:00 707

原创 June 14th Thursday (六月 十四日 木曜日)

R14_ = Return LinkSPSR_ = CPSRCPSR[4:0] = Exception Mode NumberCPSR[5] = 0  ; when run at ARM modeIf == Reset or FIQ then   CPSR[6] = 1  ; when FIQ occur, disable new coming FIQ exception   CPSR[7] =

2007-07-14 11:28:00 828

原创 June 13th Wednesday (六月 十三日 水曜日)

  At Thumb mode we can use the registers is just a sub-set of those register at ARM mode.  We canuse eight registers(R0~R7), PC, SP, LR and CPSR.  At once at every privillege mode there are a groupof

2007-07-14 11:24:00 946

原创 June 12th Tuesday (六月 十二日 火曜日)

  Today we got a critique from our Janpanese customer.  He said, our coded source can not enterthe review phase.  It means there are many incorrect comment.  When I wrote the codes for Janpanese,I fel

2007-07-14 11:22:00 872

原创 June 11th Monday (六月 十一日 月曜日)

(rule (append-to-form () ?y ?y))(rule (append-to-form (?u . ?v) ?y (?u . ?z))      (append-to-form ?v ?y ?z));;; Query input:(append-to-form (a b) (c d) ?z);;; Query results:(append-to-form (a b) (c

2007-07-14 11:21:00 689

原创 June 8th Friday (六月 八日 金曜日)

   The purpose of R14 in ARM chip.  The R13 register usually is used to save a stack point.The R14 register is used to save a copy of content of R15 which is PC register.  Before calling a subroutin

2007-07-14 11:19:00 585

原创 June 7th Thursday (六月 七日 木曜日)

   How to use a fender in "syntax-case" form?  I got a example today.;; utility for defining ~foo but make it look like #  (define-syntax (define* stx)    (syntax-case stx ()      [(_ ~name val) (id

2007-07-14 11:17:00 688

原创 June 6th Wednesday (六月 六日 水曜日)

 A hash table is a very fast kind of lookup table, somewhat like analist in that it maps keys to corresponding values.  It differs from analist in these ways:   * Lookup in a hash table is extremely

2007-07-14 11:12:00 620

原创 June 5th Tuesday (六月 五日 火曜日)

  -- Function: eval form     This is the basic function evaluating an expression.  It evaluates     FORM in the current environment and returns the result.  How the     evaluation proceeds depends on

2007-07-14 11:11:00 630

原创 June 4th Monday (六月 四日 日曜日)

  interactive     Declare to the interpreter that the function can be used     interactively.  This special form may be followed by a string with     one or more parts that pass the information to t

2007-07-14 11:08:00 825

原创 June 1th Friday (六月 一日 金曜日)

  Here is a function which can work out the PI value.(define (item n)  (cond ((= n 0) 1)        ((> n 0)         (let ((r (/ 1 (+ 1 (* 2 n)))))           (if (> (remainder n 2) 0)               (- 0

2007-07-14 11:06:00 803

wxSnake -- 用wxWidgets开发的贪吃蛇游戏

wxSnake -- 用wxWidgets开发的贪吃蛇游戏。算是个Demo吧。比较粗陋,自己写着玩的。

2011-05-30

wxCalc -- wxWidgets开发的计算器

用wxWidgets开发的一个小计算器。比较简陋。

2011-05-30

wxMine 扫雷小游戏

学习wxWidgets后,写的一个扫雷小游戏。 还有些bug,玩起来可能会不爽。 有问题可联系我。[email protected] 网上扫雷的程序很多。也有用wxWidgets写的。 但是代码国内不好下,于是自己写了一个满足自己兴趣。 这个游戏简单,代码没什么技术。我只是尽量用规范,易懂的风格写。 玩得时候要wxmsw28u_gcc_custom.dll库。你可以把它放到系统目录下。 由于是用Code::Block开发环境开发的,打开项目时注意。 如果在可视化环境中编辑了窗口或控件,它会自己修改代码。 另外,程序的图标一直无法修改,原因现在不明。 Linux或别的操作系统下尚未测试过。

2011-03-19

PLSQL Developer 8.0.3.1510 中文注册版下载

PLSQL Developer 8.0.3.1510 中文注册版下载 Enhancements in PL/SQL Developer 8.0.3 ====================================== * Fixed Access Violation when dragging & dropping an empty item in the Logon History * Fixed Access Violation in the File Browser when adding a new folder * Order of items after "Open All Items" from a project was not correct * Project Groups could be removed after doing project options * Find would not work correctly with a column selection scope * Edit > Selection > Apply Syntax Case/Color Mark/Comment did not work for Column Selections * Describe Window now also shows the view comments in the header * Export Tables would change nls_date_format in single session mode and dual session mode * Auto Replace now supports Undo to continue with "non replaced" text * Debugger can now show PL/SQL Table elements indexed by a string * Object Browser could sometimes perform "double-click" action when using the cursor right key * Unicode characters from DBMS_Output were not displayed correctly * Right-clicking on an empty area in the Window List did not show the popup menu * Highlighted search hits are now cleared when editing the text * Fixed drawing performance issue with Diagram Window in zoomed mode * DDE now remains enabled for Windows Explorer open command (DisableDDE parameter to revert) * PL/SQL Developer main window could not always be minimized * To-Do list would not always be updated when switching editors in a Program Window * Case expressions could cause incorrect "Unused assignment" hints * File Browser would not show all files for large directories (>1000 files) * Support Info showed OCI Version 11.1 on a 10.2 client * Export Tables tool will limit the line size to 2400 characters in SQL Inserts format for SQL*Plus compatibility * Reports did not always calculate subtotals correctly * Compiler Hints could not be enabled/disabled

2010-06-25

plsqldev v7.14

PL/SQL Developer Version 7.14 是一种集成的开发环境,专门用于开发、测试、调试和优化Oracle PL/SQL存储程序单元,比如触发器等。

2010-06-25

Visual C++ 实用图像处理专业教程中的Imgcx学习版

Visual C++ 实用图像处理专业教程一书中框架.

2010-04-07

libevent v0.1

libevent的婴儿时期哦。个人觉得还是很简单实用的。对你研究nginx,lighttpd的事件会有帮助。要求不那么高的server中足够了。通常也没必要用太高版本的。当然自己也可以写一个。

2009-11-26

Nginx 源码分析笔记

Nginx 源码分析笔记 自己的源码分析笔记,未完。

2009-11-11

Programming Erlang

Programming Erlang PDF author: Joe Armstrong

2009-11-11

Visual C ++ 6.0 的MFC类库详解

Visual C ++ 6.0 的MFC类库详解。VC开发者常用的手册。

2009-07-29

VC++6.0技术内幕第五版

VC技术内幕第五版。不多说了。官方的经典书呀。

2009-07-29

From CPP to COM

关于COM的英文原版。不太厚。讲C++与COM之间的技术应用关系。

2009-07-29

Inside ATL

深入ATL英文原版。ATL的经典书,不用多说了吧?

2009-07-29

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除