火烧径-make life easier
来源: BlogBus 原始链接: http://www.blogbus.com:80/blogbus/blog/index.php?blogid=18362&cat=6 存档链接: https://web.archive.org/web/20041104050503id_/http://www.blogbus.com:80/blogbus/blog/index.php?blogid=18362&cat=6
火烧径-make life easier default (14) soft (6) db (3) java (10) workflow (2) develop (8) literature (6) shark非官方FAQ (3) 2004 年 11 月 Sun Mon Tue Wen Thu Fri Sat 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 最新文章 Avoid Must Thinking 拼音加加重出江湖? 以代理的方式集成Apache和Tomcat Google Desktop Search,个人知识管理的好东东 申请了美味书签 内心的平静(摘录) jboss电子书下载 apache与tomcat整合注意问题 alumni:上chinaren校友录的好帮手 当Hibernate碰到Tomcat的SecurityManager 最新评论 mayacao : 我也想要一个gmai. Ivan Chen : 欢迎转载:-). asiapan : 很有道理,我转啦. lujinccs : 我的邮箱:lujinc. lujinccs : 我硬盘撑不了多久. lujinccs : 我硬盘撑不了多久. eeeeecccc : 我想要一个gmail,. Ivan Chen : 呵呵,客气了。dr. dragoning : 呵呵,我也讨一个. Ivan Chen : 以上朋友的邀请已. 链接 我的美味书签
猴网论坛 肝胆相照 XML资料 XML软件 经典桌面资源站 昂秀英语_培养英语直觉! 联系我 天气预报 存档 2004/06/01/-2004/07/01 2003/01/01/-2004/06/01 2004/08/03/-2004/09/02 2004/09/01/-2004/10/02 2004/07/01/-2004/08/02 04-09-11 09:42 - [ develop ] 今晚才真正发现p2p的威力,用emule找电子书真是太容易了。前一阵子看到有位大哥近期看的十本书的列表,我也想找来看看,然而在国内的网站上只找到三本。今晚心血来潮,突然想用emule来搜索看看,结果发现剩下的七本都找得到。看来以后找资料又多了一种方式了:先去Amazon看看大家对新书的评价,再用emule来找。 下面就是那位大哥看的书列表:
- Expert One-on-One J2EE Development without EJB by Rod Johnson, Juergen Hoeller
- Tiger: A Developer's Notebook By David Flanagan, Brett McLaughlin
- Better, Faster, Lighter Java By Bruce A. Tate, Justin Gehtland
- Hibernate in Action By Christian Bauer, Gavin King
- Enterprise Service Bus By Dave Chappell
- Programming Jakarta Struts, 2nd Edition By Chuck Cavaness
- Tapestry in Action By Howard M. Lewis Ship
- Hibernate A Developers Notebook By James Elliot
- JavaServer Faces By Hans Bergsten
- J2EE Open Source Toolkit By John T. Bell, James Lambros, Stan Ng 阅读全文 | 评论(0) | 引用(0) fireshort @ 04-09-11 09:42 | 编辑 04-08-26 02:31 - [ develop ] 1、将php安装目录加到path环境变量中; 2、将php.ini-recommended改名为php.ini 3、 Installing as an Apache module 在Apache的httpd.conf配置文件中插入下面两行(将c:/php替换为你的php的安装目录) LoadModule php5_module "c:/php/php5apache2.dll" AddType application/x-httpd-php .php
configure the path to php.ini
PHPIniDir "C:/php" 4、测试安装成功后, 修改extension_dir (在php.ini中),并 打开要使用的extension 阅读全文 | 评论(0) | 引用(0) fireshort @ 04-08-26 02:31 | 编辑 04-08-14 09:37 - [ develop ] You can download it at http://www.blogbus.com/blogbus/blog/userfiles/18362/1092446039.rar It is made by Ram. Fabulous!Enjoy it! 阅读全文 | 评论(0) | 引用(0) fireshort @ 04-08-14 09:37 | 编辑 04-07-14 04:41 - [ develop ] 一段关于Framework与Library的区别的很好的解释。 Additionally, a framework and library differ in the sense that the former is the latter turned inside out. What I mean is that if you use a library, the calling is done by the client. The calls are distinct and they do what they claim to be doing. In a framework, there are callbacks. Because there are callbacks, one should expect some kind of function pointers, virtual functions or interfaces. In fact, a framework uses polymorphism to let you add your object to the system already in place. A framework, then,is nothing but a structure with most of the plumbing already provided.Since a framework does not know what instance of objects will be added, it relies on the client objects adhering to certain interfaces. Because J2EE consists of callbacks (servlets -> service(Request, Response)), EJBs (ejbLoad, ejbStore, all container callbacks) it is a framework. On the other hand C consists of libraries because the client calls and the library function/method just does its stuff (e.g. atoi or printf in C). In a framework the call sequence is not in your control while in a library, it is. A good example other than above is Swing where you provide certain methods (e.g. getPreferredSize(), getMinimumSize() etc) and you wait to be called. Also, libraries don't maintain state. Frameworks do. Because a framework is a structure (while libraries are building blocks)and because a structure is difficult to change, bad design of the framework can quickly become difficult to use. An example is MFC framework which while working through callbacks, has a top heavy (meaning the base class consists of most methods) class and this makes it cumbersome to use. HTH, Regards, Kamesh 阅读全文 | 评论(0) | 引用(0) fireshort @ 04-07-14 04:41 | 编辑 04-06-16 06:47 - [ develop ] 方法一出自: http://codechina.net/dispbbs.asp?boardID=6&ID=9611 如何读取CPU的序列号 string szCPUInfo = ""; ManagementClass cimobject = new ManagementClass("Win32_Processor"); ManagementObjectCollection moc = cimobject.GetInstances(); foreach(ManagementObject mo in moc) { szCPUInfo = mo.Properties["ProcessorId"].Value.ToString(); MessageBox.Show(szCPUInfo); } 要完成上述代码的编译,必须添加System.Management.dll程序集,命名空间是System.Management。 方法二出自QQ群:279886 47725547(appleblossom) 17:03:46 还有一个方法,通过注册表 47725547(appleblossom) 17:04:34 前几日做了一个类似的,获取CPU频率等的硬件信息 46673459(钟书林) 17:05:35 对 注册表里面也有记录的,你直接获取就行了 47725547(appleblossom) 17:07:20 RegistryKey Rkey = Registry.LocalMachine; Rkey = Rkey.OpenSubKey("HARDWARE\DESCRIPTION\System\CentralProcessor\0"); 建议采用方法一。 阅读全文 | 评论(0) | 引用(0) fireshort @ 04-06-16 06:47 | 编辑 04-06-15 02:10 - [ develop ] yahoo2mbox是一段perl的脚本,可以将Yahoo! Groups整个组的内容保存为本地的mbox格式,查找起来应该方便很多。 第一次看perl的程序,真是天书啊,这辈子可能都不会去学perl的编程吧? 阅读全文 | 评论(0) | 引用(0) fireshort @ 04-06-15 02:10 | 编辑 03-08-09 08:52 - [ develop ] 今天编译Hlp文件的时候又发现一个非常奇怪的现象:同样的文件,在win2000下编译得到的Hlp文件大小为4.83M,而在Win98下编译只有832k!真是想不到啊。不知道这是什么原因呢。不过倒可以作为一个技巧来使用。 阅读全文 | 评论(0) | 引用(0) fireshort @ 03-08-09 08:52 | 编辑 03-08-08 08:24 - [ develop ] 以前认为“ HelpDeco ”+“ RtfConverter ”+“ Ms Help Workshop ”是反编译、制作多语言版本Hlp文件的梦幻组合,最近才发现用这种方法做出来的Hlp文件在繁体Win98下可以正常显示(rtf文件不能正常显示),而在繁体Win2k下却是乱码。(很奇怪,呵呵)。所以今天就改用Word的繁简转换将简体的rtf转换为繁体,再生成Help文档,终于在Win98、Win2k下都正常显示了。不过又发现一个奇怪的问题:这种繁体Hlp文件居然在我的简体Win2k下都可以正常显示(在另一个同事的简体2000下根本不让打开),莫非我的电脑也有了智能?:) 阅读全文 | 评论(0) | 引用(0) fireshort @ 03-08-08 08:24 | 编辑 分页: [1] 模板设计: zhou