Chuck's Blog

技术、读书与思考

概述

Yiruma is the stage name of Lee Ru-ma (born February 15, 1978), an internationally-known pianist and composer from South Korea.

Yiruma frequently performs at sold-out concerts in Asia, Europe and North America. His alma materKing's College London, England helped him gain European popularity and recognition. Among his most popular pieces are "River Flows in You", "Kiss the Rain" and "May Be". Yiruma's most popular album, First Love was released in 2001.
阅读全文 »

概述

InstallShield 创建安装日志

#define LOGFILE "SetupLog.txt"

详细内容

export prototype WriteLog(byval string);
function WriteLog(message)
STRING LogFolder, LogFileName, curDate, curTime;
NUMBER nvResult, nLogFileHandle;
begin
// specify the log folder
LogFolder = WINDISK + “\“;
if (FindFile(LogFolder, LOGFILE, LogFileName) < 0) then
OpenFileMode(FILE_MODE_APPEND);
CreateFile(nLogFileHandle, LogFolder, LOGFILE);
CloseFile(nLogFileHandle);
endif;

OpenFileMode(FILE_MODE_APPEND);
OpenFile(nLogFileHandle, LogFolder, LOGFILE);

GetSystemInfo(DATE, nvResult, curDate);
GetSystemInfo(TIME, nvResult, curTime);
message = curDate + “ “ + curTime + “ “ + message;
WriteLine(nLogFileHandle, message);

CloseFile(nLogFileHandle);
end;

阅读全文 »

概述

如果你或你的朋友使用MAC,与他共用过的USB Drive、网络共用磁盘上必然会出现很多令人讨厌的 .DS_Store 档案。究竟.DS_Store是什么?如何自动删及防止.DS_Store的档案生成?

操作步骤

阅读全文 »

概述

下面2张图是配置后的效果,本人为MD101,分辨率1280X800,其他的话自己拖动一下就好了

操作步骤

阅读全文 »

概述

         怀念下曾经的Gundum Seed,偶尔翻到一两张Freedom的靓照,激起无数场景的回忆,收集点靓照放blog收藏着先~

详细内容

阅读全文 »

概述

由于Oracle11G的新特性所致,经常会遇到使用sqlplus登陆oracle数据库时提示“ORA-28002: 7 天之后口令将过期”等情况。 在Oracle 11G 创建用户时缺省密码过期限制是180天, 如果超过180天用户密码未做修改则该用户无法登录,提示“ORA-28001: the password has expired”

操作步骤

阅读全文 »