<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>勿慢牛 &#187; 软件</title>
	<atom:link href="http://klniu.com/post/category/software/feed/" rel="self" type="application/rss+xml" />
	<link>http://klniu.com</link>
	<description>『勿慢牛个人博客』</description>
	<lastBuildDate>Fri, 06 Jan 2012 06:42:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>supermemo词库 彩色柯林斯英英+简明英汉+21世纪语音版</title>
		<link>http://klniu.com/post/collins-english-english-dictionary-supermemo-color-21-concise-english-voice-century/</link>
		<comments>http://klniu.com/post/collins-english-english-dictionary-supermemo-color-21-concise-english-voice-century/#comments</comments>
		<pubDate>Sat, 25 Dec 2010 07:03:36 +0000</pubDate>
		<dc:creator>勿慢牛</dc:creator>
				<category><![CDATA[原创]]></category>
		<category><![CDATA[软件]]></category>
		<category><![CDATA[supermemo]]></category>
		<category><![CDATA[英语]]></category>

		<guid isPermaLink="false">http://klniu.com/?p=631</guid>
		<description><![CDATA[该词库是带有柯林斯英英和简明英汉、21世纪的supermemo词库，原词库在http://bbs.pdafans.com/viewthread.php?tid=145910&#38;fpage=1&#38;highlight=Collins，只是没有语音，于是就把它下载下来处理了一下，我只是处理了中文释义在前的词库，也就是简明英汉+柯林斯英英释例+21世纪，如果您要使用英英在前的，也可以按照后面的方法处理即可，主要修改的内容如下： 去除单词和词组的大写，一个词后面还带有它的大写形式，我感觉这个东西没有必要。 加入语音，使用的语音是朗文wav那个语音库，verycd那里有这个东西的下载：http://www.verycd.com/topics/133276/ 处理方法，这里所有的东西都是用vim来处理的，非常高效，把处理过程列出来： 使用vim的正则表达式替换功能，去掉单词大写。 :%s/&#60;br&#62;\w\+ &#38;nbsp;&#38;nbsp;\[&#60;font/\[&#60;font/gc 替换掉词组的大写。 :%s/ &#60;br&#62;\(\w\+ \)\+&#60;\/b&#62;&#60;br&#62;&#60;br&#62;/ &#60;\/b&#62;&#60;br&#62;&#60;br&#62;/gc 还有多义词大写那一行，比如 SET 1，去掉它们的大写 :%s/&#60;br&#62;\w\+ \d &#38;nbsp;&#38;nbsp;\[&#60;font/\[&#60;font/gc 加入英语发音，加入&#60;bgsound loop=&#34;TRUE&#34; src=&#34;file:///d:/speech/a/a.wav&#34;&#62;&#60;/bgsound&#62;，下面这个正则表达式只处理单词名，先不处理目录 :%s/Q: &#60;b&#62; \zs\(\w\+\) \[&#60;font/\1 &#60;bgsound src=&#34;file:\/\/\/d:\/speech\/a\/\1.wav&#34; LOOP=TRUE&#62; \[&#60;font/gc 把单词发音的目录修改为正确的目录，比如以前为&#60;bgsound loop=&#34;TRUE&#34; src=&#34;file:///d:/speech/a/your.wav&#34;&#62;&#60;/bgsound&#62;，现在修改为 :%s/ \(\w\)\w\+ \zs&#60;bgsound src=&#34;file:\/\/\/d:\/speech\/a/&#60;bgsound src=&#34;file:\/\/\/d:\/speech\/\1/gc 下面贴出下载地址： 没有经过ux处理的版本，如果要导入ux的话，要用舍得的supermemo词库转换精灵来将其转换到ux：http://www.box.net/shared/cllecn3r0r 这个是经过ux处理的，可以直接导入supermeo &#8230; <a href="http://klniu.com/post/collins-english-english-dictionary-supermemo-color-21-concise-english-voice-century/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>该词库是带有柯林斯英英和简明英汉、21世纪的supermemo词库，原词库在<a href="http://bbs.pdafans.com/viewthread.php?tid=145910&amp;fpage=1&amp;highlight=Collins">http://bbs.pdafans.com/viewthread.php?tid=145910&amp;fpage=1&amp;highlight=Collins</a>，只是没有语音，于是就把它下载下来处理了一下，我只是处理了中文释义在前的词库，也就是简明英汉+柯林斯英英释例+21世纪，如果您要使用英英在前的，也可以按照后面的方法处理即可，主要修改的内容如下：</p>
<ol>
<li>去除单词和词组的大写，一个词后面还带有它的大写形式，我感觉这个东西没有必要。</li>
<li>加入语音，使用的语音是朗文wav那个语音库，verycd那里有这个东西的下载：<a href="http://www.verycd.com/topics/133276/">http://www.verycd.com/topics/133276/</a></li>
</ol>
<p>处理方法，这里所有的东西都是用vim来处理的，非常高效，把处理过程列出来：</p>
<ul>
<li>使用vim的正则表达式替换功能，去掉单词大写。</li>
</ul>
<pre class="brush:bash;">:%s/&lt;br&gt;\w\+ &amp;nbsp;&amp;nbsp;\[&lt;font/\[&lt;font/gc</pre>
<ul>
<li>替换掉词组的大写。</li>
</ul>
<pre class="brush:bash;">:%s/ &lt;br&gt;\(\w\+ \)\+&lt;\/b&gt;&lt;br&gt;&lt;br&gt;/ &lt;\/b&gt;&lt;br&gt;&lt;br&gt;/gc</pre>
<ul>
<li>还有多义词大写那一行，比如 SET 1，去掉它们的大写</li>
</ul>
<pre class="brush:bash;">:%s/&lt;br&gt;\w\+ \d &amp;nbsp;&amp;nbsp;\[&lt;font/\[&lt;font/gc</pre>
<ul>
<li>加入英语发音，加入&lt;bgsound loop=&quot;TRUE&quot; src=&quot;file:///d:/speech/a/a.wav&quot;&gt;&lt;/bgsound&gt;，下面这个正则表达式只处理单词名，先不处理目录</li>
</ul>
<pre class="brush:bash;">:%s/Q: &lt;b&gt; \zs\(\w\+\) \[&lt;font/\1 &lt;bgsound src=&quot;file:\/\/\/d:\/speech\/a\/\1.wav&quot; LOOP=TRUE&gt; \[&lt;font/gc</pre>
<ul>
<li>把单词发音的目录修改为正确的目录，比如以前为&lt;bgsound loop=&quot;TRUE&quot; src=&quot;file:///d:/speech/a/your.wav&quot;&gt;&lt;/bgsound&gt;，现在修改为</li>
</ul>
<pre class="brush:bash;">:%s/ \(\w\)\w\+ \zs&lt;bgsound src=&quot;file:\/\/\/d:\/speech\/a/&lt;bgsound src=&quot;file:\/\/\/d:\/speech\/\1/gc</pre>
<p>下面贴出下载地址：</p>
<ul>
<li>没有经过ux处理的版本，如果要导入ux的话，要用舍得的supermemo词库转换精灵来将其转换到ux：<a href="http://www.box.net/shared/cllecn3r0r" target="_blank">http://www.box.net/shared/cllecn3r0r</a></li>
<li>这个是经过ux处理的，可以直接导入supermeo ux里面：<a href="http://www.box.net/shared/1zvjn3sx13" target="_blank">http://www.box.net/shared/1zvjn3sx13</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://klniu.com/post/collins-english-english-dictionary-supermemo-color-21-concise-english-voice-century/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mac 与 IP 修改器</title>
		<link>http://klniu.com/post/mac-and-ip-trainer/</link>
		<comments>http://klniu.com/post/mac-and-ip-trainer/#comments</comments>
		<pubDate>Mon, 09 Aug 2010 09:55:02 +0000</pubDate>
		<dc:creator>勿慢牛</dc:creator>
				<category><![CDATA[Qt]]></category>
		<category><![CDATA[原创]]></category>
		<category><![CDATA[软件]]></category>
		<category><![CDATA[ip]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[macmanager]]></category>

		<guid isPermaLink="false">http://klniu.com/?p=561</guid>
		<description><![CDATA[因为经常要在不同的地点更换 mac 和 ip，所以就自己动手写了这个小工具。主要功能： 不重启计算机修改 mac。 修改网络地址参数，比如 ip、子网掩码、网关和 DNS。 也可以将上述参数通过 DHCP 来获取。 保存和读取配置，方便在不同地点调用不同的配置。 截图如下： 这个小工具是用 Qt 4.6.3 写成的，修改 mac 是通过更改注册表来完成的，之后调用 windows api 来实现网卡重启，这个是参考别人的代码。地址的修改是通过 netsh 命令完成的，工具开源，所以有兴趣的同学请给予指导，项目地址：http://code.google.com/p/klniu/ 因为库文件比较大，所以工具整体比较大，有两个版本，一个是动态链接版本，包含多个动态链接库。另一个是静态链接，是一个单文件，请大家自行选择使用。下载地址： 动态链接版本：http://klniu.googlecode.com/files/macmanager_1.0_dynamic.7z 静态链接版本：http://klniu.googlecode.com/files/macmanager_1.0_static.7z 源代码：http://klniu.googlecode.com/files/macmanager_1.0_src.7z]]></description>
			<content:encoded><![CDATA[<p>因为经常要在不同的地点更换 mac 和 ip，所以就自己动手写了这个小工具。主要功能：</p>
<ul>
<li>不重启计算机修改 mac。</li>
<li>修改网络地址参数，比如 ip、子网掩码、网关和 DNS。</li>
<li>也可以将上述参数通过 DHCP 来获取。</li>
<li>保存和读取配置，方便在不同地点调用不同的配置。</li>
</ul>
<p>截图如下：</p>
<p><img alt="macmanager" src="http://pic.klniu.com/klniu/201008/macmanager.png" style="width: 600px; height: 380px; " /></p>
<p>这个小工具是用 Qt 4.6.3 写成的，修改 mac 是通过更改注册表来完成的，之后调用 windows api 来实现网卡重启，这个是参考别人的代码。地址的修改是通过 netsh 命令完成的，工具开源，所以有兴趣的同学请给予指导，项目地址：<a href="http://code.google.com/p/klniu/" target="_blank">http://code.google.com/p/klniu/</a></p>
<p>因为库文件比较大，所以工具整体比较大，有两个版本，一个是动态链接版本，包含多个动态链接库。另一个是静态链接，是一个单文件，请大家自行选择使用。下载地址：</p>
<p>动态链接版本：<a href="http://klniu.googlecode.com/files/macmanager_1.0_dynamic.7z" target="_blank">http://klniu.googlecode.com/files/macmanager_1.0_dynamic.7z</a></p>
<p>静态链接版本：<a href="http://klniu.googlecode.com/files/macmanager_1.0_static.7z" target="_blank">http://klniu.googlecode.com/files/macmanager_1.0_static.7z</a></p>
<p>源代码：<a href="http://klniu.googlecode.com/files/macmanager_1.0_src.7z" target="_blank">http://klniu.googlecode.com/files/macmanager_1.0_src.7z</a></p>
]]></content:encoded>
			<wfw:commentRss>http://klniu.com/post/mac-and-ip-trainer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>推荐装机软件</title>
		<link>http://klniu.com/post/recommended-software-installed/</link>
		<comments>http://klniu.com/post/recommended-software-installed/#comments</comments>
		<pubDate>Wed, 07 Apr 2010 07:57:44 +0000</pubDate>
		<dc:creator>勿慢牛</dc:creator>
				<category><![CDATA[原创]]></category>
		<category><![CDATA[软件]]></category>
		<category><![CDATA[soft]]></category>
		<category><![CDATA[装机]]></category>

		<guid isPermaLink="false">http://klniu.com/post/recommended-software-installed/</guid>
		<description><![CDATA[这些软件建议是我从一个言论自由的BBS看到的，比较安全、“环保”、免费甚至开源，结合自己的使用体验列出来，也希望大家多多使用这一类的软件，抵制底层硬盘扫描及后门。 输入法 不建议使用搜狗、QQ一类的输入法，占用内存不说，安全性还真是问题。 谷歌拼音输入法 Google出品的东西我有点迷信，反正不错，界面简洁，也支持同步，不过现在同步老撞Wall，我不用拼音，不过装的有，别人用。 极点五笔 非常不错的五笔输入法，已经很多年了，还在不遗余力的开发者，朴实不花哨，推荐。 下载：http://code.google.com/p/freeime/downloads/list 媒体工具 射手播放器 播放视频时可以自动从射手网下载字幕。下载：http://file.splayer.org/SPlayerSetup.exe foobar2000 界面简单, 音质不错，格式支持全面。下载：http://www.foobar2000.org/download 迷你虚拟光驱 小巧的虚拟光驱，不过只支持ISO，对于只安装软件，以及浏览ISO文件足够了，玩游戏的话还是用其他的吧。下载：http://u.115.com/file/f06351e402 网络浏览 微软的IE不太推荐，因为浏览速度和安全性均不如其他浏览器。 IE外壳型: 世界之窗 IE内核浏览器里面比较轻便，安全性也不错的浏览器。 独立内核型: Chrome 速度快，扩展慢慢也跟上来了，前途无量。 Firefox 扩展比较多，因此功能比较强大，不过内存占用比较大，启动速度比较慢。 基于chromium的增强型 Chromeplus 本人正在使用的浏览器，一个强化版的Google Chrome，开发者通过修改源码增加了一些实用功能，也更加稳定。 文件解压 7-zip 没什么说的，7Z可以用来替代Winrar，除了不能压缩为rar格式的文件和界面简陋一些（一过一般人应该不会在乎这个的）之外，其他都比较强大。 文件下载 下载链接转换 迅雷, ed2k, bt, 快车, qq旋风, &#8230; <a href="http://klniu.com/post/recommended-software-installed/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>这些软件建议是我从一个言论自由的BBS看到的，比较安全、“环保”、免费甚至开源，结合自己的使用体验列出来，也希望大家多多使用这一类的软件，抵制底层硬盘扫描及后门。</p>
<h4>输入法</h4>
<p>不建议使用搜狗、QQ一类的输入法，占用内存不说，安全性还真是问题。</p>
<p><a href="http://tools.google.com/pinyin/" target="_blank">谷歌拼音输入法</a></p>
<p>Google出品的东西我有点迷信，反正不错，界面简洁，也支持同步，不过现在同步老撞Wall，我不用拼音，不过装的有，别人用。</p>
<p><a href="http://www.freewb.org/" target="_blank">极点五笔</a></p>
<p>非常不错的五笔输入法，已经很多年了，还在不遗余力的开发者，朴实不花哨，推荐。</p>
<p>下载：<a href="http://code.google.com/p/freeime/downloads/list" target="_blank">http://code.google.com/p/freeime/downloads/list</a></p>
<h4>媒体工具</h4>
<p><a href="http://www.splayer.org/" target="_blank"><strong>射手播放器</strong></a></p>
<p>播放视频时可以自动从射手网下载字幕。下载：<a href="http://file.splayer.org/SPlayerSetup.exe" target="_blank">http://file.splayer.org/SPlayerSetup.exe</a></p>
<p><a href="http://www.foobar2000.org/" target="_blank"><strong>foobar2000</strong></a></p>
<p>界面简单, 音质不错，格式支持全面。下载：<a href="http://www.foobar2000.org/download" target="_blank">http://www.foobar2000.org/download</a></p>
<p><strong>迷你虚拟光驱</strong></p>
<p>小巧的虚拟光驱，不过只支持ISO，对于只安装软件，以及浏览ISO文件足够了，玩游戏的话还是用其他的吧。下载：<a title="http://u.115.com/file/f06351e402" href="http://u.115.com/file/f06351e402" target="_blank">http://u.115.com/file/f06351e402</a></p>
<h4><strong>网络浏览</strong></h4>
<p>微软的IE不太推荐，因为浏览速度和安全性均不如其他浏览器。</p>
<p><strong>IE外壳型:</strong></p>
<p><a href="http://www.ioage.com/tw/" target="_blank"><strong>世界之窗</strong></a></p>
<p>IE内核浏览器里面比较轻便，安全性也不错的浏览器。</p>
<p><strong>独立内核型:</strong></p>
<p><a href="http://www.google.com/chrome/index.html" target="_blank"><strong>Chrome</strong></a></p>
<p>速度快，扩展慢慢也跟上来了，前途无量。</p>
<p><a href="http://www.mozilla.com/firefox/" target="_blank"><strong>Firefox</strong></a></p>
<p>扩展比较多，因此功能比较强大，不过内存占用比较大，启动速度比较慢。</p>
<p><strong>基于chromium的增强型</strong></p>
<p><a href="http://www.chromeplus.org/" target="_blank"><strong>Chromeplus</strong></a></p>
<p>本人正在使用的浏览器，一个强化版的Google Chrome，开发者通过修改源码增加了一些实用功能，也更加稳定。</p>
<h4>文件解压</h4>
<p><strong><a href="http://www.7-zip.org/" target="_blank">7-zip</a></strong></p>
<p>没什么说的，7Z可以用来替代Winrar，除了不能压缩为rar格式的文件和界面简陋一些（一过一般人应该不会在乎这个的）之外，其他都比较强大。</p>
<h4>文件下载</h4>
<p><strong>下载链接转换</strong></p>
<p>迅雷, ed2k, bt, 快车, qq旋风, rayfile, 纳米盘,专用链接转换软件。</p>
<p>下载：<a title="http://u.115.com/file/f039e28579" href="http://u.115.com/file/f039e28579" target="_blank">http://u.115.com/file/f039e28579</a></p>
<p><a href="http://www.gigaget.com/" target="_blank"> </a><a href="http://www.gigaget.com/" target="_blank"><strong>国际版迅雷Gigaget</strong></a></p>
<p>迅雷自己出的国际版, 没广告，以及雷区一类的东西。不过网站好像打不开了。</p>
<p>下载1：http://www.gigaget.com/download.htm 下载2：<a title="http://u.115.com/file/f09947c33e" href="http://u.115.com/file/f09947c33e" target="_blank">http://u.115.com/file/f09947c33e</a></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p>国际版的版本比较老，而且右键也有问题，如果不想用，可以用迷你迅雷，没有广告，客户端小。</p>
<p><strong><a href="http://www.emule-project.net/home/perl/general.cgi?l=42" target="_blank"></a><a href="http://www.emule-project.net/home/perl/general.cgi?l=42" target="_blank">原版eMule/电骡</a></strong></p>
<p>没有被做过手脚的，并且反吸血的电驴客户端。</p>
<p>下载：<a href="http://www.emule-project.net/home/perl/general.cgi?l=42&amp;rm=download" target="_blank">http://www.emule-project.net/home/perl/general.cgi?l=42&amp;rm=download</a></p>
<p>ed2k服务器更新列表: <a href="http://ed2k.2x4u.de/index.html" target="_blank">http://ed2k.2x4u.de/index.html</a></p>
<p><strong><a href="http://www.utorrent.com/" target="_blank">uTorrent</a></strong></p>
<p>轻便免费的BT客户端，可以反吸血。</p>
<p>下载：<a href="http://www.utorrent.com/downloads">http://www.utorrent.com/downloads<strong> </strong></a></p>
<p><strong><a href="http://filezilla-project.org/" target="_blank">Filezilla</a></strong></p>
<p>免费开源的FTP工具，有服务端和客户端版本。</p>
<h4>杀毒和防火墙</h4>
<p><strong><a href="http://www.free-av.com/" target="_blank">Avira小红伞免费个人版</a></strong></p>
<p>查杀能力口碑不错，内存占用小，不过自我保护能力不强(没试验过，别人的经验)，近来也出了简体中文版。</p>
<p>下载：<a href="http://www.free-av.com/zh-cn/download/1/avira_antivir_personal__free_antivirus.html" target="_blank">http://www.free-av.com/zh-cn/download/1/avira_antivir_personal__free_antivirus.html</a></p>
<p><strong><a href="http://www.avast.com/zh-cn/index" target="_blank">avast!免费家庭版</a></strong></p>
<p>监控模块比较多, 需要免费注册。</p>
<p><strong><a href="http://www.comodo.com/home/internet-security/free-internet-security.php" target="_blank">COMODO防火墙及其主动防御套装</a></strong></p>
<p>规则设置选项多, 安装之后建议设置成学习模式一段时间建立规则. 然后转换成安全模式, 这样任何超出规则的行为, 比如软件异常联网, 建立文件, 修改注册表, 修改启动项, 访问内存, 监控键盘等等都会询问。</p>
<h4>系统工具</h4>
<p><strong><a href="http://www.ccleaner.com/" target="_blank">CCleaner</a></strong></p>
<p>注册表清理, 软件卸载, 临时文件清理。下载：<a href="http://www.piriform.com/ccleaner/download" target="_blank">http://www.piriform.com/ccleaner/download</a></p>
<p>无影无踪WYWZ</p>
<p>找不到官方网站。可以清除和抹除痕迹，粉碎文件，以前在用，因为胆大了，现在就不怎么用了。下载：</p>
<p><strong><a href="http://technet.microsoft.com/en-us/sysinternals/bb896653.aspx" target="_blank">ProcessExplorer</a></strong></p>
<p>微软出品的增强的进程管理，可以取代windows自带的任务管理器，最好的是可以显示文件的调用。</p>
<p><strong><a href="http://www.codesector.com/teracopy.php" target="_blank"></a><a href="http://www.codesector.com/teracopy.php" target="_blank">TeraCopy</a></strong></p>
<p>快速文件复制/移动，内存控制较好，可以和系统集成。</p>
<p>下载：<a href="http://www.codesector.com/download.php" target="_blank">http://www.codesector.com/download.php</a></p>
<p><strong><a href="http://www.voidtools.com/" target="_blank">Everything</a></strong></p>
<p>自动后台快速索引，以及全盘搜索，支持通配符等，简单的局域网http/ftp共享。</p>
<p>下载：<a href="http://www.voidtools.com/download.php" target="_blank">http://www.voidtools.com/download.php</a></p>
<h4>文字图像处理</h4>
<p><strong><a href="http://www.foxitsoftware.com/pdf/reader/" target="_blank">Foxit PDF阅读器</a></strong></p>
<p>体积娇小的PDF阅读器，很多人都在用。</p>
<p>下载:<a href="http://download.cnet.com/Foxit-Reader/3000-10743_4-10313206.html?part=dl-116442&amp;subj=dl&amp;tag=button/" target="_blank">http://download.cnet.com/Foxit-Reader/3000-10743_4-10313206.html?part=dl-116442&amp;subj=dl&amp;tag=button/</a></p>
<p><strong><a href="http://notepad-plus.sourceforge.net/tw/site.htm" target="_blank">Notepad++</a></strong></p>
<p>一个可以替代记事本的编辑工具，占用内存小，功能强大，支持很多编程语言的语法高亮。</p>
<h4>网络聊天</h4>
<p><strong><a href="http://im.qq.com/tm/ " target="_blank">Tencent Messenger</a> </strong></p>
<p>不太建议用QQ一类的，包括这一个，实在要用，就用TM吧，无广告无插件的干净版本。</p>
<p><strong><a href="http://www.libfetion.cn/" target="_blank"></a><a href="http://www.libfetion.org/" target="_blank">LibFetion</a></strong><strong> </strong></p>
<p>飞信的第三方客户端, 多平台。下载：<a href="http://web.libfetion.org/demoapp_download.php" target="_blank">http://web.libfetion.org/demoapp_download.php</a></p>
<h4>一些不错的商业软件</h4>
<p>商业软件有些也是不错的，下面介绍一些。</p>
<p><strong><a href="http://www.ghisler.com/" target="_blank">Total Commander</a></strong></p>
<p>强大的文件管理与操作软件，功能强大，但学习起来比较复杂，如果喜欢的话，可以购买。<a href="http://xbeta.info/" target="_blank">善用佳软</a>有专门学习网页：<a href="http://xbeta.info/studytc/">http://xbeta.info/studytc/<em> </em></a></p>
<p><strong><a href="http://www.yamicsoft.com.cn/index.html" target="_blank">WinXP总管/Windows 7总管</a></strong></p>
<p>功能齐全的系统优化、设置和清理软件，使用比较简单，比优化大师一类的好。</p>
]]></content:encoded>
			<wfw:commentRss>http://klniu.com/post/recommended-software-installed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>现在正在用的一些Chrome扩展</title>
		<link>http://klniu.com/post/chrome-is-now-being-used-in-a-number-of-extensions/</link>
		<comments>http://klniu.com/post/chrome-is-now-being-used-in-a-number-of-extensions/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 03:26:36 +0000</pubDate>
		<dc:creator>勿慢牛</dc:creator>
				<category><![CDATA[原创]]></category>
		<category><![CDATA[软件]]></category>
		<category><![CDATA[addon]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[扩展]]></category>

		<guid isPermaLink="false">http://klniu.com/post/chrome-is-now-being-used-in-a-number-of-extensions/</guid>
		<description><![CDATA[首先说明下，由于不可抗拒因素，访问扩展页需要使用代理或者其他翻墙方式。 Proxy Switchy! 一款代理软件，现在已经可以使用AutoProxy的pac了，方便多了，觉得是chrome下最佳的代理(XX)工具。 LastPass 和Firefox下的lastpass一样，用于将密码同步和自动填表，非常方便，本人用于和Firefox同步密码，如果等Xmarks在chrome下可以使用自己的服务器了，就放弃使用，因为一直使用Xmarks，已经有感情了，只可惜…… AdBlock 和Firefox下的AdBlock Plus一样，可以拦截广告，可以定制和更新规则。 Chrome Gestures 离了鼠标手势真的很痛苦，不多介绍了，大家都明白。 Xmarks Bookmarks Sync 强大的书签和密码同步工具，只是现在被河了，在chrome下现在还没有密码同步和定义自己的服务器，以后会有的，现在本人没有用。 IE Tab 类似于Firefox下的IE Tab，可以使用IE核心浏览网页。 AutoPager Chrome 自动翻页 Thunder,QQDownload,FlashGet Files Downloader 迅雷，快车，旋风，链接转换器 OnlineDict 鼠标取词，并能记录查询过的单词，方便记忆。 翻译工具，可以翻译一个词，二个词……乃至整页。 Google Mail Checker Plus 检查Gmail新邮件。 GoogleKingKong 这是在firefox下非常好用的一个脚本，作者现在支持chrome了，多栏显示google搜索结果，自定义增加搜索引擎等等功能，赞一个]]></description>
			<content:encoded><![CDATA[<p>首先说明下，由于不可抗拒因素，访问扩展页需要使用代理或者其他翻墙方式。</p>
<p><a href="https://chrome.google.com/extensions/detail/caehdcpeofiiigpdhbabniblemipncjj?hl=zh-cn" target="_blank">Proxy Switchy!</a></p>
<p>一款代理软件，现在已经可以使用AutoProxy的pac了，方便多了，觉得是chrome下最佳的代理(XX)工具。</p>
<p><a href="https://chrome.google.com/extensions/detail/hdokiejnpimakedhajhdlcegeplioahd?hl=zh-cn" target="_blank">LastPass</a></p>
<p>和Firefox下的lastpass一样，用于将密码同步和自动填表，非常方便，本人用于和Firefox同步密码，如果等Xmarks在chrome下可以使用自己的服务器了，就放弃使用，因为一直使用Xmarks，已经有感情了，只可惜……</p>
<p><a href="https://chrome.google.com/extensions/detail/gighmmpiobklfepjocnamgkkbiglidom?hl=zh-cn" target="_blank">AdBlock</a></p>
<p>和Firefox下的AdBlock Plus一样，可以拦截广告，可以定制和更新规则。</p>
<p><a href="https://chrome.google.com/extensions/detail/jpkfjicglakibpenojifdiepckckakgk" target="_blank">Chrome Gestures</a></p>
<p>离了鼠标手势真的很痛苦，不多介绍了，大家都明白。</p>
<p><a href="https://chrome.google.com/extensions/detail/ajpgkpeckebdhofmmjfgcjjiiejpodla?hl=zh-cn" target="_blank">Xmarks Bookmarks Sync</a></p>
<p>强大的书签和密码同步工具，只是现在被河了，在chrome下现在还没有密码同步和定义自己的服务器，以后会有的，现在本人没有用。</p>
<p><a href="https://chrome.google.com/extensions/detail/hehijbfgiekmjfkfjpbkbammjbdenadd?hl=zh-cn" target="_blank">IE Tab</a></p>
<p>类似于Firefox下的IE Tab，可以使用IE核心浏览网页。</p>
<p><a href="https://chrome.google.com/extensions/detail/mmgagnmbebdebebbcleklifnobamjonh" target="_blank">AutoPager Chrome</a></p>
<p>自动翻页</p>
<p><a href="https://chrome.google.com/extensions/detail/gmpllenfapkfpdkahamlbmbichihpmmg" target="_blank">Thunder,QQDownload,FlashGet Files Downloader</a></p>
<p>迅雷，快车，旋风，链接转换器</p>
<p><a href="https://chrome.google.com/extensions/detail/pjcpllfjdcmdpledofgmmenodfjegfka" target="_blank">OnlineDict</a></p>
<p>鼠标取词，并能记录查询过的单词，方便记忆。</p>
<p>翻译工具，可以翻译一个词，二个词……乃至整页。</p>
<p><a href="https://chrome.google.com/extensions/detail/gffjhibehnempbkeheiccaincokdjbfe" target="_blank">Google Mail Checker Plus</a></p>
<p>检查Gmail新邮件。</p>
<p><a href="http://userscripts.org/scripts/source/39159.user.js" target="_blank">GoogleKingKong</a></p>
<p>这是在firefox下非常好用的一个脚本，作者现在支持chrome了，多栏显示google搜索结果，自定义增加搜索引擎等等功能，赞一个</p>
]]></content:encoded>
			<wfw:commentRss>http://klniu.com/post/chrome-is-now-being-used-in-a-number-of-extensions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>手机wordpress博客工具wordmobi</title>
		<link>http://klniu.com/post/mobile-wordpress-blog-tool-wordmobi/</link>
		<comments>http://klniu.com/post/mobile-wordpress-blog-tool-wordmobi/#comments</comments>
		<pubDate>Sun, 10 Jan 2010 12:29:42 +0000</pubDate>
		<dc:creator>勿慢牛</dc:creator>
				<category><![CDATA[原创]]></category>
		<category><![CDATA[软件]]></category>
		<category><![CDATA[wordmobi]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[手机]]></category>

		<guid isPermaLink="false">http://klniu.com/?p=471</guid>
		<description><![CDATA[马上要回家了，也发心能经常更新博客，回家又没有网上，就用这个wordmobi 软件来写博客吧，这是第一个用这个软件写的文章。顺便介绍下这个软件吧。 官方网站： http://wordmobi.googlecode.com 需要下载的文件：python，wordmobi。 软件运行于S60平台，需要安装python平台，wordmobi的网站有下载。python在手机上安装需要对手机进行破解，破解方法一般是用HelloOx，具体方法可以去塞班网搜索，不同手机方法会有些不同，破解完后下载的文件不用签名就可以直接安装。﻿ 这个软件挺不错，常用的功能都有。第一次使用需要在设置菜单填写名称（随便填写），博客地址，如果wordpress不是直接安装在﻿ 网站的根目录，就要在地址中加上这个目录，比如我的博客显示地址是  http://klniu.com/ ，而实际安装地址是 http://klniu.com/wordpress/ ，那么就要填写实际的安装目录。另外有代理和twitter，需要的可以自己配置。﻿ 软件可以新建或删除分类和标签，但是不能编辑。 编辑文章的时候可以设置分类，添加标签，可以设置字体、超链接、列表。 总的来说，软件还是不错的，挺人性化的，就是安装起来比较麻烦一些，不过把手机破解了，以后玩机也比较省事。就说到这里吧，大家可以自己感觉。﻿]]></description>
			<content:encoded><![CDATA[<p>马上要回家了，也发心能经常更新博客，回家又没有网上，就用这个<a href="http://wordmobi.googlecode.com" target="_blank">wordmobi </a>软件来写博客吧，这是第一个用这个软件写的文章。顺便介绍下这个软件吧。</p>
<p>官方网站： <a href="http://wordmobi.googlecode.com" target="_blank">http://wordmobi.googlecode.com </a></p>
<p>需要下载的文件：python，wordmobi。</p>
<p>软件运行于S60平台，需要安装python平台，wordmobi的网站有下载。python在手机上安装需要对手机进行破解，破解方法一般是用HelloOx，具体方法可以去塞班网搜索，不同手机方法会有些不同，破解完后下载的文件不用签名就可以直接安装。﻿</p>
<p>这个软件挺不错，常用的功能都有。第一次使用需要在设置菜单填写名称（随便填写），博客地址，如果wordpress不是直接安装在﻿</p>
<p>网站的根目录，就要在地址中加上这个目录，比如我的博客显示地址是  <a href="http://klniu.com ">http://klniu.com/</a> ，而实际安装地址是 http://klniu.com/wordpress/ ，那么就要填写实际的安装目录。另外有代理和twitter，需要的可以自己配置。﻿</p>
<p>软件可以新建或删除分类和标签，但是不能编辑。 编辑文章的时候可以设置分类，添加标签，可以设置字体、超链接、列表。 总的来说，软件还是不错的，挺人性化的，就是安装起来比较麻烦一些，不过把手机破解了，以后玩机也比较省事。就说到这里吧，大家可以自己感觉。﻿</p>
]]></content:encoded>
			<wfw:commentRss>http://klniu.com/post/mobile-wordpress-blog-tool-wordmobi/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>现在正用的一些live writer插件</title>
		<link>http://klniu.com/post/used-of-live-writer-plugins/</link>
		<comments>http://klniu.com/post/used-of-live-writer-plugins/#comments</comments>
		<pubDate>Wed, 14 Oct 2009 03:53:06 +0000</pubDate>
		<dc:creator>勿慢牛</dc:creator>
				<category><![CDATA[原创]]></category>
		<category><![CDATA[软件]]></category>
		<category><![CDATA[live writer]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[WLW]]></category>
		<category><![CDATA[插件]]></category>

		<guid isPermaLink="false">http://klniu.com/post/now-being-used-in-a-number-of-live-writer-plug-ins/</guid>
		<description><![CDATA[Picasa Image Plugin 将WLW的图片上传到Google picasa。 Precode 用些插件可以直接插入syntaxlight 2.0格式化的代码 SkyDrive Embed Plugin 将Skydrive的链接插入博客]]></description>
			<content:encoded><![CDATA[<p><a href="http://gallery.live.com/liveitemdetail.aspx?li=92358e47-abe4-4a6a-8526-c09dee0450b9&amp;pl=8&amp;bt=9" target="_blank">Picasa Image Plugin</a></p>
<p>将WLW的图片上传到Google picasa。</p>
<p><a href="http://precode.codeplex.com/" target="_blank">Precode</a></p>
<p>用些插件可以直接插入syntaxlight 2.0格式化的代码</p>
<p><a href="http://gallery.live.com/liveItemDetail.aspx?li=27545581-4b54-4f6d-9007-ed3b168dab43" target="_blank">SkyDrive Embed Plugin</a></p>
<p>将Skydrive的链接插入博客</p>
]]></content:encoded>
			<wfw:commentRss>http://klniu.com/post/used-of-live-writer-plugins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>现在正在用的一些Thunderbird扩展</title>
		<link>http://klniu.com/post/thunderbird-addons/</link>
		<comments>http://klniu.com/post/thunderbird-addons/#comments</comments>
		<pubDate>Fri, 31 Jul 2009 04:47:54 +0000</pubDate>
		<dc:creator>勿慢牛</dc:creator>
				<category><![CDATA[原创]]></category>
		<category><![CDATA[软件]]></category>
		<category><![CDATA[addon]]></category>
		<category><![CDATA[Mozilla]]></category>
		<category><![CDATA[thunderbird]]></category>

		<guid isPermaLink="false">http://klniu.com/?p=398</guid>
		<description><![CDATA[MinimizeToTray For FF 3.5 可以使thunderbird或者firefox最小化。 Quicktext 发一些重复性邮件使用，可以建立模板 Thunderbird Message Filter Import/Export thunderbird的消息过滤器导入和导出 ThunderBrowse 不打开浏览器就能在thunderbird中打开链接 Lightning Thunderbird的嵌入式日程管理插件 Provider for Google Calendar 让 Lightning 的用户可以把事件读取/写入Google Calenda Remember the Milk Provider 一个GTD插件，能够使用Remember the Milk Provider]]></description>
			<content:encoded><![CDATA[<p><a href="https://addons.mozilla.org/zh-CN/thunderbird/addon/10488" target="_blank"><span>     <span style="font-size: 16px;">MinimizeToTray For FF 3.5 </span>   </span></a></p>
<p>可以使thunderbird或者firefox最小化。</p>
<p><a target="_blank" href="https://addons.mozilla.org/en-US/thunderbird/addon/640"><span style="font-size: 16px;">Quicktext</span></a></p>
<p>发一些重复性邮件使用，可以建立模板</p>
<p><a href="https://addons.mozilla.org/zh-CN/thunderbird/addon/2474" target="_blank"><span style="font-size: 16px;"><span>Thunderbird Message Filter Import/Export</span></span></a></p>
<p>thunderbird的消息过滤器导入和导出</p>
<p><a target="_blank" href="https://addons.mozilla.org/zh-CN/thunderbird/addon/5373"><span><span style="font-size: 16px;">ThunderBrowse</span></span></a></p>
<p><span><span style="font-size: 16px;">不打开浏览器就能在thunderbird中打开链接</span></span></p>
<p><a target="_blank" href="https://addons.mozilla.org/en-US/thunderbird/addon/2313"><span>     <span style="font-size: 16px;">Lightning</span></span></a></p>
<p><strong> </strong>Thunderbird的嵌入式日程管理插件</p>
<p><a target="_blank" href="https://addons.mozilla.org/en-US/thunderbird/addon/4631"><span><span style="font-size: 16px;">Provider for Google Calendar    </span></span></a></p>
<p><strong> </strong>让 Lightning 的用户可以把事件读取/写入Google Calenda</p>
<p><a href="https://addons.mozilla.org/en-US/thunderbird/addon/7125" target="_blank"><span><span style="font-size: 16px;">Remember the Milk Provider</span></span></a></p>
<p>一个GTD插件，能够使用Remember the Milk Provider</p>
]]></content:encoded>
			<wfw:commentRss>http://klniu.com/post/thunderbird-addons/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>现在正在用的一些firefox扩展</title>
		<link>http://klniu.com/post/firefox-addson/</link>
		<comments>http://klniu.com/post/firefox-addson/#comments</comments>
		<pubDate>Tue, 18 Nov 2008 11:34:12 +0000</pubDate>
		<dc:creator>勿慢牛</dc:creator>
				<category><![CDATA[原创]]></category>
		<category><![CDATA[软件]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[Mozilla]]></category>

		<guid isPermaLink="false">http://livesdrop.com/?p=56</guid>
		<description><![CDATA[Adblock Plus 非常著名并且实用的屏蔽广告的扩展 AutoProxy 一个会自动更新被屏蔽地址的插件，自动选择代理，免去来回切换的工作，让GFW成为昨天 DownThemAll! 一个多线程下载的工具 Easy DragToGo 轻松使用拖曳手势打开标签页。拖曳对象：选取的文字、链接、图片。 FlashGot 这个就不用介绍了，下载托管工具 Firefox Universal Uploader (fireuploader) 是一个文件、图片、视频上传的工具，支持很多有名的网站，像youtube,picassa,boxnet等 FireFTP FireFTP 是一个免费，安全，跨越平台的FTP客户端，它依附与firefox并提供简单直接的连接FTP服务器的方式。 FireGestures 经典的鼠标手势 Google Gears Google的离线工具 Google Toolbar for Firefox Google工具栏 Greasemonkey 不用介绍了吧，一个非常强大的支持脚本的扩展，另附上几个有用的脚本 GoogleKingKong 优化GOOGLE搜索的界面，使其更加紧凑 Twitter Search Results on Google 在GOOGLE搜索结果中同时显示对twitter的搜索结果 &#8230; <a href="http://klniu.com/post/firefox-addson/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="https://addons.mozilla.org/zh-CN/firefox/addon/1865" target="_blank">Adblock Plus</a></p>
<p>非常著名并且实用的屏蔽广告的扩展</p>
<p><a href="https://addons.mozilla.org/zh-CN/firefox/addon/11009" target="_blank">AutoProxy</a></p>
<p>一个会自动更新被屏蔽地址的插件，自动选择代理，免去来回切换的工作，让GFW成为昨天</p>
<p><a href="https://addons.mozilla.org/zh-CN/firefox/addon/201" target="_blank">DownThemAll!</a></p>
<p>一个多线程下载的工具</p>
<p><a href="https://addons.mozilla.org/zh-CN/firefox/addon/6639" target="_blank">Easy DragToGo</a></p>
<p>轻松使用拖曳手势打开标签页。拖曳对象：选取的文字、链接、图片。</p>
<p><a href="https://addons.mozilla.org/zh-CN/firefox/addon/220" target="_blank">FlashGot</a></p>
<p>这个就不用介绍了，下载托管工具</p>
<p><a href="https://addons.mozilla.org/zh-CN/firefox/addon/4724" target="_blank">Firefox Universal Uploader (fireuploader)</a></p>
<p>是一个文件、图片、视频上传的工具，支持很多有名的网站，像youtube,picassa,boxnet等</p>
<p><a href="https://addons.mozilla.org/zh-CN/firefox/addon/684" target="_blank">FireFTP</a></p>
<p>FireFTP 是一个免费，安全，跨越平台的FTP客户端，它依附与firefox并提供简单直接的连接FTP服务器的方式。</p>
<p><a href="https://addons.mozilla.org/zh-CN/firefox/addon/6366" target="_blank">FireGestures</a></p>
<p>经典的鼠标手势</p>
<p><a href="http://gears.google.com/" target="_blank">Google Gears</a></p>
<p>Google的离线工具</p>
<p><a href="http://tools.google.com/firefox/toolbar/FT5/intl/zh-CN/index.html" target="_blank">Google Toolbar for Firefox</a></p>
<p>Google工具栏</p>
<p><a href="https://addons.mozilla.org/zh-CN/firefox/addon/748" target="_blank">Greasemonkey</a></p>
<p>不用介绍了吧，一个非常强大的支持脚本的扩展，另附上几个有用的脚本</p>
<ul>
<li><a href="http://userscripts.org/scripts/source/39159.user.js" target="_blank">GoogleKingKong</a> 优化GOOGLE搜索的界面，使其更加紧凑</li>
<li><a href="http://userscripts.org/scripts/source/43451.user.js" target="_blank">Twitter Search Results on Google</a> 在GOOGLE搜索结果中同时显示对twitter的搜索结果</li>
<li><a href="http://userscripts.org/scripts/source/8810.user.js">Folders4Gmail</a> 将Gmail的标签以文件夹树的方式显示</li>
<li><a href="http://userscripts.org/scripts/source/10169.user.js" target="_blank">Google Reader + Twitter</a> 在Google Reader的条目下放上twitter按钮，可以对新闻进行感想</li>
<li><a href="http://www.1st-soft.net/gdd/googledocdownload.user.js" target="_blank">Google Docs: Download</a> 批量下载Google Docs</li>
</ul>
<p><a href="https://addons.mozilla.org/zh-CN/firefox/addon/1419" target="_blank">IE Tab</a></p>
<p>可以在firefox下用IE内核访问不支持firefox内核的网站</p>
<p><a href="https://addons.mozilla.org/zh-CN/firefox/addon/2410" target="_blank">Xmarks</a></p>
<p>书签同步工具</p>
<p><a href="https://mozillalabs.com/weave/" target="_blank">Mozilla Weave</a></p>
<p>Mozilla firefox自己的同步工具，包括常用的书签、密码，以及标签、历史等，自从weave被墙了之后，我就同时装xmarks和weave两个插件，xmarks用自己的服务器。</p>
<p><a href="https://addons.mozilla.org/zh-CN/firefox/addon/8542" target="_blank">LastPass</a></p>
<p>一款密码保存和自动填写工具，同步数据在服务器，本人用于和chrome同步密码。</p>
]]></content:encoded>
			<wfw:commentRss>http://klniu.com/post/firefox-addson/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

