摘要: C++著名程序库的比较和学习经验(STL.Boost.GUI.XML.网络等等)1、C++各大有名库的介绍——C++标准库2、C++各大有名库的介绍——准标准库Boost3、C++各大有名库的介绍——GUI4、C++各大有名库的介绍——网络通信5、C++各大有名库的介绍——XML6、C++各大有名库的介绍——科学计算7、C++各大有名库的介绍——游戏开发8、C++各大有名库的介绍——线程9、C++... 阅读全文
posted @ 2010-06-14 11:18 doujiu 阅读(512) 评论(0) 推荐(0) 编辑
摘要: debian lenny安装tomcat6出现错误libudev0:depends:udev - cooliron的日志 - 网易博客出现的错误如下:You might want to run apt-get -f install to correct these:the following packages have unmet dependencies:libudev0: Depends: u... 阅读全文
posted @ 2010-05-21 00:31 doujiu 阅读(290) 评论(0) 推荐(0) 编辑
摘要: Python translator使用实例1.string.maketrans设置字符串转换规则表(translation table)复制代码 代码如下:allchars = string.maketrans('', '')#所有的字符串,即不替换字符串aTob = string.maketrans('a','b')#将字符a转换为字符b2.translate函数进行字符串的替换和删除,第一个参... 阅读全文
posted @ 2010-05-20 11:12 doujiu 阅读(478) 评论(0) 推荐(1) 编辑
摘要: 阅读全文
posted @ 2010-05-12 18:23 doujiu 阅读(131) 评论(0) 推荐(0) 编辑
摘要: 将ubuntu 8.04 (server x86_64)的系统编码由英文改成中文,即由en_US.UTF-8改为zh_CN.GBK,_此中有真意 欲辨已忘言_百度空间1、运行locale命令查看现有的系统编码,我的运行结果如下:LANG=en_US.UTF-8LC_CTYPE="en_US.UTF-8"LC_NUMERIC="en_US.UTF-8"LC_TIME="en_US.UTF-8"LC_... 阅读全文
posted @ 2010-05-12 18:21 doujiu 阅读(379) 评论(0) 推荐(0) 编辑
摘要: 在run.sp1中# Create a runspace to run Hello World$rs = [Management.Automation.Runspaces.RunspaceFactory]::CreateRunspace()$rs.ApartmentState, $rs.ThreadOptions = “STA”, “ReuseThread”$rs.Open()$sb = [Sys... 阅读全文
posted @ 2010-04-19 20:37 doujiu 阅读(374) 评论(0) 推荐(0) 编辑
摘要: WPF & PowerShell – Part 1 ( Hello World & Welcome to the Week of WPF ) Welcome to the Week of WPF. During the next 7 days, I’ll help show you how you can use WPF and PowerShell together. P... 阅读全文
posted @ 2010-04-19 20:17 doujiu 阅读(658) 评论(0) 推荐(0) 编辑
摘要: 最近PowerShell官方blog出现了一系列关于WPF的文章, 我还没有看完, 下面将他们先列出来: WPF & PowerShell – Part 1 ( Hello World & Welcome to the Week of WPF ) WPF & PowerShell – Part 2 (Exploring WPF (and the rest of .N... 阅读全文
posted @ 2010-04-19 10:32 doujiu 阅读(419) 评论(0) 推荐(0) 编辑
摘要: Google Go:初级读本 Tags: Go, golang, google from http://www.infoq.com/cn/art... 阅读全文
posted @ 2010-04-08 19:04 doujiu 阅读(267) 评论(0) 推荐(0) 编辑
摘要: 正在学习python,除了语法优美,功能强大外,最看重的是它的可扩展性,可以嵌入到asp和其他一些开发语言中。对IIS配置了.py的扩展名解析,可以对.py的页面进行访问,但asp页面的python脚本仍然无法解析,网上查资料,说是要运行C:\Python25 \Lib\site-packages\win32comext\axscript\client\pyscript.py,才能把python解... 阅读全文
posted @ 2010-04-08 16:16 doujiu 阅读(1169) 评论(1) 推荐(0) 编辑