上一页 1 ··· 4 5 6 7 8 9 10 11 12 13 下一页
摘要: 八天的长假时间,可以干很多事情!不过最想做的还是好好睡个懒觉. 抽时间买家具,电器,家里装修已经到木工,还有一个多月要完工了. 抽时间要看看source,看看TCP/IP, 两天前在网上订购了五本书,都是关于LINUX和网络方面的.要学的东西真是太多了.强烈的感到时间不够.有时候,觉得自己很忙,但有时,又觉得自己很闲,忙有忙的滋味,闲有闲的乐趣 阅读全文
posted @ 2006-04-28 11:22 shipfi 阅读(215) 评论(0) 推荐(0) 编辑
摘要: Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--># Exapmle1 : about test command #!/bin/bash# Program:# Let user input a filename, the program will sea... 阅读全文
posted @ 2006-04-21 10:39 shipfi 阅读(269) 评论(0) 推荐(0) 编辑
摘要: http://www.winehq.com/site/download 阅读全文
posted @ 2006-04-20 16:51 shipfi 阅读(299) 评论(0) 推荐(0) 编辑
摘要: 上星期六去无锡,真是累,今天小腿都直发酸。不过,还是有回忆的。至少中午的那顿饭菜念念不忘。 星期天去家里验收水电工的项目。把所用材料都算了一遍,当时也没核对,回来发现居然有的地方算多了一倍。万辛!万辛!明天瓦工要进场,中午得经常赶过去看看,省得偷工减料啊。嘿嘿~~ 今天在公司下午又要搭连续呼环境,上个星期做过一次。没记过程,忘得差不多了。今天总算了解了一下整个过程: 1.从cvs下面更新源程序 cvs -update 2.整个源程序编译:./configure , make , make dep , make ram_zimage, make install , ./create_fileinfo.sh (file-version) KERNEL.** ROOTING.** 3.生成三个文件,把它们打压:tar czvf (TGZ-NAME) (FILES) 4.ftp 到服务器上,再telnet到服务器上解压,file-up更新...... 5.搭环境. 6.不断的 阅读全文
posted @ 2006-04-17 17:22 shipfi 阅读(231) 评论(0) 推荐(0) 编辑
摘要: 一、基础篇 (1)鸟哥的Linux私房菜:基础学习篇 (2)Managing Projects with GNU Make 二、语言与技术篇 1、脚本语言-Python (1)Python语言入门 2、偏底层的开发-C,C++ (1)C程序设计语言 2ed (2)C++ Primer (3)Effective C++ (4)More Effective C++ (5)C++标准程序库 (6)... 阅读全文
posted @ 2006-04-14 11:02 shipfi 阅读(287) 评论(0) 推荐(0) 编辑
摘要: Fordora Core 4 / 5 下载地址: (BT) http://torrent.fedoraproject.org/ http://fedora.redhat.com/ 阅读全文
posted @ 2006-04-14 08:23 shipfi 阅读(380) 评论(0) 推荐(0) 编辑
摘要: 公司项目中需要用到SIP协议的东东,关于这个协议,在RFC3261中有详细的描述,今天下午看这个文档,有些知识把它们记录下来,以备查用。 首先,关于RFC的文档可以去官方网站http://www.rfc.net查看,中文的可以进入http://www.cnpaf.net/查看。 SIP协议介绍 SIP是一个应用层控制协议,可以用来建立,修改和终止多媒体对话。(... 阅读全文
posted @ 2006-04-10 13:39 shipfi 阅读(486) 评论(0) 推荐(0) 编辑
摘要: 每个目录的大致内容如下表所示: /bin 这是放例如: ls, mv, rm, mkdir, rmdir, gzip, tar, telnet, 及 ftp 等等常用的执行档的地方(这些执行档的执行方法会在后面提到),有时候这个目录的内容与 /usr/bin 是一样的(有时候甚至会使用连结档哩),是给一般使用者使用的执行程序放置的所在! /boot 没错,这里就是放置你... 阅读全文
posted @ 2006-04-05 17:27 shipfi 阅读(1293) 评论(0) 推荐(0) 编辑
摘要: 1.Linux Shell Scripting Tutorial A Beginner's handbook URL:http://www.freeos.com/guides/lsst/ 2.Operating Systems Web Site URL:http://www.comptechdoc.org/os/ 3.鳥哥的 Linux 私房菜 URL:http://linux.vbi... 阅读全文
posted @ 2006-04-05 09:33 shipfi 阅读(193) 评论(0) 推荐(0) 编辑
摘要: 1.Python的函数的默认值 在Python中定义默认值就像这样: def foo(x=10) print x 另外,也可以使用变量来作为参数的默认值,如: a=10def foo(x=a) print a a=12print foo() #It will print 10 对于上面来说,默认函数参数的值在被赋值时就指定,后面的a=12,改变不了x的值。但是... 阅读全文
posted @ 2006-04-03 21:36 shipfi 阅读(273) 评论(0) 推荐(0) 编辑
摘要: 1.关于定义类的一些奇特之处 今天在Python中定义一个类,很奇怪,不需要事先声明它的成员变量吗?暂时不知,先记录下来: class Account(object): "一个简单的类" account_type="Basic" def __init__(self,name,balance): "初始化一个新的Account实例" se... 阅读全文
posted @ 2006-04-02 10:24 shipfi 阅读(2313) 评论(0) 推荐(0) 编辑
摘要: 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 阅读(16818) 评论(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 阅读(251) 评论(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 阅读(727) 评论(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 阅读(275) 评论(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 阅读(233) 评论(0) 推荐(0) 编辑
摘要: 今天模拟项目开始PG,我的工作是从局数据config.dat中读取数据,写入一struct结构中。还有把struct结构中的数据写入config.dat。项目并不难,但要遵循的标准蛮多。 今天违反了几个标准: 1.字符串常量,并不允许随便添加进代码中,必须要写进resource中的string Table中去 2.注释,必须执行严格的规范,并不是想怎么加就怎么加,... 阅读全文
posted @ 2006-03-21 13:53 shipfi 阅读(226) 评论(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 阅读(240) 评论(0) 推荐(0) 编辑
摘要: 到新工作单位,很多的不习惯。也有很多东西要去适应。最近基本上是忙透了。 首先,是语言的不习惯。公司内部是用日语,Windows是日文版的,注定要去和那弯弯扭扭的文字打交道。可怜我学语言的速度,远远根不上。大部分时间是靠蒙~~~~ 其次还有E文的问题。Linux是E文的,书籍资料也是E文的。比较,突然发现E文还是满可爱的。 其次,要学的东西非常多。Linux,C,C++,P... 阅读全文
posted @ 2006-03-20 11:18 shipfi 阅读(304) 评论(0) 推荐(0) 编辑
摘要: How many roads must a man walk down 一个男人要走过多少路,   Before you call him a man 才可以称为男人?   How many seas must a white dove sail 一只白鸽要飞过多少片海,   Before she sleeps in the sand 才能在沙滩上入眠?   How many times must the cannonballs fly 炮弹要横行多久,   Before they are forever banned 才会永不存在?   The answer, my friend, is blowing in the wind 这答案,我的朋友,它就飘在风中   The answer is blowing in the wind 答案就飘在风中。   How many years can a mountain exis 阅读全文
posted @ 2006-02-27 15:04 shipfi 阅读(981) 评论(1) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 13 下一页