<?xml version="1.0" encoding="utf-8"?><?xml-stylesheet href='http://feed.liu6.org/styles/temp01.xsl' type='text/xsl' ?><!--这是一个由Feedsy提供技术支持的Feed，为了提高读者阅读的体验，以及满足用户美化自己Feed的需要，我们设计了多种精美的Feed模板，提供给大家选择，所有最终呈现出来的样式，皆由用户自愿选择使用，未经许可，任何团体和个人，请不要擅自修改样式或者盗用，这是对于用户选择权的尊重。--><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:fs="http://www.feedsky.com/namespace/feed" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><atom:link href="http://feed.liu6.org" type="application/rss+xml" rel="self"></atom:link><fs:self_link href="http://feed.feedsky.com/daliu" type="application/rss+xml"></fs:self_link><lastBuildDate>Thu, 19 Nov 2009 07:22:26 GMT</lastBuildDate><title>liu6's blog</title><description>Trust can kill you or set you free!</description><image><url>http://www.feedsky.com/feed/daliu/sc/gif</url><title>liu6's blog</title><link>http://liu6.org</link></image><link>http://liu6.org</link><sy:updatePeriod>hourly</sy:updatePeriod><sy:updateFrequency>1</sy:updateFrequency><language>en</language><pubDate>Thu, 19 Nov 2009 07:23:56 GMT</pubDate><item><title>数据库</title><link>http://liu6.org/2009/11/19/database/</link><content:encoded>&lt;p&gt;数据库琐事&lt;/p&gt;
&lt;p&gt;之前做的项目,用的数据库无非是Oracle和SqlServer.这两个可以说是商用里面总主流的了.Oracle一般都会配合java和SqlServer则会和.Net一起出现.也不排除混搭的.Oracle总的来说比SqlServer要好用点,不过,在Windows下的涉及到一些权限的问题让人很郁闷,遇到这个的时候,把Oracle安装目录给Automaticated Users弄个读取和运行的权限就可以了.&lt;/p&gt;
&lt;p&gt;SqlServer现在也算是挺火的,特别是在Linq2SQl和Entity Framework出现以后.不过后面的这两个也挺悲剧的,官方只支持SqlServer,其他数据库不支持.倒是有好多的第三方provider.不过,用起来还是不太放心.我现在的这个项目,上面开始的时间一直要求用数据库持久层,不过,最后由于不支持,所以也就放弃了.&lt;/p&gt;
&lt;p&gt;其他的一些数据库有&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://www.mysql.com&quot;&gt;Mysql&lt;/a&gt;,算是开源领域里面最出名的数据库了.在折腾php的时间,用过,感觉不错.&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.postgresql.org&quot;&gt;PostgreSQL&lt;/a&gt; 号称世界上最先进的开源数据库.&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.sqlite.org/&quot;&gt;SQLite&lt;/a&gt; 一个开源的微型数据库,火狐在用,也可以在一些手机上使用.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;使用C#制作的几个数据库&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://effiproz.codeplex.com/&quot;&gt;EffiProz&lt;/a&gt;&amp;#8211; 算是比较厉害的自带Entity Framework Provider&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.ohloh.net/p/deveeldb&quot;&gt;DeveelDB&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://code.google.com/p/csharp-sqlite/&quot;&gt;csharp-sqlite&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/298684222/daliu/feedsky/s.gif?r=http://liu6.org/2009/11/19/database/&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/feedsky/daliu/298684222/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/feedsky/daliu/298684222/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</content:encoded><wfw:commentRss>http://liu6.org/2009/11/19/database/feed/</wfw:commentRss><slash:comments>0</slash:comments><description>数据库琐事
之前做的项目,用的数据库无非是Oracle和SqlServer.这两个可以说是商用里面总主流的了.Oracle一般都会配合java和SqlServer则会和.Net一起出现.也不排除混搭的.Oracle总的来说比SqlServer要好用点,不过,在Windows下的涉及到一些权限的问题让人很郁闷,遇到这个的时候,把Oracle安装目录给Automaticated Users弄个读取和运行的权限就可以了.
SqlServer现在也算是挺火的,特别是在Linq2SQl和Entity Framework出现以后.不过后面的这两个也挺悲剧的,官方只支持SqlServer,其他数据库不支持.倒是有好多的第三方provider.不过,用起来还是不太放心.我现在的这个项目,上面开始的时间一直要求用数据库持久层,不过,最后由于不支持,所以也就放弃了.
其他的一些数据库有

