<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
 <channel>
  <title>淡伯以明志</title>
  <link>http://yangwei.blogbus.com</link>
  <description><![CDATA[名利就好像浮云一样嘛]]></description>
  <generator> by blogbus.com </generator>
  <lastBuildDate>Thu, 01 Jan 1970 07:00:00 +0700</lastBuildDate>
  <image>
									<url>http://public.blogbus.com/profile/3/9/1/1067193/avatar_1067193_96.jpg</url>
									<title>淡伯以明志</title>
									<link>http://yangwei.blogbus.com</link>
								</image>  <item>
   <title>学习web开发</title>
   <description><![CDATA[<p>最近在做一些网络相关的东西，所以先收集一下。发现做web相对以前要简单一些，主要是相关资源可以很容易的找到。这里推荐一个<a href="http://blog.azsq.net/" target="_blank">Blog</a>. 楼主有六年多的互联网从业经验，开发了很多网站系统，做的相当不错。</p><p>这里<a href="http://www.5uie.com/" target="_blank">无忧搜索</a>就是他的一个作品，不错吧。向他学习！</p><!--sp--><div class="addfav"><br />收藏到：<span class= "delicious"><a href="http://delicious.com/save?url=http%3A%2F%2Fyangwei.blogbus.com%2Flogs%2F3193060.html&title=%E5%AD%A6%E4%B9%A0web%E5%BC%80%E5%8F%91">Del.icio.us</a></span></div><br /><br /><div class="sysmsg"><b><a href="http://www.blogbus.com" target="_blank">博客大巴，你的个人传媒早班车</a></b></div><br /><br />]]></description>
   <link>http://yangwei.blogbus.com/logs/3193060.html</link>
   <author>lostdays</author>
   <pubDate>Wed, 30 Aug 2006 23:35:02 +0800</pubDate>
  </item>
  <item>
   <title>UNICODE编程资料(转贴)</title>
   <description><![CDATA[<H2 class=diaryTitle>UNICODE编程资料(转贴)</H2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
<P>&nbsp;<SPAN><FONT style="FONT-SIZE: 12px"><STRONG>1. 如何取得一个既包含单字节字符又包含双字节字符的字符串的字符个数？</STRONG><BR>可以调用Microsoft Visual C++的运行期库包含函数_mbslen来操作多字节（既包括单字节也包括双字节）字符串。<BR>调用strlen函数，无法真正了解字符串中究竟有多少字符，它只能告诉你到达结尾的0之前有多少个字节。<BR><BR><STRONG>2. 如何对DBCS（双字节字符集）字符串进行操作？</STRONG><BR>函数 描述<BR>PTSTR CharNext （ LPCTSTR ）; 返回字符串中下一个字符的地址<BR>PTSTR CharPrev （ LPCTSTR, LPCTSTR ）； 返回字符串中上一个字符的地址<BR>BOOL IsDBCSLeadByte( BYTE )； 如果该字节是DBCS字符的第一个字节，则返回非0值<BR><STRONG><BR>3. 为什么要使用Unicode？</STRONG><BR>（1） 可以很容易地在不同语言之间进行数据交换。<BR>（2） 使你能够分配支持所有语言的单个二进制.exe文件或DLL文件。<BR>（3） 提高应用程序的运行效率。<BR>Windows 2000是使用Unicode从头进行开发的，如果调用任何一个Windows函数并给它传递一个ANSI字符串，那么系统首先要将字符串转换成 Unicode，然后将Unicode字符串传递给操作系统。如果希望函数返回ANSI字符串，系统就会首先将Unicode字符串转换成ANSI字符串，然后将结果返回给你的应用程序。进行这些字符串的转换需要占用系统的时间和内存。通过从头开始用Unicode来开发应用程序，就能够使你的应用程序更加有效地运行。<BR>Windows CE 本身就是使用Unicode的一种操作系统，完全不支持ANSI Windows函数<BR>Windows 98 只支持ANSI，只能为ANSI开发应用程序。<BR>Microsoft公司将COM从16位Windows转换成Win32时，公司决定需要字符串的所有COM接口方法都只能接受Unicode字符串。<BR><STRONG><BR>4. 如何编写Unicode源代码？</STRONG><BR>Microsoft 公司为Unicode设计了WindowsAPI，这样，可以尽量减少代码的影响。实际上，可以编写单个源代码文件，以便使用或者不使用Unicode来对它进行编译。只需要定义两个宏（UNICODE和_UNICODE），就可以修改然后重新编译该源文件。<BR>_UNICODE宏用于C运行期头文件，而UNICODE宏则用于Windows头文件。当编译源代码模块时，通常必须同时定义这两个宏。<BR><STRONG><BR>5. Windows定义的Unicode数据类型有哪些？</STRONG><BR>数据类型 说明<BR>WCHAR Unicode字符<BR>PWSTR 指向Unicode字符串的指针<BR>PCWSTR 指向一个恒定的Unicode字符串的指针<BR>对应的ANSI数据类型为CHAR，LPSTR和LPCSTR。<BR>ANSI/Unicode通用数据类型为TCHAR，PTSTR,LPCTSTR。<BR><STRONG><BR>6. 如何对Unicode进行操作？</STRONG><BR>字符集 特性 实例<BR>ANSI 操作函数以str开头 strcpy<BR>Unicode 操作函数以wcs开头 wcscpy<BR>MBCS 操作函数以_mbs开头 _mbscpy<BR>ANSI/Unicode 操作函数以_tcs开头 _tcscpy（C运行期库）<BR>ANSI/Unicode 操作函数以lstr开头 lstrcpy（Windows函数）<BR>所有新的和未过时的函数在Windows2000中都同时拥有ANSI和Unicode两个版本。ANSI版本函数结尾以A表示；Unicode版本函数结尾以W表示。Windows会如下定义：<BR>#ifdef UNICODE<BR>#define CreateWindowEx CreateWindowExW<BR>#else<BR>#define CreateWindowEx CreateWindowExA<BR>#endif // !UNICODE<BR><STRONG><BR>7. 如何表示Unicode字符串常量？</STRONG><BR>字符集 实例<BR>ANSI "string"<BR>Unicode L"string"<BR>ANSI/Unicode T("string")或_TEXT("string")if( szError[0] == _TEXT(‘J') ){ }<BR><STRONG><BR>8. 为什么应当尽量使用操作系统函数？</STRONG><BR>这将有助于稍稍提高应用程序的运行性能，因为操作系统字符串函数常常被大型应用程序比如操作系统的外壳进程Explorer.exe所使用。由于这些函数使用得很多，因此，在应用程序运行时，它们可能已经被装入RAM。<BR>如：StrCat，StrChr，StrCmp和StrCpy等。<BR><STRONG><BR>9. 如何编写符合ANSI和Unicode的应用程序？</STRONG><BR>（1） 将文本串视为字符数组，而不是chars数组或字节数组。<BR>（2） 将通用数据类型（如TCHAR和PTSTR）用于文本字符和字符串。<BR>（3） 将显式数据类型（如BYTE和PBYTE）用于字节、字节指针和数据缓存。<BR>（4） 将TEXT宏用于原义字符和字符串。<BR>（5） 执行全局性替换（例如用PTSTR替换PSTR）。<BR>（6）修改字符串运算问题。例如函数通常希望在字符中传递一个缓存的大小，而不是字节。这意味着不应该传递sizeof(szBuffer),而应该传递（sizeof(szBuffer)/sizeof(TCHAR)。另外，如果需要为字符串分配一个内存块，并且拥有该字符串中的字符数目，那么请记住要按字节来分配内存。这就是说，应该调用<BR>malloc(nCharacters *sizeof(TCHAR)),而不是调用malloc(nCharacters)。<BR><STRONG><BR>10. 如何对字符串进行有选择的比较？</STRONG><BR>通过调用CompareString来实现。<BR>标志 含义<BR>NORM_IGNORECASE 忽略字母的大小写<BR>NORM_IGNOREKANATYPE 不区分平假名与片假名字符<BR>NORM_IGNORENONSPACE 忽略无间隔字符<BR>NORM_IGNORESYMBOLS 忽略符号<BR>NORM_IGNOREWIDTH 不区分单字节字符与作为双字节字符的同一个字符<BR>SORT_STRINGSORT 将标点符号作为普通符号来处理<BR><STRONG><BR>11. 如何判断一个文本文件是ANSI还是Unicode？</STRONG><BR>判断如果文本文件的开头两个字节是0xFF和0xFE，那么就是Unicode，否则是ANSI。<BR><STRONG><BR>12. 如何判断一段字符串是ANSI还是Unicode？</STRONG><BR>用IsTextUnicode进行判断。IsTextUnicode使用一系列统计方法和定性方法，以便猜测缓存的内容。由于这不是一种确切的科学方法，因此 IsTextUnicode有可能返回不正确的结果。<BR><STRONG><BR>13. 如何在Unicode与ANSI之间转换字符串？</STRONG><BR>Windows函数MultiByteToWideChar用于将多字节字符串转换成宽字符串；函数WideCharToMultiByte将宽字符串转换成等价的多字节字符串。</FONT></SPAN></P><!--sp--><div class="addfav"><br />收藏到：<span class= "delicious"><a href="http://delicious.com/save?url=http%3A%2F%2Fyangwei.blogbus.com%2Flogs%2F3192122.html&title=UNICODE%E7%BC%96%E7%A8%8B%E8%B5%84%E6%96%99%28%E8%BD%AC%E8%B4%B4%29">Del.icio.us</a></span></div><br /><br /><div class="sysmsg"><b><a href="http://www.blogbus.com" target="_blank">博客大巴，你的个人传媒早班车</a></b></div><br /><br />]]></description>
   <link>http://yangwei.blogbus.com/logs/3192122.html</link>
   <author>lostdays</author>
   <pubDate>Wed, 30 Aug 2006 22:31:34 +0800</pubDate>
  </item>
  <item>
   <title>Windows环境下Unicode编程总结 (ZZ)</title>
   <description><![CDATA[<a name="logcontent"> <h1 align="center"><b>Windows环境下Unicode编程总结 </b></h1><p align="center">选择自 bigeye_leo 的 Blog<br /></p><h2>UNICODE环境设置</h2><p>在安装Visual Studio时，在选择VC++时需要加入unicode选项，保证相关的库文件可以拷贝到system32下。</p><p><br /></p><h3><br />UNICODE编译设置：</h3><p>C/C++, Preprocessor difinitions 去除_MBCS，加_UNICODE,UNICODE</p><p>在ProjectSetting/link/output 中设置Entry为wWinMainCRTStartup</p><p>反之为MBCS（ANSI）编译。</p><p><br /></p><h3><br />Unicode ：宽字节字符集</h3><p><br /></p><h4><br />1. 如何取得一个既包含单字节字符又包含双字节字符的字符串的字符个数？</h4><p>可以调用Microsoft Visual C++的运行期库包含函数_mbslen来操作多字节（既包括单字节也包括双字节）字符串。</p><p>调用strlen函数，无法真正了解字符串中究竟有多少字符，它只能告诉你到达结尾的0之前有多少个字节。</p><p><br /></p><h4><br />2. 如何对DBCS（双字节字符集）字符串进行操作？</h4><p>函数 描述</p><p>PTSTR CharNext （ LPCTSTR ）; 返回字符串中下一个字符的地址</p><p>PTSTR CharPrev （ LPCTSTR, LPCTSTR ）； 返回字符串中上一个字符的地址</p><p>BOOL IsDBCSLeadByte( BYTE )； 如果该字节是DBCS字符的第一个字节，则返回非0值</p><p><br /></p><h4><br />3. 为什幺要使用Unicode？</h4><p>（1） 可以很容易地在不同语言之间进行数据交换。</p><p>（2） 使你能够分配支持所有语言的单个二进制.exe文件或DLL文件。</p><p>（3） 提高应用程序的运行效率。</p><p>Windows 2000是使用Unicode从头进行开发的，如果调用任何一个Windows函数并给它传递一个ANSI字符串，那幺系统首先要将字符串转换成Unicode，然后将Unicode字符串传递给操作系统。如果希望函数返回ANSI字符串，系统就会首先将Unicode字符串转换成ANSI字符串，然后将结果返回给你的应用程序。进行这些字符串的转换需要占用系统的时间和内存。通过从头开始用Unicode来开发应用程序，就能够使你的应用程序更加有效地运行。</p><p>Windows CE 本身就是使用Unicode的一种操作系统，完全不支持ANSI Windows函数</p><p>Windows 98 只支持ANSI，只能为ANSI开发应用程序。</p><p>Microsoft公司将COM从16位Windows转换成Win32时，公司决定需要字符串的所有COM接口方法都只能接受Unicode字符串。</p><p><br /></p><h4><br />4. 如何编写Unicode源代码？</h4><p>Microsoft公司为Unicode设计了WindowsAPI，这样，可以尽量减少代码的影响。实际上，可以编写单个源代码文件，以便使用或者不使用Unicode来对它进行编译。只需要定义两个宏（UNICODE和_UNICODE），就可以修改然后重新编译该源文件。</p><p>_UNICODE宏用于C运行期头文件，而UNICODE宏则用于Windows头文件。当编译源代码模块时，通常必须同时定义这两个宏。</p><p><br /></p><h4><br />5. Windows定义的Unicode数据类型有哪些？</h4><p>数据类型 说明</p><p>WCHAR Unicode字符</p><p>PWSTR 指向Unicode字符串的指针</p><p>PCWSTR 指向一个恒定的Unicode字符串的指针</p><p>对应的ANSI数据类型为CHAR，LPSTR和LPCSTR。</p><p>ANSI/Unicode通用数据类型为TCHAR，PTSTR,LPCTSTR。</p><p><br /></p><h4><br />6. 如何对Unicode进行操作？</h4><p>字符集 特性 实例</p><p>ANSI 操作函数以str开头 strcpy</p><p>Unicode 操作函数以wcs开头 wcscpy</p><p>MBCS 操作函数以_mbs开头 _mbscpy</p><p>ANSI/Unicode 操作函数以_tcs开头 _tcscpy（C运行期库）</p><p>ANSI/Unicode 操作函数以lstr开头 lstrcpy（Windows函数）</p><p>所有新的和未过时的函数在Windows2000中都同时拥有ANSI和Unicode两个版本。ANSI版本函数结尾以A表示；Unicode版本函数结尾以W表示。Windows会如下定义：</p><p>#ifdef UNICODE</p><p>#define CreateWindowEx CreateWindowExW</p><p>#else</p><p>#define CreateWindowEx CreateWindowExA</p><p>#endif // !UNICODE</p><p><br /></p><h4><br />7. 如何表示Unicode字符串常量？</h4><p>字符集 实例</p><p>ANSI “string”</p><p>Unicode L“string”</p><p>ANSI/Unicode T(“string”)或_TEXT(“string”)if( szError[0] == _TEXT(‘J’) ){ }</p><p><br /></p><h4><br />8. 为什幺应当尽量使用操作系统函数？</h4><p>这将有助于稍稍提高应用程序的运行性能，因为操作系统字符串函数常常被大型应用程序比如操作系统的外壳进程Explorer.exe所使用。由于这些函数使用得很多，因此，在应用程序运行时，它们可能已经被装入RAM。</p><p>如：StrCat，StrChr，StrCmp和StrCpy等。</p><p><br /></p><h4><br />9. 如何编写符合ANSI和Unicode的应用程序？</h4><p>（1） 将文本串视为字符数组，而不是chars数组或字节数组。</p><p>（2） 将通用数据类型（如TCHAR和PTSTR）用于文本字符和字符串。</p><p>（3） 将显式数据类型（如BYTE和PBYTE）用于字节、字节指针和数据缓存。</p><p>（4） 将TEXT宏用于原义字符和字符串。</p><p>（5） 执行全局性替换（例如用PTSTR替换PSTR）。</p><p>（6） 修改字符串运算问题。例如函数通常希望在字符中传递一个缓存的大小，而不是字节。这意味着不应该传递sizeof(szBuffer),而应该传递（sizeof(szBuffer)/sizeof(TCHAR)。另外，如果需要为字符串分配一个内存块，并且拥有该字符串中的字符数目，那幺请记住要按字节来分配内存。这就是说，应该调用</p><p>malloc(nCharacters *sizeof(TCHAR)),而不是调用malloc(nCharacters)。</p><p><br /></p><h4><br />10. 如何对字符串进行有选择的比较？</h4><p>通过调用CompareString来实现。</p><p>标志 含义</p><p>NORM_IGNORECASE 忽略字母的大小写</p><p>NORM_IGNOREKANATYPE 不区分平假名与片假名字符</p><p>NORM_IGNORENONSPACE 忽略无间隔字符</p><p>NORM_IGNORESYMBOLS 忽略符号</p><p>NORM_IGNOREWIDTH 不区分单字节字符与作为双字节字符的同一个字符</p><p>SORT_STRINGSORT 将标点符号作为普通符号来处理</p><p><br /></p><h4><br />11. 如何判断一个文本文件是ANSI还是Unicode？</h4><p>判断如果文本文件的开头两个字节是0xFF和0xFE，那幺就是Unicode，否则是ANSI。</p><p><br /></p><h4><br />12. 如何判断一段字符串是ANSI还是Unicode？</h4><p>用IsTextUnicode进行判断。IsTextUnicode使用一系列统计方法和定性方法，以便猜测缓存的内容。由于这不是一种确切的科学方法，因此 IsTextUnicode有可能返回不正确的结果。</p><p><br /></p><h4><br />13. 如何在Unicode与ANSI之间转换字符串？</h4><p>Windows函数MultiByteToWideChar用于将多字节字符串转换成宽字符串；函数WideCharToMultiByte将宽字符串转换成等价的多字节字符串。</p><p><br /></p><h4><br />14. Unicode和DBCS之间的区别</h4><p>Unicode使用（特别在C程序设计语言环境里）“宽字符集”。「Unicode中的每个字符都是16位宽而不是8位宽。」在Unicode中，没有单单使用8位数值的意义存在。相比之下，在“双位组字符集”中我们仍然处理8位数值。有些位组自身定义字符，而某些位组则显示需要和另一个位组共同定义一个字符。</p><p>处理DBCS字符串非常杂乱，但是处理Unicode文字则像处理有秩序的文字。您也许会高兴地知道前128个Unicode字符（16位代码从0x0000到0x007F）就是ASCII字符，而接下来的128个Unicode字符（代码从0x0080到0x00FF）是ISO 8859-1对ASCII的扩展。Unicode中不同部分的字符都同样基于现有的标准。这是为了便于转换。希腊字母表使用从0x0370到0x03FF的代码，斯拉夫语使用从0x0400到0x04FF的代码，美国使用从0x0530到0x058F的代码，希伯来语使用从0x0590到0x05FF的代码。中国、日本和韩国的象形文字（总称为CJK）占用了从0x3000到0x9FFF的代码。Unicode的最大好处是这里只有一个字符集，没有一点含糊。</p><p><br /></p><h4><br />15.衍生标准</h4><p>Unicode是一个标准。UTF-8是其概念上的子集，UTF-8是具体的编码标准。而ＵＮＩＣＯＤＥ是所有想达到世界统一编码标准的标准。UTF-8标准就是Unicode（ISO10646）标准的一种变形方式， </p><p>UTF的全称是：Unicode/UCS Transformation Format，其实有两种UTF，一种是UTF-8，一种是UTF-16， </p><p>不过UTF-16使用较少，其对应关系如下：</p><p>在Unicode中编码为 0000 - 007F 的 UTF-8 中编码形式为: 0xxxxxxx </p><p>在Unicode中编码为 0080 - 07FF 的 UTF-8 中编码形式为: 110xxxxx 10xxxxxx</p><p>在Unicode中编码为 0000 - 007F 的 UTF-8 中编码形式为: 1110xxxx 10xxxxxx 10xxxxxx</p><p><br /></p><p><br />utf-8是unicode的一个新的编码标准,其实unicode有过好几个标准.我们知道一直以来使用的unicode字符内码都是16位,它实际上还不能把全世界的所有字符编在一个平面系统,比如中国的藏文等小语种,所以utf-8扩展到了32位,也就是说理论在utf-8中可容纳二的三十二次方个字符. UNICODE的思想就是想把所有的字符统一编码,实现一个统一的标准.big5、gb都是独立的字符集,这也叫做远东字符集,把它拿到德文版的WINDOWS上可能将会引起字符编码的冲突....早期的WINDOWS默认的字符集是ANSI.notepad中输入的汉字是本地编码,但在NT/2000内部是可以直接支持UNICODE的。notepad.exe在WIN95和98中都是ANSI字符,在NT中则是UNICODE.ANSI和UNICODE可以方便的实现对应映射,也就是转换 ASCII是8位范围内的字符集，对于范围之外的字符如汉字它是无法表达的。unicode是16位范围内的字符集，对于不同地区的字符分区分配，unicode是多个IT巨头共同制定的字符编码标准。如果在unicode环境下比如WINDOWS NT上，一个字符占两字节16位，而在ANSI环境下如WINDOWS98下一个字符占一个字节8位.Unicode字符是16位宽，最多允许65,535字符，数据类型被称为WCHAR。 </p><p>对于已有的ANSI字符，unicode简单的将其扩展为16位：比如ANSI&quot;A&quot;=0x43,则对应的UNICODE为</p><p>&quot;A&quot;= 0x0043</p><p>而ASCII用七存放128个字符,ASCII是一个真正的美国标准,所以它不能满足其他国家的需要,例如斯拉夫语的字母和汉字于是出现了Windows ANSI字符集,是一种扩展的ASCII码,用8位存放字符,低128位仍然存放原来的ASCII码, </p><p>而高128位加入了希腊字母等</p><p>if def UNICODE</p><p>TCHAR = wchar</p><p>else</p><p>TCHAR = char</p><p>你需要在Project\Settings\C/C++\Preprocesser definitions中添加UNICODE和_UNICODE </p><p>UINCODE,_UNICODE都要定义。不定义_UNICODE的话，用SetText(HWND,LPCTSTR),将被解释为SetTextA(HWND,LPTSTR),这时API将把你给的Unicode字符串看作ANSI字符串，显示乱码。因为windows API是已经编译好存在于dll中的，由于不管UNICODE还是ANSI字符串，都被看作一段buffer,如&quot;0B A3 00 35 24 3C 00 00&quot;如果按ANSI读，因为ANSI字串是以'\0'结束的，所以只能读到两字节&quot;0B A3 \0&quot;，如果按UNICODE读，将完整的读到'\0\0'结束。</p><p>由于UNICODE没有额外的指示位，所以系统必须知道你提供的字串是哪种格式。此外，UNICODE好象是ANSI C++规定的，_UNICODE是windows SDK提供的。如果不编写windows程序，可以只定义UNICODE。</p><p><br /></p><h3><br />开发过程：</h3><p>围绕着文件读写、字符串处理展开。文件主要有两种：.txt和.ini文件</p><p>1. 在unicode和非unicode环境下字符串做不同处理的，那么需要参考以上9，10两条，以适应不同环境得字符串处理要求。</p><p>对文件读写也一样。只要调用相关接口函数时，参数中的字符串前都加上_TEXT等相关宏。如果写成的那个文件需要是unicode格式保存的，那么在创建文件时需要加入一个字节头。</p><p>CFile file; </p><p>WCHAR szwBuffer[128];</p><p /><p>WCHAR *pszUnicode = L&quot;Unicode string\n&quot;; // unicode string</p><p>CHAR *pszAnsi = &quot;Ansi string\n&quot;; // ansi string</p><p>WORD wSignature = 0xFEFF;</p><p /><p>file.Open(TEXT(&quot;Test.txt&quot;), CFile::modeCreate|CFile::modeWrite);</p><p /><p>file.Write(&amp;wSignature, 2);</p><p /><p>file.Write(pszUnicode, lstrlenW(pszUnicode) * sizeof(WCHAR)); </p><p>// explicitly use lstrlenW function</p><p /><p>MultiByteToWideChar(CP_ACP, 0, pszAnsi, -1, szwBuffer, 128);</p><p /><p>file.Write(szwBuffer, lstrlenW(szwBuffer) * sizeof(WCHAR));</p><p /><p>file.Close();</p><p>//以上这段代码在unicode和非unicode环境下都有效。这里显式的指明用Unicode来进行操作。</p><p>2. 在非unicode环境下，缺省调用的都是ANSI格式的字符串，此时TCHAR转换为CHAR类型的，除非显式定义WCHAR。所以在这个环境下，如果读取unicode文件，那么首先需要移动2个字节，然后读取得字符串需要用MultiByteToWideChar来转换，转换后字符串信息才代表unicode数据。</p><p>3. 在unicode环境下，缺省调用得都是unicode格式得字符串，也就是宽字符，此时TCHAR转换为WCHAR，相关得API函数也都调用宽字符类型的函数。此时读取unicode文件也和上面一样，但是读取得数据是WCHAR的，如果要转换成ANSI格式，需要调用WideCharToMultiByte。如果读取ANSI的，则不用移动两个字节，直接读取然后视需要转换即可。</p><p><br /></p><p><br />某些语言（如韩语）必须在unicode环境下才能显示，这种情况下，在非unicode环境下开发，就算用字符串函数转换也不能达到显示文字的目的，因为此时调用得API函数是用ANSI的（虽然底层都是用UNICODE处理但是处理结果是按照程序员调用的API来显示的）。所以必须用unicode来开发。<br /></p></a><!--sp--><div class="addfav"><br />收藏到：<span class= "delicious"><a href="http://delicious.com/save?url=http%3A%2F%2Fyangwei.blogbus.com%2Flogs%2F3192116.html&title=Windows%E7%8E%AF%E5%A2%83%E4%B8%8BUnicode%E7%BC%96%E7%A8%8B%E6%80%BB%E7%BB%93+%28ZZ%29">Del.icio.us</a></span></div><br /><br /><div class="sysmsg"><b><a href="http://www.blogbus.com" target="_blank">博客大巴，你的个人传媒早班车</a></b></div><br /><br />]]></description>
   <link>http://yangwei.blogbus.com/logs/3192116.html</link>
   <author>lostdays</author>
   <pubDate>Wed, 30 Aug 2006 22:29:34 +0800</pubDate>
  </item>
  <item>
   <title>Ruby On line</title>
   <description><![CDATA[<p>喜欢Ruby么？又懒得安装，或者只是想试一下Ruby的功能。那么可以试一下<a href="http://tryruby.hobix.com/" target="_blank">Ruby On line</a>。</p><p>而且他还有交互性的帮助，跟着帮助很快就可以了解Ruby哟。千万不要很快的&quot;见异思迁哈&quot;</p><p>看看这个截图：</p><p><img alt="http://yangwei.blogbus.com/files/1156576827.jpg" hspace="0" src="http://yangwei.blogbus.com/files/1156576827.jpg" align="baseline" border="0" /></p><p><a href="http://tryruby.hobix.com/"></a></p><!--sp--><div class="addfav"><br />收藏到：<span class= "delicious"><a href="http://delicious.com/save?url=http%3A%2F%2Fyangwei.blogbus.com%2Flogs%2F3151498.html&title=Ruby+On+line">Del.icio.us</a></span></div><br /><br /><div class="sysmsg"><b><a href="http://www.blogbus.com" target="_blank">博客大巴，你的个人传媒早班车</a></b></div><br /><br />]]></description>
   <link>http://yangwei.blogbus.com/logs/3151498.html</link>
   <author>lostdays</author>
   <pubDate>Sat, 26 Aug 2006 15:13:00 +0800</pubDate>
  </item>
  <item>
   <title>blog新logo</title>
   <description><![CDATA[<p><a href="http://msig.info/web2.php">http://msig.info/web2.php</a> 这里可以帮你生成web2.0的logo。要是多一些选择就好了。</p><p>我的logo在这里</p><p /><p><img alt="Generated Image" src="http://msig.info/web2v2/(reflect)lostdays+Blog+2.0BETA.png" /></p><!--sp--><div class="addfav"><br />收藏到：<span class= "delicious"><a href="http://delicious.com/save?url=http%3A%2F%2Fyangwei.blogbus.com%2Flogs%2F3083490.html&title=blog%E6%96%B0logo">Del.icio.us</a></span></div><br /><br /><div class="sysmsg"><b><a href="http://www.blogbus.com" target="_blank">博客大巴，你的个人传媒早班车</a></b></div><br /><br />]]></description>
   <link>http://yangwei.blogbus.com/logs/3083490.html</link>
   <author>lostdays</author>
   <pubDate>Fri, 18 Aug 2006 23:46:35 +0800</pubDate>
  </item>
  <item>
   <title>writely开放注册了</title>
   <description><![CDATA[<p><a href="http://www.writely.com" target="_blank">writely</a>，一个在线的word，做的非常不错。所以今年三月份被google收购了，现在从新开放任意注册。大家不用再等待别人邀请了。我刚去注册一个，方便，一切东西都放在网上，界面也停简洁，速度还不错。我应该认为google的数据备份比我做的号，放在那里还要安全哟。</p><!--sp--><div class="addfav"><br />收藏到：<span class= "delicious"><a href="http://delicious.com/save?url=http%3A%2F%2Fyangwei.blogbus.com%2Flogs%2F3083462.html&title=writely%E5%BC%80%E6%94%BE%E6%B3%A8%E5%86%8C%E4%BA%86">Del.icio.us</a></span></div><br /><br /><div class="sysmsg"><b><a href="http://www.blogbus.com" target="_blank">博客大巴，你的个人传媒早班车</a></b></div><br /><br />]]></description>
   <link>http://yangwei.blogbus.com/logs/3083462.html</link>
   <author>lostdays</author>
   <pubDate>Fri, 18 Aug 2006 23:40:57 +0800</pubDate>
  </item>
  <item>
   <title>（zz）中国贫富标准线</title>
   <description><![CDATA[<p>对比这个贫富标准线，我自己就不用说了，属于穷人。而且这个说法也给了广大的“白骨精”一个压力，其实大部分的白领都是社会的穷人和底产者。</p><p>最近发现电视里面关于财富关于人才关于创业的节目越来越多了，有一些还是不错的。除了央视老牌的《对话》，最近的《绝对挑战》，《创业中国》，《财富故事》，还有其他台的，比如我常看的大脑袋很Q的《鲁豫有约》，《财富人生》都非常不错。当然还要怀念一下因为普通话没有达标而被停播的《财经郎闲平》。随便去一些主要网站的创业板块，你会发现社会不同阶层，有钱的没钱的，有学历没有学历的，有经验没有经验的，年纪小的年纪大的都在思考创业这个问题。可以明显感觉到现在社会的一个大环境：对财富的认可，对创业明星的认可，对人才的认可。就我和身边一些认识的朋友感觉，创业带给我们的最重要的不一定是财富，而是带给你整个不一样的人生，把你进行精致的塑造。</p><p>最近两个月，几个个80后的创业者成为媒体的宠儿，各种老牌的平面媒体和电视，网络媒体纷纷对他们进行报道:)这些新一代的富人，都有自己超越同龄人的地方，都有着正确的富人观念，积极的心态，同时执着的做自己的事情。。这些特点和当时的机遇早就了这些不走寻常路的青年做到了很多人一生都梦想做的事情。</p><p>作为同龄人，是不是应该多像他们学一下呢，考虑一下未来的趋势，思考一下自己的人生梦想？</p><p>------------------------------------------------------------------------------------</p><p>《中国贫富标准线》</p><p><font color="#999999">做人要厚道，转载请注明来自猫扑(mop.com)</font><br /><br />超级大富豪：年收入在5000万以上<br /><br />大富豪：年收入在1000—5000万<br /><br />富豪：年收入在300—1000万之间<br /><br />富人：年收入在100—300万之间<br /><br />高产者：年收入在30—100万之间<br /><br />中产者：年收入在15—30万之间<br /><br />低产者：年收入在8—15万之间<br /><br />穷 人：年收入在3—8万之间<br /><br />很穷的人：年收入在1—3万之间<br /><br />非常穷的穷人：年收入在1万以下</p><p>----------------------------------------------------------------------------------</p><p>一个更狠的排名，汗一个</p><p>超级大富豪：年收入在5000万以上<br />　　<br />　　大富豪：年收入在1000—5000万<br />　　<br />　　富豪：年收入在300—1000万之间<br />　　<br />　　富人：年收入在100—300万之间<br />　　<br />　　高产者：年收入在30—100万之间<br />　　<br />　　中产者：年收入在15—30万之间<br />　　<br />　　低产者：年收入在8—15万之间<br />　　<br />　　穷 人：年收入在3—8万之间<br />　　<br />　　很穷的人：年收入在1—3万之间<br />　　<br />　　非常穷的穷人：年收入在5千—1万之间<br />　　<br />　　穷得没衣服穿的人：年收入在1千—5千之间<br />　　<br />　　穷得求生不得求死不能的穷人：年收入在100 —1000元之间<br />　　<br />　　穷得几乎要死的穷人：年收入在30—100元之间<br />　　<br />　　死路一条的穷人：年收入在30元以下</p><!--sp--><div class="addfav"><br />收藏到：<span class= "delicious"><a href="http://delicious.com/save?url=http%3A%2F%2Fyangwei.blogbus.com%2Flogs%2F3083157.html&title=%EF%BC%88zz%EF%BC%89%E4%B8%AD%E5%9B%BD%E8%B4%AB%E5%AF%8C%E6%A0%87%E5%87%86%E7%BA%BF">Del.icio.us</a></span></div><br /><br /><div class="sysmsg"><b><a href="http://www.blogbus.com" target="_blank">博客大巴，你的个人传媒早班车</a></b></div><br /><br />]]></description>
   <link>http://yangwei.blogbus.com/logs/3083157.html</link>
   <author>lostdays</author>
   <pubDate>Fri, 18 Aug 2006 22:27:59 +0800</pubDate>
  </item>
  <item>
   <title>(zz)存下档（Windows软件在Linux上的等价/替代/模仿软件列表）</title>
   <description><![CDATA[<BR>
<CENTER>
<H2>Windows软件在Linux上的等价/替代/模仿软件列表</H2>
<H2></CENTER>
<CENTER>Last update: 16.07.2003, 31.01.2005, 27.05.2005</CENTER>
<P align=center>您可在以下网站发现本列表最新版：<A href="http://www.linuxrsp.ru/win-lin-soft/"><BR>http://www.linuxrsp.ru/win-lin-soft/</A>.</P>
<P align=center>This page on other languages: <A href="http://www.linuxrsp.ru/win-lin-soft/table-rus.html">Russian</A>, <A href="http://www.linuxrsp.ru/win-lin-soft/index-italian.html">Italian</A>, <A href="http://www.linuxrsp.ru/win-lin-soft/index-spanish.html">Spanish</A>, <A href="http://www.om-conseil.com/sections.php?op=viewarticle&amp;artid=42">French</A>, <A href="http://www.linuxrsp.ru/win-lin-soft/table-german.html">German</A>. </P>
<P align=left>从Windows转向Linux的一个最大困难就是缺乏对相关软件的认识。新手总是在寻找 Windows软件的替代品，但老鸟却难以回答，因为他们对Windows可能已经所知有限:)。本列表是在我们自己的经验及本页访客所做反馈基础上列出的等价或替代或模仿软件（多谢！）。 </P>
<P>这个表将会经常变化，左右两侧都会加入新名字。而某些类别的右栏可能不会立即填上。将来，我们计划把这个表转向PHP/MySQL，这样访客就能够自己添加软件，为模仿软件投票或进行评论等等。 </P>
<P><B>如果您想提交新的软件</B>，请发信至：<A href="mailto:winlintable@linuxrsp.ru?subject=win-lin-soft-add">winlintable[a]linuxrsp.ru</A> ，写上软件名字，操作系统，描述（软件的目的之类），以及连向其官方网站的链接（如果知道）。 <B>同时欢迎任何评论，说明，校正，提交及错误报告</B>，如有，请发至： <A href="mailto:winlintable@linuxrsp.ru?subject=win-lin-table">winlintable[a]linuxrsp.ru</A>。</P>
<P><B>注意：<BR></B>1) 缺省情况下，本表中所有Linux软件均为 <B>自由软件（free as in freedom）</B>。（自由软件的定义：<A href="http://www.gnu.org/philosophy/free-sw.html">FSF</A>和<A href="http://www.debian.org/social_contract#guidelines">Debian</A>）。Linux下的专属软件会用<B>[Prop]</B> 标明。非自由软件（开源或相对自由但带有限制）用<B>[NF]</B>标明。 <BR>2) 如果表格中是???，表示作者不知道表中应该放什么。 <BR>3) 如果软件名字后面跟着???，表示作者对此软件不是非常确定。<BR></P>
<P><B>Windows和Linux在哲学上的重要区别：<BR></B>Windows软件是"all-in-one"的，即开发者会在他的产品中添加所有特性。这种思路也称为“Windows之道”。 <BR>而UNIX/Linux的哲学是一个元件或一个软件只执行一件任务，并把它做好。这就是“Unix之道”。 Linux软件就像是乐高积木块（比如如果有拼写检查程序，它就能用在文本编辑器中或邮件客户端中；如果有一个强大的命令行下载工具，那么为它写个界面也不难）。 <BR>这一原则非常重要，而在搜寻Windows软件替代品时更是非常重要:)。</P>
<P>如想了解更多，请看<A href="http://www.amazon.com/exec/obidos/tg/detail/-/1555582737/qid=1060107283/sr=8-1/ref=sr_8_1/102-3949575-7244131?v=glance&amp;s=books&amp;n=507846">"Linux and the Unix Philosophy"</A>这本书，其中有一章专门讲了Windows和Linux的哲学差别。</P>
<P><B>注意！本表中可能有许多错误及Bug。</B> (<A href="mailto:winlintable@linuxrsp.ru?subject=win-lin-soft-bug">报告Bug</A>)。</P>
<P><B>对更喜欢Windows软件的人：</B><BR>1) "Windows"那一列并不是本表的核心，所以也并未包括所有现存软件－－只有最好最流行的那些。 <BR>2) 许多Linux软件也可以在Windows上运行－－通过CygWin或其他Linux模拟环境。<BR></P>
<P><B>您可从以下站点获取Linux软件：<BR></B><A href="http://freshmeat.net/"><B>FreshMeat.net</B></A><B>&nbsp;</B>|<B> <A href="http://sourceforge.net/">SourceForge.net</A> - </B>最大的两个门户，可以找到任何想要的东西！！ <BR><A href="http://www.linuxapps.com/">LinuxApps.com</A> | <A href="http://www.icewalkers.com/">IceWalkers.com</A> | <A href="http://linux.tucows.com/">Linux.Tucows.com</A><B> - </B>I like these catalogs.<A href="http://linux.tucows.com/"><BR></A><A href="http://www.download.com/linux/">Download.com / Linux</A> | <A href="http://www.linuxsoftware.org/">LinuxSoftware.org</A> | <A href="http://www.filewatcher.org/">FileWatcher.org</A> | <A href="http://www.linuxarchives.com/">LinuxArchives.com</A><B> - </B>other catalogs.<BR><B>Programs / packages / libraries search systems: &nbsp;</B><A href="http://www.rpmseek.com/">RPMseek.org</A> | <A href="http://tuxfinder.com/">Tuxfinder.com</A> | <A href="http://rpmfind.net/">RPMfind.net</A></P>
<P><B>可在Wine/WineX上面运行的Windows软件：<BR></B>1) <A href="http://appdb.codeweavers.com/appbrowse.php"><B>可运行于Wine的Windows软件的官方列表</B></A> (from Codeweavers)。该数据库中软件超过1000种，并有分类和导航。<BR>2) <B>可在WineX上运行的Windows游戏</B>(fromTransgaming)。这是一个<A href="http://www.transgaming.com/searchgame.php">搜索</A>，这里有<A href="http://www.transgaming.com/dogamesearch.php?order=working&amp;showall=1">全部游戏的列表</A> (超多)。</P>
<P><B>分类：<BR></B>1) <A href="http://doc.zoomquiet.org/data/20060125165131/#1">网络，</A><BR>2) <A href="http://doc.zoomquiet.org/data/20060125165131/#2">文件工作，</A><BR>3) <A href="http://doc.zoomquiet.org/data/20060125165131/#3">桌面与系统软件，</A><BR>4) 多媒体：<BR>&nbsp;&nbsp;4.1) <A href="http://doc.zoomquiet.org/data/20060125165131/#41">音频/ CD</A>.<BR>&nbsp;&nbsp;4.2) <A href="http://doc.zoomquiet.org/data/20060125165131/#42">图形图像</A>.<BR>&nbsp;&nbsp;4.3) <A href="http://doc.zoomquiet.org/data/20060125165131/#43">视频及其他</A>.<BR>5) <A href="http://doc.zoomquiet.org/data/20060125165131/#5">办公商务，</A><BR>6) <A href="http://doc.zoomquiet.org/data/20060125165131/#6">游戏，</A><BR>7) <A href="http://doc.zoomquiet.org/data/20060125165131/#7">编辑与开发，</A><BR>8) <A href="http://doc.zoomquiet.org/data/20060125165131/#8">服务器软件，</A><BR>9) <A href="http://doc.zoomquiet.org/data/20060125165131/#9">科学与特殊软件，</A><BR>10) <A href="http://doc.zoomquiet.org/data/20060125165131/#10">模拟器，</A><BR>11) <A href="http://doc.zoomquiet.org/data/20060125165131/#11">其他及幽默。</A><BR></P>
<TABLE class=tablemain cellSpacing=1 cellPadding=3 width="100%" bgColor=#cccccc border=0>
<TBODY>
<TR bgColor=#ffffee>
<TD width="30%"><B><FONT size=+1>软件描述，可执行任务</FONT></B></TD>
<TD width="30%"><B><FONT size=+1>Windows</FONT></B></TD>
<TD width="40%"><B><FONT size=+1>Linux</FONT></B></TD></TR>
<TR bgColor=#eefaff>
<TD colSpan=3><B><FONT size=+1><A name=1></A>1) Networking.</FONT></B></TD></TR>
<TR bgColor=#fdfdfd>
<TD>Web browser</TD>
<TD>Internet Explorer, Netscape / Mozilla, <A href="http://www.opera.com/">Opera</A> [Prop], <A href="http://www.mozilla.org/projects/firefox/">Firefox</A>, ...</TD>
<TD>1) <A href="http://www.netscape.com/">Netscape</A> / <A href="http://www.mozilla.org/">Mozilla</A>.<BR>2) <A href="http://galeon.sourceforge.net/">Galeon.</A> <BR>3) <A href="http://www.konqueror.org/">Konqueror.</A><BR>4) <A href="http://www.opera.com/products/desktop/index.dml?platform=linux">Opera.</A> [Prop]<BR>5) <A href="http://www.mozilla.org/projects/firefox/">Firefox.</A> <BR>6) <A href="http://www.gnome.org/projects/nautilus/">Nautilus</A>.<BR>7) <A href="http://epiphany.mozdev.org/">Epiphany</A>. <BR>8) <A href="http://atrey.karlin.mff.cuni.cz/~clock/twibright/links/">Links</A>. (with "-g" key).<BR>9) <A href="http://www.dillo.org/">Dillo</A>. <BR>10) <A href="http://encompass.sourceforge.net/">Encompass</A>. </TD></TR>
<TR bgColor=#f9f9f9>
<TD>Console web browser</TD>
<TD>1) Links<BR>2) Lynx<BR>3) <A href="http://www.xemacs.org/">Xemacs</A> + w3. </TD>
<TD>1) <A href="http://atrey.karlin.mff.cuni.cz/~clock/twibright/links/">Links</A>.<BR>2) <A href="http://elinks.or.cz/">ELinks</A>.<BR>3) <A href="http://lynx.browser.org/">Lynx.</A><BR>4) <A href="http://w3m.sourceforge.net/">w3m</A>.<BR>5) <A href="http://www.xemacs.org/">Xemacs</A> + w3.</TD></TR>
<TR bgColor=#fdfdfd>
<TD>Email client</TD>
<TD>Outlook Express, Netscape / Mozilla, Thunderbird, The Bat, Eudora, Becky, Datula, <A href="http://sylpheed.good-day.net/">Sylpheed</A> / <A href="http://sylpheed-claws.sourceforge.net/">Sylpheed-claws</A>, Opera</TD>
<TD>1) <A href="http://ximian.com/products/evolution/">Evolution</A>.<BR>2) <A href="http://www.netscape.com/">Netscape</A> / <A href="http://www.mozilla.org/">Mozilla/Thunderbird</A> messenger.<BR>3) <A href="http://sylpheed.good-day.net/">Sylpheed</A> / <A href="http://sylpheed-claws.sourceforge.net/">Sylpheed-claws.</A> <BR>4) <A href="http://kmail.kde.org/">Kmail.</A><BR>5) <A href="http://www.gnus.org/">Gnus.</A><BR>6) <A href="http://balsa.gnome.org/">Balsa</A>.<BR>7) <A href="http://www.bynari.net/">Bynari Insight GroupWare Suite</A>. [Prop]<BR>8) <A href="http://www.newplanetsoftware.com/arrow/">Arrow.</A><BR>9) <A href="http://www.collaboration-world.com/gnumail/">Gnumail.</A> <BR>10) <A href="http://althea.sourceforge.net/">Althea.</A><BR>11) <A href="http://www.liamail.org/">Liamail.</A> <BR>12) <A href="http://sourceforge.net/projects/aethera/">Aethera.</A> <BR>13) MailWarrior.<BR>14) Opera. </TD></TR>
<TR bgColor=#f9f9f9>
<TD>Email client / PIM in MS Outlook style</TD>
<TD>Outlook</TD>
<TD>1) <A href="http://ximian.com/products/evolution/">Evolution</A>.<BR>2) <A href="http://www.bynari.net/">Bynari Insight GroupWare Suite</A>. [Prop]<BR>3) <A href="http://sourceforge.net/projects/aethera/">Aethera.</A> <BR>4) <A href="http://sylpheed.good-day.net/">Sylpheed.</A><BR>5) <A href="http://sylpheed-claws.sourceforge.net/">Sylpheed-claws.</A> </TD></TR>
<TR bgColor=#fdfdfd>
<TD>Email client in The Bat style</TD>
<TD>The Bat</TD>
<TD>1) <A href="http://sylpheed.good-day.net/">Sylpheed.</A><BR>2) <A href="http://sylpheed-claws.sourceforge.net/">Sylpheed-claws.</A><BR>3) <A href="http://kmail.kde.org/">Kmail.</A><BR>4) <A href="http://www.gnus.org/">Gnus.</A><BR>5) <A href="http://balsa.gnome.org/">Balsa</A>.</TD></TR>
<TR bgColor=#f9f9f9>
<TD>Console email client</TD>
<TD><A href="http://www.geocities.com/win32mutt/win32.html">Mutt</A> [<A href="http://www.math.fu-berlin.de/~guckes/mutt/windows.php3">de</A>], Pine, Pegasus, <A href="http://www.gnu.org/software/emacs/">Emacs</A></TD>
<TD>1) <A href="http://www.washington.edu/pine/">Pine</A>. [NF]<BR>2) <A href="http://mutt.org/">Mutt</A>.<BR>3) <A href="http://www.gnus.org/">Gnus.</A><BR>4) <A href="http://www.instinct.org/elm/">Elm</A>. <BR>5) <A href="http://www.gnu.org/software/emacs/">Emacs</A>. </TD></TR>
<TR bgColor=#fdfdfd>
<TD>News reader</TD>
<TD>1) <A href="http://forteinc.com/agent/index.php">Agent</A> [Prop]<BR>2) Free Agent<BR>3) <A href="http://xnews.newsguy.com/">Xnews</A><BR>4) Outlook<BR>5) Netscape / Mozilla<BR>6) <A href="http://www.opera.com/">Opera</A> [Prop]<BR>7) <A href="http://sylpheed.good-day.net/">Sylpheed</A> / <A href="http://sylpheed-claws.sourceforge.net/">Sylpheed-claws</A><BR>8) Dialog<BR>9) Gravity<BR>10) <A href="http://bnr2.org/">BNR2</A></TD>
<TD>1) <A href="http://knode.sourceforge.net/">Knode.</A><BR>2) <A href="http://pan.rebelbase.com/">Pan. </A><BR>3) <A href="http://home.wanadoo.nl/bram_s/newsleader">NewsReader</A>. <BR>4) <A href="http://www.netscape.com/">Netscape</A> / <A href="http://www.mozilla.org/">Mozilla</A>.<BR>5) <A href="http://www.opera.com/products/desktop/index.dml?platform=linux">Opera</A> [Prop] <BR>6) <A href="http://sylpheed.good-day.net/">Sylpheed</A> / <A href="http://sf.net/projects/sylpheed-claws/">Sylpheed-claws.</A> <BR>Console:<BR>7) <A href="http://www.washington.edu/pine/">Pine</A>. [NF]<BR>8) <A href="http://mutt.org/">Mutt</A>.<BR>9) <A href="http://www.gnus.org/">Gnus</A>.<BR>10) <A href="http://www.tin.org/">tin</A>. <BR>11) <A href="http://www.slrn.org/">slrn</A>. <BR>12) <A href="http://www.xemacs.org/">Xemacs</A>. <BR>13) <A href="http://bnr2.org/">BNR2</A>. </TD></TR>
<TR bgColor=#f9f9f9>
<TD>Address book</TD>
<TD>Outlook</TD>
<TD>1) <A href="http://icewalkers.com/jump.php?AID=1406&amp;src=home">Rubrica</A></TD></TR>
<TR bgColor=#fdfdfd>
<TD>Files downloading</TD>
<TD>Flashget, Go!zilla, Reget, Getright, DAP, <A href="http://unxutils.sourceforge.net/">Wget</A>, <A href="http://millweed.com/projects/wackget/">WackGet</A>, <A href="http://www.geocities.com/SiliconValley/Vista/2865/md.htm">Mass Downloader</A>, ...</TD>
<TD>1) <A href="http://www.krasu.ru/soft/chuchelo/">Downloader for X.</A><BR>2) <A href="http://devel-home.kde.org/~caitoo/index.html">Caitoo (former Kget).</A> <BR>3) <A href="http://prozilla.delrom.ro/prozilla.html">Prozilla</A>. <BR>4) <A href="http://wget.sunsite.dk/">Wget</A> (console, standard). <BR>5) GUI for Wget: <A href="http://kmago.sourceforge.net/">Kmago</A>, <A href="http://gtm.sf.net/">Gnome Transfer Manager</A>, QTget, Xget, ...<BR>6) <A href="http://aria.rednoah.com/">Aria.</A> <BR>7) <A href="http://www.lintux.cx/axel.html">Axel</A>.<BR>8) Download Accelerator Plus.<BR>9) <A href="http://personal1.iddeo.es/andresgarci/getleft/english/download.html">GetLeft</A>. <BR>10) <A href="http://lftp.yar.ru/">Lftp</A>. </TD></TR>
<TR bgColor=#f9f9f9>
<TD>Sites downloading</TD>
<TD>Teleport Pro, <A href="http://www.httrack.com/">Httrack</A>, <A href="http://unxutils.sourceforge.net/">Wget</A>, ...</TD>
<TD>
<P>1) <A href="http://www.httrack.com/">Httrack.</A><BR>2) WWW Offline Explorer. <BR>3) <A href="http://wget.sunsite.dk/">Wget</A> (console, standard). GUI: <A href="http://kmago.sourceforge.net/">Kmago</A>, QTget, Xget, ...<BR>4) <A href="http://www.krasu.ru/soft/chuchelo/">Downloader for X.</A> <BR>5) <A href="http://www.idata.sk/~ondrej/pavuk/">Pavuk.</A> <BR>6) <A href="http://www.lyra.org/sitecopy/">XSiteCopy.</A> <BR>7) <A href="http://personal1.iddeo.es/andresgarci/getleft/english/download.html">GetLeft</A>. <BR>8) <A href="http://curl.haxx.se/">Curl</A> (console).<BR>9) <A href="http://icewalkers.com/jump.php?AID=1941&amp;src=home">Khttrack</A>. </P></TD></TR>
<TR bgColor=#fdfdfd>
<TD>FTP-clients</TD>
<TD>Bullet Proof FTP, CuteFTP, WSFTP, SmartFTP, <A href="http://sourceforge.net/projects/filezilla/">FileZilla</A>, ...</TD>
<TD>1) <A href="http://gftp.seul.org/">Gftp.</A><BR>2) <A href="http://www.konqueror.org/">Konqueror.</A> <BR>3) <A href="http://kbear.sourceforge.net/">KBear.</A><BR>4) <A href="http://www.iglooftp.com/unix/download.html">IglooFTP</A>. [Prop]<BR>5) <A href="http://www.ayukov.com/nftp/index.html">Nftp</A>.<BR>6) <A href="http://www.wxftp.seul.org/">Wxftp</A>.<BR>7) AxyFTP. <BR>8) <A href="http://www.ibiblio.org/mc/">mc</A>. (cd ftp://...) <BR>9) <A href="http://tkftp.firebird.cx/">tkFTP</A>.<BR>10) <A href="http://yafc.sourceforge.net/">Yafc</A>. <BR>11) <A href="http://dpsftp.sourceforge.net/">Dpsftp</A>. (dead project)</TD></TR>
<TR bgColor=#fdfdfd>
<TD>Console FTP-clients</TD>
<TD>FTP in Far, ftp.exe, <A href="http://www.ncftpd.com/ncftp/">Ncftp</A></TD>
<TD>1) <A href="http://www.ncftpd.com/ncftp/">Ncftp.</A><BR>2) <A href="http://lftp.yar.ru/">Lftp.</A><BR>3) <A href="http://sourceforge.net/projects/avf/">Avfs.</A> (From any program: /#ftp:...) </TD></TR>
<TR bgColor=#f9f9f9>
<TD>IRC-clients</TD>
<TD>Mirc, Klient, VIRC, Xircon, Pirch, <A href="http://www.xchat.org/">XChat</A></TD>
<TD>
<P>1) <A href="http://xchat.org/">Xchat.</A><BR>2) <A href="http://www.kvirc.net/">KVirc.</A> <BR>3) <A href="http://www.irssi.org/">Irssi</A>.<BR>4) <A href="http://www.bitchx.org/">BitchX.</A><BR>5) Ksirc. <BR>6) <A href="http://www.epicsol.org/">Epic</A>.<BR>7) <A href="http://www.iagora.com/~espel/sirc.html">Sirc</A>.<BR>8) <A href="http://www.pjirc.com/">PJIRC</A>. </P></TD></TR>
<TR bgColor=#fdfdfd>
<TD>Local network chat clients without server</TD>
<TD>1) QuickChat<BR>2) <A href="http://www.akeni.com/product/lan.php">Akeni</A> <BR>3) PonyChat<BR>4) iChat</TD>
<TD>1) talk (console), ktalk.<BR>2) <A href="http://www.akeni.com/product/lan.php">Akeni</A>.<BR>3) <A href="http://freshmeat.net/redir/echat/41626/url_homepage/echat">Echat</A>.<BR>4) write, wall (chat between users of one machine)</TD></TR>
<TR bgColor=#f9f9f9>
<TD>Local messaging with Windows machines</TD>
<TD>WinPopUp</TD>
<TD>smbclient (console). GUI:<BR>1) <A href="http://linpopup2.sourceforge.net/">LinPopUp 2</A>.<BR>2) <A href="http://www.henschelsoft.de/kpopup_en.html">Kpopup</A>.<BR>3) Kopete.</TD></TR>
<TR bgColor=#fdfdfd>
<TD>Instant Messaging clients</TD>
<TD>ICQ Lite, ICQ Corp, MSN, <A href="http://www.aim.com/">AIM</A>, <A href="http://www.yahoo.com/">Yahoo</A>, ...<BR>Trillian ICQ (freeware, can replace all common IM clients), <A href="http://miranda-icq.sourceforge.net/">Miranda</A>, <A href="http://gaim.sourceforge.net/">Gaim</A></TD>
<TD>1) <A href="http://licq.org/">Licq</A> (ICQ).<BR>2) <A href="http://konst.org.ua/centericq/">Centericq</A> (Nearly all IM protocols, console).<BR>3) <A href="http://alicq.sourceforge.net/">Alicq</A> (ICQ).<BR>4) <A href="http://www.micq.org/">Micq</A> (ICQ).<BR>5) GnomeICU (ICQ).<BR>6) <A href="http://gaim.sourceforge.net/">Gaim.</A> (Nearly all IM protocols)<BR>7) <A href="http://freshmeat.net/projects/ayttm/">Ayttm.</A> (Nearly all IM protocols)<BR>8) <A href="http://kopete.kde.org/">Kopete</A>.<BR>9) <A href="http://www.everybuddy.com/">Everybuddy</A>.<BR>10) <A href="http://sim-icq.sourceforge.net/">Simple Instant Messenger.</A><BR>11) <A href="http://download.cnet.com/downloads/0,10152,0-10145-110-8786881,00.html?gid=104653&amp;tag=dlntl">Imici Messenger</A>. <BR>12) <A href="http://ickle.sourceforge.net/">Ickle</A> (ICQ).<BR>13) <A href="http://amsn.sourceforge.net/">aMSN</A> (MSN).<BR>14) Kmerlin (MSN). <BR>15) <A href="http://kicq.sourceforge.net/kicq.shtml">Kicq</A> (ICQ). <BR>16) <A href="http://ysmv7.sourceforge.net/">YSM</A>. (ICQ, console).<BR>17) <A href="http://www.kxicq.org/">kxicq.</A> <BR>18) <A href="http://messenger.yahoo.com/messenger/download/unix.html">Yahoo Messenger for Unix</A>. <BR>19) <A href="http://kmess.sourceforge.net/">Kmess</A> (MSN).<BR>20) <A href="http://www.aim.com/">AIM</A>.<BR>21) <A href="http://freshmeat.net/redir/msnre/41829/url_homepage/msnre">MSNre</A>. (console)</TD></TR>
<TR bgColor=#f9f9f9>
<TD>Jabber IM clients</TD>
<TD><A href="http://www.jabber.ru/projects/jajc/">JAJC</A>, <A href="http://www.jabber.ru/projects/tkabber/">Tkabber (+activestate tcl)</A>, <A href="http://psi.sourceforge.net/">Psi</A>, <A href="http://exodus.sourceforge.net/">Exodus</A>, <A href="http://winjab.sourceforge.net/">WinJab</A>, myJabber, RhymBox, Rival, Skabber, TipicIM, Vista, Yabber, <A href="http://miranda-icq.sourceforge.net/">Miranda</A>, <A href="http://gaim.sourceforge.net/">Gaim</A>, <A href="http://www.akeni.com/product/jabber.php">Akeni Messenger Jabber Edition</A></TD>
<TD>1) <A href="http://www.jabber.ru/projects/tkabber/">Tkabber</A>.<BR>2) <A href="http://gabber.sourceforge.net/">Gabber</A>.<BR>3) <A href="http://psi.sourceforge.net/">Psi</A>.<BR>4) <A href="http://gaim.sourceforge.net/">Gaim</A>. <BR>5) <A href="http://konst.org.ua/centericq/">Centericq</A> (console). <BR>6) <A href="http://freshmeat.net/projects/ayttm/">Ayttm.</A> <BR>7) <A href="http://www.akeni.com/product/jabber.php">Akeni Messenger Jabber Edition.</A> </TD></TR>
<TR bgColor=#fdfdfd>
<TD>Monitoring sites and mailboxes, displaying news headlines or full articles</TD>
<TD><A href="http://www.watznew.com/">WatzNew</A></TD>
<TD>1) <A href="http://homemade.hypermart.net/websec/">Web Secretary</A>.<BR>2) <A href="http://apps.kde.com/rf/2/info/id/999">Knewsticker</A> &amp; korn.<BR>3) <A href="http://www.mozilla.org/">Mozilla</A> (???).<BR>4) watch -n seconds lynx -dump </TD></TR>
<TR bgColor=#f9f9f9>
<TD>Video/audio conference</TD>
<TD>NetMeeting</TD>
<TD>
<P>1) <A href="http://www.gnomemeeting.org/">GnomeMeeting</A>.<BR>2) <A href="http://www-nrg.ee.lbl.gov/">vat/vic/wb</A>.<BR>3) <A href="http://www-mice.cs.ucl.ac.uk/multimedia/software/">rat/wbd/nte</A>.<BR>4) <A href="http://www.cs.columbia.edu/IRT/software/nevot/">NeVoT</A>.<BR>5) <A href="http://www-sop.inria.fr/rodeo/ivs.html">IVS</A>.</P></TD></TR>
<TR bgColor=#fdfdfd>
<TD>Voice communication</TD>
<TD>Speak Freely</TD>
<TD>
<P>1) <A href="http://www.fourmilab.ch/speakfree/unix/">Speak Freely for Unix</A>.<BR>2) <A href="http://www.teamspeak.org/">TeamSpeak</A>.</P></TD></TR>
<TR bgColor=#f9f9f9>
<TD>Firewall (packet filtering)</TD>
<TD>BlackICE, ATGuard, ZoneAlarm, Agnitum Outpost Firewall, <A href="http://www.kerio.com/">WinRoute Pro</A>, Norton Internet Security, <A href="http://soho.sygate.com/products/pspf_ov.htm">Sygate Personal Firewall PRO</A>, Kerio Personal Firewall, ...</TD>
<TD>iptables or more outdated ipchains (console, standard). Front ends:<BR>1) <A href="http://kmyfirewall.sourceforge.net/">Kmyfirewall.</A><BR>2) <A href="http://morizot.net/firewall/">Easy Firewall Generator</A>.<BR>3) <A href="http://www.fwbuilder.org/">Firewall Builder</A>.<BR>4) <A href="http://shorewall.sf.net/">Shorewall</A>. <BR>5) <A href="http://www.simonzone.com/software/guarddog/">Guarddog</A>.<BR>6) <A href="http://firestarter.sourceforge.net/">FireStarter</A>. <BR>7) <A href="http://www.smoothwall.org/">Smoothwall</A>. [Prop]<BR>8) <A href="http://www.ipcop.org/">IPCop.</A><BR>9) <A href="http://www.balabit.com/">Zorp.</A> </TD></TR>
<TR bgColor=#fdfdfd>
<TD>IDS (Intrusion Detection System)</TD>
<TD>1) BlackICE<BR>2) Agnitum Outpost Firewall<BR>3) Tripwire [prop]<BR>4) Kerio Personal Firewall </TD>
<TD>1) <A href="http://www.snort.org/">Snort</A>.<BR>2) <A href="http://www.psionic.com/">Portsentry / Hostsentry / Logsentry</A>.<BR>3) Tripwire [GPL].<BR>4) Tripwall.<BR>5) AIDE.<BR>6) ViperDB.<BR>7) Integrit. <BR>8) <A href="http://freshmeat.net/redir/cids/40689/url_homepage/cids">Cerberus Intrusion Detection System</A>. <BR>9) <A href="http://midas-nms.sourceforge.net/">MIDAS NMS</A>. </TD></TR>
<TR bgColor=#f9f9f9>
<TD>Port scanning detection</TD>
<TD>???</TD>
<TD>1) <A href="http://pkdump.sourceforge.net/pkdumpage.html">Pkdump</A>.</TD></TR>
<TR bgColor=#fdfdfd>
<TD>Making the system more securely</TD>
<TD>???</TD>
<TD>1) <A href="http://www.bastille-linux.org/">Bastille</A>. <BR>2) <A href="http://usat.sourceforge.net/">Linux Security Auditing Tool</A>. </TD></TR>
<TR bgColor=#f9f9f9>
<TD>Visual route</TD>
<TD>VisualRoute [Prop] </TD>
<TD>1) <A href="http://www.dtek.chalmers.se/~d3august/xt">Xtraceroute.</A> <BR>2) <A href="ftp://ftp.visualware.com/pub/vr/vr.tar.gz">VisualRoute.</A> [Prop] <BR>3) <A href="http://www.bitwizard.nl/mtr/">Mtr.</A> <BR>4) <A href="http://geotrace.sourceforge.net/">Geotrace.</A> </TD></TR>
<TR bgColor=#fdfdfd>
<TD>Content (ad / popup) filtering</TD>
<TD>Proxomitron, ATGuard, Agnitum Outpost Firewall, <A href="http://www.privoxy.org/">Privoxy</A>, MS ISA server, <A href="http://www.guidescope.com/">Guidescope</A>, ...</TD>
<TD>1) <A href="http://www.dansguardian.org/">DansGuardian.</A> <BR>2) Squid.<BR>3) <A href="http://www.squidguard.org/">Squidguard</A>. <BR>4) <A href="http://www.privoxy.org/">Privoxy</A>.<BR>5) <A href="http://www.junkbusters.com/ijb.html">JunkBuster</A>. <BR>6) <A href="http://www.balabit.com/">Zorp.</A> <BR>7) <A href="http://www.fork.kiev.ua/">Fork</A>.<BR>8) <A href="http://linuxnews.ru/redirector">Redirector</A>. </TD></TR>
<TR bgColor=#f9f9f9>
<TD>Traffic control / shaping</TD>
<TD><A href="http://www.kerio.com/">WinRoute Pro</A>, ...</TD>
<TD>1) <A href="http://www.stewart.com.au/ip_relay">IP Relay</A>.<BR>2) CBQ (from iproute2 package). <BR>3) tc (from iproute2 package). <BR>4) <A href="http://www.lartc.org/">LARTC</A>. </TD></TR>
<TR bgColor=#fdfdfd>
<TD>Traffic accounting</TD>
<TD>
<P>Netstat, <A href="http://www.tmeter.ru/">Tmeter</A>, ...</P></TD>
<TD>1) <A href="http://www.tcp4me.com/">Tcp4me</A>.<BR>2) <A href="http://www.opennet.ru/getstatd/">Getstatd</A>. <BR>3) <A href="http://www2.empnet.com/ipacct/">Ipacct</A>. <BR>4) <A href="http://sf.net/projects/ipac-ng">Ipac-ng</A>. <BR>5) <A href="http://ipaudit.sf.net/ipaudit-web/">Ipaudit</A>.<BR>6) <A href="http://www.lanbilling.ru/">Lanbilling</A>. <BR>7) <A href="http://web.onda.com.br/orso/sarg.html">SARG</A> (full Squid traffic).<BR>8) <A href="http://talinux.sourceforge.net/">Talinux</A>.<BR>9) <A href="http://www.netup.ru/">NetUP UserTrafManager.</A> <BR>10) <A href="http://people.ee.ethz.ch/~oetiker/webtools/mrtg/">MRTG</A>.<BR>11) <A href="http://srparish.net/scripts/">NetTop</A>.</TD></TR>
<TR bgColor=#f9f9f9>
<TD>Peer-to-peer clients / servers, file sharing (p2p)</TD>
<TD>Morpheus (Gnutella), WinMX, Napster, KaZaA (Fasttrack), <A href="http://www.edonkey2000.com/">eDonkey</A> [Prop], <A href="http://www.emule-project.net/">eMule</A>, <A href="http://thecircle.org.au/">TheCircle</A>, <A href="http://bitconjurer.org/BitTorrent/">Bittorrent</A>, SoulSeek, <A href="http://www.neo-modus.com/">Direct Connect</A></TD>
<TD>1) <A href="http://www.freesoftware.fsf.org/mldonkey/">Mldonkey</A>. (eDonkey, Soulseek, Fasttrack, Gnutella, Open Napster, Direct Connect, BitTorrent)<BR>2) <A href="http://www.limewire.com/">LimeWire</A>. (Gnutella)<BR>3) <A href="http://lopster.sourceforge.net/">Lopster</A>. (OpenNAP)<BR>4) <A href="http://jasta.gotlinux.org/gnapster.html">Gnapster</A>. (OpenNAP)<BR>5) <A href="http://ed2k-gtk-gui.sourceforge.net/download.shtml">eDonkey.</A> (eDonkey) [Prop] <BR>6) <A href="http://cdonkey.suche.org/">cDonkey.</A> (eDonkey)<BR>7) <A href="http://giftcurs.sourceforge.net/">Gift client</A> / <A href="http://gift.sourceforge.net/">server</A> / <A href="http://developer.berlios.de/projects/gift-fasttrack">fasttrack plugin</A> (Fasttrack) <BR>8) ed2k_gui.<BR>9) <A href="http://gtk-gnutella.sourceforge.net/">Gtk-Gnutella</A>. (Gnutella)<BR>10) <A href="http://www.qtella.net/">Qtella</A>. (Gnutella)<BR>11) <A href="http://mutella.sourceforge.net/">Mutella</A>. (Gnutella, console)<BR>12) <A href="http://thecircle.org.au/">TheCircle</A>. <BR>13) <A href="http://f\r/e\e/n\e/t.sourceforge.net/">f\r/e\e/n\e/t</A>. (fully anonymous p2p)<BR>14) <A href="http://www.gnu.org/software/GNUnet/gnunet.html">GNUnet</A>.<BR>15) <A href="http://lmule.sf.net/">Lmule</A>. (eDonkey)<BR>16) <A href="http://www.xmule.org/">Xmule</A>. (eDonkey) <BR>17) <A href="http://bitconjurer.org/BitTorrent/">Bittorrent.</A> <BR>18) <A href="http://www.sensi.org/~ak/pyslsk/">PySoulSeek</A> (Soulseek).<BR>19) <A href="http://www.loopholesoftware.com/">Loophole.</A> (WinMX) [Prop]<BR>20) <A href="http://dc.ketelhot.de/">Direct Connect</A>.<BR>21) <A href="http://quickdc.sourceforge.net/">QuickDC</A>. (Direct Connect). <BR>22) <A href="http://www.overnet.com/download.html">OverNet</A>. <BR>23) <A href="http://apollon.sf.net/">Apollon</A>. <BR>24) <A href="http://www.grapevineproject.org/">GrapeWine</A>. (fully anonymous p2p)<BR>25) <A href="http://freshmeat.net/projects/snark/">Snark</A>. (Bittorrent) </TD></TR>
<TR bgColor=#f9f9f9>
<TD>"Hotline" p2p protocol clients / servers</TD>
<TD>???</TD>
<TD>Clients:<BR>1) <A href="http://gtkhx.sourceforge.net/">Gtkhx</A>.<BR>2) <A href="http://fidelio.sourceforge.net/">Fidelio</A>.<BR>3) <A href="http://ac2i.tzo.com/ghx_e.html">GHX</A>. [Prop]<BR>Servers:<BR>1) <A href="http://synhxd.sourceforge.net/">Synapse</A>.<BR>2) <A href="http://ac2i.tzo.com/hsx_e.html">HSX</A>.</TD></TR>
<TR bgColor=#fdfdfd>
<TD>Program for working with sound modem with many functions - from answerback and AON to fax device</TD>
<TD>Venta Fax, <A href="http://www.cds-inc.com/prod/primafaxlinux.html">PrimaFax</A></TD>
<TD>1) <A href="http://www.cowlug.org/gfax">Gfax.</A> (???)<BR>2) <A href="http://www.cds-inc.com/prod/primafaxlinux.html">PrimaFax</A>. [Prop, 99$]<BR>3) mgetty + voice + sendfax. <BR>4) vgetty. </TD></TR>
<TR bgColor=#f9f9f9>
<TD>Work with faxes</TD>
<TD>WinFax</TD>
<TD>1) <A href="http://www.hylafax.org/">HylaFax</A>.<BR>2) <A href="http://www.fax2send.com/">Fax2Send.</A> [Prop] <BR>3) <A href="http://www.cvine.freeserve.co.uk/efax-gtk/">Efax</A>.<BR>4) <A href="http://www.esker.com/esker_com/products/vsifax_home.html">VSI-FAX</A>. [Prop] </TD></TR>
<TR bgColor=#fdfdfd>
<TD>Dialup</TD>
<TD>Vdialer, etc</TD>
<TD>1) <A href="http://www.kde.org/">Kppp</A>.<BR>2) <A href="http://xisp.hellug.gr/">X-isp</A>.<BR>3) <A href="http://www.worldvisions.ca/wvdial/">wvdial</A>. (Front ends: <A href="http://console-newsletter.hypermart.net/x-wvdial">X-wvdial</A>, kvdial, gtkdial).<BR>4) <A href="http://mfcn.ilo.de/gppp">Gppp</A>.<BR>5) Kinternet.<BR>6) Rp3.<BR>7) pppconfig + pon + poff. <BR>8) Modem Lights.<BR>9) <A href="http://freshmeat.net/projects/netcount/">Netcount</A>. (console) </TD></TR>
<TR bgColor=#f9f9f9>
<TD>FTN editor</TD>
<TD>Golded</TD>
<TD>1) <A href="http://www.goldware.dk/">Golded.</A><BR>2) <A href="http://golded-plus.sourceforge.net/">Golded+.</A><BR>3) <A href="http://husky.sf.net/">Msged</A>.<BR>4) <A href="http://www.qecho.qded.da.ru/">Qded</A>. </TD></TR>
<TR bgColor=#fdfdfd>
<TD>FTN tosser</TD>
<TD>FastEcho, hpt</TD>
<TD>1) <A href="http://husky.sf.net/">hpt.</A><BR>2) <A href="ftp://hell.binec.ru/pub/ftn/crashecho">CrashEcho.</A><BR>3) <A href="http://www.qecho.qded.da.ru/">Qecho</A>. <BR>4) <A href="http://www.df.lth.se/~billing/crashmail.html">CrashMail II</A>.<BR>5) <A href="http://www.fidogate.org/">Fidogate</A> - gate to news.<BR>6) <A href="ftp://ftp.average.org/pub/ifmail/">ifmail</A> - gate to news.</TD></TR>
<TR bgColor=#f9f9f9>
<TD>FTN mailer</TD>
<TD>SF-Mail, T-Mail</TD>
<TD>1) <A href="ftp://oskin.macomnet.ru/">ifcico.</A><BR>2) <A href="http://lev.serebryakov.spb.ru/download">qico.</A><BR>3) <A href="http://kst.spb.ru/">Bforce</A>.<BR>4) <A href="http://2f.ru/binkd/">Binkd</A>. </TD></TR>
<TR bgColor=#fdfdfd>
<TD>Remote management</TD>
<TD>1) <A href="http://www.realvnc.com/">VNC, Virtual Network Computing</A><BR>2) <A href="http://www.famatech.com/">Remote Administrator (Radmin)</A> [Prop]<BR>3) Remote Assistance [Prop]<BR>4) Symantec pcAnywhere [Prop]<BR>5) Windows Terminal Server [Prop]<BR>6) <A href="http://www.rdesktop.org/">Rdesktop</A> [Prop]<BR>7) <A href="http://www.famatech.com/default.html">Radmin</A> [Prop]<BR>8) <A href="http://www.vector-networks.com/pcduo/">PC-Duo</A> [Prop]<BR>9) <A href="http://www.gidsoftware.com/">Huey PC Remote Control (only for NT)</A> [Prop]<BR>10) <A href="http://www.netopia.com/">Timbuktu Pro</A> [Prop]<BR>11) <A href="http://www.laplink.com/">LapLink</A> [Prop]<BR>12) <A href="http://www.gotomypc.com/">GoToMyPC</A> [Prop]<BR>13) <A href="http://bo2k.sourceforge.net/">Bo2k</A> and other trojans</TD>
<TD>
<P>1) <A href="http://www.realvnc.com/">VNC, Virtual Network Computing</A>.<BR>2) <A href="http://www.ssh.com/">ssh</A>.<BR>3) Remote management is built-in in <A href="http://www.xfree86.org/">XFree86</A>.<BR>4) Remote management is built-in in <A href="http://www.kde.org/info/3.1/feature_guide_flat.html#section3">KDE 3.1</A>. ("desktop sharing"). <BR>5) <A href="http://www.rdesktop.org/">Rdesktop Client</A>.<BR>6) rsh / rlogin. <BR>7) telnet.<BR>8) Gtelnet. <BR>9) <A href="http://freshmeat.net/projects/x0rfbserver/">x0rfbserver</A>. <BR>10) <A href="http://kurd.sourceforge.net/">KDE Universal Remote Desktop</A>. </P></TD></TR>
<TR bgColor=#f9f9f9>
<TD>Transmission of the files on modem</TD>
<TD>HyperTerminal, Terminate, etc</TD>
<TD>1) <A href="http://www.netsonic.fi/~walker/minicom.html">Minicom</A> + <A href="http://www.ohse.de/uwe/software/lrzsz.html">lrzcz</A> + <A href="http://www.columbia.edu/kermit/">Kermit.</A><BR>2) <A href="http://www.moxa.com/">Msterm.</A><BR>3) <A href="http://pficheux.free.fr/xtel/">Xtel</A>. <BR>4) uucp.<BR>5) <A href="http://www.ohse.de/uwe/software/lrzsz.html">lrzsz</A> + cu from uucp. </TD></TR>
<TR bgColor=#fdfdfd>
<TD>Work with ssh</TD>
<TD>Putty, Irlex, cygwin + <A href="http://www.ssh.com/">ssh</A></TD>
<TD>1) Kssh.<BR>2) <A href="http://www.ssh.com/">ssh</A> / <A href="http://www.openssh.org/">openssh</A>.<BR>3) <A href="http://www.gnome.org/softwaremap/projects/gtelnet/">GTelnet</A>. (Telnet, SSH, Rlogin)</TD></TR>
<TR bgColor=#f9f9f9>
<TD>Network monitoring tool</TD>
<TD>Dumeter, Netmedic</TD>
<TD>1) <A href="http://web.wt.net/~billw/gkrellm/gkrellm.html">Gkrellm</A>.<BR>2) <A href="http://www.bb4.com/">Big Brother</A>. <BR>3) <A href="http://etherape.sourceforge.net/">Etherape</A>. <BR>4) <A href="http://www.nagios.org/">Nagios</A>. <BR>5) <A href="http://wwwhome.cs.utwente.nl/~schoenw/scotty/">Tkined</A>.<BR>6) <A href="http://people.ee.ethz.ch/~oetiker/webtools/mrtg/">MRTG</A>.<BR>7) Rrdtool.<BR>8) <A href="http://pikt.org/">PIKT</A>.<BR>9) <A href="http://www.angio.net/consult/autostatus/">Autostatus</A>.<BR>10) <A href="http://bcnu.sourceforge.net/">bcnu</A>.<BR>11) <A href="http://ftp.kernel.org/software/mon/">mon</A>.<BR>12) <A href="http://www.sysmon.org/">Sysmon</A>.<BR>13) <A href="http://spong.sourceforge.net/">Spong</A>.<BR>14) <A href="http://www.netplex-tech.com/snips/">SNIPS</A>.<BR>15) <A href="http://cebu.mozcom.com/riker/iptraf/">iptraf</A> (console). <BR>16) Ksysguard. <BR>17) <A href="http://www.opennms.org/">OpenNMS</A>. <BR>18) tcpdump. </TD></TR>
<TR bgColor=#fdfdfd>
<TD>Network maintance tool</TD>
<TD>HP OpenView, MS SMS, Tivoli</TD>
<TD>1) HP OpenView agents. [Prop]<BR>2) <A href="http://www.bb4.com/">Big Brother</A>.<BR>3) <A href="http://www.marko.net/cheops">Cheops</A>.<BR>4) <A href="http://wwwhome.cs.utwente.nl/~schoenw/scotty/">Tkined</A>.<BR>5) <A href="http://www.opennms.org/">OpenNMS</A>. </TD></TR>
<TR bgColor=#f9f9f9>
<TD>Protocols analysing, sniffing</TD>
<TD>
<P><A href="http://www.asl-sniffer.co.uk/">Sniffer Pro</A>, EtherPeek (TokenPeek, AiroPeek), <A href="http://windump.polito.it/">Windump</A>, <A href="http://www.ethereal.com/">Ethereal</A>, MS Network Monitor, Iris, <A href="http://www.sunrisetelecom.com/lansoftware/lanexplorer.shtml">Lan Explorer</A>, <A href="http://www.tmeter.ru/netsniffer/">NetSniffer</A>, Snort, ...</P></TD>
<TD>1) <A href="http://www.ethereal.com/">Ethereal</A>.<BR>2) <A href="http://www.tcpdump.org/">Tcpdump</A>.<BR>3) <A href="http://etherape.sourceforge.net/">Etherape</A>. <BR>4) <A href="http://www.ntop.org/">Ntop</A>. <BR>5) ipxdump. (+ipxparse for parsing) <BR>6) Snort. </TD></TR>
<TR bgColor=#fdfdfd>
<TD>Security scanner</TD>
<TD>ShadowScan, ISS, Retina, Internet Scanner</TD>
<TD>1) <A href="http://www.nessus.org/">Nessus</A>.<BR>2) <A href="http://www.insecure.org/nmap/">Nmap</A>. </TD></TR>
<TR bgColor=#f9f9f9>
<TD>Routing</TD>
<TD>MS RRAS</TD>
<TD>1) iproute2 + iptables. <BR>2) <A href="http://www.nexthop.com/products/gated.shtml">GateD</A>. [Prop]<BR>3) <A href="http://www.zebra.org/">GNU Zebra</A>. </TD></TR>
<TR bgColor=#fdfdfd>
<TD>Utilites and libraries for Ethernet/IP testing</TD>
<TD><A href="http://www.laurentconstantin.com/en/">lcrzo</A></TD>
<TD><A href="http://www.laurentconstantin.com/en/">lcrzo</A></TD></TR>
<TR bgColor=#fdfdfd>
<TD>IP-telephony</TD>
<TD>Buddyphone [Prop], Cisco SoftPhone</TD>
<TD>1) <A href="http://www.gnu.org/software/bayonne/bayonne.html">GNU Bayonne</A>.<BR>2) <A href="http://www.openh323.org/">Openh323</A>.<BR>3) <A href="http://www.openphone.org/">OpenPhone</A>. <BR>4) <A href="http://www.thekompany.com/products/tkphone/">tkPhone</A>. <BR>5) <A href="http://www.naumen.ru/">NauPhone</A>. </TD></TR>
<TR bgColor=#fdfdfd>
<TD>Sharing data/files</TD>
<TD>Windows shares</TD>
<TD>1) NFS.<BR>2) <A href="http://www.samba.org/">Samba</A>.<BR>3) <A href="http://www.samba-tng.org/">Samba-TNG</A>.<BR>4) FTP. </TD></TR>
<TR bgColor=#f9f9f9>
<TD>???</TD>
<TD>Windows Domain, Active Directory</TD>
<TD>1) Samba. <BR>2) <A href="http://www.openldap.org/">Ldap</A>. <BR>3) yp.</TD></TR>
<TR bgColor=#fdfdfd>
<TD>Viewing Windows-network</TD>
<TD>Network neighborhood</TD>
<TD>1) Samba. <BR>2) KDE Lan Browser, lisa<BR>3) LinNeighborhood.<BR>4) <A href="http://www.public.iastate.edu/~chadspen/homepage.html">xSMBrowser</A>.<BR>5) <A href="http://sourceforge.net/projects/komba">Komba2</A>. <BR>6) <A href="http://www.konqueror.org/">Konqueror.</A> </TD></TR>
<TR bgColor=#f9f9f9>
<TD>ADSL</TD>
<TD>1) <A href="http://www.raspppoe.com/">RASPPPOE</A></TD>
<TD>1) rp-pppoe.<BR>2) <A href="http://pptpclient.sourceforge.net/">Pptp client</A>. </TD></TR>
<TR bgColor=#fdfdfd>
<TD>Distributed computing</TD>
<TD>
<P><A href="http://www.aspenleaf.com/distributed/distrib-projects.html">All projects</A>.<BR>1) <A href="http://www.grid.org/">United Devices.</A><BR>2) <A href="http://setiathome.ssl.berkeley.edu/">Seti @ Home.</A><BR>3) <A href="http://folding.stanford.edu/">Folding @ Home</A>.<BR>4) <A href="http://genomeathome.stanford.edu/">Genome @ Home</A>.</P></TD>
<TD><A href="http://www.aspenleaf.com/distributed/distrib-projects.html">All projects</A>.<BR>1) <A href="http://www.distributed.net/">Distributed.net</A>.<BR>2) <A href="http://setiathome.ssl.berkeley.edu/">Seti @ Home.</A><BR>3) <A href="http://folding.stanford.edu/">Folding @ Home</A>.<BR>4) <A href="http://genomeathome.stanford.edu/">Genome @ Home</A>. <BR>5) <A href="http://www.d2ol.com/">D2ol</A>.<BR>* Some versions for Linux run only in console mode.</TD></TR>
<TR bgColor=#f9f9f9>
<TD>IPSEC protocol</TD>
<TD>-</TD>
<TD><A href="http://freeswan.org/">FreeSWAN</A>. </TD></TR>
<TR bgColor=#fdfdfd>
<TD>VRML viewer and editor</TD>
<TD>
<P>???</P></TD>
<TD>1) <A href="http://freshmeat.net/redir/whitedune/28252/url_homepage/dune">White Dune</A>.</TD></TR>
<TR bgColor=#f9f9f9>
<TD>Work with Ebay</TD>
<TD>???</TD>
<TD>1) <A href="http://bidwatcher.sourceforge.net/">Bidwatcher</A>.</TD></TR>
<TR bgColor=#eefaff>
<TD colSpan=3><B><FONT size=+1><A name=2></A>2) Work with files.</FONT></B></TD></TR>
<TR bgColor=#fdfdfd>
<TD>File manager in FAR and NC style</TD>
<TD>FAR, Norton Commander, Disco Commander, Volcov Commander, etc</TD>
<TD>1) <A href="http://www.ibiblio.org/mc/">Midnight Commander.</A><BR>2) <A href="http://xnc.dubna.su/">X Northern Captain.</A> <BR>3) <A href="http://deco.sourceforge.net/">Deco (Demos Commander)</A>.<BR>4) <A href="http://pcmm.sourceforge.net/">Portos Commander</A>.<BR>5) <A href="http://www.konqueror.org/">Konqueror in MC style</A>. <BR>6) Gentoo.<BR>7) <A href="http://cade.webbg.com/vfu/">VFU</A>.<BR>8) <A href="http://www.han.de/~werner/ytree.html">Ytree</A>. </TD></TR>
<TR bgColor=#f9f9f9>
<TD>File manager in Windows Commander style</TD>
<TD>Total Commander (former Windows Commander)</TD>
<TD>1) <A href="http://krusader.sourceforge.net/">Krusader.</A> <BR>2) <A href="http://www.kcommander.org/">Kcommander.</A><BR>3) FileRunner (TCL/TK). <BR>4) <A href="http://www.algonet.se/~skeleton/linuxcmd/">Linux Commander</A>.<BR>5) <A href="http://www.ussr.to/Russia/vvi/lcmd.html">LinCommander. </A><BR>6) <A href="http://rox.sourceforge.net/">Rox</A>, <A href="http://rox.sourceforge.net/rox_filer.php3">Rox-Filer</A>.<BR>7) <A href="http://www.pitt.edu/~macst92/emelfm/">Emelfm</A>.<BR>8) <A href="http://www.ibiblio.org/mc/">Midnight Commander.</A><BR>9) <A href="http://www.boomerangsworld.de/worker/wchanges.php3?lang=en">Worker</A>. </TD></TR>
<TR bgColor=#fdfdfd>
<TD>File manager in Windows style</TD>
<TD>Windows Explorer / Internet Explorer</TD>
<TD>1) <A href="http://www.konqueror.org/">Konqueror.</A><BR>2) <A href="http://www.gnome.org/">Gnome-Commander.</A> <BR>3) <A href="http://www.gnome.org/projects/nautilus/">Nautilus</A>.<BR>4) <A href="http://wolfpack.twu.net/Endeavour2/">Endeavour Mark II</A>. <BR>5) <A href="http://foxdesktop.sourceforge.net/foXdesktop/">XWC</A>. </TD></TR>
<TR bgColor=#fdfdfd>
<TD>Visual Shell</TD>
<TD>???</TD>
<TD>1) <A href="http://www.cs.indiana.edu/~kinzler/vshnu/">vshnu: the New Visual Shell.</A> </TD></TR>
<TR bgColor=#f9f9f9>
<TD>Quick viewing of local HTML documents</TD>
<TD>1) Internet Explorer<BR>2) Microsoft Document Explorer </TD>
<TD>1) <A href="http://www.dillo.org/">Dillo</A>. (Russian language patches - <A href="http://stuphead.asplinux.ru/dillo/">here</A>).<BR>2) <A href="http://www.konqueror.org/">Konqueror.</A><BR>3) <A href="http://www.gnome.org/projects/nautilus/">Nautilus</A>.<BR>4) <A href="http://lynx.browser.org/">Lynx</A> / <A href="http://atrey.karlin.mff.cuni.cz/~clock/twibright/links/">Links</A>.</TD></TR>
<TR bgColor=#fdfdfd>
<TD>Viewing all operations with files</TD>
<TD>Filemon</TD>
<TD><A href="http://freshmeat.net/projects/filemon/">Filemon.</A></TD></TR>
<TR bgColor=#f9f9f9>
<TD>Work with UDF</TD>
<TD>Roxio (former Adaptec) UDF Reader, Roxio Direct CD</TD>
<TD><A href="http://linux-udf.sourceforge.net/">Linux-UDF.</A></TD></TR>
<TR bgColor=#fdfdfd>
<TD>Work with multi session CD + recovering information from faulty multi session disks</TD>
<TD><A href="http://www.smart-projects.net/isobuster/">IsoBuster</A></TD>
<TD><A href="http://www.elis.rug.ac.be/~ronsse/cdfs/">CDFS</A>.</TD></TR>
<TR bgColor=#fdfdfd>
<TD>Work with compressed files</TD>
<TD>1) WinZip<BR>2) WinRar<BR>3) <A href="http://www.7-zip.org/">7-Zip</A><BR>4) WinACE <BR>5) UltimateZip </TD>
<TD>
<P>1) Ark (kdeutils).<BR>2) <A href="http://www.geocities.com/SiliconValley/9757/gnozip.html">Gnozip.</A><BR>3) <A href="http://perso.wanadoo.fr/coquelle/karchiver/">KArchiveur</A>.<BR>4) <A href="http://gnochive.sourceforge.net/">Gnochive</A>. <BR>5) <A href="http://fileroller.sourceforge.net/">FileRoller</A>.<BR>6) <A href="http://www.winace.com/">Unace</A>. <BR>7) LinZip.<BR>8) <A href="http://www.woodsway.com/TkZip/">TkZip</A>.</P></TD></TR>
<TR bgColor=#f9f9f9>
<TD>Console archivers</TD>
<TD>arj, rar, zip, tar, gzip, bzip2, lha...</TD>
<TD>1) tar, gzip, bzip2.<BR>2) <A href="http://membled.com/work/apps/unarc/">Unarc</A>.<BR>3) <A href="http://www2m.biglobe.ne.jp/~dolphin/lha/lha.htm">Lha</A>. (on Japanese)<BR>4) <A href="http://www.info-zip.org/pub/infozip/">Infozip</A>.<BR>5) <A href="http://arj.sourceforge.net/">Arj</A>.<BR>6) <A href="http://sourceforge.net/projects/avf/">Avfs</A>. (The support of any archive from any program - file.zip#/...).<BR>7) Zoo.<BR>8) <A href="http://www.rarlab.com/download.htm">RAR</A>. <BR>9) <A href="http://www.kyz.uklinux.net/cabextract.php3">CAB Extract</A>.</TD></TR>
<TR bgColor=#fdfdfd>
<TD>Program for files and directories comparison</TD>
<TD>1) <A href="http://www.scootersoftware.com/">Beyond Compare</A>.<BR>2) Araxis Merge.<BR>3) <A href="http://winmerge.sourceforge.net/">WinMerge</A> <BR>4) <A href="http://www.mingw.org/">Minimalist GNU For Windows (diff.exe)</A><BR>5) <A href="http://www.cis.upenn.edu/~bcpierce/unison/">Unison</A></TD>
<TD>
<P>1) Mgdiff. <BR>2) diff, patch.<BR>3) <A href="http://www.xemacs.org/">Xemacs</A>. <BR>4) <A href="http://sourceforge.net/projects/xdelta/">Xdelta</A>. (make patches for binary files) <BR>5) <A href="http://meld.sourceforge.net/">Meld</A>.<BR>6) <A href="http://xxdiff.sourceforge.net/">Xxdiff</A>. <BR>7) <A href="http://www.cis.upenn.edu/~bcpierce/unison/">Unison</A>.</P></TD></TR>
<TR bgColor=#f9f9f9>
<TD>Batch file renaming</TD>
<TD>Plugins to TotalCommander, ...</TD>
<TD>1) <A href="http://cathayan.org/freshmeat.net/projects/gprename/">GPRename</A>. (Perl-based)<BR>2) Plugins for MC (???)</TD></TR>
<TR bgColor=#eefaff>
<TD colSpan=3><B><FONT size=+1><A name=3></A>3) Desktop / System software.</FONT></B></TD></TR>
<TR bgColor=#fdfdfd>
<TD>Text editor</TD>
<TD>Notepad, WordPad, TextPad, <A href="http://www.vim.org/">Vim</A>, <A href="http://www.xemacs.org/">Xemacs</A>, ...</TD>
<TD>
<P>1) Kedit (KDE).<BR>2) Gedit (Gnome).<BR>3) <A href="http://gnotepad.sourceforge.net/">Gnotepad</A>.<BR>4) <A href="http://kate.kde.org/">Kate</A> (KDE).<BR>5) KWrite (KDE).<BR>6) Nedit.<BR>7) <A href="http://www.vim.org/">Vim</A>.<BR>8) <A href="http://www.xemacs.org/">Xemacs</A>.<BR>9) <A href="http://xcoral.free.fr/">Xcoral</A>. <BR>10) <A href="http://www.bostic.com/vi/">Nvi</A>.<BR>11) <A href="http://ozeditor.zerozone.it/">Ozeditor</A>. </P></TD></TR>
<TR bgColor=#f9f9f9>
<TD>Console text editor</TD>
<TD>1) <A href="http://www.vim.org/">Vim</A><BR>2) <A href="http://www.gnu.org/software/emacs/">Emacs</A><BR>3) Editor from FAR, editor from DN, ...</TD>
<TD>
<P>1) <A href="http://www.vim.org/">Vim</A>.<BR>2) <A href="http://www.gnu.org/software/emacs/">Emacs</A>.<BR>3) <A href="http://www.nano-editor.org/">Nano</A>. (It's a free implementation of <A href="http://www.washington.edu/pine/">pico</A>)<BR>4) <A href="http://space.mit.edu/~davis/jed/">joe.</A><BR>5) <A href="http://fte.sourceforge.net/">Fte.</A><BR>6) <A href="http://space.mit.edu/~davis/jedsoft/jed/">Jed.</A><BR>7) CoolEdit.</P></TD></TR>
<TR bgColor=#fdfdfd>
<TD>Multi-purpose text and source code editor</TD>
<TD><A href="http://www.scintilla.org/SciTE.html">SciTE</A>, <A href="http://www.ultraedit.com/">UltraEdit</A>, MultiEdit, <A href="http://www.vim.org/">Vim</A>, <A href="http://www.xemacs.org/">Xemacs</A>, ...</TD>
<TD>
<P>1) <A href="http://kate.kde.org/">Kate</A> (KDE).<BR>2) Nedit. <BR>3) <A href="http://codecommander.sourceforge.net/">CodeCommander</A>.<BR>4) <A href="http://www.scintilla.org/SciTE.html">SciTE</A>. <BR>5) <A href="http://quanta.sourceforge.net/">Quanta Plus</A>. <BR>6) <A href="http://www.vim.org/">Vim</A>.<BR>7) <A href="http://www.xemacs.org/">Xemacs</A>. <BR>8) Mcedit (comes with <A href="http://www.ibiblio.org/mc/">mc</A>). <BR>9) <A href="http://space.mit.edu/~davis/jedsoft/jed/">Jed.</A><BR>10) <A href="http://setedit.sourceforge.net/">Setedit</A>. (Turbo Vision looking style)<BR>11) <A href="http://icewalkers.com/jump.php?AID=1249&amp;src=home">HT editor</A>.</P></TD></TR>
<TR bgColor=#f9f9f9>
<TD>Text editor with cyrillic encodings support</TD>
<TD>Bred, Rpad32, Aditor, <A href="http://www.vim.org/">Vim</A>, <A href="http://www.xemacs.org/">Xemacs</A></TD>
<TD>
<P>1) <A href="http://kate.kde.org/">Kate</A> (KDE).<BR>2) Nedit. <BR>3) <A href="http://fte.sourceforge.net/">Fte</A> (console).<BR>4) Patched version of Midnight Commander.<BR>5) <A href="http://www.vim.org/">Vim</A>.<BR>6) <A href="http://www.xemacs.org/">Xemacs</A>. </P></TD></TR>
<TR bgColor=#fdfdfd>
<TD>Viewing PostScript</TD>
<TD>
<P>1) <A href="http://www.rops.org/">RoPS<BR></A>2) <A href="http://www.cs.wisc.edu/~ghost/">GhostView</A> </P></TD>
<TD>1) <A href="http://www.cs.wisc.edu/~ghost/">GhostView</A>.<BR>2) Kghostview. <BR>3) <A href="http://wino.physik.uni-mainz.de/~plass/gv/">GV</A>. <BR>4) <A href="http://www.gnome.org/softwaremap/projects/ggv">GGV</A>. </TD></TR>
<TR bgColor=#f9f9f9>
<TD>Viewing PDF</TD>
<TD>1) Adobe Acrobat Distiller<BR>2) <A href="http://www.cs.wisc.edu/~ghost/">GhostView</A> </TD>
<TD>1) <A href="http://www.adobe.com/products/acrobat">Acrobat Reader.</A> [Prop] <BR>2) <A href="http://www.foolabs.com/xpdf/">Xpdf</A>.<BR>3) <A href="http://wino.physik.uni-mainz.de/~plass/gv/">GV</A>. <BR>4) <A href="http://www.gnome.org/softwaremap/projects/ggv">GGV</A>. <BR>5) <A href="http://www.cs.wisc.edu/~ghost/">GhostView</A>.<BR>6) Kghostview. </TD></TR>
<TR bgColor=#fdfdfd>
<TD>Creating PDF</TD>
<TD>1) Adobe Acrobat Distiller<BR>2) <A href="http://www.cs.wisc.edu/~ghost/">GhostView</A> <BR>3) <A href="http://www.cs.wisc.edu/~ghost/">Ghostscript</A> </TD>
<TD>1) Any Linux WYSIWYG program -&gt; print to file -&gt; ps2pdf. (Here's an <A href="http://www.denniswarner.net/lfp/creating_pdf_files.html">article</A> about this).<BR>2) <A href="http://www.adobe.com/products/acrdis/systemreqs.html">Adobe Acrobat Distiller</A>. [Prop]<BR>3) PStill. [Shareware]<BR>4) PDFLatex.<BR>5) Xfig. <BR>6) <A href="http://www.cs.wisc.edu/~ghost/">Ghostscript</A>.<BR>7) <A href="http://tex2pdf.berlios.de/">Tex2Pdf.</A><BR>8) <A href="http://www.reportlab.com/download.html">Reportlab</A>. <BR>9) <A href="http://wino.physik.uni-mainz.de/~plass/gv/">GV</A>. <BR>10) <A href="http://www.gnome.org/softwaremap/projects/ggv">GGV</A>. <BR>11) <A href="http://www.cs.wisc.edu/~ghost/">GhostView</A>.<BR>12) Kghostview. <BR>13) <A href="http://freshmeat.net/projects/panda/">Panda PDF Generator</A>. </TD></TR>
<TR bgColor=#f9f9f9>
<TD>Crypto</TD>
<TD><A href="http://www.pgp.com/">PGP</A>, <A href="http://www.gnupg.org/">GnuPG</A> + <A href="http://winpt.sourceforge.net/">Windows Privacy Tools</A></TD>
<TD>1) <A href="http://www.gnupg.org/">GnuPG (console)</A> + <A href="http://www.gnupg.org/(en)/related_software/gpa/index.html">GPA</A>, <A href="http://devel-home.kde.org/~kgpg/">KGpg</A>, and other <A href="http://www.gnupg.org/(en)/related_software/frontends.html#gui">frontends</A>.<BR>2) <A href="http://www.pgp.com/">PGP</A>. [Prop]</TD></TR>
<TR bgColor=#fdfdfd>
<TD>Disc volume encryption</TD>
<TD>EFS (standard), PGP-Disk, <A href="http://www.jetico.com/">BestCrypt</A>, Private Disk Light</TD>
<TD>1) <A href="http://sourceforge.net/projects/loop-aes/">Loop-aes</A>.<BR>2) <A href="http://www.crypto.com/software/">CFS</A>.<BR>3) <A href="http://www.tcfs.it/">TCFS.</A><BR>4) <A href="http://www.jetico.com/">BestCrypt.</A><BR>5) <A href="http://www.cs.columbia.edu/~ezk/research/software/">CryptFS.</A> </TD></TR>
<TR bgColor=#f9f9f9>
<TD>Task scheduler</TD>
<TD>mstask, nnCron</TD>
<TD>cron, at (standard, console). GUI: Kcron.</TD></TR>
<TR bgColor=#fdfdfd>
<TD>Outlook scheduler</TD>
<TD>Outlook scheduler</TD>
<TD>1) KOrganizer.</TD></TR>
<TR bgColor=#f9f9f9>
<TD>Virtual CD</TD>
<TD>VirtualDrive, VirtualCD, Daemon Tools, ...</TD>
<TD>1) <A href="http://194.242.45.189/robert/virtualcd/index.html">Virtual CD Kernel Modul</A>.<BR>2) "cp /dev/cdrom mycd.iso" + "mount -o loop mycd.iso /mnt/cdrom/".</TD></TR>
<TR bgColor=#fdfdfd>
<TD>Text recognition (OCR)</TD>
<TD>Recognita, FineReader</TD>
<TD>1) <A href="http://www.claraocr.org/">ClaraOcr.</A><BR>2) <A href="http://jocr.sourceforge.net/">Gocr.</A><BR>3) <A href="http://www.kde.org/apps/kooka/">Kooka</A>. </TD></TR>
<TR bgColor=#f9f9f9>
<TD>Translators (cyrillic)</TD>
<TD>Promt, Socrat</TD>
<TD><A href="http://webua.net/zavolzhsky/english/programs.html">Ksocrat</A> (???)</TD></TR>
<TR bgColor=#fdfdfd>
<TD>Eng-rus dictionaries (cyrillic)</TD>
<TD>1) ABBYY Lingvo<BR>2) Socrat<BR>3) <A href="http://jalingo.sourceforge.net/">JaLingvo</A><BR>4) <A href="http://sageshome.net/oss/phpMyLingvo.php">phpMyLingvo</A></TD>
<TD>1) <A href="http://www.chat.ru/~mueller_dic/">Mueller.</A><BR>2) <A href="http://webua.net/zavolzhsky/english/programs.html">Ksocrat.</A><BR>3) <A href="http://jalingo.sourceforge.net/">JaLingvo</A>. <BR>4) <A href="http://sageshome.net/oss/phpMyLingvo.php">phpMyLingvo</A>. <BR>5) dict+Kdict. <BR>6) <A href="http://dictx.narod.ru/">DictX</A>. <BR>7) <A href="http://konst.org.ua/ru/groan">Groan.</A><BR>8) Mova.<BR>9) Slowo.<BR>10) <A href="http://stardict.cosoft.org.cn/">Stardict</A>. </TD></TR>
<TR bgColor=#f9f9f9>
<TD>Work with scanner</TD>
<TD>Programs on CD with scanner, <A href="http://www.hamrick.com/">VueScan</A></TD>
<TD>1) <A href="http://www.xsane.org/">Xsane.<BR></A>2) <A href="http://www.kde.org/apps/kooka/">Kooka</A>.<BR>3) <A href="http://www.tummy.com/xvscan/">Xvscan</A>. [Prop] <BR>4) <A href="http://www.hamrick.com/">VueScan</A>. [Prop] </TD></TR>
<TR bgColor=#fdfdfd>
<TD>Antivirus</TD>
<TD>AVG AntiVirus, NAV, Dr. Web, <A href="http://www.trendmicro.com/">TrendMicro</A>, <A href="http://www.f-prot.com/">F-Prot</A>, Kaspersky, ...</TD>
<TD>1) <A href="http://www.drweb.ru/unix/">Dr. Web</A>. [Prop]<BR>2) <A href="http://www.trendmicro.com/">Trend ServerProtect</A>. [Prop]<BR>3) <A href="http://www.ravantivirus.com/">RAV Antivirus.</A> [Prop] (<A href="http://www.idg.net/ic_1321555_9677_1-5046.html">Bought by Microsoft?</A>)<BR>4) <A href="http://www.openantivirus.org/">OpenAntivirus</A> + AMaViS / <A href="http://www.openantivirus.org/virushammer.php">VirusHammer</A>. <BR>5) <A href="http://www.f-prot.com/">F-Prot</A>. [Prop]<BR>6) <A href="http://www.vanja.com/tools/">Sophie / Trophie</A>. <BR>7) <A href="http://clamav.elektrapro.com/">Clam Antivirus</A>.<BR>8) <A href="http://www.kaspersky.ru/">Kaspersky</A>. [Prop]<BR>9) <A href="http://icewalkers.com/jump.php?AID=1964&amp;src=home">YAVR</A>. </TD></TR>
<TR bgColor=#f9f9f9>
<TD>System configuration</TD>
<TD>Control Panel, Msconfig, RegEdit, WinBoost, TweakXP, Customizer XP, X-Setup, PowerToys, Config NT, ...</TD>
<TD>
<P>1) setup (Red Hat).<BR>2) chkconfig (Red Hat).<BR>3) redhat-config-<FEATURE>. (Red Hat 8.0).<BR>4) xf86config, xf86cfg.<BR>5) <A href="http://www.solucorp.qc.ca/linuxconf/">Linuxconf.</A><BR>6) Drakeconf.<BR>7) Webmin.<BR>8) yast and yast2 (SuSE).<BR>9) sysinstall (FreeBSD).<BR>10) /dev/hands :).</P></TD></TR>
<TR bgColor=#fdfdfd>
<TD>Boot managers</TD>
<TD>System Commander, PowerQuest Boot Magic, <A href="http://gag.sourceforge.net/index.html">GAG</A>, ...</TD>
<TD>1) <A href="http://www.gnu.org/software/grub/grub.html">Grub</A>.<BR>2) Lilo.<BR>3) ASPLoader.<BR>4) <A href="http://www.acronis.ru/">Acronis OS Selector</A> [Prop].<BR>5) <A href="http://www.users.intercom.com/~ranish/part">Ranish Partition Manager.</A><BR>6) <A href="http://www.freebird.org/sw-map/bootmanager.html">osbs.</A><BR>7) <A href="http://symon.ru/usr/rus/about.shtml">Symon.</A><BR>8) <A href="http://btmgr.sourceforge.net/index.php3?body=scrshots.html">Smart Boot Manager.</A><BR>9) <A href="http://www.xosl.org/">Xosl</A>. <BR>10) <A href="http://gag.sourceforge.net/index.html">GAG</A>. </TD></TR>
<TR bgColor=#f9f9f9>
<TD>Hard disk partitions manager</TD>
<TD>1) <A href="http://powerquest.com/partitionmagic/">PowerQuest Partition Magic</A> [Prop]<BR>2) <A href="http://www.acronis.com/">Acronis PartitionExpert</A> [Prop]<BR>3) <A href="http://www.partition-manager.com/index.htm">Paragon Partition Manager</A> [Prop]<BR>4) <A href="http://www.v-com.com/product/pc8_ind.html">Partition Commander</A> [Prop]</TD>
<TD>
<P>1) PartGUI. (GUI for partimage and parted)<BR>2) <A href="http://www.gnu.org/software/parted/parted.html">GNU Parted.</A> (GUI - <A href="http://qtparted.sourceforge.net/">QTParted</A>).<BR>3) <A href="http://www.partimage.org/">Partition Image</A>.<BR>4) fips.<BR>5) <A href="http://www.linux-mandrake.com/diskdrake">Diskdrake</A> (Mandrake).<BR>6) <A href="http://www.paragon.ru/pm/rus/n_pm_main.htm">Paragon Partition Manager</A> [Prop].<BR>7) <A href="http://www.acronis.com/">Acronis PartitionExpert</A> [Prop]. (<A href="http://www.ofb.biz/modules.php?name=News&amp;file=article&amp;sid=224">review</A>)</P></TD></TR>
<TR bgColor=#fdfdfd>
<TD>LVM + soft-RAID + parted + ... </TD>
<TD>-</TD>
<TD>
<P><A href="http://evms.sourceforge.net/">EVMS</A>.</P></TD></TR>
<TR bgColor=#f9f9f9>
<TD>Backup software</TD>
<TD>ntbackup (standard), Legato Networker [Prop] </TD>
<TD>1) <A href="http://www.legato.com/products/networker/">Legato Networker</A>. [Prop] <BR>2) <A href="http://www.cactus.com/">Lonetar</A>. [Prop] <BR>3) <A href="http://dar.linux.free.fr/">Disk Archive</A>. <BR>4) <A href="http://www.bacula.org/">Bacula</A>. <BR>5) <A href="http://taper.sourceforge.net/">Taper</A>. <BR>6) dump / restore. (console, standard)<BR>7) <A href="http://www.amanda.org/">Amanda</A> (console). <BR>8) <A href="http://www.microwerks.net/~hugo/">Mondo Rescue</A>. (backups that boot and auto restore themselves to disk) </TD></TR>
<TR bgColor=#fdfdfd>
<TD>Making images of disk partitions</TD>
<TD>1) DriveImage<BR>2) Ghostpe</TD>
<TD>1) <A href="http://www.partimage.org/">PartitionImage</A> (GUI - PartGUI).<BR>2) dd (console, standard).<BR>3) <A href="http://www.microwerks.net/~hugo/">Mondo Rescue</A>. </TD></TR>
<TR bgColor=#f9f9f9>
<TD>Machine mirroring over network</TD>
<TD>1) <A href="http://www.phoenix.com/en/products/imagecast+enterprise/default.htm">ImageCast</A><BR>2) <A href="http://www.symantec.com/">Norton Ghost</A></TD>
<TD>
<P>1) <A href="http://udpcast.linux.lu/">UDP Cast</A>.<BR>2) <A href="http://tlug.up.ac.za/downloads.html">Techteam's UDP Cast Disks.</A><BR>3) <A href="http://www.feyrer.de/g4u/">Ghost for Unix (g4u)</A>. </P></TD></TR>
<TR bgColor=#fdfdfd>
<TD>Task manager</TD>
<TD>TaskMan (standard), TaskInfo, ProcessExplorer NT.</TD>
<TD>1) top (console, standard).<BR>2) Gtop, Ktop.<BR>3) Ksysguard.<BR>4) "ps aux|more", "kill <PID>"</TD></TR>
<TR bgColor=#f9f9f9>
<TD>Automatic switch between English and Russian when you type</TD>
<TD><A href="http://punto.ru/switcher">Punto Switcher</A>, <A href="http://www.intelife.net/ninja/">Keyboard Ninja</A>, <A href="http://www.ipom.ru/golomin/snoop.htm">Snoop</A></TD>
<TD>No analogs :(.</TD></TR>
<TR bgColor=#fdfdfd>
<TD>Mouse gestures</TD>
<TD>Sensiva</TD>
<TD>1) Kgesture.<BR>2) <A href="http://www.stressbunny.com/wayv/">wayV</A>.<BR>3) <A href="http://optimoz.mozdev.org/">Optimoz</A>.</TD></TR>
<TR bgColor=#f9f9f9>
<TD>TV program</TD>
<TD>???</TD>
<TD><A href="http://vchannel.virtualave.net/">Home Portal.</A></TD></TR>
<TR bgColor=#fdfdfd>
<TD>Text to speech</TD>
<TD>MS text to speech</TD>
<TD>1) <A href="http://dogma.freebsd-uk.eu.org/~grrussel/index.html">KDE Voice Plugins</A>. <BR>2) <A href="http://www.cstr.ed.ac.uk/projects/festival/">Festival</A>.<BR>3) <A href="http://www.cs.cornell.edu/Info/People/raman/emacspeak/emacspeak.html">Emacspeak</A>.<BR>4) <A href="http://neospeech.com/">VoiceText</A>. </TD></TR>
<TR bgColor=#f9f9f9>
<TD>Speech recognition</TD>
<TD>ViaVoice, DragonNaturally Speaking</TD>
<TD>Yes, there are no usable speech recognition packages. But:<BR>1) <A href="http://www.speech.cs.cmu.edu/sphinx/">Sphinx</A>. <BR>2) ViaVoice. (almost dead...) </TD></TR>
<TR bgColor=#f9f9f9>
<TD>Stream text processing</TD>
<TD>1) <A href="http://www.mingw.org/">Minimalist GNU For Windows (sed.exe)</A><BR>2) <A href="http://www.perl.com/">perl</A> </TD>
<TD>1) sed, awk.<BR>2) <A href="http://www.perl.com/">perl</A>.</TD></TR>
<TR bgColor=#fdfdfd>
<TD>PIM / DB / hierarchical notebook with tree view</TD>
<TD><A href="http://www.treepad.com/">TreePad</A> [Prop], <A href="http://sourceforge.net/projects/leo">Leo</A>, CueCards</TD>
<TD>1) <A href="http://www.treepad.com/linux/treepadlite/">TreePad Lite</A>. [Prop] <BR>2) <A href="http://yank.sourceforge.net/">Yank</A>.<BR>3) <A href="http://www.bellz.org/treeline/index.html">TreeLine</A>.<BR>4) <A href="http://bhepple.freeshell.org/gjots/index.shtml">Gjots</A>. <BR>5) <A href="http://sourceforge.net/projects/leo">Leo</A>. <BR>6) <A href="http://hnb.sourceforge.net/">Hnb - hierarchical notebook</A>. <BR>7) <A href="http://www.tuxcards.de/">TuxCards</A>.</TD></TR>
<TR bgColor=#f9f9f9>
<TD>Program for quick switching between resolutions and frequencies</TD>
<TD>Integrated with system, comes on CD with video card </TD>
<TD>
<P>1) <A href="http://multires.sourceforge.net/">Multires</A>.<BR>2) Ctrl+Alt+"-", Ctrl+Alt+"+".<BR>3) <A href="http://home.tvd.be/cr26864/Linux/fbdev/">Fbset</A>. (when using framebuffer) </P></TD></TR>
<TR bgColor=#fdfdfd>
<TD>Search and replace text in files</TD>
<TD>1) Integrated with system<BR>2) Indexing service<BR>3) HTMLChanger<BR>4) Any file manager</TD>
<TD>1) find (console, standard). <BR>2) slocate (console, standard). <BR>GUI:<BR>1) Gsearchtool.<BR>2) Kfind.<BR>3) Any file manager </TD></TR>
<TR bgColor=#fdfdfd>
<TD>Local search engine with SGBD for indexing</TD>
<TD>
<P>1) Indexing service (???)<BR>2) <A href="http://search.mnogo.ru/">mnoGoSearch</A>. [prop for Windows]</P></TD>
<TD>
<P>1) <A href="http://search.mnogo.ru/">mnoGoSearch</A>.<BR>2) <A href="http://www.aspseek.org/index.php">ASPSeek</A>. </P></TD></TR>
<TR bgColor=#f9f9f9>
<TD>System monitoring</TD>
<TD>System monitor (built-in)</TD>
<TD>1) top (console, standard).<BR>2) <A href="http://web.wt.net/~billw/gkrellm/gkrellm.html">Gkrellm</A>.<BR>3) Ksysguard.<BR>4) <A href="http://freshmeat.net/projects/survivor/">Survivor</A>.<BR>5) "Hot-babe". (If you can be shocked by nudity, don't use it :).</TD></TR>
<TR bgColor=#fdfdfd>
<TD>Program for logs viewing</TD>
<TD>Event Viewer (built-in)</TD>
<TD>
<P>1) <A href="http://www.linuxsoftware.org/apphit.php3?appid=735&amp;linktype=download">Xlogmaster</A>.<BR>2) <A href="http://www.analog.cx/">Analog</A>. <BR>3) <A href="http://immo.myip.org/computing/fwlogview/">Fwlogview</A>. (firewall)</P></TD></TR>
<TR bgColor=#f9f9f9>
<TD>Data Recovery Tools</TD>
<TD>R-Studio (supports Linux partitions)</TD>
<TD>1) <A href="http://e2undel.sourceforge.net/">e2undel</A>.<BR>2) <A href="http://myrescue.sourceforge.net/">myrescue</A>.<BR>3) <A href="http://www.cgsecurity.org/index.html?testdisk.html">TestDisk</A>.<BR>4) <A href="http://freshmeat.net/projects/unrm/?topic_id=866">unrm</A>.<BR>5) <A href="http://channel16.sourceforge.net/">Channel 16</A>.</TD></TR>
<TR bgColor=#fdfdfd>
<TD>Text files encoder with automatic detection of character set </TD>
<TD>???</TD>
<TD>
<P>1) <A href="http://trific.ath.cx/software/enca/">Enca.</A><BR>2) <A href="http://www.oreilly.com/people/authors/lunde/j_tools.html">Jconv</A>. <BR>3) <A href="http://rusf.ru/books/yo/xcode.html">Xcode</A>. (cyrillic) <BR>4) <A href="http://absh.virtualave.net/asrecod.html">Asrecod</A>. (cyrillic) </P></TD></TR>
<TR bgColor=#fdfdfd>
<TD>Alarm clock</TD>
<TD>MindIt!</TD>
<TD>1) KAlarm.</TD></TR>
<TR bgColor=#f9f9f9>
<TD>Work with Palm</TD>
<TD>Palm Desktop</TD>
<TD>1) <A href="http://www.slac.com/pilone/kpilot_home/">Kpilot</A>.<BR>2) <A href="http://jpilot.org/">Jpilot</A>.</TD></TR>
<TR bgColor=#f9f9f9>
<TD>Allows to carry on Palm .html files</TD>
<TD>iSilo</TD>
<TD>1) <A href="http://www.isilox.com/download/index.htm">iSilo.</A><BR>2) <A href="http://www.plkr.org/">Plucker</A>.</TD></TR>
<TR bgColor=#fdfdfd>
<TD>Low-level optimization<BR>(chipset, pci-bus)</TD>
<TD><A href="http://www.powertweak.com/">Powertweak</A></TD>
<TD>
<P>1) <A href="http://powertweak.sourceforge.net/">Powertweak-Linux.</A> </P></TD></TR>
<TR bgColor=#f9f9f9>
<TD>Bible</TD>
<TD>On-Line Bible, The SWORD</TD>
<TD>1) <A href="http://bibletime.info/">BibleTime</A> (KDE) <BR>2) <A href="http://gnomesword.sf.net/">Gnomesword</A> (Gnome)</TD></TR>
<TR bgColor=#fdfdfd>
<TD>Convenient mouse scrolling</TD>
<TD><A href="http://www.tv4studios.com/">Mouse Imp</A></TD>
<TD>
<P>???</P></TD></TR>
<TR bgColor=#f9f9f9>
<TD>Automatic change of desktop background</TD>
<TD>???</TD>
<TD>1) <A href="http://freshmeat.net/projects/bgbuddy/">Background Buddy</A>.</TD></TR>
<TR bgColor=#fdfdfd>
<TD>Convenient switching of the keyboard language</TD>
<TD>???</TD>
<TD>
<P>1) <A href="http://gswitchit.sourceforge.net/">GSwitchIt</A>.</P></TD></TR>
<TR bgColor=#f9f9f9>
<TD>Windows registry editor</TD>
<TD>RegEdit</TD>
<TD><A href="http://samba.org/~jelmer/kregedit/">Kregedit</A> :).</TD></TR>
<TR bgColor=#eefaff>
<TD colSpan=3><B><FONT size=+1><A name=41></A>4.1) Multimedia (audio / CD).</FONT></B></TD></TR>
<TR bgColor=#fdfdfd>
<TD>Useful links:</TD>
<TD>-</TD>
<TD><A href="http://linux-sound.org/">Linux MIDI &amp; Sound Applications</A> - many links and resources.<BR><A href="http://sound.condorow.net/">Sound Software</A> - lots of it.</TD></TR>
<TR bgColor=#f9f9f9>
<TD>Music / mp3 / ogg players</TD>
<TD>
<P>1) <A href="http://www.winamp.com/">Winamp<BR></A>2) <A href="http://www.zinf.org/">Zinf</A><BR>3) <A href="http://snackamp.sourceforge.net/">SnackAmp</A><BR>4) <A href="http://www.sorinara.com/">Soritong<BR></A>5) <A href="http://apollo.audiogalaxy.com/">Apollo</A><BR>6) <A href="http://www.kjofol.org/">K-jofol 2000</A><BR>7) <A href="http://www.sonique.com/">Sonique</A><BR>8) <A href="http://www.c4players.com/">C-4</A><BR>9) <A href="http://www.e-soft.co.uk/">Media Box Audio / Video </A><A href="http://www.e-soft.co.uk/">Workstation 5</A><BR>10) <A href="http://www.blazemp.com/">Blaze Media Pro</A><BR>11) <A href="http://www.orionstudios.net/liquidburn/NEX3.html">NEX 3</A><BR>12) <A href="http://www.real.com/">Real Jukebox</A><BR>13) Windows Media Player</P></TD>
<TD>1) <A href="http://www.xmms.org/">XMMS (X multimedia system)</A>.<BR>2) <A href="http://noatun.kde.org/">Noatun.</A><BR>3) <A href="http://www.zinf.org/">Zinf</A>. (former <A href="http://www.freeamp.org/">Freeamp</A>)<BR>4) <A href="http://www.winamp.com/">Winamp</A>.<BR>5) Xamp.<BR>6) <A href="http://gqmpeg.sourceforge.net/">GQmpeg</A>.<BR>7) <A href="http://snackamp.sourceforge.net/">SnackAmp</A>.<BR>8) <A href="http://www.mplayerhq.hu/">Mplayer.</A> (Frontend: <A href="http://kplayer.sourceforge.net/">Kplayer</A>).<BR>9) &lt;a href="htt</TR></TBODY></TABLE></H2><!--sp--><div class="addfav"><br />收藏到：<span class= "delicious"><a href="http://delicious.com/save?url=http%3A%2F%2Fyangwei.blogbus.com%2Flogs%2F3078593.html&title=%28zz%29%E5%AD%98%E4%B8%8B%E6%A1%A3%EF%BC%88Windows%E8%BD%AF%E4%BB%B6%E5%9C%A8Linux%E4%B8%8A%E7%9A%84%E7%AD%89%E4%BB%B7%2F%E6%9B%BF%E4%BB%A3%2F%E6%A8%A1%E4%BB%BF%E8%BD%AF%E4%BB%B6%E5%88%97%E8%A1%A8%EF%BC%89">Del.icio.us</a></span></div><br /><br /><div class="sysmsg"><b><a href="http://www.blogbus.com" target="_blank">博客大巴，你的个人传媒早班车</a></b></div><br /><br />]]></description>
   <link>http://yangwei.blogbus.com/logs/3078593.html</link>
   <author>lostdays</author>
   <pubDate>Fri, 18 Aug 2006 11:34:19 +0800</pubDate>
  </item>
  <item>
   <title>超酷的测速网站</title>
   <description><![CDATA[<p>以前用国内的测速网站都是一个进度条和一个测试服务器选择框，现在到了web2.0读图时代了，怎么着测速也该更新了吧。</p><p>这不这里一个<a href="http://www.speedtest.net/" target="_blank">很酷测速网站</a>，可以动态的在地图上指定你用的测速服务器，然后看到测试的过程。最后还可以它提供给你的代码分享你的测速结果哟。</p><p><img alt="http://yangwei.blogbus.com/files/1155732999.jpg" hspace="0" src="http://yangwei.blogbus.com/files/1155732999.jpg" align="baseline" border="0" /></p><p>大家可以看看我的结果</p><p /><p><a href="http://www.speedtest.net/"><img src="http://www.speedtest.net/result/39492164.png" /></a></p><!--sp--><div class="addfav"><br />收藏到：<span class= "delicious"><a href="http://delicious.com/save?url=http%3A%2F%2Fyangwei.blogbus.com%2Flogs%2F3065594.html&title=%E8%B6%85%E9%85%B7%E7%9A%84%E6%B5%8B%E9%80%9F%E7%BD%91%E7%AB%99">Del.icio.us</a></span></div><br /><br /><div class="sysmsg"><b><a href="http://www.blogbus.com" target="_blank">博客大巴，你的个人传媒早班车</a></b></div><br /><br />]]></description>
   <link>http://yangwei.blogbus.com/logs/3065594.html</link>
   <author>lostdays</author>
   <pubDate>Wed, 16 Aug 2006 20:49:03 +0800</pubDate>
  </item>
  <item>
   <title>如何在墙壁上作出精彩的手影</title>
   <description><![CDATA[<p>记得以前看过电视，两个人用手在灯光的作出各种影子来表演节目，有小狗，小猪，小鹅，甚至还有人...实在让我惊讶。</p><p>叹奇之余，没有想过这些自己也能做到（虽然试过，但顶多只能做一只张开翅膀的鸟，呵呵）。</p><p><a href="http://haha.nu/creative/how-to-make-shadows-on-the-wall/#more-321" target="_blank">这里</a>发现了详细的图示，告诉我们如何做手影，快来试试看。谢谢作者</p><p><img src="http://aycu01.webshots.com/image/3200/1885906815689381003_rs.jpg" /><a id="more-321"></a><img src="http://aycu33.webshots.com/image/4312/1630515133863664748_rs.jpg" /><img src="http://aycu18.webshots.com/image/2777/1631064963925641064_rs.jpg" /><img src="http://aycu35.webshots.com/image/2154/1953816503534556352_rs.jpg" /><img src="http://aycu09.webshots.com/image/3088/1167585238016982711_rs.jpg" /><img src="http://aycu09.webshots.com/image/3088/1555224839408312486_rs.jpg" /><img src="http://aycu33.webshots.com/image/4312/1032789966495847555_rs.jpg" /><img src="http://aycu14.webshots.com/image/3333/1491143213165222878_rs.jpg" /><img src="http://aycu19.webshots.com/image/298/1700831710784529205_rs.jpg" /><img src="http://aycu23.webshots.com/image/4422/1140605493900954969_rs.jpg" /><img src="http://aycu19.webshots.com/image/298/1854634119460633538_rs.jpg" /><img src="http://aycu33.webshots.com/image/2312/1682264070776599576_rs.jpg" /><img src="http://aycu09.webshots.com/image/1248/1597993020610972608_rs.jpg" /><img src="http://aycu32.webshots.com/image/2511/1409149879134918141_rs.jpg" /><img src="http://aycu06.webshots.com/image/3405/1788466701592094347_rs.jpg" /><img src="http://aycu32.webshots.com/image/2511/1634863532621908580_rs.jpg" /><img src="http://aycu39.webshots.com/image/2598/1253791281917845311_rs.jpg" /></p><p /><!--sp--><div class="addfav"><br />收藏到：<span class= "delicious"><a href="http://delicious.com/save?url=http%3A%2F%2Fyangwei.blogbus.com%2Flogs%2F3065498.html&title=%E5%A6%82%E4%BD%95%E5%9C%A8%E5%A2%99%E5%A3%81%E4%B8%8A%E4%BD%9C%E5%87%BA%E7%B2%BE%E5%BD%A9%E7%9A%84%E6%89%8B%E5%BD%B1">Del.icio.us</a></span></div><br /><br /><div class="sysmsg"><b><a href="http://www.blogbus.com" target="_blank">博客大巴，你的个人传媒早班车</a></b></div><br /><br />]]></description>
   <link>http://yangwei.blogbus.com/logs/3065498.html</link>
   <author>lostdays</author>
   <pubDate>Wed, 16 Aug 2006 20:35:32 +0800</pubDate>
  </item>
 </channel>
</rss>

