Icebird

Delphi/C# - My favorite programming language

导航

04 2007 档案

Reflective Arcade Installer Unwrapper
摘要:Intro:http://www.reflexive.com/是专业的小游戏发行商, 不过其发布的游戏都是用RAInstallerWrapper给重新包装了一下, 因此我今天特地花了几小时用Delphi 2007写了一个程序来还原成原来的安装包(通常都是用的Inno Setup)RAIU, RA Installer Unwrapper. Version 0.1a (2007-5-8) by Ice... 阅读全文

posted @ 2007-04-29 21:30 Icebird 阅读(1688) 评论(7) 推荐(0)

24点计算器(console program including C# source)
摘要:Description:没别的办法,只有把各种可能都计算一遍,然后得到能计算出24的表达式,并且尽可能的排除掉重复的表达式假设有a b c d四个数,操作符用op代替,则有(a op b) op (c op d) 或 ((a op b) op c) op d 两种形式程序用C# 2.0开发,支持计算 8 / (3 - 8 / 3) = 24 这种这个程序最伤脑筋的地方就是如何去掉重复的结果,我自己... 阅读全文

posted @ 2007-04-28 00:24 Icebird 阅读(3425) 评论(0) 推荐(0)

Study 《Perl Cookbook》
摘要:1: 子串截取 $value = substr($string, $offset, $count); $value = substr($string, $offset); substr($string, $offset, $count) = $newstring; substr($string, $offset, $count, $newstring); # 与上一条语句等价 sub... 阅读全文

posted @ 2007-04-26 00:23 Icebird 阅读(406) 评论(0) 推荐(0)