11 2008 档案

摘要:之前调试一直在用print。。。很寒,其实在WingIDE中可以直接断点调试GAE的,下面介绍两种常用的方法: 1. 在WingIDE中设置 dev_appserver.py为main debug file(右键 - Set As Main Debug File),然后设置运行参数:appname -d 然后,就可以开始运行调试了。我设置的VS类似的快捷键,因此,按下F5,控制台显示服务启动信... 阅读全文
posted @ 2008-11-30 21:59 CoderZh 阅读(1515) 评论(0) 推荐(0) 编辑
摘要:手头有本英文的zope book 2.6,然后在woodpecker找到一些Zope3Book中文翻译,但发现那个页面从2005年开始已经没有更新过了。然后又在wiki.ubuntu.org.cn中找到了同一译者的中文译稿,颇喜,把学习的链接地址拿过来 1 Zope3宝典 1.1 Preface(序言) 1.2 Zope 3 from a U... 阅读全文
posted @ 2008-11-29 15:38 CoderZh 阅读(940) 评论(1) 推荐(0) 编辑
摘要:C#中使用JSON不需要使用第三方库,使用.NET Framwork3.5自带的System.Runtime.Serialization.Json即可很好的完成JSON的解析。 阅读全文
posted @ 2008-11-25 19:44 CoderZh 阅读(67781) 评论(7) 推荐(5) 编辑
摘要:WebClient位于System.Net命名空间下,通过这个类可以方便的创建Http请求并获取返回内容。 一、用法1 - DownloadData Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ -->string uri = "http://c... 阅读全文
posted @ 2008-11-25 17:32 CoderZh 阅读(32967) 评论(1) 推荐(2) 编辑
摘要:老是忘记。。。 Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ -->str = Encoding.UTF8.GetString(bytes) bytes = Encoding.Default.GetBytes(str) 阅读全文
posted @ 2008-11-25 17:27 CoderZh 阅读(954) 评论(0) 推荐(0) 编辑
摘要:Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ -->#include #include #include #define MAXSIZE 1024 #pragma comment(lib, "Wininet.lib") void ur... 阅读全文
posted @ 2008-11-24 18:35 CoderZh 阅读(28296) 评论(3) 推荐(1) 编辑
摘要:自己学习和使用wxpython过程中遇到的一些问题,以及一些心得。同时把wxpython相关的学习资源总结了一下。 阅读全文
posted @ 2008-11-23 12:00 CoderZh 阅读(32204) 评论(10) 推荐(2) 编辑
摘要:最近工作中用到了Oracle,笔记记录一下: 游标cursor create or replace procedure sp_test(seq_id number) as cursor curData is select t.propertyname, t.propertyvalue from kinfoc3.new_prop_39460 t where ... 阅读全文
posted @ 2008-11-23 10:34 CoderZh 阅读(524) 评论(0) 推荐(0) 编辑
摘要:1. 打开注册表HKEY_CURRENT_USER\Software\Microsoft\InternetExplorer\Styles,如果 Styles 键不存在,创建调用 Styles 的一个新的项。 2. 创建新的 DWORD 值在此项下称为"MaxScriptStatements"并将值设置为所需的脚本语句数。 3. 搞定。如果不是为了测试用,建议不要改大那个数。 阅读全文
posted @ 2008-11-23 10:31 CoderZh 阅读(5252) 评论(0) 推荐(0) 编辑