Mysql,算是开源领域里面最出名的数据库了.在折腾php的时间,用过,感觉不错.
PostgreSQL 号称世界上最先进的开源数据库.
SQLite 一个开源的微型数据库,火狐在用,也可以在一些手机上使用.

使用C#制作的几个数据库

EffiProz&amp;#8211; 算是比较厉害的自带Entity Framework Provider
DeveelDB
csharp-sqlite&lt;img src=&quot;http://www1.feedsky.com/t1/298684222/daliu/feedsky/s.gif?r=http://liu6.org/2009/11/19/database/&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/feedsky/daliu/298684222/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/feedsky/daliu/298684222/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><category>DotNET</category><pubDate>Thu, 19 Nov 2009 15:22:26 +0800</pubDate><author>刘浏</author><comments>http://liu6.org/2009/11/19/database/#comments</comments><guid isPermaLink="false">http://liu6.org/?p=446</guid><dc:creator>刘浏</dc:creator><fs:srclink>http://liu6.org/2009/11/19/database/</fs:srclink><fs:srcfeed>http://liu6.org/feed</fs:srcfeed><fs:itemid>feedsky/daliu/~7025431/298684222/4054141</fs:itemid></item><item><title>Failed to access IIS metabase</title><link>http://liu6.org/2009/11/17/failed-to-access-iis-metabase/</link><content:encoded>&lt;p&gt;今天在发布的时间遇到一个小问题,记录一下&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;Failed to access IIS metabase&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;解决方法是:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;在CMD中进入目录C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727，运行aspnet_regiis&lt;br /&gt;
1、aspnet_regiis -ga administrator（administrator为当前用户）&lt;br /&gt;
2、aspnet_regiis -i （注册IIS）&lt;br /&gt;
3、iisreset /noforce （重启IIS）&lt;/p&gt;&lt;/blockquote&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/297812872/daliu/feedsky/s.gif?r=http://liu6.org/2009/11/17/failed-to-access-iis-metabase/&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/feedsky/daliu/297812872/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/feedsky/daliu/297812872/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</content:encoded><wfw:commentRss>http://liu6.org/2009/11/17/failed-to-access-iis-metabase/feed/</wfw:commentRss><slash:comments>0</slash:comments><description>今天在发布的时间遇到一个小问题,记录一下
Failed to access IIS metabase
解决方法是:
在CMD中进入目录C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727，运行aspnet_regiis
1、aspnet_regiis -ga administrator（administrator为当前用户）
2、aspnet_regiis -i （注册IIS）
3、iisreset /noforce （重启IIS）&lt;img src=&quot;http://www1.feedsky.com/t1/297812872/daliu/feedsky/s.gif?r=http://liu6.org/2009/11/17/failed-to-access-iis-metabase/&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/feedsky/daliu/297812872/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/feedsky/daliu/297812872/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><category>胡言乱语</category><pubDate>Tue, 17 Nov 2009 16:11:03 +0800</pubDate><author>刘浏</author><comments>http://liu6.org/2009/11/17/failed-to-access-iis-metabase/#comments</comments><guid isPermaLink="false">http://liu6.org/?p=444</guid><dc:creator>刘浏</dc:creator><fs:srclink>http://liu6.org/2009/11/17/failed-to-access-iis-metabase/</fs:srclink><fs:srcfeed>http://liu6.org/feed</fs:srcfeed><fs:itemid>feedsky/daliu/~7025431/297812872/4054141</fs:itemid></item><item><title>雪天</title><link>http://liu6.org/2009/11/16/snow-2/</link><content:encoded>&lt;p&gt;也许老天爷把去年没下的雪都一次拿出来了.可惜自己没有心情出去转转.只能窝在被子里.这样才不至于太冷,很久没有遇到这样的冬天了.有点不习惯.&lt;br /&gt;
项目快结束了,也就是这周的事情.遇到最后,越感到无奈.公司是个小公司,总是搞一些小动作,让人无语的很.不过,毕竟开始了,总要尽自己的全力去做好的.哎,让我以后拿什么来相信你呢?呵呵,信任就是这样一点点的消失掉的.&lt;br /&gt;
最近很少写blog,不知道为什么了?&lt;a href=&quot;http://digu.com&quot;&gt;嘀咕&lt;/a&gt;可以用之后,倒是经常在上面发些&lt;a href=&quot;http://digu.com&quot;&gt;嘀咕&lt;/a&gt;&amp;#8230;&lt;br /&gt;
希望雪天之后的晴天能够持续的久些,也许,可能的话,找几个朋友打雪仗也挺不错的.&lt;/p&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/297812873/daliu/feedsky/s.gif?r=http://liu6.org/2009/11/16/snow-2/&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/feedsky/daliu/297812873/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/feedsky/daliu/297812873/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</content:encoded><wfw:commentRss>http://liu6.org/2009/11/16/snow-2/feed/</wfw:commentRss><slash:comments>0</slash:comments><description>也许老天爷把去年没下的雪都一次拿出来了.可惜自己没有心情出去转转.只能窝在被子里.这样才不至于太冷,很久没有遇到这样的冬天了.有点不习惯.
项目快结束了,也就是这周的事情.遇到最后,越感到无奈.公司是个小公司,总是搞一些小动作,让人无语的很.不过,毕竟开始了,总要尽自己的全力去做好的.哎,让我以后拿什么来相信你呢?呵呵,信任就是这样一点点的消失掉的.
最近很少写blog,不知道为什么了?嘀咕可以用之后,倒是经常在上面发些嘀咕&amp;#8230;
希望雪天之后的晴天能够持续的久些,也许,可能的话,找几个朋友打雪仗也挺不错的.&lt;img src=&quot;http://www1.feedsky.com/t1/297812873/daliu/feedsky/s.gif?r=http://liu6.org/2009/11/16/snow-2/&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/feedsky/daliu/297812873/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/feedsky/daliu/297812873/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><category>胡言乱语</category><pubDate>Mon, 16 Nov 2009 10:15:42 +0800</pubDate><author>刘浏</author><comments>http://liu6.org/2009/11/16/snow-2/#comments</comments><guid isPermaLink="false">http://liu6.org/2009/11/16/snow-2/</guid><dc:creator>刘浏</dc:creator><fs:srclink>http://liu6.org/2009/11/16/snow-2/</fs:srclink><fs:srcfeed>http://liu6.org/feed</fs:srcfeed><fs:itemid>feedsky/daliu/~7025431/297812873/4054141</fs:itemid></item><item><title>Becky! Internet Mail Ver.2 (2.52.00)</title><link>http://liu6.org/2009/10/21/becky-internet-mail-ver-2-2-52-00/</link><content:encoded>&lt;p&gt;昨天&lt;a href=&quot;http://www.rimarts.co.jp/becky.htm&quot;&gt;Becky!&lt;/a&gt;更新了.下载之后解压覆盖即可.主要变化如下:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;在地址栏上增加了调整收件人位置的按钮.&lt;/p&gt;
&lt;p&gt;在查询结果里面双击,可以加入到&amp;quot;快速进入列表&amp;quot;(Quick Access list).&lt;/p&gt;
&lt;p&gt;点击一些邮件下点击日期,造成程序崩溃(自己貌似没遇到过).&lt;/p&gt;
&lt;p&gt;修正了一处bug,如果IMAP中文件夹名称过长,导致显示错误.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&lt;font style=&quot;background-color: #f4f5f7&quot;&gt;&amp;#160;&lt;/font&gt;&lt;/p&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/297812874/daliu/feedsky/s.gif?r=http://liu6.org/2009/10/21/becky-internet-mail-ver-2-2-52-00/&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/feedsky/daliu/297812874/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/feedsky/daliu/297812874/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</content:encoded><wfw:commentRss>http://liu6.org/2009/10/21/becky-internet-mail-ver-2-2-52-00/feed/</wfw:commentRss><slash:comments>0</slash:comments><description>昨天Becky!更新了.下载之后解压覆盖即可.主要变化如下:
在地址栏上增加了调整收件人位置的按钮.
在查询结果里面双击,可以加入到&amp;#34;快速进入列表&amp;#34;(Quick Access list).
点击一些邮件下点击日期,造成程序崩溃(自己貌似没遇到过).
修正了一处bug,如果IMAP中文件夹名称过长,导致显示错误.

