Planet feed aggregator
by Yan
看见cnblog用lilina搭建了一个作者文章集整,有点吃惊。lilina 是个很不成熟的东东,用它来个人玩玩还可以,cnblog 用就有点不合适了。
我想最合适的方法是使用planet,例子有很多,比如:WordPress的planet,apache的planet…
Planet is a flexible feed aggregator. It downloads news feeds published by web sites and aggregates their content together into a single combined feed, latest news first.
这个需要python。还有运行在别的平台的类似程序。
顺便提提意见:cnblog 还使用gb2312代码,给人带来很大不方便。比如,utf-8代码的网志trackback到它那儿,不能正常显示。大家都改成utf-8了,而领跑的没有。
Lilina:RSS聚合器构建个人门户(Write once, publish anywhere)
最近搜集RSS解析工具中找到了MagPieRSS 和基于其设计的Lilina;Lilina的主要功能:
1 基于WEB界面的RSS管理:添加,删除,OPML导出,RSS后台缓存机制(避免对数据源服务器产生过大压力),ScriptLet…
修改blog缺省字符集为UTF-8
具体步骤如下:
1 导出原数据库:
./mysqldump -uusername -ppassword old > ~/old.dump
2 将数据库转换成UTF-8格式:
iconv -c -f gbk -t utf-8 old.dump > new.dump
3 创建一个新数据库:
4 将新数据库导入:
msyql -uuse…