自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

原创 2008 November 28th Friday (十一月 二十八日 金曜日)

   There is a prolog program.  Lets look at it again.%% exerciseassign(X, Y) -->    left(X), [:=], right(Y), [;].left(X, Start, End) :-    [ X | End ] = Start,    atomic(X).right(Y, Start, End) :-   

2008-11-28 20:52:00 537

原创 2008 November 27th Thursday (十一月 二十七日 木曜日)

   Today I modified a bug in my china language.  This bug made a mistaken to report a IO error when the lexical parser reached at the end of a file.I rewote the source of input stream.  I added two me

2008-11-28 20:51:00 706

原创 2008 November 26th Wednesday (十一月 二十六日 水曜日)

   I have to pay more attention to learn C# and ASP.Net.  I have a plan to develop a script programming language, it is called "china".Although it will be started to devlop tomorrow year, I found that

2008-11-28 20:50:00 628

原创 2008 November 25th Tuesday (十一月 二十五日 火曜日)

   I am going to implement a simply script language.  I am going to get some inspiration from lua.  However, the scripte will beeasier than lua.  The project will be start to launch at the begin of to

2008-11-28 20:49:00 602

原创 2008 November 24th Monday (十一月 二十四日 月曜日)

   I almost forgot how to implement a vararg function in C programming language.  There is a example.#include    /* minprintf: minimal printf with variable argument list */   void minprintf(char *fmt,

2008-11-28 20:48:00 659

原创 2008 November 21th Friday (十一月 二十一日 金曜日)

   I have to learn C# due to the need of my company.  If I resist it, may I be able to be fired.  Now, under the circumstanceof the economic crisis, losting job is not a good thing.  Both the altered

2008-11-28 20:47:00 770

原创 2008 November 20th Thursday (十一月 二十日 木曜日)

   I got a tetris game in Erlang from the Erlang offical site.  The example has some bugs, but it is interesting.%% start the timer at 750 ms%% then reduce by 6 ms every 10 seconds (i.e. 60 ms /min)%%

2008-11-28 20:45:00 736