&amp;#160;&lt;img src=&quot;http://www1.feedsky.com/t1/297812874/daliu/feedsky/s.gif?r=http://liu6.org/2009/10/21/becky-internet-mail-ver-2-2-52-00/&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/feedsky/daliu/297812874/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/feedsky/daliu/297812874/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><category>soft</category><category>becky</category><pubDate>Wed, 21 Oct 2009 08:51:44 +0800</pubDate><author>刘浏</author><comments>http://liu6.org/2009/10/21/becky-internet-mail-ver-2-2-52-00/#comments</comments><guid isPermaLink="false">http://liu6.org/2009/10/21/becky-internet-mail-ver-2-2-52-00/</guid><dc:creator>刘浏</dc:creator><fs:srclink>http://liu6.org/2009/10/21/becky-internet-mail-ver-2-2-52-00/</fs:srclink><fs:srcfeed>http://liu6.org/feed</fs:srcfeed><fs:itemid>feedsky/daliu/~7025431/297812874/4054141</fs:itemid></item><item><title>为IIS注册ASP.NET扩展服务</title><link>http://liu6.org/2009/10/20/to-register-asp-net-expand-their-services-iis/</link><content:encoded>&lt;p&gt;今天为把做好的程序发不到服务器上,却遇到了404错误.最后的原因归结到了缺少asp.net的扩展服务.增加的方法如下:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&lt;a href=&quot;file:///C:/windows/Microsoft.NET/Framework/v2.0.50727/aspnet_regiis.exe%20-i&quot;&gt;C:\windows\Microsoft.NET\Framework\v2.0.50727\aspnet_regiis.exe –i&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/297812875/daliu/feedsky/s.gif?r=http://liu6.org/2009/10/20/to-register-asp-net-expand-their-services-iis/&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/feedsky/daliu/297812875/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/feedsky/daliu/297812875/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</content:encoded><wfw:commentRss>http://liu6.org/2009/10/20/to-register-asp-net-expand-their-services-iis/feed/</wfw:commentRss><slash:comments>0</slash:comments><description>今天为把做好的程序发不到服务器上,却遇到了404错误.最后的原因归结到了缺少asp.net的扩展服务.增加的方法如下:
C:\windows\Microsoft.NET\Framework\v2.0.50727\aspnet_regiis.exe –i&lt;img src=&quot;http://www1.feedsky.com/t1/297812875/daliu/feedsky/s.gif?r=http://liu6.org/2009/10/20/to-register-asp-net-expand-their-services-iis/&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/feedsky/daliu/297812875/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/feedsky/daliu/297812875/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><category>DotNET</category><pubDate>Tue, 20 Oct 2009 14:38:52 +0800</pubDate><author>刘浏</author><comments>http://liu6.org/2009/10/20/to-register-asp-net-expand-their-services-iis/#comments</comments><guid isPermaLink="false">http://liu6.org/2009/10/20/to-register-asp-net-expand-their-services-iis/</guid><dc:creator>刘浏</dc:creator><fs:srclink>http://liu6.org/2009/10/20/to-register-asp-net-expand-their-services-iis/</fs:srclink><fs:srcfeed>http://liu6.org/feed</fs:srcfeed><fs:itemid>feedsky/daliu/~7025431/297812875/4054141</fs:itemid></item><item><title>Becky!插件 – 文件夹顺序调整</title><link>http://liu6.org/2009/10/20/becky-bksortfolder/</link><content:encoded>&lt;p&gt;Becky!中自建的文件夹是可以顺序调整的,但是默认就有的那几个文件夹是不可以调整顺序的.有一个插件BkSortFolder可以实现这个功能.这个软件是日文的,在中文或者英文的环境下会乱码.所以就给修改了下.翻译为英文的了.修正了编码的问题.有需要的就拿去.&lt;/p&gt;
&lt;p&gt;另外在研究如何用C#给Becky!写些插件.发现becky!的插件都是很久以前的了,不过,都还可以继续使用.看来,becky!的架构其实没有多大的变化,其实一个程序写成这样,开始的设计很重要.最起码,becky!在插件借口这边,一直没有变化,这也是大家使用它的一个因素吧.另外一个foobar2000也是如此.&lt;/p&gt;
&lt;p&gt;下载:&lt;a title=&quot;http://dl.getdropbox.com/u/227694/BkSortFolder.dll&quot; href=&quot;http://dl.getdropbox.com/u/227694/BkSortFolder.dll&quot;&gt;http://dl.getdropbox.com/u/227694/BkSortFolder.dll&lt;/a&gt;&lt;/p&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/297812876/daliu/feedsky/s.gif?r=http://liu6.org/2009/10/20/becky-bksortfolder/&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/feedsky/daliu/297812876/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/feedsky/daliu/297812876/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</content:encoded><wfw:commentRss>http://liu6.org/2009/10/20/becky-bksortfolder/feed/</wfw:commentRss><slash:comments>0</slash:comments><description>Becky!中自建的文件夹是可以顺序调整的,但是默认就有的那几个文件夹是不可以调整顺序的.有一个插件BkSortFolder可以实现这个功能.这个软件是日文的,在中文或者英文的环境下会乱码.所以就给修改了下.翻译为英文的了.修正了编码的问题.有需要的就拿去.
另外在研究如何用C#给Becky!写些插件.发现becky!的插件都是很久以前的了,不过,都还可以继续使用.看来,becky!的架构其实没有多大的变化,其实一个程序写成这样,开始的设计很重要.最起码,becky!在插件借口这边,一直没有变化,这也是大家使用它的一个因素吧.另外一个foobar2000也是如此.
下载:http://dl.getdropbox.com/u/227694/BkSortFolder.dll&lt;img src=&quot;http://www1.feedsky.com/t1/297812876/daliu/feedsky/s.gif?r=http://liu6.org/2009/10/20/becky-bksortfolder/&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/feedsky/daliu/297812876/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/feedsky/daliu/297812876/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><category>soft</category><category>becky</category><pubDate>Tue, 20 Oct 2009 11:53:36 +0800</pubDate><author>刘浏</author><comments>http://liu6.org/2009/10/20/becky-bksortfolder/#comments</comments><guid isPermaLink="false">http://liu6.org/2009/10/20/becky%e6%8f%92%e4%bb%b6-%e6%96%87%e4%bb%b6%e5%a4%b9%e9%a1%ba%e5%ba%8f%e8%b0%83%e6%95%b4/</guid><dc:creator>刘浏</dc:creator><fs:srclink>http://liu6.org/2009/10/20/becky-bksortfolder/</fs:srclink><fs:srcfeed>http://liu6.org/feed</fs:srcfeed><fs:itemid>feedsky/daliu/~7025431/297812876/4054141</fs:itemid></item><item><title>Becky!</title><link>http://liu6.org/2009/10/09/becky/</link><content:encoded>&lt;p&gt;自从玩了一把Outlook2010之后,机器上的Outlook就彻底毙掉了.想想自己那么多的邮件就这么完了.挺郁闷的.而且对MS也算是失望透顶了.你测试也就测试呗,为什么把Outlook的数据格式给变了.只是卸载之后,Outlook2007无法识别.我和我那上千封的邮件也就拜拜了&amp;#8230;&lt;/p&gt;
&lt;p&gt;所以就开始寻找第三方的替代品.自己的需求很简单,就是可以收pop3和imap.pop3是工作邮箱,imap是gmail的.国内的DreamMail还是不错的选择的.不过不支持Imap,这个对于我来说简直太不能忍受了.临时的解决办法就是开一个gtalk.这样Gmail有了提示的时间,就打开网页去看.忍了一个月,自己有事忙起来了就不想去看Gtalk.所以还是不受这个罪了.06/07年的时间有过一个叫&lt;a href=&quot;http://www.rimarts.co.jp/becky.htm&quot;&gt;becky!&lt;/a&gt;的邮件客户端,日本人做的.选了这个,现在还在慢慢的熟悉中.不过总的来说,目前感觉不错.把DreamMail中的邮件都导入到&lt;a href=&quot;http://www.rimarts.co.jp/becky.htm&quot;&gt;becky!&lt;/a&gt;了.&lt;/p&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/297812877/daliu/feedsky/s.gif?r=http://liu6.org/2009/10/09/becky/&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/feedsky/daliu/297812877/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/feedsky/daliu/297812877/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</content:encoded><wfw:commentRss>http://liu6.org/2009/10/09/becky/feed/</wfw:commentRss><slash:comments>0</slash:comments><description>自从玩了一把Outlook2010之后,机器上的Outlook就彻底毙掉了.想想自己那么多的邮件就这么完了.挺郁闷的.而且对MS也算是失望透顶了.你测试也就测试呗,为什么把Outlook的数据格式给变了.只是卸载之后,Outlook2007无法识别.我和我那上千封的邮件也就拜拜了&amp;#8230;
所以就开始寻找第三方的替代品.自己的需求很简单,就是可以收pop3和imap.pop3是工作邮箱,imap是gmail的.国内的DreamMail还是不错的选择的.不过不支持Imap,这个对于我来说简直太不能忍受了.临时的解决办法就是开一个gtalk.这样Gmail有了提示的时间,就打开网页去看.忍了一个月,自己有事忙起来了就不想去看Gtalk.所以还是不受这个罪了.06/07年的时间有过一个叫becky!的邮件客户端,日本人做的.选了这个,现在还在慢慢的熟悉中.不过总的来说,目前感觉不错.把DreamMail中的邮件都导入到becky!了.&lt;img src=&quot;http://www1.feedsky.com/t1/297812877/daliu/feedsky/s.gif?r=http://liu6.org/2009/10/09/becky/&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/feedsky/daliu/297812877/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/feedsky/daliu/297812877/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><category>soft</category><category>becky</category><pubDate>Fri, 09 Oct 2009 17:26:45 +0800</pubDate><author>刘浏</author><comments>http://liu6.org/2009/10/09/becky/#comments</comments><guid isPermaLink="false">http://liu6.org/2009/10/09/becky/</guid><dc:creator>刘浏</dc:creator><fs:srclink>http://liu6.org/2009/10/09/becky/</fs:srclink><fs:srcfeed>http://liu6.org/feed</fs:srcfeed><fs:itemid>feedsky/daliu/~7025431/297812877/4054141</fs:itemid></item><item><title>高冠之行</title><link>http://liu6.org/2009/10/02/%e9%ab%98%e5%86%a0%e4%b9%8b%e8%a1%8c/</link><content:encoded>&lt;p&gt;今天和小四川,大圣我们几个人爬山去了.&lt;/p&gt;
&lt;p&gt;去了高冠,因为这次纯粹的就是几个爷们,所以路线的行走比较随意.我们去了高冠几乎所有的经典.人其实挺渺小的,这几句话可能人人都会说.但是真正的看到了大自然的那种美丽,那种神秘.你会更深刻的理解这句话.&lt;/p&gt;
&lt;p&gt;高冠开始的地方的确没什么玩的,也就是农家乐,不过比较有特色的是可以坐在水上的平台吃饭.不过,农家乐的味道很差.和上王村比起来差了好多.过了瀑布,一直沿着河岸走是一片的河滩,也挺不错的.我们去的早,没有多少人.其实在到一个不知名的小庙之前,我们仨一直绝的我们上了一个大当,这事什么阿.一点都不好玩.不过,随着我们继续走,发现沿途的景色越来越秀丽,路越越来越窄.后来遇到了一位驴友,那哥们的装备太齐全了.问他要去那里,他说要去大寺,秦岭的&amp;#8221;香格里拉&amp;#8221;.我们但是听了,忽然产生了一种冲动,大家一起去那里看看,看看另外一个香格里拉.他说有四十公里的距离.路上遇到一位山民,他告诉我们也就是四十来里地.这么一听,更坚定了我们几个去大寺的念头.呵呵,现在想想有点冒险了.就这样,我们就奔着大寺,一直的往山里走.其实后面的路已经很少人了,没有什么有人.我们早以离开了开发过的景区.能证明这条路可以走的东西,也就是沿途的马粪了.其间路过了一个滴水瀑布的地方,山崖很高,水从上上面低落,我们回来的时间下着毛毛小雨,滴水瀑布的水也大了不少,估计如果雨大的话那里就过不去了.11点多的时间,到了以前的大寺村,村子已经不在了.搬到了山下.不过还是有户人家,我们当时都以为既然已经到了大寺村,那么大寺也就不远了.不过一问我们就傻了.还有四十公里,而且上面很冷.这时我们放弃了去大寺的念头,毕竟这次的准备不充分.贸然进去,风险太大了.而且进山之后手机一直没有信号.不过我们还是继续往里走了一个小时.看到了古栈道的遗址,古人的彪悍让人无语,而旁边山峰如刀削一般的耸立,壁立千仞.大自然和人类的鬼斧神工,在这里交融在一起.后来我们在过了一个九龙潭之后,找了一片河滩,在那里吃了点东西,补充了些能量.在吃完东西的时候有下起了雨.我们算是彻底死了去大寺的念头.不过沿途的风景的确漂亮.下山的时候就快多了.也没什么说的.&lt;/p&gt;
&lt;p&gt;秦岭是一座神奇的山脉.也许国内有很多的名山大川.不过,那里早以挤满了游客.能有这样的地方让我们静静的体会自然,体会生命,很难得了.平时工作都在办公室,能有这样的一个机会,绝的挺幸运的.有空还是应该多出去走走,发现自然种美丽的地方.&lt;/p&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/297812878/daliu/feedsky/s.gif?r=http://liu6.org/2009/10/02/%e9%ab%98%e5%86%a0%e4%b9%8b%e8%a1%8c/&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/feedsky/daliu/297812878/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/feedsky/daliu/297812878/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</content:encoded><wfw:commentRss>http://liu6.org/2009/10/02/%e9%ab%98%e5%86%a0%e4%b9%8b%e8%a1%8c/feed/</wfw:commentRss><slash:comments>5</slash:comments><description>今天和小四川,大圣我们几个人爬山去了.
去了高冠,因为这次纯粹的就是几个爷们,所以路线的行走比较随意.我们去了高冠几乎所有的经典.人其实挺渺小的,这几句话可能人人都会说.但是真正的看到了大自然的那种美丽,那种神秘.你会更深刻的理解这句话.
高冠开始的地方的确没什么玩的,也就是农家乐,不过比较有特色的是可以坐在水上的平台吃饭.不过,农家乐的味道很差.和上王村比起来差了好多.过了瀑布,一直沿着河岸走是一片的河滩,也挺不错的.我们去的早,没有多少人.其实在到一个不知名的小庙之前,我们仨一直绝的我们上了一个大当,这事什么阿.一点都不好玩.不过,随着我们继续走,发现沿途的景色越来越秀丽,路越越来越窄.后来遇到了一位驴友,那哥们的装备太齐全了.问他要去那里,他说要去大寺,秦岭的&amp;#8221;香格里拉&amp;#8221;.我们但是听了,忽然产生了一种冲动,大家一起去那里看看,看看另外一个香格里拉.他说有四十公里的距离.路上遇到一位山民,他告诉我们也就是四十来里地.这么一听,更坚定了我们几个去大寺的念头.呵呵,现在想想有点冒险了.就这样,我们就奔着大寺,一直的往山里走.其实后面的路已经很少人了,没有什么有人.我们早以离开了开发过的景区.能证明这条路可以走的东西,也就是沿途的马粪了.其间路过了一个滴水瀑布的地方,山崖很高,水从上上面低落,我们回来的时间下着毛毛小雨,滴水瀑布的水也大了不少,估计如果雨大的话那里就过不去了.11点多的时间,到了以前的大寺村,村子已经不在了.搬到了山下.不过还是有户人家,我们当时都以为既然已经到了大寺村,那么大寺也就不远了.不过一问我们就傻了.还有四十公里,而且上面很冷.这时我们放弃了去大寺的念头,毕竟这次的准备不充分.贸然进去,风险太大了.而且进山之后手机一直没有信号.不过我们还是继续往里走了一个小时.看到了古栈道的遗址,古人的彪悍让人无语,而旁边山峰如刀削一般的耸立,壁立千仞.大自然和人类的鬼斧神工,在这里交融在一起.后来我们在过了一个九龙潭之后,找了一片河滩,在那里吃了点东西,补充了些能量.在吃完东西的时候有下起了雨.我们算是彻底死了去大寺的念头.不过沿途的风景的确漂亮.下山的时候就快多了.也没什么说的.
秦岭是一座神奇的山脉.也许国内有很多的名山大川.不过,那里早以挤满了游客.能有这样的地方让我们静静的体会自然,体会生命,很难得了.平时工作都在办公室,能有这样的一个机会,绝的挺幸运的.有空还是应该多出去走走,发现自然种美丽的地方.&lt;img src=&quot;http://www1.feedsky.com/t1/297812878/daliu/feedsky/s.gif?r=http://liu6.org/2009/10/02/%e9%ab%98%e5%86%a0%e4%b9%8b%e8%a1%8c/&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/feedsky/daliu/297812878/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/feedsky/daliu/297812878/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><category>爬山</category><category>胡言乱语</category><pubDate>Fri, 02 Oct 2009 19:29:13 +0800</pubDate><author>刘浏</author><comments>http://liu6.org/2009/10/02/%e9%ab%98%e5%86%a0%e4%b9%8b%e8%a1%8c/#comments</comments><guid isPermaLink="false">http://liu6.org/?p=430</guid><dc:creator>刘浏</dc:creator><fs:srclink>http://liu6.org/2009/10/02/%e9%ab%98%e5%86%a0%e4%b9%8b%e8%a1%8c/</fs:srclink><fs:srcfeed>http://liu6.org/feed</fs:srcfeed><fs:itemid>feedsky/daliu/~7025431/297812878/4054141</fs:itemid></item><item><title>60</title><link>http://liu6.org/2009/10/01/60/</link><content:encoded>&lt;p&gt;六十,一甲子的时间.&lt;br /&gt;
自己也经历了其中的三分之一.&lt;br /&gt;
希望一百年的时候,人民能够第一位.&lt;/p&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/297812879/daliu/feedsky/s.gif?r=http://liu6.org/2009/10/01/60/&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/feedsky/daliu/297812879/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/feedsky/daliu/297812879/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</content:encoded><wfw:commentRss>http://liu6.org/2009/10/01/60/feed/</wfw:commentRss><slash:comments>1</slash:comments><description>六十,一甲子的时间.
自己也经历了其中的三分之一.
希望一百年的时候,人民能够第一位.&lt;img src=&quot;http://www1.feedsky.com/t1/297812879/daliu/feedsky/s.gif?r=http://liu6.org/2009/10/01/60/&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/feedsky/daliu/297812879/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/feedsky/daliu/297812879/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><category>胡言乱语</category><pubDate>Thu, 01 Oct 2009 20:28:17 +0800</pubDate><author>刘浏</author><comments>http://liu6.org/2009/10/01/60/#comments</comments><guid isPermaLink="false">http://liu6.org/?p=428</guid><dc:creator>刘浏</dc:creator><fs:srclink>http://liu6.org/2009/10/01/60/</fs:srclink><fs:srcfeed>http://liu6.org/feed</fs:srcfeed><fs:itemid>feedsky/daliu/~7025431/297812879/4054141</fs:itemid></item><item><title>天晴了</title><link>http://liu6.org/2009/09/14/%e5%a4%a9%e6%99%b4%e4%ba%86/</link><content:encoded>&lt;p&gt;连续多日的阴雨终于结束了.早上还带了雨衣和雨伞来公司.下午开完会,一出来,就瞅见艳阳高照了&amp;#8230;这样的天气最适合做的事情就是晒被子了&amp;#8230;&lt;/p&gt;
&lt;p&gt;今年西安的雨水太多了.晒被子的机会太少了&amp;#8230;不过,夏天终于在这阵秋雨中结束了.&lt;/p&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/297812880/daliu/feedsky/s.gif?r=http://liu6.org/2009/09/14/%e5%a4%a9%e6%99%b4%e4%ba%86/&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/feedsky/daliu/297812880/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/feedsky/daliu/297812880/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</content:encoded><wfw:commentRss>http://liu6.org/2009/09/14/%e5%a4%a9%e6%99%b4%e4%ba%86/feed/</wfw:commentRss><slash:comments>2</slash:comments><description>连续多日的阴雨终于结束了.早上还带了雨衣和雨伞来公司.下午开完会,一出来,就瞅见艳阳高照了&amp;#8230;这样的天气最适合做的事情就是晒被子了&amp;#8230;
今年西安的雨水太多了.晒被子的机会太少了&amp;#8230;不过,夏天终于在这阵秋雨中结束了.&lt;img src=&quot;http://www1.feedsky.com/t1/297812880/daliu/feedsky/s.gif?r=http://liu6.org/2009/09/14/%e5%a4%a9%e6%99%b4%e4%ba%86/&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/feedsky/daliu/297812880/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/feedsky/daliu/297812880/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><category>sun</category><category>胡言乱语</category><pubDate>Mon, 14 Sep 2009 18:00:29 +0800</pubDate><author>刘浏</author><comments>http://liu6.org/2009/09/14/%e5%a4%a9%e6%99%b4%e4%ba%86/#comments</comments><guid isPermaLink="false">http://liu6.org/2009/09/14/%e5%a4%a9%e6%99%b4%e4%ba%86/</guid><dc:creator>刘浏</dc:creator><fs:srclink>http://liu6.org/2009/09/14/%e5%a4%a9%e6%99%b4%e4%ba%86/</fs:srclink><fs:srcfeed>http://liu6.org/feed</fs:srcfeed><fs:itemid>feedsky/daliu/~7025431/297812880/4054141</fs:itemid></item></channel></rss>