<?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; Input Method</title> <atom:link href="http://yongsun.me/category/input-method/feed/" rel="self" type="application/rss+xml" /><link>http://yongsun.me</link> <description>Yong Sun&#039;s Blog</description> <lastBuildDate>Sat, 17 Dec 2011 16:17:35 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3</generator> <item><title>用GPU加速拼音输入法？</title><link>http://yongsun.me/2011/11/%e7%94%a8gpu%e5%8a%a0%e9%80%9f%e6%8b%bc%e9%9f%b3%e8%be%93%e5%85%a5%e6%b3%95%ef%bc%9f/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=%25e7%2594%25a8gpu%25e5%258a%25a0%25e9%2580%259f%25e6%258b%25bc%25e9%259f%25b3%25e8%25be%2593%25e5%2585%25a5%25e6%25b3%2595%25ef%25bc%259f</link> <comments>http://yongsun.me/2011/11/%e7%94%a8gpu%e5%8a%a0%e9%80%9f%e6%8b%bc%e9%9f%b3%e8%be%93%e5%85%a5%e6%b3%95%ef%bc%9f/#comments</comments> <pubDate>Fri, 04 Nov 2011 05:08:12 +0000</pubDate> <dc:creator>yongsun</dc:creator> <category><![CDATA[Input Method]]></category> <category><![CDATA[GPU]]></category> <category><![CDATA[sunpinyin]]></category> <guid
isPermaLink="false">http://yongsun.me/?p=1686</guid> <description><![CDATA[看到IBM申请了用GPU加速数据库的专利，想起来自己之前还有过用GPU来加速拼音输入法的想法，当时写在了twitter上，幸亏当初有在google reader里订阅了twitter中有关sunpinyin的关键字搜索，否则还真翻不出来了呢… Jun/16, 2011: 这几天我一直在想，能否用GPU来加速输入法，我可以把SunPinyin Syllable Graph的所有组合，发到GPU上去开足够多的线程做并行搜索，或者在做viterbi时，栅格间的状态节点转移，也可以放到GPU上来并行运算，可大幅度提高beem宽度… 个人倾向于第一种方式… http://twitter.com/#!/yongsun/statuses/81130853278822400 当时还和熟悉GPU/OpenCL的@reminisce1989同学探讨来着，reminisce1989同学认为用GPU加速Graph算法是很困难的，不过后来reminisce1989同学好像删推了，没有原推可以refer了。 yongsun: @reminisce1989 @jjgod 既然是基础服务，肯定不能随便down掉，应该是可以想办法避免的… 我的想法主要是，现在sunpinyin的搜索规模还很小，不知道能否借助GPU来大幅提高搜索的规模，回头有问题还要向您请教了 reminisce1989: @yongsun @jjgod 最后提醒一下，GPU是不支持指针的（或者说只能模拟指针）。而我不知道你的sunpinyin用的搜索是什么图算法。如果用到任何常规图论算法，不用说难用OpenCL之类的语言实现，实现了效率也提不上去，因为是非顺序化读取，而且还要考虑拷贝数据的时间。 后来，我仔细阅读了OpenGL的一些文章和书籍，觉得应该是有希望的，不过一直没有时间去做实验，先记录在这里吧…]]></description> <content:encoded><![CDATA[<p>看到IBM申请了用GPU加速数据库的专利，想起来自己之前还有过用GPU来加速拼音输入法的想法，当时写在了twitter上，幸亏当初有在google reader里订阅了twitter中有关sunpinyin的关键字搜索，否则还真翻不出来了呢…</p><blockquote><p>Jun/16, 2011:</p><p>这几天我一直在想，能否用GPU来加速输入法，我可以把SunPinyin Syllable Graph的所有组合，发到GPU上去开足够多的线程做并行搜索，或者在做viterbi时，栅格间的状态节点转移，也可以放到GPU上来并行运算，可大幅度提高beem宽度… 个人倾向于第一种方式…</p><p><a
href="http://twitter.com/#!/yongsun/statuses/81130853278822400">http://twitter.com/#!/yongsun/statuses/81130853278822400</a></p></blockquote><p>当时还和熟悉GPU/OpenCL的<a
href="http://twitter.com/reminisce1989">@reminisce1989</a>同学探讨来着，reminisce1989同学认为用GPU加速Graph算法是很困难的，不过后来reminisce1989同学好像删推了，没有原推可以refer了。</p><blockquote><p><span
style="text-decoration: underline;">yongsun</span>: @reminisce1989 @jjgod 既然是基础服务，肯定不能随便down掉，应该是可以想办法避免的… 我的想法主要是，现在sunpinyin的搜索规模还很小，不知道能否借助GPU来大幅提高搜索的规模，回头有问题还要向您请教了 <img
src='http://yongsun.me/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p><p><span
style="text-decoration: underline;">reminisce1989</span>: @yongsun @jjgod 最后提醒一下，GPU是不支持指针的（或者说只能模拟指针）。而我不知道你的sunpinyin用的搜索是什么图算法。如果用到任何常规图论算法，不用说难用OpenCL之类的语言实现，实现了效率也提不上去，因为是非顺序化读取，而且还要考虑拷贝数据的时间。</p></blockquote><p>后来，我仔细阅读了OpenGL的一些文章和书籍，觉得应该是有希望的，不过一直没有时间去做实验，先记录在这里吧…</p> ]]></content:encoded> <wfw:commentRss>http://yongsun.me/2011/11/%e7%94%a8gpu%e5%8a%a0%e9%80%9f%e6%8b%bc%e9%9f%b3%e8%be%93%e5%85%a5%e6%b3%95%ef%bc%9f/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>关于触摸屏输入法误按键纠错的一点想法</title><link>http://yongsun.me/2011/10/%e5%85%b3%e4%ba%8e%e8%a7%a6%e6%91%b8%e5%b1%8f%e8%be%93%e5%85%a5%e6%b3%95%e8%af%af%e6%8c%89%e9%94%ae%e7%ba%a0%e9%94%99%e7%9a%84%e4%b8%80%e7%82%b9%e6%83%b3%e6%b3%95/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=%25e5%2585%25b3%25e4%25ba%258e%25e8%25a7%25a6%25e6%2591%25b8%25e5%25b1%258f%25e8%25be%2593%25e5%2585%25a5%25e6%25b3%2595%25e8%25af%25af%25e6%258c%2589%25e9%2594%25ae%25e7%25ba%25a0%25e9%2594%2599%25e7%259a%2584%25e4%25b8%2580%25e7%2582%25b9%25e6%2583%25b3%25e6%25b3%2595</link> <comments>http://yongsun.me/2011/10/%e5%85%b3%e4%ba%8e%e8%a7%a6%e6%91%b8%e5%b1%8f%e8%be%93%e5%85%a5%e6%b3%95%e8%af%af%e6%8c%89%e9%94%ae%e7%ba%a0%e9%94%99%e7%9a%84%e4%b8%80%e7%82%b9%e6%83%b3%e6%b3%95/#comments</comments> <pubDate>Thu, 27 Oct 2011 13:26:30 +0000</pubDate> <dc:creator>yongsun</dc:creator> <category><![CDATA[Input Method]]></category> <category><![CDATA[Regional Correction]]></category> <guid
isPermaLink="false">http://yongsun.me/?p=1682</guid> <description><![CDATA[现在许多用于触摸屏的输入法，都有误按键纠错的功能，例如本意是按下i，但由于键盘比较小而手指比较粗，实际按下的是o，输入法可以自动将其修正为i。Wi和Sogou的手机输入法都支持这个功能，据说Sogou的纠错比较aggressive。不过目前看来，好像还没有人考虑用户手持手机的习惯，例如我是左撇子，那么容易误按的键和右手用户是不同的，具体来说，左撇子在按屏幕右方的按键时，容易向左侧偏；还有如果我是习惯用双手拿着手机进行输入，这个容易误按的键也是有所不同的。 前两天有一则新闻，是关于重力感应器可以用来截获用户输入内容的，而且原文是说用户将手机平放在桌子上，重力感应也可以达到如此的精度。我由此想到，是否可以通过重力感应器和电子罗盘，甚至陀螺仪，来判断当前用户手持手机的方式，例如是单左/右手，还是双手等。在判断出手持的方式（或姿势）之后，调整纠错的行为，使之更符合用户的使用场景。 我的初步想法是，在单手持机时，用户按比较远的键时，手机会有一定的转动或位置移动的轨迹。左手持机和右手持机的模式，可能会不同。如果我们能总结出一些pattern，就可以做一些工作了… 不过，还不清楚是否已经有类似的工作已经开展了，或者在技术上是否真正可行。希望大家多给些意见…]]></description> <content:encoded><![CDATA[<p>现在许多用于触摸屏的输入法，都有误按键纠错的功能，例如本意是按下i，但由于键盘比较小而手指比较粗，实际按下的是o，输入法可以自动将其修正为i。Wi和Sogou的手机输入法都支持这个功能，据说Sogou的纠错比较aggressive。不过目前看来，好像还没有人考虑用户手持手机的习惯，例如我是左撇子，那么容易误按的键和右手用户是不同的，具体来说，左撇子在按屏幕右方的按键时，容易向左侧偏；还有如果我是习惯用双手拿着手机进行输入，这个容易误按的键也是有所不同的。</p><p>前两天有一则新闻，是关于重力感应器可以用来截获用户输入内容的，而且原文是说用户将手机平放在桌子上，重力感应也可以达到如此的精度。我由此想到，是否可以通过重力感应器和电子罗盘，甚至陀螺仪，来判断当前用户手持手机的方式，例如是单左/右手，还是双手等。在判断出手持的方式（或姿势）之后，调整纠错的行为，使之更符合用户的使用场景。</p><p>我的初步想法是，在单手持机时，用户按比较远的键时，手机会有一定的转动或位置移动的轨迹。左手持机和右手持机的模式，可能会不同。如果我们能总结出一些pattern，就可以做一些工作了…</p><p>不过，还不清楚是否已经有类似的工作已经开展了，或者在技术上是否真正可行。希望大家多给些意见…</p> ]]></content:encoded> <wfw:commentRss>http://yongsun.me/2011/10/%e5%85%b3%e4%ba%8e%e8%a7%a6%e6%91%b8%e5%b1%8f%e8%be%93%e5%85%a5%e6%b3%95%e8%af%af%e6%8c%89%e9%94%ae%e7%ba%a0%e9%94%99%e7%9a%84%e4%b8%80%e7%82%b9%e6%83%b3%e6%b3%95/feed/</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>open-gram词表协议改为Apache V2.0</title><link>http://yongsun.me/2011/09/%e3%80%90%e5%85%ac%e5%91%8a%e3%80%91open-gram%e8%af%8d%e8%a1%a8%e5%8d%8f%e8%ae%ae%e6%9b%b4%e6%94%b9%e4%b8%baapache-v2-0/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=%25e3%2580%2590%25e5%2585%25ac%25e5%2591%258a%25e3%2580%2591open-gram%25e8%25af%258d%25e8%25a1%25a8%25e5%258d%258f%25e8%25ae%25ae%25e6%259b%25b4%25e6%2594%25b9%25e4%25b8%25baapache-v2-0</link> <comments>http://yongsun.me/2011/09/%e3%80%90%e5%85%ac%e5%91%8a%e3%80%91open-gram%e8%af%8d%e8%a1%a8%e5%8d%8f%e8%ae%ae%e6%9b%b4%e6%94%b9%e4%b8%baapache-v2-0/#comments</comments> <pubDate>Sat, 03 Sep 2011 16:19:24 +0000</pubDate> <dc:creator>yongsun</dc:creator> <category><![CDATA[Input Method]]></category> <category><![CDATA[open-gram]]></category> <category><![CDATA[sunpinyin]]></category> <category><![CDATA[sunpinyin-2.0]]></category> <guid
isPermaLink="false">http://yongsun.me/?p=1666</guid> <description><![CDATA[经过社区的讨论，我们一致同意，将open-grame词表的协议改为Apache V2.0。 新的词库将以android-google-pinyin的词库为基础 废弃之前基于cc-cedict的老词库，但是将open-gram自己发现/汇总的一些新词以Apache V2.0协议重新贡献给open-gram词表 libpinyin/novel-pinyin/smart-pinyin 项目lead已同意，将各自项目的词库，以Apache V2.0的协议贡献给open-gram项目 FIT团队同意将FIT输入法的网络热词，定期反馈给open-gram社区 非常感谢大家的支持和帮助！ SunPinyin的词库一直以来为大家所诟病，希望这次能为大家带来质量更好的词库，和更好的输入体验…]]></description> <content:encoded><![CDATA[<p>经过社区的讨论，我们一致同意，将open-grame词表的协议改为<a
href="http://www.apache.org/licenses/LICENSE-2.0.html">Apache V2.0</a>。</p><ul><li>新的词库将以android-google-pinyin的词库为基础</li><li>废弃之前基于cc-cedict的老词库，但是将open-gram自己发现/汇总的一些新词以Apache V2.0协议重新贡献给open-gram词表</li><li>libpinyin/novel-pinyin/smart-pinyin 项目lead已同意，将各自项目的词库，以Apache V2.0的协议贡献给open-gram项目</li><li>FIT团队同意将FIT输入法的网络热词，定期反馈给open-gram社区</li></ul><p>非常感谢大家的支持和帮助！</p><p>SunPinyin的词库一直以来为大家所诟病，希望这次能为大家带来质量更好的词库，和更好的输入体验…</p> ]]></content:encoded> <wfw:commentRss>http://yongsun.me/2011/09/%e3%80%90%e5%85%ac%e5%91%8a%e3%80%91open-gram%e8%af%8d%e8%a1%a8%e5%8d%8f%e8%ae%ae%e6%9b%b4%e6%94%b9%e4%b8%baapache-v2-0/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>sunpinyin-2.0.3 released</title><link>http://yongsun.me/2011/02/sunpinyin-2-0-3-released/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=sunpinyin-2-0-3-released</link> <comments>http://yongsun.me/2011/02/sunpinyin-2-0-3-released/#comments</comments> <pubDate>Fri, 18 Feb 2011 08:49:56 +0000</pubDate> <dc:creator>yongsun</dc:creator> <category><![CDATA[Input Method]]></category> <category><![CDATA[sunpinyin-2.0]]></category> <guid
isPermaLink="false">http://yongsun.me/?p=1566</guid> <description><![CDATA[在漫长的RC之后，sunpinyin社区release了2.0.3版本… Quoted from sunpinyin.org: 2.0.3 release is containing a lot of major fix compare to last release. User should update to this release as soon as possible. It fixed many inconveniet bugs. Changes compare to 2.0.2 are described below: Build: &#8230; <a
href="http://yongsun.me/2011/02/sunpinyin-2-0-3-released/">Continue reading <span
class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p>在漫长的RC之后，sunpinyin社区release了2.0.3版本…</p><p>Quoted from <a
href="http://sunpinyin.org">sunpinyin.org</a>:</p><p>2.0.3 release is containing a lot of major fix compare to last  release.  User should update to this release as soon as possible.  It  fixed many inconveniet bugs.  Changes compare to 2.0.2 are described  below:</p><p>Build:</p><ul><li>CFLAGS, CXXFLAGS and LDFLAGS are recongnized.</li><li>Scons scripts now will remember the configuration arguments in configure.conf.</li><li>Ported to ARMEL architecture.</li><li>Able to build on FreeBSD.</li></ul><p>libsunpinyin:</p><ul><li>New LOGO!</li><li>History cache focus more on recent commits.</li><li>Supports --libdir and --libdatadir as configuration arguments.</li><li>Hunpin support. (Contributed by Hanjie Xu)</li><li>Fixed weird behavior of history with a single character.</li><li>Fixed a potential issue for candidate ranking.</li></ul><p>ibus-sunpinyin:</p><ul><li>Supports --libdir, --datadir, --execdir as configuration arguments.</li><li>Alt+num key as the candidate delete key for ibus-sunpinyin.</li><li>Able to build on IBus-1.4</li></ul><p>xsunpinyin:</p><ul><li>Synchronized the version between xsunpinyin and libsunpinyin project.</li><li>Fixed startup crash with empty directory.</li><li>Fixed position problem on multi-screen.</li><li>Fixed crash on exit, which caused history information lost.</li><li>Refact UI system</li><li>Added skin support</li><li>Fixed text overbound when pinyin are too long.</li><li>Fixed ignorance of ShuangPin setting.</li><li>Fixed weird behavior of fast switch to english. (<span
style="text-decoration: line-through;"><a
title="xsunpinyin candidate bar won't disappear after pressing shift" href="http://code.google.com/p/sunpinyin/issues/detail?id=213"> Issue 213 </a></span>).</li></ul><p>scim-sunpinyin:</p><ul><li>Add legacy support for scim (Thanks to liangguo)</li></ul> ]]></content:encoded> <wfw:commentRss>http://yongsun.me/2011/02/sunpinyin-2-0-3-released/feed/</wfw:commentRss> <slash:comments>27</slash:comments> </item> <item><title>开源拼音输入法社区的大融合（libpinyin）</title><link>http://yongsun.me/2010/10/%e5%bc%80%e6%ba%90%e6%8b%bc%e9%9f%b3%e8%be%93%e5%85%a5%e6%b3%95%e7%a4%be%e5%8c%ba%e7%9a%84%e5%a4%a7%e8%9e%8d%e5%90%88%ef%bc%88libpinyin%ef%bc%89/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=%25e5%25bc%2580%25e6%25ba%2590%25e6%258b%25bc%25e9%259f%25b3%25e8%25be%2593%25e5%2585%25a5%25e6%25b3%2595%25e7%25a4%25be%25e5%258c%25ba%25e7%259a%2584%25e5%25a4%25a7%25e8%259e%258d%25e5%2590%2588%25ef%25bc%2588libpinyin%25ef%25bc%2589</link> <comments>http://yongsun.me/2010/10/%e5%bc%80%e6%ba%90%e6%8b%bc%e9%9f%b3%e8%be%93%e5%85%a5%e6%b3%95%e7%a4%be%e5%8c%ba%e7%9a%84%e5%a4%a7%e8%9e%8d%e5%90%88%ef%bc%88libpinyin%ef%bc%89/#comments</comments> <pubDate>Mon, 18 Oct 2010 03:02:28 +0000</pubDate> <dc:creator>yongsun</dc:creator> <category><![CDATA[Input Method]]></category> <guid
isPermaLink="false">http://yongsun.me/?p=1537</guid> <description><![CDATA[上次和FIT的合作，是开源社区同商业开发的合作，这次是开源社区的合作了… SunPinyin、Novel Pinyin和iBus-Pinyin社区决定长期合作，联手创建libpinyin子项目。libpinyin致力于为中文拼音输入法提供智能整句输入的算法核心，将试图合并novel-pinyin和sunpinyin中的智能拼音整句输入算法部分，争取实现目前SunPinyin和Novel Pinyin的功能超集。 在不久的将来，libpinyin将为ibus-pinyin和sunpinyin提供智能拼音整句输入功能的支持。 Project Wiki: http://github.com/libpinyin/libpinyin/wiki Project SCM: http://github.com/libpinyin/libpinyin Mailing List: http://groups.google.com/group/libpinyin 另见Novel-Pinyin的官方声明：http://alex-epico.blogspot.com/2010/10/sunpinyinnovel-pinyin.html]]></description> <content:encoded><![CDATA[<p>上次和FIT的合作，是开源社区同商业开发的合作，这次是开源社区的合作了…</p><p>SunPinyin、Novel Pinyin和iBus-Pinyin社区决定长期合作，联手创建libpinyin子项目。libpinyin致力于为中文拼音输入法提供智能整句输入的算法核心，将试图合并novel-pinyin和sunpinyin中的智能拼音整句输入算法部分，争取实现目前SunPinyin和Novel Pinyin的功能超集。</p><p>在不久的将来，libpinyin将为ibus-pinyin和sunpinyin提供智能拼音整句输入功能的支持。</p><p>Project Wiki: <a
href="http://github.com/libpinyin/libpinyin/wiki">http://github.com/libpinyin/libpinyin/wiki</a><br
/> Project SCM: <a
href="http://github.com/libpinyin/libpinyin">http://github.com/libpinyin/libpinyin</a><br
/> Mailing List: <a
href="http://groups.google.com/group/libpinyin">http://groups.google.com/group/libpinyin</a></p><p>另见Novel-Pinyin的官方声明：<a
href="http://alex-epico.blogspot.com/2010/10/sunpinyinnovel-pinyin.html">http://alex-epico.blogspot.com/2010/10/sunpinyinnovel-pinyin.html</a></p> ]]></content:encoded> <wfw:commentRss>http://yongsun.me/2010/10/%e5%bc%80%e6%ba%90%e6%8b%bc%e9%9f%b3%e8%be%93%e5%85%a5%e6%b3%95%e7%a4%be%e5%8c%ba%e7%9a%84%e5%a4%a7%e8%9e%8d%e5%90%88%ef%bc%88libpinyin%ef%bc%89/feed/</wfw:commentRss> <slash:comments>17</slash:comments> </item> <item><title>SunPinyin Developers on ChinaDaily/Video</title><link>http://yongsun.me/2010/09/sunpinyin-developers-on-chinadailyvideo/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=sunpinyin-developers-on-chinadailyvideo</link> <comments>http://yongsun.me/2010/09/sunpinyin-developers-on-chinadailyvideo/#comments</comments> <pubDate>Thu, 16 Sep 2010 13:28:58 +0000</pubDate> <dc:creator>yongsun</dc:creator> <category><![CDATA[Input Method]]></category> <category><![CDATA[chinadaily]]></category> <category><![CDATA[interview]]></category> <category><![CDATA[sunpinyin]]></category> <guid
isPermaLink="false">http://yongsun.me/?p=1528</guid> <description><![CDATA[ChinaDaily Video频道的于辰康记者，前几日采访了SunPinyin社区的开发者，非常感谢ChinaDaily以及于先生，给我们这次难得的机会。我们在面对镜头时都变得超紧张，经常NG，耽搁了于先生很多的时间，而于先生对我们则非常耐心。 因为节目时长的原因，我们在介绍社区成员时，没能介绍全部的贡献者，主要介绍了比较活跃的几位成员，而且在介绍时还有一些小瑕疵，希望大家谅解。我们本来邀请了Phill Zhang同学，但是不凑巧他实在抽不出时间，很是遗憾。远在外地的tchaikov, jjgod和mike同学，都只能以照片形式入镜了。mike同学超骨感的，我也是借这个机会，第一次看到mike同学的真容  感谢所有的contributors和用户朋友们，感谢大家对sunpinyin的支持！]]></description> <content:encoded><![CDATA[<p><a
href="http://chinadaily.com.cn/video/2010-09/16/content_11310174.htm"><img
class="size-full wp-image-1530 alignnone" title="sunpinyin_developers_on_chinadaily-video" src="http://yongsun.me/wp-content/uploads/2010/09/sunpinyin_developers_on_chinadaily-video1.png" alt="" width="510" height="354" /></a></p><p>ChinaDaily Video频道的于辰康记者，前几日采访了SunPinyin社区的开发者，非常感谢ChinaDaily以及于先生，给我们这次难得的机会。我们在面对镜头时都变得超紧张，经常NG，耽搁了于先生很多的时间，而于先生对我们则非常耐心。</p><p>因为节目时长的原因，我们在介绍社区成员时，没能介绍全部的贡献者，主要介绍了比较活跃的几位成员，而且在介绍时还有一些小瑕疵，希望大家谅解。我们本来邀请了Phill Zhang同学，但是不凑巧他实在抽不出时间，很是遗憾。远在外地的tchaikov, jjgod和mike同学，都只能以照片形式入镜了。mike同学超骨感的，我也是借这个机会，第一次看到mike同学的真容 <img
src='http://yongsun.me/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  感谢所有的contributors和用户朋友们，感谢大家对sunpinyin的支持！</p> ]]></content:encoded> <wfw:commentRss>http://yongsun.me/2010/09/sunpinyin-developers-on-chinadailyvideo/feed/</wfw:commentRss> <slash:comments>7</slash:comments> </item> <item><title>FIT和SunPinyin展开全面合作</title><link>http://yongsun.me/2010/09/fit%e5%92%8csunpinyin%e5%b1%95%e5%bc%80%e5%85%a8%e9%9d%a2%e5%90%88%e4%bd%9c/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=fit%25e5%2592%258csunpinyin%25e5%25b1%2595%25e5%25bc%2580%25e5%2585%25a8%25e9%259d%25a2%25e5%2590%2588%25e4%25bd%259c</link> <comments>http://yongsun.me/2010/09/fit%e5%92%8csunpinyin%e5%b1%95%e5%bc%80%e5%85%a8%e9%9d%a2%e5%90%88%e4%bd%9c/#comments</comments> <pubDate>Wed, 15 Sep 2010 12:12:29 +0000</pubDate> <dc:creator>yongsun</dc:creator> <category><![CDATA[Input Method]]></category> <category><![CDATA[fit]]></category> <category><![CDATA[Mac]]></category> <category><![CDATA[sunpinyin-2.0]]></category> <guid
isPermaLink="false">http://yongsun.me/?p=1512</guid> <description><![CDATA[FIT和SunPinyin社区决定长期合作，联手制作下一个版本的FIT中文输入法。在合作中，FIT将使用SunPinyin的核心组件作为FIT的拼音输入引擎，完全替换掉旧版的fitx拼音引擎。新的拼音引擎将应用在FIT的Mac版、iPhone版和即将推出的iPad版。 对SunPinyin社区来说，SunPinyin的Mac版本将不会作为社区的工作重心，从而将更多的将精力集中到引擎、算法本身的改进中去，并全力协同FIT整合sunpinyin的输入引擎。FIT团队也会积极参与到引擎的改进和完善中，并将会负责SunPinyin-for-Mac的用户支持工作。SunPinyin-for-Mac依然遵循CDDL+LGPLv2.1，合作并不会妨碍任何有兴趣改进/完善它的朋友，贡献自己的努力。 另见FIT官方网站的声明。 FAQ： Q0. 为什么会有此次合作，这次合作有得到所有sunpinyin贡献者的认可吗？ 应该说FIT和SunPinyin-mac是mac平台上使用最广泛的free的拼音输入法，FIT的开发团队长于前端功能以及用户体验上的开发，sunpinyin社区长于输入引擎的算法。两个团体的合作，会融合两者的长处，打造更好的mac平台以及iOS平台上的拼音输入法。 关于合作的事宜，sunpinyin社区主要的、活跃的contributors，有经过详细的讨论，大家都充分表达了各自的意见；多数contributor都支持这一合作。 Q1. sunpinyin-mac被放弃了么？ 我更愿意将其解读为，FIT放弃了其自身的拼音引擎，转而采用sunpinyin的输入引擎；同时FIT团队也会积极参与到引擎的改进和完善的工作中，以及支持原有的sunpinyin-mac用户。sunpinyin的社区力量相比来说更加壮大了。sunpinyin-mac依然遵循CDDL+LGPLv2.1，合作并不会妨碍任何有兴趣改进/完善它的朋友，贡献自己的努力。 Q2. sunpinyin和fit的合作是因为收到Goopy的压力么？ fit和sunpinyin的合作意向，在Goopy“泄露”之前就已经达成了。sunpinyin的主要贡献者，基本上都是纯粹为了爱好和兴趣，我们的目标一直是，做最好的、开源的拼音输入法；Goopy的压力只会成为我们的动力，激励我们继续努力]]></description> <content:encoded><![CDATA[<p><img
class="alignnone" title="fit_and_sunpinyin" src="http://fit4.cn/uploads/blog/2010/fit_and_sun.jpg" alt="" width="259" height="155" /></p><p>FIT和SunPinyin社区决定长期合作，联手制作下一个版本的FIT中文输入法。在合作中，FIT将使用SunPinyin的核心组件作为FIT的拼音输入引擎，完全替换掉旧版的fitx拼音引擎。新的拼音引擎将应用在FIT的Mac版、iPhone版和即将推出的iPad版。</p><p>对SunPinyin社区来说，SunPinyin的Mac版本将不会作为社区的工作重心，从而将更多的将精力集中到引擎、算法本身的改进中去，并全力协同FIT整合sunpinyin的输入引擎。FIT团队也会积极参与到引擎的改进和完善中，并将会负责SunPinyin-for-Mac的用户支持工作。SunPinyin-for-Mac依然遵循CDDL+LGPLv2.1，合作并不会妨碍任何有兴趣改进/完善它的朋友，贡献自己的努力。</p><p>另见<a
href="http://fit4.cn/blog?bid=302">FIT官方网站的声明</a>。</p><p><strong>FAQ：</strong></p><p><strong>Q0. 为什么会有此次合作，这次合作有得到所有sunpinyin贡献者的认可吗？</strong></p><p>应该说FIT和SunPinyin-mac是mac平台上使用最广泛的free的拼音输入法，FIT的开发团队长于前端功能以及用户体验上的开发，sunpinyin社区长于输入引擎的算法。两个团体的合作，会融合两者的长处，打造更好的mac平台以及iOS平台上的拼音输入法。</p><p>关于合作的事宜，sunpinyin社区主要的、活跃的contributors，有经过详细的讨论，大家都充分表达了各自的意见；多数contributor都支持这一合作。</p><p><strong>Q1. sunpinyin-mac被放弃了么？</strong></p><p>我更愿意将其解读为，FIT放弃了其自身的拼音引擎，转而采用sunpinyin的输入引擎；同时FIT团队也会积极参与到引擎的改进和完善的工作中，以及支持原有的sunpinyin-mac用户。sunpinyin的社区力量相比来说更加壮大了。sunpinyin-mac依然遵循CDDL+LGPLv2.1，合作并不会妨碍任何有兴趣改进/完善它的朋友，贡献自己的努力。</p><p><strong>Q2. sunpinyin和fit的合作是因为收到Goopy的压力么？</strong></p><p>fit和sunpinyin的合作意向，在Goopy“泄露”之前就已经达成了。sunpinyin的主要贡献者，基本上都是纯粹为了爱好和兴趣，我们的目标一直是，做最好的、开源的拼音输入法；Goopy的压力只会成为我们的动力，激励我们继续努力 <img
src='http://yongsun.me/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p> ]]></content:encoded> <wfw:commentRss>http://yongsun.me/2010/09/fit%e5%92%8csunpinyin%e5%b1%95%e5%bc%80%e5%85%a8%e9%9d%a2%e5%90%88%e4%bd%9c/feed/</wfw:commentRss> <slash:comments>21</slash:comments> </item> <item><title>发布SunPinyin-MacOS-2.0.2.1008 (10.5/10.6)</title><link>http://yongsun.me/2010/08/%e5%8f%91%e5%b8%83sunpinyin-macos-2-0-2-1008-10-510-6/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=%25e5%258f%2591%25e5%25b8%2583sunpinyin-macos-2-0-2-1008-10-510-6</link> <comments>http://yongsun.me/2010/08/%e5%8f%91%e5%b8%83sunpinyin-macos-2-0-2-1008-10-510-6/#comments</comments> <pubDate>Mon, 23 Aug 2010 14:07:00 +0000</pubDate> <dc:creator>yongsun</dc:creator> <category><![CDATA[Input Method]]></category> <category><![CDATA[Mac]]></category> <category><![CDATA[sunpinyin-2.0]]></category> <guid
isPermaLink="false">http://yongsun.me/?p=1506</guid> <description><![CDATA[本次更新的主要内容包括： 加入了关闭/打开内模糊切分的选项 加入了使用backspace取消用户选择的选项 升级系统词库和语言模型至open-gram 0.1.22 解决了Sparkle升级时无法打开安装包的问题 加入了小鹤双拼方案的支持 bugfixes若干 功能方面和上次在twitter上放出的RC版本，没有什么不同，主要是将数据文件更新至了open-gram 0.1.22。虽然Sparkle升级时无法打开安装包的问题已经解决，但是得等到下一次更新的时候才能起作用；所以，烦请大家不要通过自动升级来安装，而是直接下载pkg包来安装 … 欢迎大家下载试用 …]]></description> <content:encoded><![CDATA[<p>本次更新的主要内容包括：</p><ol><li>加入了关闭/打开内模糊切分的选项</li><li>加入了使用backspace取消用户选择的选项</li><li>升级系统词库和语言模型至open-gram 0.1.22</li><li>解决了Sparkle升级时无法打开安装包的问题</li><li>加入了小鹤双拼方案的支持</li><li>bugfixes若干</li></ol><p>功能方面和上次在twitter上放出的RC版本，没有什么不同，主要是将数据文件更新至了open-gram 0.1.22。虽然Sparkle升级时无法打开安装包的问题已经解决，但是得等到下一次更新的时候才能起作用；所以，烦请大家不要通过自动升级来安装，而是直接下载pkg包来安装 …</p><p>欢迎大家<a
href="http://code.google.com/p/sunpinyin/downloads/detail?name=SunPinyin-MacOS-2.0.2.1008.zip">下载试用</a> …</p> ]]></content:encoded> <wfw:commentRss>http://yongsun.me/2010/08/%e5%8f%91%e5%b8%83sunpinyin-macos-2-0-2-1008-10-510-6/feed/</wfw:commentRss> <slash:comments>51</slash:comments> </item> <item><title>导入sogou输入法的细胞词库</title><link>http://yongsun.me/2010/07/%e5%af%bc%e5%85%a5sogou%e8%be%93%e5%85%a5%e6%b3%95%e7%9a%84%e7%bb%86%e8%83%9e%e8%af%8d%e5%ba%93/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=%25e5%25af%25bc%25e5%2585%25a5sogou%25e8%25be%2593%25e5%2585%25a5%25e6%25b3%2595%25e7%259a%2584%25e7%25bb%2586%25e8%2583%259e%25e8%25af%258d%25e5%25ba%2593</link> <comments>http://yongsun.me/2010/07/%e5%af%bc%e5%85%a5sogou%e8%be%93%e5%85%a5%e6%b3%95%e7%9a%84%e7%bb%86%e8%83%9e%e8%af%8d%e5%ba%93/#comments</comments> <pubDate>Thu, 15 Jul 2010 16:05:48 +0000</pubDate> <dc:creator>yongsun</dc:creator> <category><![CDATA[Input Method]]></category> <category><![CDATA[cell dict]]></category> <category><![CDATA[importer]]></category> <category><![CDATA[sogou]]></category> <category><![CDATA[sunpinyin-2.0]]></category> <guid
isPermaLink="false">http://yongsun.me/?p=1496</guid> <description><![CDATA[首先请下载这个导入工具，解压缩到某个目录中。从pinyin.sogou.com下载细胞词库（scel格式），保存在某个目录中。然后在terminal中执行下面的操作： $ python import_sogou_celldict.py PATH_TO_CELL_DICT.scel 感谢中文社区其他开发者和项目reverse engineering的工作， http://code.google.com/p/imewlconverter http://code.google.com/p/ibus-cloud-pinyin http://forum.ubuntu.org.cn/viewtopic.php?f=8&#38;t=250136&#38;start=0]]></description> <content:encoded><![CDATA[<p>首先请<a
href="http://sunpinyin.googlecode.com/files/sunpinyin_importer.tar.bz2">下载这个导入工具</a>，解压缩到某个目录中。从<a
href="http://pinyin.sogou.com">pinyin.sogou.com</a>下载细胞词库（scel格式），保存在某个目录中。然后在terminal中执行下面的操作：</p><p
style="padding-left: 30px;">$ python import_sogou_celldict.py PATH_TO_CELL_DICT.scel</p><p>感谢中文社区其他开发者和项目reverse engineering的工作，</p><ul><li><a
href="http://code.google.com/p/imewlconverter">http://code.google.com/p/imewlconverter</a></li><li><a
href="http://code.google.com/p/ibus-cloud-pinyin">http://code.google.com/p/ibus-cloud-pinyin</a></li><li><a
href="http://forum.ubuntu.org.cn/viewtopic.php?f=8&amp;t=250136&amp;start=0">http://forum.ubuntu.org.cn/viewtopic.php?f=8&amp;t=250136&amp;start=0</a></li></ul> ]]></content:encoded> <wfw:commentRss>http://yongsun.me/2010/07/%e5%af%bc%e5%85%a5sogou%e8%be%93%e5%85%a5%e6%b3%95%e7%9a%84%e7%bb%86%e8%83%9e%e8%af%8d%e5%ba%93/feed/</wfw:commentRss> <slash:comments>98</slash:comments> </item> <item><title>【紧急更新】SunPinyin-MacOS-2.0.2 (10.5/10.6) Patch 1</title><link>http://yongsun.me/2010/06/%e3%80%90%e7%b4%a7%e6%80%a5%e6%9b%b4%e6%96%b0%e3%80%91sunpinyin-macos-2-0-2-10-510-6-patch-1/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=%25e3%2580%2590%25e7%25b4%25a7%25e6%2580%25a5%25e6%259b%25b4%25e6%2596%25b0%25e3%2580%2591sunpinyin-macos-2-0-2-10-510-6-patch-1</link> <comments>http://yongsun.me/2010/06/%e3%80%90%e7%b4%a7%e6%80%a5%e6%9b%b4%e6%96%b0%e3%80%91sunpinyin-macos-2-0-2-10-510-6-patch-1/#comments</comments> <pubDate>Thu, 03 Jun 2010 14:46:52 +0000</pubDate> <dc:creator>yongsun</dc:creator> <category><![CDATA[Input Method]]></category> <category><![CDATA[Mac]]></category> <category><![CDATA[sunpinyin-2.0]]></category> <guid
isPermaLink="false">http://yongsun.me/?p=1459</guid> <description><![CDATA[非常灰常抱歉，昨天（06/02）发布的2.0.2中发现有一个crash的bug，感谢@fishwang同学的bug report。我刚刚fix了这个bug（#134），并上传了最新的2.0.2的完整安装包，原链接不变。烦请您重新下载安装，对给您带来的不便，实在是万分抱歉]]></description> <content:encoded><![CDATA[<p>非常灰常抱歉，<a
href="http://yongsun.me/2010/06/%e5%8f%91%e5%b8%83-sunpinyin-macos-2-0-2-10-510-6/">昨天（06/02）发布的2.0.2</a>中发现有一个crash的bug，感谢<a
href="http://twitter.com/fishywang">@fishwang</a>同学的bug report。我刚刚fix了这个bug（<a
href="http://code.google.com/p/sunpinyin/issues/detail?id=134">#134</a>），并上传了最新的2.0.2的完整安装包，<a
href="http://code.google.com/p/sunpinyin/downloads/detail?name=SunPinyin-MacOS-2.0.2.zip">原链接</a>不变。烦请您重新<a
href="http://code.google.com/p/sunpinyin/downloads/detail?name=SunPinyin-MacOS-2.0.2.zip">下载安装</a>，对给您带来的不便，实在是万分抱歉 <img
src='http://yongsun.me/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /></p> ]]></content:encoded> <wfw:commentRss>http://yongsun.me/2010/06/%e3%80%90%e7%b4%a7%e6%80%a5%e6%9b%b4%e6%96%b0%e3%80%91sunpinyin-macos-2-0-2-10-510-6-patch-1/feed/</wfw:commentRss> <slash:comments>34</slash:comments> </item> </channel> </rss>