原创 2008 November 19th Wednesday (十一月 十九日 水曜日)

   The below prolog program had puzzled me for days.  This morning I got a inspiration.  I made a mistake.%% exerciseassign(X, Y) -->    left(X), [:=], right(Y), [;].left(X, Start, End) :-    [ X | En

2008-11-28 20:43:00 704

原创 2008 November 18th Tuesday (十一月 十八日 火曜日)

   We will now tamper with three lines of code that are common to all the Windows programs weve created so far in this book. The codeis the standard message loop: while (GetMessage (&msg, NULL, 0, 0)

2008-11-28 20:42:00 724

原创 2008 November 17th Monday (十一月 十七日 月曜日)

   Erlang is an interesting programming language.  Every light process in erlang is separated, they must communicate with messages.  So, send and receive messagesis primitive operator in erlang, they

2008-11-28 20:41:00 662

原创 2008 November 14th Friday (十一月 十四日 金曜日)

   I found out a bug in the LZMA SDK for Java.  I dont know whether the author test it.  When I run it after compiled it, Java VM tell me an exception onout of memory.  I felt so strange.  How much m

2008-11-28 20:39:00 541

原创 2008 November 13th Thursday (十一月 十三日 木曜日)

   The WM_TIMER messages are similar to WM_PAINT messages in another respect. Windows does not keep loading up the message queue with multipleWM_TIMER messages. Instead, Windows combines multiple WM_T

2008-11-28 20:38:00 773

原创 2008 November 12th Wednesday (十一月 十二日 水曜日)

   A window procedure receives mouse messages whenever the mouse passes over the window or is clicked within the window,even if the window is not active or does not have the input focus. Windows defin

2008-11-28 20:37:00 667

原创 2008 November 11th Tuesday (十一月 十一日 火曜日)

 In the four keystroke messages (WM_KEYDOWN, WM_KEYUP, WM_SYSKEYDOWN, and WM_SYSKEYUP), the wParam message parameter contains thevirtual key code, and the lParam message parameter contains other infor

2008-11-28 20:36:00 748

原创 2008 November 10th Monday (十一月 十日 月曜日)

 For all mapping modes, Windows translates window (logical) coordinates to viewport (device) coordinates bythe use of two formulas,  xViewport = (xWindow - xWinOrg) * (xViewExt / xWinExt) + xViewOrg 

2008-11-28 20:34:00 670

原创 2008 October 31th Friday (十月 三十一日 金曜日)

 Saving Device Contexts  Normally when you call GetDC or BeginPaint, Windows gives you a device context with default values for all the attributes. Any changes you make to the attributes arelost when

2008-11-12 19:29:00 784 1

原创 2008 October 29th Wednesday (十月 二十九日 水曜日)

 %datalove(zhangxueyou, wanfei).love(zhangxueyou, zouhuimin).love(wanfei, xietinfen).love(zouhuimin, zhangxueyou).love(xietinfen, wanfei).love(xietinfen, zouhuimin).love(liudehua, zouhuimin).%ruleslov

2008-11-12 19:28:00 688

原创 2008 October 30th Thursday (十月 三十日 木曜日)

 WM_CREATE  WndProc receives this message while Windows is processing the CreateWindow function in WinMain. That is, when calling CreateWindow,Windows does what it has to do and, in the process, Windo

2008-11-12 19:28:00 696

原创 2008 October 24th Friday (十月 二十四日 金曜日)

   I am reading a book -- Doom Apocalypse.  This is a saga of the id software.  Two John are heroes in this story.  John Camark is a genius.John Romero is legend person.  From this story, I found out

2008-11-12 19:27:00 398

原创 2008 October 27th Monday (十月 二十七日 月曜日)

   I havent know how to love myself body.  From John Camark, from a Chinese medical book, from this cold, I known a mistake, which is usuallyignored by most of people, indugling in our desire.  To ge

2008-11-12 19:27:00 718

原创 2008 October 28th Tuesday (十月 二十八日 火曜日)

   I wrote a small program to make an orphan group processes.#include #include #include #include #include #include static void sig_hup(int);static void pr_ids(char *);int main(){  char c;  pid_t pid; 

2008-11-12 19:27:00 459

原创 2008 October 21th Tuesday (十月 二十一日 火曜日)

  Today a TV meeting will be held.  But we dont know when begin.  I hoped that it is not so later to cause our off-duty.These days the "repeat" have puzzled me.  How to use it?command_loop:-     repe

2008-11-12 19:26:00 476

原创 2008 October 23th Thursday (十月 二十三日 木曜日)

   The prolog is not hardly to learn.  I think that maybe I have learnt scheme language, so during learning prolog, I almost did notmeet a very different point.  I know why the scheme program language

2008-11-12 19:26:00 515

原创 2008 October 20th Monday (十月 二十日 月曜日)

  Theseday, it is still hot.  It is unusually in autum.  In this season, people are easy to catch a cold.repeat  repeat generates an infinite sequence of backtracking choices. The purpose is to repeat

2008-11-12 19:25:00 484

原创 2008 October 17th Friday (十月 十七日 金曜日)

   Lua is a powerful embedding script.  It has many features similar to scheme.  However, it is so simple.  In lua, the upvalue is an interesting type.  It accutally means the value from the up level.

2008-11-12 19:24:00 540

原创 2008 October 16th Thursday (十月 十六日 木曜日)

   The bug is found out.  But there is another phenonmenon can not be explaint well.  We have not the reality environment, so we cannot know what happen.  There is an interesting scheme program.(defin

2008-11-12 19:23:00 440

原创 2008 October 13th Monday (十月 十三日 月曜日)

   I will go on the unfinished project last week in this week.  The schedule will re-adjusted.  As a matter of fact, the projectdeveloping schedule have to be re-adjusted when met an important problem

2008-11-12 19:22:00 457

原创 2008 October 14th Tuesday (十月 十四日 火曜日)

  The source of user data dealing program was modified yesterday.  Today we will hold a meeting to review the modified sources inthat.  For convenience, I added some new functions, and modified some m

2008-11-12 19:22:00 454

原创 2008 October 15th Wednesday (十月 十五日 水曜日)

   This morning, hardly have I sitted down when a bug report mail have been gotten.  I have something to do now.  That may be a bug hiddingin the original version of user data dealing program.

2008-11-12 19:22:00 473

原创 2008 October 9th Thursday (十月 九日 木曜日)

   I read the story of the war of Troy.  I have watched the film of Troy too.  In Greek myth, the war had been keptfor ten years.  That was a war gods joined in and human took part into.  That was a w

2008-11-12 19:21:00 639

原创 2008 October 10th Friday (十月 十日 金曜日)

  A user data dealing program must be modified in according to the solution of large duplication.  I have changed a duplicatingprogram.  In SMS Directory environment, the program will load a configura

2008-11-12 19:21:00 491

原创 2008 October 7th Tuesday (十月 七日 火曜日)

   I can not use the skype.  I dont know why prohibit my permission.  Yesterday I wrote a small program, it can draw some lineson canvas at interval.  It looks a dancing elf.  But there is a little b

2008-11-12 19:20:00 407

原创 2008 October 8th Wednesday (十月 八日 水曜日)

   I can get a cold again.  Last night I can not get a good sleep.  These days I always think what is the happiness?  There are not a certain answer.  Every one has his or her own standard.  Thareis n

2008-11-12 19:20:00 477

原创 2008 October 6th Monday (十月 六日 月曜日)

  During this Nation Day I got a good rest.  It is scarce!  All relatives but my sister-in-law, her monther, and her father,they took her son dropped in at my grandmothers home.  Today I begin to wor

2008-11-12 19:19:00 430

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关注的人

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