摘要:
C++著名程序库的比较和学习经验(STL.Boost.GUI.XML.网络等等)1、C++各大有名库的介绍——C++标准库2、C++各大有名库的介绍——准标准库Boost3、C++各大有名库的介绍——GUI4、C++各大有名库的介绍——网络通信5、C++各大有名库的介绍——XML6、C++各大有名库的介绍——科学计算7、C++各大有名库的介绍——游戏开发8、C++各大有名库的介绍——线程9、C++... 阅读全文
摘要:
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... 阅读全文
摘要:
Python translator使用实例1.string.maketrans设置字符串转换规则表(translation table)复制代码 代码如下:allchars = string.maketrans('', '')#所有的字符串,即不替换字符串aTob = string.maketrans('a','b')#将字符a转换为字符b2.translate函数进行字符串的替换和删除,第一个参... 阅读全文
摘要:
阅读全文
摘要:
将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_... 阅读全文
摘要:
在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... 阅读全文
摘要:
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... 阅读全文
摘要:
最近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... 阅读全文