03 2006 档案

摘要:2.1 Built-in Functions The Python interpreter has a number of functions built into it that are always available. They are listed here in alphabetical order. __import... 阅读全文
posted @ 2006-03-27 17:12 shipfi 阅读(16918) 评论(0) 推荐(0)
摘要:How to Think Like a Computer Scientist Learning with Python 由浅入深,英语通俗易懂.很好的Python入门教材. 可以针对没有Programming基础的人,看到了第七章.准备这几天把它看完.网上文档:http://www.ibiblio.org/obp/thinkCSpy/index.htm write by Allen... 阅读全文
posted @ 2006-03-27 16:40 shipfi 阅读(257) 评论(0) 推荐(0)
摘要:选自Connie Dover专辑《The Border of Heaven》 Connie Dover有很明显的celtic风,人称吟游诗人~~ 爱尔兰民谣的典范,寻根溯本的特性 天籁般的歌声,却带出平凡的段落 宛如一江春水,平稳中透着盎然 一切都令人不可抑止 Connie Dover 的声音很平稳,就像砂漏里的砂往下流过一样,淡淡的,看不出什么滋味,口感却又很深远;不过,就像 CD 听完可以重来,沙漏滴完可以再翻转过来,时间却还是一样离开,淡滋味中,有一种无力挽回的哀伤。I’m Going to the West由Connie作词、作曲、演唱,副歌部分改编自美国Alabama的民歌... 阅读全文
posted @ 2006-03-26 19:33 shipfi 阅读(753) 评论(1) 推荐(0)
摘要:Tucked away in our subconscious is an idyllic vision. We see ourselves on a long trip that spans the continent. We are traveling by train. Out the windows, we drink in the passing scene of cars o... 阅读全文
posted @ 2006-03-22 12:51 shipfi 阅读(283) 评论(0) 推荐(0)
摘要:1.If you are not sure what type a value has, the interpreter can tell you. >>> type("Hello, World!") >>> type(17) Not surprisingly, strings belong to the type string and integers belong to the type... 阅读全文
posted @ 2006-03-21 17:26 shipfi 阅读(247) 评论(0) 推荐(0)
摘要:今天模拟项目开始PG,我的工作是从局数据config.dat中读取数据,写入一struct结构中。还有把struct结构中的数据写入config.dat。项目并不难,但要遵循的标准蛮多。 今天违反了几个标准: 1.字符串常量,并不允许随便添加进代码中,必须要写进resource中的string Table中去 2.注释,必须执行严格的规范,并不是想怎么加就怎么加,... 阅读全文
posted @ 2006-03-21 13:53 shipfi 阅读(239) 评论(0) 推荐(0)
摘要:1.在代码中获取对话框中某Control的指针 如一Dialog中有一ListBox,该ListBox的ID名为“IDC_LBDept”,那么,怎么获取指向它对象的指针呢?如下: CListBox* pLB = (CListBox*)GetDlgItem(IDC_LBDept); 这样,就可以对该ListBox对象进行操作了。 pLB->Inse... 阅读全文
posted @ 2006-03-20 16:16 shipfi 阅读(259) 评论(0) 推荐(0)
摘要:到新工作单位,很多的不习惯。也有很多东西要去适应。最近基本上是忙透了。 首先,是语言的不习惯。公司内部是用日语,Windows是日文版的,注定要去和那弯弯扭扭的文字打交道。可怜我学语言的速度,远远根不上。大部分时间是靠蒙~~~~ 其次还有E文的问题。Linux是E文的,书籍资料也是E文的。比较,突然发现E文还是满可爱的。 其次,要学的东西非常多。Linux,C,C++,P... 阅读全文
posted @ 2006-03-20 11:18 shipfi 阅读(318) 评论(0) 推荐(0)