<?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>Jimey’s Life &#38;&#38; Jimey’s World &#187; Computer</title>
	<atom:link href="http://jimey.com/category/c/feed" rel="self" type="application/rss+xml" />
	<link>http://jimey.com</link>
	<description>Learning something new everyday</description>
	<lastBuildDate>Thu, 05 Aug 2010 08:03:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>如何能快速了解新的手机平台？</title>
		<link>http://jimey.com/2010/08/05/%e5%a6%82%e4%bd%95%e8%83%bd%e5%bf%ab%e9%80%9f%e4%ba%86%e8%a7%a3%e6%96%b0%e7%9a%84%e6%89%8b%e6%9c%ba%e5%b9%b3%e5%8f%b0%ef%bc%9f.html</link>
		<comments>http://jimey.com/2010/08/05/%e5%a6%82%e4%bd%95%e8%83%bd%e5%bf%ab%e9%80%9f%e4%ba%86%e8%a7%a3%e6%96%b0%e7%9a%84%e6%89%8b%e6%9c%ba%e5%b9%b3%e5%8f%b0%ef%bc%9f.html#comments</comments>
		<pubDate>Thu, 05 Aug 2010 08:03:55 +0000</pubDate>
		<dc:creator>jimey</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[App]]></category>
		<category><![CDATA[Idle]]></category>
		<category><![CDATA[MainMenu]]></category>
		<category><![CDATA[MTK]]></category>

		<guid isPermaLink="false">http://jimey.com/2010/08/05/%e5%a6%82%e4%bd%95%e8%83%bd%e5%bf%ab%e9%80%9f%e4%ba%86%e8%a7%a3%e6%96%b0%e7%9a%84%e6%89%8b%e6%9c%ba%e5%b9%b3%e5%8f%b0%ef%bc%9f.html</guid>
		<description><![CDATA[首先，你要有一个该平台的运行环境（象MTK,展讯都提供一套完整的软件方案）。经过简单的调试，该运行环境编译通过，并且可以运行出WIn32模拟器。  其次，找出手机软件的运行入口。所有的手机启动过程如下：开机 —〉初始化硬件设备—-〉初始化软件（全局变量，读取nv数据等）—-〉开机动画，搜寻网络，Sim卡等—&#62;Idle界面..... ]]></description>
			<content:encoded><![CDATA[<p>首先，你要有一个该平台的运行环境（象MTK,展讯都提供一套完整的软件方案）。经过简单的调试，该运行环境编译通过，并且可以运行出WIn32模拟器。</p>
<p>其次，找出手机软件的运行入口。所有的手机启动过程如下：开机 —〉初始化硬件设备—-〉初始化软件（全局变量，读取nv数据等）—-〉开机动画，搜寻网络，Sim卡等—&gt;Idle界面。在vc 工程下，你可以搜寻”Init”，”Initialize”,”start”，”task”等关键字，可能会找到很多c文件包含这些关键字。然后，你可以根据文件名，以及文件所属的路径，排除大部分搜索结果。在剩下的每个搜索结果处，加一个断点。按“F5”调试，程序会停在某个断点。这个断点向上看看，可以找到手机软件的运行入口。沿着这个断点跟下去，你就可以发现APP初始化，读取nv,Sim ,显示Animation等等……</p>
<p>第三，简单了解Idle。根据文件路径以及文件名，我们可以确定哪几个文件属于Idle 。一般来说，各个平台的Idle程序都比较乱，因为Idle修改的人多，上面Icon,状态特多。在Idle文件里查找 “create”“start”“entry”等关键字，通过设置断点，可以定位Idle的入口及其出口。Idle不要细看，只要知道Idle的入口，以及从Idle如何进入MainMenu就行了。</p>
<p>第四，详细了解MainMenu。MainMenu是所有模块中比较简单的一个，程序代码也比较少。只要了解了MenuMain，我觉得各位就可以在该平台上修改一些简单的Bug了。</p>
<p>第五，自己动手写一个简单的App,在App中尝试使用各种控件。至于如何使用控件，各位可以先看看哪些模块用到这些控件，把相关程序拷贝过来，稍加修改即可。</p>
<p>第六，尝试添加修改图片字符串资源。</p>
<p>第七，查找关键字“Timer”,看看程序如何使用Timer.</p>
<p>第八，理解消息传递，窗口调用，信息保存等等。</p>
<p>到此为止，你对一个新平台的MMI至少掌握了70%，至于其它的一些细枝末节，以后工作中再慢慢细抠。   <br />&#160; </p>
<p>部分转自 <a title="http://blog.csdn.net/fengye245/archive/2010/03/24/5412749.aspx" href="http://blog.csdn.net/fengye245/archive/2010/03/24/5412749.aspx">http://blog.csdn.net/fengye245/archive/2010/03/24/5412749.aspx</a></p>
<h3  class="related_post_title">无关博文</h3><ul class="related_post"><li>2009-01-05 -- <a href="http://jimey.com/2009/01/05/ikunori-technology-news.html" title="几则科技新闻">几则科技新闻</a> (0)</li><li>2010-05-05 -- <a href="http://jimey.com/2010/05/05/what-causes-errors-in-databases.html" title="what causes errors in databases.">what causes errors in databases.</a> (0)</li><li>2008-08-03 -- <a href="http://jimey.com/2008/08/03/zt-the-time-when-a-friend.html" title="[ZT]把时间当朋友">[ZT]把时间当朋友</a> (0)</li><li>2008-09-06 -- <a href="http://jimey.com/2008/09/06/is-pig-the-right-platform-for-your-scenario.html" title="Is Pig the right platform for your scenario?">Is Pig the right platform for your scenario?</a> (0)</li><li>2010-04-24 -- <a href="http://jimey.com/2010/04/24/perhaps-more-to-see-light-in-the-dark.html" title="漆黑中也许更能看到亮光">漆黑中也许更能看到亮光</a> (0)</li><li>2006-02-14 -- <a href="http://jimey.com/2006/02/14/nan-dao-fei-de-zai-zhe-tian-ren-ren-dou-fa-yi-ge-yu-men-de-gan-xiang.html" title="nan dao fei de zai zhe tian ren ren dou fa yi ge yu men de gan xiang?">nan dao fei de zai zhe tian ren ren dou fa yi ge yu men de gan xiang?</a> (2)</li><li>2008-10-27 -- <a href="http://jimey.com/2008/10/27/ceic-2008-%ec%a0%9c-10-%ed%9a%8c%ec%a0%84%ec%9e%90-%ec%a0%95%eb%b3%b4-%ed%86%b5%ec%8b%a0-%ed%95%99%ec%88%a0-%eb%8c%80%ed%9a%8c.html" title="CEIC 2008 (제10회 전자정보통신 학술대회)">CEIC 2008 (제10회 전자정보통신 학술대회)</a> (0)</li><li>2008-12-21 -- <a href="http://jimey.com/2008/12/21/tell-me-what-you-happy-winter-solstice.html" title="各位看官冬至快乐">各位看官冬至快乐</a> (4)</li><li>2008-07-30 -- <a href="http://jimey.com/2008/07/30/vocational-interest-test.html" title="职业兴趣测验">职业兴趣测验</a> (1)</li><li>2009-05-28 -- <a href="http://jimey.com/2009/05/28/presumed-innocent-moment-current-events.html" title="危情时刻，时事">危情时刻，时事</a> (6)</li><li>2009-01-13 -- <a href="http://jimey.com/2009/01/13/qwitter.html" title="Qwitter">Qwitter</a> (0)</li><li>2005-10-30 -- <a href="http://jimey.com/2005/10/30/computational-linguistics-hidden-markov-model-algorithm-%e2%80%a2-assessment-forward-algorithms-the-definition-of-forward-variable-a-dynamic-programming-algorithm-complexity.html" title="计算语言学 隐马尔科夫模型－算法• 评估问题：向前算法– 定义向前变量– 采用动态规划算法，复杂度&#8230;">计算语言学 隐马尔科夫模型－算法• 评估问题：向前算法– 定义向前变量– 采用动态规划算法，复杂度&#8230;</a> (0)</li><li>2008-08-07 -- <a href="http://jimey.com/2008/08/07/continue-with-some-of-the-trek-is-the-worldu002639s-amazing-really.html" title="继续今天的一些奇遇记…真的是世界很奇妙">继续今天的一些奇遇记…真的是世界很奇妙</a> (0)</li><li>2008-10-15 -- <a href="http://jimey.com/2008/10/15/icact2009-%eb%85%bc%eb%ac%b8-%eb%aa%a8%ec%a7%91-%ec%97%b0%ec%9e%a5-%ec%95%88%eb%82%b4.html" title="ICACT2009 논문모집 연장 안내">ICACT2009 논문모집 연장 안내</a> (0)</li><li>2009-01-26 -- <a href="http://jimey.com/2009/01/26/new-yearu002639s-eve-is-gnaw-off.html" title="年三十究竟是咋过的">年三十究竟是咋过的</a> (2)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://jimey.com/2010/08/05/%e5%a6%82%e4%bd%95%e8%83%bd%e5%bf%ab%e9%80%9f%e4%ba%86%e8%a7%a3%e6%96%b0%e7%9a%84%e6%89%8b%e6%9c%ba%e5%b9%b3%e5%8f%b0%ef%bc%9f.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Ubuntu10.04 编译hadoop-${version}-eclipse- plugin.jar and hadoop-0.20.3-dev-eclipse-plugin.jar</title>
		<link>http://jimey.com/2010/05/06/ubuntu10-04-compiled-hadoop-version-eclipse-plugin-jar-and-hadoop-0-20-3-dev-eclipse-plugin-jar-download.html</link>
		<comments>http://jimey.com/2010/05/06/ubuntu10-04-compiled-hadoop-version-eclipse-plugin-jar-and-hadoop-0-20-3-dev-eclipse-plugin-jar-download.html#comments</comments>
		<pubDate>Thu, 06 May 2010 07:30:20 +0000</pubDate>
		<dc:creator>jimey</dc:creator>
				<category><![CDATA[Cloud Computing]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[ant]]></category>
		<category><![CDATA[build.xml]]></category>
		<category><![CDATA[eclipse-plugin]]></category>
		<category><![CDATA[hadoop]]></category>
		<category><![CDATA[hadoop-0.20.2]]></category>
		<category><![CDATA[lucid]]></category>
		<category><![CDATA[Ubuntu 10.04]]></category>

		<guid isPermaLink="false">http://jimey.com/2010/05/06/ubuntu10-04-%e7%bc%96%e8%af%91hadoop-version-eclipse-plugin-jar-and-hadoop-0-20-3-dev-eclipse-plugin-jar-download.html</guid>
		<description><![CDATA[&#160;  先是准备工作,需要java5和apache-forrest-0.8  基本上也是问题一堆,因为ubuntu9.10开始不支持java-5-sun所以装java5-sun-jdk稍微麻烦了一下  可以参考这篇文章 http://blog.csdn.net/sunrock/archive/2010/04/29/5542989.aspx  修改源改成9.04的源然后安装java5-sun-jdk  接着  安装apache-forrest-0.8  http://for..... ]]></description>
			<content:encoded><![CDATA[<p>先是准备工作,需要java5和apache-forrest-0.8</p>
<p>基本上也是问题一堆,因为ubuntu9.10开始不支持java5所以装java5-<a href="http://jimey.com/tag/sun" class="st_tag internal_tag" rel="tag" title="Posts tagged with sun">sun</a>-jdk稍微麻烦了一下</p>
<p>可以参考这篇文章 <a title="http://blog.csdn.net/sunrock/archive/2010/04/29/5542989.aspx" href="http://blog.csdn.net/sunrock/archive/2010/04/29/5542989.aspx">http://blog.csdn.net/sunrock/archive/2010/04/29/5542989.aspx</a></p>
<p>修改源改成9.04的源然后安装java5-<a href="http://jimey.com/tag/sun" class="st_tag internal_tag" rel="tag" title="Posts tagged with sun">sun</a>-jdk</p>
<p>接着</p>
<p>安装apache-forrest-0.8</p>
<p><a href="http://forrest.apache.org/mirrors.cgi">http://forrest.apache.org/mirrors.cgi</a> For UNIX operating systems: apache-forrest-0.8.tar.gz<br />
解压后 我放在 /home/cloud/apache-forrest-0.8</p>
<p>直接下载来hadoop-0.20.2+228.tar.gz 解压缩即可</p>
<p>然后修改3个地方</p>
<p>1.修改$HADOOP_HOME/src/contrib/build-contrib.xml<br />
增加一行：&lt;property name=&#8221;eclipse.home&#8221; location=&#8221;/usr/lib/eclipse&#8221;/&gt;</p>
<p>2.修改 $HADOOP_HOME/src/contrib/eclipse-plugin/src/java/org/apache/hadoop/eclipse/launch/HadoopApplicationLaunchShortcut.java<br />
注释掉原来的//import org.eclipse.jdt.internal.debug.ui.launcher.JavaApplicationLaunchShortcut;<br />
改为import org.eclipse.jdt.debug.ui.launchConfigurations.JavaApplicationLaunchShortcut;</p>
<p>3.修改$HADOOP_HOME/build.xml</p>
<p>增加</p>
<p>&lt;property name=&#8221;java5.home&#8221; location=&#8221;/usr/lib/jvm/java-1.5.0-<a href="http://jimey.com/tag/sun" class="st_tag internal_tag" rel="tag" title="Posts tagged with sun">sun</a>-1.5.0.19/&#8221;/&gt;<br />
&lt;property name=&#8221;forrest.home&#8221; location=&#8221;/home/cloud/apache-forrest-0.8/&#8221;/&gt;</p>
<p>这2行</p>
<p>然后ant compile</p>
<p>ant package 应该是没问题了</p>
<p>生成的eclipse plugin是在$HADOOP_HOME/build/contrib/eclipse-plugin/</p>
<p>或者直接去 http://hadoop-eclipse-plugin.googlecode.com/files/hadoop-0.20.3-dev-eclipse-plugin.jar 下载吧</p>
<h3  class="related_post_title">相关博文</h3><ul class="related_post"><li>2009-10-09 -- <a href="http://jimey.com/2009/10/09/compiled-hadoop-version-eclipse-plugin-jar-and-hadoop-0-20-1-eclipse-plugin-jar-download.html" title="编译hadoop-${version}-eclipse-plugin.jar and hadoop-0.20.1-eclipse-plugin.jar download">编译hadoop-${version}-eclipse-plugin.jar and hadoop-0.20.1-eclipse-plugin.jar download</a> (3)</li><li>2009-10-09 -- <a href="http://jimey.com/2009/10/09/eclipse-hadoop-full-linux-environment-for-development.html" title="Eclipse+Hadoop 全linux环境开发">Eclipse+Hadoop 全linux环境开发</a> (6)</li><li>2010-05-04 -- <a href="http://jimey.com/2010/05/04/ubuntu-10-04-installed-sunu002639s-jdk.html" title="ubuntu 10.04安装sun的jdk">ubuntu 10.04安装sun的jdk</a> (0)</li><li>2010-04-22 -- <a href="http://jimey.com/2010/04/22/several-articles-on-twitter-hadoop-cassandra-pig-flockdbu002639s-slide.html" title="几篇关于twitter,hadoop,Cassandra,Pig,FlockDB的slide">几篇关于twitter,hadoop,Cassandra,Pig,FlockDB的slide</a> (0)</li><li>2009-12-02 -- <a href="http://jimey.com/2009/12/02/karmasphere-studio-for-hadoop.html" title="Karmasphere Studio for Hadoop">Karmasphere Studio for Hadoop</a> (0)</li><li>2009-05-01 -- <a href="http://jimey.com/2009/05/01/hadoop-0-20-0.html" title="hadoop-0.20.0">hadoop-0.20.0</a> (0)</li><li>2009-04-28 -- <a href="http://jimey.com/2009/04/28/hadoop-mysql-combination-of.html" title="Hadoop+MySQL结合">Hadoop+MySQL结合</a> (0)</li><li>2009-03-26 -- <a href="http://jimey.com/2009/03/26/windows-environment-eclipse-debugging-environment-hadoop-remote-ubuntu.html" title="windows环境下eclipse调试远端ubuntu环境的hadoop">windows环境下eclipse调试远端ubuntu环境的hadoop</a> (12)</li><li>2009-03-26 -- <a href="http://jimey.com/2009/03/26/midnight.html" title="半夜">半夜</a> (0)</li><li>2009-03-25 -- <a href="http://jimey.com/2009/03/25/linux-server-clustered-hdfs-access-from-windows-eclipse-java-application.html" title="Linux server clustered HDFS: access from Windows eclipse Java application">Linux server clustered HDFS: access from Windows eclipse Java application</a> (0)</li><li>2009-03-25 -- <a href="http://jimey.com/2009/03/25/eclipse-based-application-development-environment-configuration-of-hadoop.html" title="基于Eclipse的Hadoop应用开发环境的配置">基于Eclipse的Hadoop应用开发环境的配置</a> (0)</li><li>2008-11-18 -- <a href="http://jimey.com/2008/11/18/cloud-computing-on-the-next-week-to-discuss-the-curriculum-some-of-the-ideas.html" title="关于下下周cloud computing讨论课程的一些想法">关于下下周cloud computing讨论课程的一些想法</a> (0)</li><li>2008-11-12 -- <a href="http://jimey.com/2008/11/12/sunday-the-day-to-do-the-wordcount-screenshots-mapreduce.html" title="周日那天做的mapreduce中的wordcount测试截图">周日那天做的mapreduce中的wordcount测试截图</a> (0)</li><li>2008-11-11 -- <a href="http://jimey.com/2008/11/11/hadoop-hbase-performance-evaluation.html" title="Hadoop HBase Performance Evaluation">Hadoop HBase Performance Evaluation</a> (0)</li><li>2008-11-10 -- <a href="http://jimey.com/2008/11/10/another-week-passed-and-concluded.html" title="又一周过去了，总结">又一周过去了，总结</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://jimey.com/2010/05/06/ubuntu10-04-compiled-hadoop-version-eclipse-plugin-jar-and-hadoop-0-20-3-dev-eclipse-plugin-jar-download.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>what causes errors in databases.</title>
		<link>http://jimey.com/2010/05/05/what-causes-errors-in-databases.html</link>
		<comments>http://jimey.com/2010/05/05/what-causes-errors-in-databases.html#comments</comments>
		<pubDate>Wed, 05 May 2010 07:55:08 +0000</pubDate>
		<dc:creator>jimey</dc:creator>
				<category><![CDATA[Distributed System]]></category>
		<category><![CDATA[CAP]]></category>
		<category><![CDATA[Cluster]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[Database System]]></category>
		<category><![CDATA[DB]]></category>
		<category><![CDATA[DBMS]]></category>
		<category><![CDATA[errors]]></category>

		<guid isPermaLink="false">http://jimey.com/2010/05/05/what-causes-errors-in-databases.html</guid>
		<description><![CDATA[http://cacm.acm.org/blogs/blog-cacm/83396-errors-in-database-systems-eventual-consistency-and-the-cap-theorem/fulltext  Let’s start with a discussion of what causes errors in databases. The following is at least a partial list:  1) Application errors. The application performed one or more incorrect..... ]]></description>
			<content:encoded><![CDATA[<p><a title="http://cacm.acm.org/blogs/blog-cacm/83396-errors-in-database-systems-eventual-consistency-and-the-cap-theorem/fulltext" href="http://cacm.acm.org/blogs/blog-cacm/83396-errors-in-database-systems-eventual-consistency-and-the-cap-theorem/fulltext">http://cacm.acm.org/blogs/blog-cacm/83396-errors-in-database-systems-eventual-consistency-and-the-cap-theorem/fulltext</a></p>
<p>Let’s start with a discussion of what causes errors in databases. The following is at least a partial list:</p>
<p>1) Application errors. The application performed one or more incorrect updates. Generally, this is not discovered for minutes to hours thereafter. The database must be backed up to a point before the offending transaction(s), and subsequent activity redone.</p>
<p>2) Repeatable <a href="http://jimey.com/tag/dbms" class="st_tag internal_tag" rel="tag" title="Posts tagged with DBMS">DBMS</a> errors. The <a href="http://jimey.com/tag/dbms" class="st_tag internal_tag" rel="tag" title="Posts tagged with DBMS">DBMS</a> crashed at a processing node. Executing the same transaction on a processing node with a replica will cause the backup to crash. These errors have been termed Bohr bugs. [2]</p>
<p>3) Unrepeatable <a href="http://jimey.com/tag/dbms" class="st_tag internal_tag" rel="tag" title="Posts tagged with DBMS">DBMS</a> errors. The database crashed, but a replica is likely to be ok. These are often caused by weird corner cases dealing with asynchronous operations, and have been termed Heisenbugs [2]</p>
<p>4) Operating system errors. The OS crashed at a node, generating the “blue screen of death.”</p>
<p>5) A hardware failure in a local cluster. These include memory failures, disk failures, etc. Generally, these cause a “panic stop” by the OS or the <a href="http://jimey.com/tag/dbms" class="st_tag internal_tag" rel="tag" title="Posts tagged with DBMS">DBMS</a>. However, sometimes these failures appear as Heisenbugs.</p>
<p>6) A network partition in a local cluster. The LAN failed and the nodes can no longer all communicate with each other.</p>
<p>7) A disaster. The local cluster is wiped out by a flood, earthquake, etc. The cluster no longer exists.</p>
<p> <img src='http://jimey.com/blog/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> A network failure in the WAN connecting clusters together. The WAN failed and clusters can no longer all communicate with each other.</p>
<p>&#160;</p>
<p>很经典的8种分类,甚至包括了地震和洪水&#8230;</p>
<h3  class="related_post_title">相关博文</h3><ul class="related_post"><li>2008-11-10 -- <a href="http://jimey.com/2008/11/10/another-week-passed-and-concluded.html" title="又一周过去了，总结">又一周过去了，总结</a> (0)</li><li>2009-12-02 -- <a href="http://jimey.com/2009/12/02/karmasphere-studio-for-hadoop.html" title="Karmasphere Studio for Hadoop">Karmasphere Studio for Hadoop</a> (0)</li><li>2009-04-28 -- <a href="http://jimey.com/2009/04/28/hadoop-mysql-combination-of.html" title="Hadoop+MySQL结合">Hadoop+MySQL结合</a> (0)</li><li>2008-11-10 -- <a href="http://jimey.com/2008/11/10/cluster-configuration-with-hadoop-introduction.html" title="Hadoop用cluster配置简介">Hadoop用cluster配置简介</a> (1)</li><li>2008-11-10 -- <a href="http://jimey.com/2008/11/10/hadoop-cluster-to-do-with-the-composition-of-cluster-machines.html" title="用Hadoop做集群机器构成的cluster">用Hadoop做集群机器构成的cluster</a> (0)</li><li>2008-10-31 -- <a href="http://jimey.com/2008/10/31/hadoop-user-group-meeting-oct-meeting-continue-last-unfinished-blog.html" title="Hadoop User Group Meeting (Oct.Meeting) Continue last unfinished blog">Hadoop User Group Meeting (Oct.Meeting) Continue last unfinished blog</a> (0)</li><li>2008-10-31 -- <a href="http://jimey.com/2008/10/31/then-boil-for-one-night-the-outcome-is-still-a-significant-drop.html" title="又熬一晚，成果还是显著滴">又熬一晚，成果还是显著滴</a> (0)</li><li>2008-10-17 -- <a href="http://jimey.com/2008/10/17/hadoop-user-group-meeting-oct-meeting.html" title="Hadoop User Group Meeting (Oct.Meeting)">Hadoop User Group Meeting (Oct.Meeting)</a> (0)</li><li>2008-10-14 -- <a href="http://jimey.com/2008/10/14/diy-filing-cabinet-linux-server-cluster.html" title="DIY Filing Cabinet Linux Server Cluster">DIY Filing Cabinet Linux Server Cluster</a> (0)</li><li>2008-09-23 -- <a href="http://jimey.com/2008/09/23/aciids-2009-u0026amp-coneco-2009.html" title="ACIIDS-2009 &amp; CoNeCo 2009">ACIIDS-2009 &amp; CoNeCo 2009</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://jimey.com/2010/05/05/what-causes-errors-in-databases.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MocoSpace Architecture &#8211; 3 Billion Mobile Page Views a Month</title>
		<link>http://jimey.com/2010/05/05/mocospace-architecture-3-billion-mobile-page-views-a-month.html</link>
		<comments>http://jimey.com/2010/05/05/mocospace-architecture-3-billion-mobile-page-views-a-month.html#comments</comments>
		<pubDate>Wed, 05 May 2010 05:58:24 +0000</pubDate>
		<dc:creator>jimey</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Amazon]]></category>
		<category><![CDATA[MocoSpace]]></category>
		<category><![CDATA[S3]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://jimey.com/2010/05/05/mocospace-architecture-3-billion-mobile-page-views-a-month.html</guid>
		<description><![CDATA[原文转自 http://highscalability.com/blog/2010/5/3/mocospace-architecture-3-billion-mobile-page-views-a-month.html  &#160;  This is a guest post by Jamie Hall, Co-founder &#38; CTO of MocoSpace, describing the architecture for their mobile social network. This is a timely architecture to learn from a..... ]]></description>
			<content:encoded><![CDATA[<p>原文转自 <a title="http://highscalability.com/blog/2010/5/3/mocospace-architecture-3-billion-mobile-page-views-a-month.html" href="http://highscalability.com/blog/2010/5/3/mocospace-architecture-3-billion-mobile-page-views-a-month.html">http://highscalability.com/blog/2010/5/3/mocospace-architecture-3-billion-mobile-page-views-a-month.html</a></p>
<p>&#160;</p>
<p>This is a guest post by Jamie Hall, Co-founder &amp; CTO of <a href="http://www.mocospace.com/">MocoSpace</a>, describing the architecture for their mobile social network. This is a timely architecture to learn from as it combines several hot trends: it is very large, mobile, and social. What they think is especially cool about their system is: how it optimizes for device/browser fragmentation on the mobile Web; their multi-tiered, read/write, local/distributed caching system; selecting PostgreSQL over MySQL as a relational DB that can scale.</p>
<p><a href="http://jimey.com/tag/mocospace" class="st_tag internal_tag" rel="tag" title="Posts tagged with MocoSpace">MocoSpace</a> is a mobile social network, with 12 million members and 3 billion page views a month, which makes it one of the most highly trafficked mobile Websites in the US. Members access the site mainly from their mobile phone Web browser, ranging from high end smartphones to lower end devices, as well as the Web. Activities on the site include customizing profiles, chat, instant messaging, music, sharing photos &amp; videos, games, eCards and blogs. The monetization strategy is focused on advertising, on both the mobile and Websites, as well as a virtual currency system and a handful of premium feature upgrades.</p>
<h4>Stats</h4>
<ol>
<li>3 billion page views a month </li>
<li>Top 4 most trafficked mobile website after MySpace, Facebook and Google (http://www.groundtruth.com/mobile-is-mobile) </li>
<li>75% mobile Web, 25% Web </li>
<li>12 million members </li>
<li>6 million unique visitors a month </li>
<li>100k concurrent users </li>
<li>12 million photo uploads a month </li>
<li>2 million emails received a day, 90% spam, 2.5 million sent a day </li>
<li>Team of 8 developers, 2 QA, 1 sysadmin </li>
</ol>
<h4>Platform</h4>
<ol>
<li>CentOS + Red Hat </li>
<li>Resin application server — Java Servlets, JavaServer Pages, Comet </li>
<li>PostgreSQL </li>
<li>Memcached </li>
<li>ActiveMQ&#8217;s job + message queue, in Red Hat cluster for high availability </li>
<li>Squid &#8211; static content caching, tried Varnish but had stability issues </li>
<li>JQuery + Ajax </li>
<li>S3 for user photo &amp; video storage (8 TB) and EC2 for photo processing </li>
<li>F5 BigIP load balancers &#8211; sticky sessions, gzip compression on all pages </li>
<li>Akamai CDN &#8211; 2 TB a day, 250 million requests a day </li>
<li>Monitoring &#8211; Nagios for alerts, Zabbix for trending </li>
<li>EMC SAN &#8211; high IO performance for databases by RAIDing (RAID 10) lots of disks, replacing with high performance Fusion-io solid-state flash ioDrives, much more cost effective </li>
<li>PowerMTA for mail delivery, Barracuda spam firewalls </li>
<li>Subversion source control, Hudson for continuous integration </li>
<li>FFMPEG for Mobile to Web and Web to mobile video transcoding </li>
<li>Selenium for browser test case automation </li>
<li>Web tier
<ol>
<li>5x Dell 1950, 2x dual core, 16G RAM </li>
<li>5x Dell 6950/R905, 4x dual core, 32G RAM </li>
</ol>
</li>
<li>Database tier
<ol>
<li>2x <a href="http://jimey.com/tag/sun" class="st_tag internal_tag" rel="tag" title="Posts tagged with sun">Sun</a> Fire X4600 M2 Server, 8x quad core, 256G RAM </li>
<li>2x Dell 6950, 4x dual core, 64G RAM </li>
</ol>
</li>
</ol>
<h4>Architecture</h4>
<ol>
<li>All pages are dynamic, with user data and customizations as well as many browser and device specific optimizations. Browser and device fragmentation issues are much greater on mobile than on the Web. Many optimizations, adaptations required based on browser capabilities, limited support for CSS/JavaScript, screen size, etc. Mobile Web traffic is often served via network proxies (gateways), with poor support for Cookies, making session management and user identification a challenge. </li>
<li>A big challenge is handling the device/browser fragmentation on the mobile Web &#8211; optimizing for a huge range of device capabilities (everything from iPhones with touchscreens to 5 year old Motorola Razrs), screen sizes, lack of / inconsistent Web standards compliance, etc. We abstract out our presentation layer so we can serve pages to all mobile devices from the same code base, and maintain a large device capabilities database (containing things like screen size, supported file types, maximum allowed page sizes, etc) which is used to drive generation of our pages. The database contains capability details for hundreds of devices and mobile browser types. </li>
<li>Database is sharded based on a user key, with a master lookup table mapping users to shards. We rolled our own query and aggregation layer, allowing us to query and join data across shards, though this is not used frequently. With sharding we sacrifice some consistency, but that&#8217;s Ok as long as you&#8217;re not running a bank. We perform data consistency checks offline, in batches, with the goal being eventual consistency. Large tables are partitioned into smaller sub tables for more efficient access, reducing time tables are locked for updates as well as operational maintenance activities. Log shipping used for warm standbys. </li>
<li>A multi-tiered caching system is used, with data cached locally within the application servers as well as distributed via Memcached. When making an update we don&#8217;t just invalidate the cache and then re-populate after reading again from the database, rather we update Memcached with the new data and save another trip to the database. When updating the cache an invalidation directive is sent via the messaging queue to the local caches on each of the application servers. </li>
<li>A distributed message queue is used for distributed server communication, everything from sending messages in realtime between users to system messages such as local cache invalidation directives. </li>
<li>Dedicated server for building and traversing social graph entirely in memory, used to generate friend recommendations, etc. </li>
<li>Load balancer used for rolling deploys of new versions of the site without affecting performance/traffic. </li>
<li>Release every 2 weeks. Longer release cycles = exponential complexity, more difficult to troubleshoot and rollback. Development team responsible for deploying to and managing production systems ¿ ¿you built it, you manage it¿. </li>
<li>Kickstart used to automate server builds from bare metal. Puppet is used to configure a server to a specific personality i.e. Webserver, database server, cache server etc, as well as to push updated policies to running nodes. </li>
</ol>
<h4>Lessons Learned</h4>
<ol>
<li><strong>Make your boxes sweat</strong>. Don&#8217;t be afraid of high system load as long as response times are acceptable. We pack as many as five application server instances on a single box, each running on a different port. Scale up to the high end of commodity hardware before scaling out. Can pick up used or refurbished powerful 4U boxes for cheap. </li>
<li><strong>Understand where your bottlenecks are in each tier</strong>. Are you CPU or IO (disk, network) bound? Database is almost always IO (disk) bound. Once the database doesn&#8217;t fit in RAM you hit a wall. </li>
<li><strong>Profile the database religiously</strong>. Obsess when it comes to optimizing the database. Scaling Web tier is cheap and easy, database tier is much harder and expensive. Know the top queries on your system, both by execution time and frequency. Track and benchmark top queries with each release, need to catch and address performance issues with the database early. We use the pgFouine log analyzer and new PostgreSQL pg_stat_statements utility for generating profiling snapshots in real-time. </li>
<li><strong>Design to disable</strong>. Be able to configure and turn off anything you release instantly, without requiring a code change or deployment. Load and stress testing are important but nothing like testing with live, production traffic via incremental, phased rollouts. </li>
<li><strong>Communicate synchronously only when absolutely necessary</strong>. When one component or service fails it shouldn&#8217;t bring down other parts of the system. Do everything you can in the background or as a separate thread or process, don&#8217;t make the user wait. Update the database in batches wherever possible. Any system making requests outside the network need aggressive monitoring, timeout settings, and failure handling / retries. For example, we found S3 latency and failure rates can be significant, so we queue failed calls and retry later. </li>
<li><strong>Think about monitoring during design, not after</strong>. Every component should produce performance, health, throughput, etc data. Set up alerts when these exceed thresholds. Consolidated graphs showing metrics across all instances, rather than just per instance, are particularly helpful for identifying issues and trends at a glance and should be reviewed daily — if normal operating behavior isn&#8217;t well understood it&#8217;s impossible to identify and respond to what isn&#8217;t. We tried many monitoring systems &#8211; Cacti, Ganglia, Hyperic, Zabbix, Nagios, as well as some custom built solutions. Whichever you use the most important thing is to be comfortable with it, otherwise you won&#8217;t use it enough. It should be easy, using templates, etc to quickly monitor new boxes and services as you throw them up. </li>
<li><strong>Distributed sessions can be a lot of overhead</strong>. Go stateless when you can, but when you can&#8217;t consider sticky sessions. If the server fails the user loses their state and may need to re-login, but that&#8217;s rare and acceptable depending on what you need to do. </li>
<li><strong>Monitor and beware of full/major garbage collection events in Java</strong>, which can lock up the whole JVM for up to 30 seconds. We use Concurrent Mark Sweep (CMS) garbage collector, which introduces some additional system overhead, but have been able to eliminate full garbage collections. </li>
<li>When a site gets large enough it becomes a magnet for spammers and hackers, both on site and from outside via email, etc. Captcha and IP monitoring are not enough. Must <strong>invest aggressively in detection and containment systems</strong>, internal tools to detect suspicious user behavior and alert and/or attempt to automatically contain. </li>
<li><strong>Soft delete whenever possible</strong>. Mark data for later deletion, rather than deleting immediately. Deletion can be costly, so queue up for after hours, plus if someone makes a mistake and deletes something they shouldn¿t have it¿s easy to rollback. </li>
<li><strong>N+1 design</strong>. Never less than two of anything. </li>
</ol>
<p>I&#8217;d really like to thank Jamie for taking the time write this experience report. It&#8217;s a really useful contribution for others to learn from. If you would like to share the architecture for your fablous system, please <a href="http://highscalability.com/blog/2010/contact/">contact me</a> and we&#8217;ll get started.</p>
<p>&#160;</p>
<p>^^^^^^^^^^^^^^^^^^^^^^</p>
<p>很实际的经验分享,值得被转载下.尤其是各个平台的搭配与使用目的,很清晰明确,看来Amazon的S3应用是越来越广泛了.目前我发现的不仅仅是twitter的头像icon的存储,又加上这个<a href="http://jimey.com/tag/mocospace" class="st_tag internal_tag" rel="tag" title="Posts tagged with MocoSpace">MocoSpace</a>了.</p>
<h3  class="related_post_title">相关博文</h3><ul class="related_post"><li>2010-04-22 -- <a href="http://jimey.com/2010/04/22/several-articles-on-twitter-hadoop-cassandra-pig-flockdbu002639s-slide.html" title="几篇关于twitter,hadoop,Cassandra,Pig,FlockDB的slide">几篇关于twitter,hadoop,Cassandra,Pig,FlockDB的slide</a> (0)</li><li>2010-04-03 -- <a href="http://jimey.com/2010/04/03/marketing-in-twitter.html" title="Marketing in Twitter">Marketing in Twitter</a> (0)</li><li>2010-04-01 -- <a href="http://jimey.com/2010/04/01/foolu002639s-day.html" title="愚人节">愚人节</a> (2)</li><li>2010-03-30 -- <a href="http://jimey.com/2010/03/30/the-garden-of-eden-subtitle-blog-station-uses-the-approach.html" title="伊甸园字幕博客站利用办法">伊甸园字幕博客站利用办法</a> (2)</li><li>2010-03-24 -- <a href="http://jimey.com/2010/03/24/twittersleepingtime.html" title="TwitterSleepingtime">TwitterSleepingtime</a> (0)</li><li>2009-12-26 -- <a href="http://jimey.com/2009/12/26/nateu002639s-twitter-business-model.html" title="NATE的twitter商业模式">NATE的twitter商业模式</a> (0)</li><li>2009-12-25 -- <a href="http://jimey.com/2009/12/25/twitter-search-result-u0026gt-language-filter.html" title="twitter search result -&gt; language filter">twitter search result -&gt; language filter</a> (0)</li><li>2009-12-18 -- <a href="http://jimey.com/2009/12/18/twitter-rss-reminder.html" title="twitter rss 提醒">twitter rss 提醒</a> (0)</li><li>2009-12-18 -- <a href="http://jimey.com/2009/12/18/feedburner-to-be-more-social.html" title="feedburner &#8211; To be more social">feedburner &#8211; To be more social</a> (0)</li><li>2009-11-05 -- <a href="http://jimey.com/2009/11/05/flickr-pro-account-to-use-experience.html" title="Flickr Pro帐号使用经历">Flickr Pro帐号使用经历</a> (1)</li><li>2009-10-31 -- <a href="http://jimey.com/2009/10/31/to-continue-to-micro-blog-to-continue-to-sync-messages.html" title="继续微博客，继续同步消息">继续微博客，继续同步消息</a> (2)</li><li>2009-08-17 -- <a href="http://jimey.com/2009/08/17/too-long-and-i-did-not-write-a-blog-camera-u0026amp-monday.html" title="太久没写博客了&amp;周一照相">太久没写博客了&amp;周一照相</a> (4)</li><li>2009-08-05 -- <a href="http://jimey.com/2009/08/05/zt-looking-ahead-summed-up-his-career-over-the-past-10-years-programmers-to-give-the-programmer-little-brother-little-sister-had-some-of-the-concluding-advice.html" title="[ZT]展望未来，总结过去10年的程序员生涯，给程序员小弟弟小妹妹们的一些总结性忠告">[ZT]展望未来，总结过去10年的程序员生涯，给程序员小弟弟小妹妹们的一些总结性忠告</a> (1)</li><li>2009-05-06 -- <a href="http://jimey.com/2009/05/06/recent-did-not-how-to-write-blog-nonsense-also-has-been-much-less.html" title="最近没怎么写博客，废话也少了很多">最近没怎么写博客，废话也少了很多</a> (3)</li><li>2009-04-17 -- <a href="http://jimey.com/2009/04/17/south-koreau002639s-version-of-the-twitter-%eb%af%b8%ed%88%ac-%ed%85%8c%ec%9d%b4-me2day-second.html" title="韩国版的twitter 미투테이(me2day) （第二篇）">韩国版的twitter 미투테이(me2day) （第二篇）</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://jimey.com/2010/05/05/mocospace-architecture-3-billion-mobile-page-views-a-month.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ubuntu 10.04安装sun的jdk</title>
		<link>http://jimey.com/2010/05/04/ubuntu-10-04-installed-sunu002639s-jdk.html</link>
		<comments>http://jimey.com/2010/05/04/ubuntu-10-04-installed-sunu002639s-jdk.html#comments</comments>
		<pubDate>Tue, 04 May 2010 12:18:06 +0000</pubDate>
		<dc:creator>jimey</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[javac]]></category>
		<category><![CDATA[jdk]]></category>
		<category><![CDATA[LTS]]></category>
		<category><![CDATA[sun]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Ubuntu 10.04]]></category>

		<guid isPermaLink="false">http://jimey.com/2010/05/04/ubuntu-10-04%e5%ae%89%e8%a3%85sun%e7%9a%84jdk.html</guid>
		<description><![CDATA[在ubuntu10.04版本里面，sun的jdk已经被排除在标准库里面，标准库的只有openJDK了  为了装sun的jdk  先是编译个源文件  比如     sudo vim /etc/apt/sources.list.d/partner.list   然后添加     deb http://archive.canonical.com/ lucid partner   然后保存之后     sudo apt-get update   然后就     sudo apt-get insta..... ]]></description>
			<content:encoded><![CDATA[<p>在ubuntu10.04版本里面，<a href="http://jimey.com/tag/sun" class="st_tag internal_tag" rel="tag" title="Posts tagged with sun">sun</a>的jdk已经被排除在标准库里面，标准库的只有openJDK了</p>
<p>为了安装<a href="http://jimey.com/tag/sun" class="st_tag internal_tag" rel="tag" title="Posts tagged with sun">sun</a>的jdk</p>
<p>先是编译个源文件</p>
<p><code>比如</code></p>
<blockquote><p><code>sudo vim /etc/apt/sources.list.d/partner.list</code></p></blockquote>
<p><code>然后添加</code></p>
<blockquote><p><code>deb <a href="http://archive.canonical.com/">http://archive.canonical.com/</a> lucid partner</code></p></blockquote>
<p><code>然后保存之后</code></p>
<blockquote><p><code>sudo apt-get update</code></p></blockquote>
<p><code>然后就</code></p>
<blockquote><p>sudo apt-get install <a href="http://jimey.com/tag/sun" class="st_tag internal_tag" rel="tag" title="Posts tagged with sun">sun</a>-java6-bin <a href="http://jimey.com/tag/sun" class="st_tag internal_tag" rel="tag" title="Posts tagged with sun">sun</a>-java6-jre <a href="http://jimey.com/tag/sun" class="st_tag internal_tag" rel="tag" title="Posts tagged with sun">sun</a>-java6-jdk</p></blockquote>
<p>基本上就可以了.只是源实在是太慢了.. 用习惯10M的源,突然变成100多k真受不了</p>
<h3  class="related_post_title">相关博文</h3><ul class="related_post"><li>2010-05-06 -- <a href="http://jimey.com/2010/05/06/ubuntu10-04-compiled-hadoop-version-eclipse-plugin-jar-and-hadoop-0-20-3-dev-eclipse-plugin-jar-download.html" title="Ubuntu10.04 编译hadoop-${version}-eclipse- plugin.jar and hadoop-0.20.3-dev-eclipse-plugin.jar">Ubuntu10.04 编译hadoop-${version}-eclipse- plugin.jar and hadoop-0.20.3-dev-eclipse-plugin.jar</a> (0)</li><li>2009-10-28 -- <a href="http://jimey.com/2009/10/28/ubuntu-8-04-version-to-compile-rtorrent-0-85-pian.html" title="ubuntu 8.04版本编译rtorrent 0.85篇">ubuntu 8.04版本编译rtorrent 0.85篇</a> (0)</li><li>2009-10-09 -- <a href="http://jimey.com/2009/10/09/eclipse-hadoop-full-linux-environment-for-development.html" title="Eclipse+Hadoop 全linux环境开发">Eclipse+Hadoop 全linux环境开发</a> (6)</li><li>2009-10-08 -- <a href="http://jimey.com/2009/10/08/formatting-windows-partition-under-ubuntu-systems.html" title="Ubuntu系统下格式化windows 分区">Ubuntu系统下格式化windows 分区</a> (0)</li><li>2009-03-27 -- <a href="http://jimey.com/2009/03/27/installing-freenx-in-ubuntu-8-04-hardy-u0026amp-8-10-intrepid-u0026amp-9-04-jaunty-ibex.html" title="Installing FreeNX in Ubuntu 8.04 Hardy &#038; 8.10 Intrepid &#038; 9.04 jaunty Ibex">Installing FreeNX in Ubuntu 8.04 Hardy &#038; 8.10 Intrepid &#038; 9.04 jaunty Ibex</a> (0)</li><li>2009-03-25 -- <a href="http://jimey.com/2009/03/25/linux-server-clustered-hdfs-access-from-windows-eclipse-java-application.html" title="Linux server clustered HDFS: access from Windows eclipse Java application">Linux server clustered HDFS: access from Windows eclipse Java application</a> (0)</li><li>2009-03-11 -- <a href="http://jimey.com/2009/03/11/perlu002639s-cpan-permission-issues.html" title="perl的CPAN权限问题">perl的CPAN权限问题</a> (0)</li><li>2009-03-11 -- <a href="http://jimey.com/2009/03/11/ubuntu-ubuntu-8-04-lts-configuration-notes.html" title="Ubuntu Ubuntu 8.04 LTS 配置笔记">Ubuntu Ubuntu 8.04 LTS 配置笔记</a> (0)</li><li>2009-03-07 -- <a href="http://jimey.com/2009/03/07/disabling-your-pc-speaker-in-ubuntu.html" title="Disabling Your PC Speaker in Ubuntu">Disabling Your PC Speaker in Ubuntu</a> (0)</li><li>2009-03-06 -- <a href="http://jimey.com/2009/03/06/the-use-of-eclipse-cdt-development-of-ns2.html" title="使用Eclipse CDT 开发NS2">使用Eclipse CDT 开发NS2</a> (0)</li><li>2009-03-05 -- <a href="http://jimey.com/2009/03/05/install-and-configuration-vsftpd-ftp-service-on-ubuntu-linux.html" title="install and configuration vsftpd ftp service on Ubuntu Linux">install and configuration vsftpd ftp service on Ubuntu Linux</a> (0)</li><li>2009-03-04 -- <a href="http://jimey.com/2009/03/04/tcl-compiler-environment-win.html" title="Win环境下的TCL Compiler">Win环境下的TCL Compiler</a> (0)</li><li>2009-03-04 -- <a href="http://jimey.com/2009/03/04/in-the-ubuntu-install-configure-subversion-aapache.html" title="在Ubuntu上安装配置Subversion + Aapache">在Ubuntu上安装配置Subversion + Aapache</a> (0)</li><li>2009-03-03 -- <a href="http://jimey.com/2009/03/03/install-vmware-server-on-ubuntu-8-04.html" title="install vmware server on ubuntu 8.04">install vmware server on ubuntu 8.04</a> (0)</li><li>2008-11-18 -- <a href="http://jimey.com/2008/11/18/how-to-install-ns-2-allinone-2-33-on-ubuntu-8-04.html" title="How to install Ns-2-AllinOne-2.33 on Ubuntu 8.04">How to install Ns-2-AllinOne-2.33 on Ubuntu 8.04</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://jimey.com/2010/05/04/ubuntu-10-04-installed-sunu002639s-jdk.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Linux Command Line: 一本介绍 Linux 命令行的好书</title>
		<link>http://jimey.com/2010/04/27/the-linux-command-line-a-good-book-describes-linux-command-line.html</link>
		<comments>http://jimey.com/2010/04/27/the-linux-command-line-a-good-book-describes-linux-command-line.html#comments</comments>
		<pubDate>Tue, 27 Apr 2010 01:59:01 +0000</pubDate>
		<dc:creator>jimey</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Command]]></category>
		<category><![CDATA[Line]]></category>

		<guid isPermaLink="false">http://jimey.com/2010/04/27/the-linux-command-line-%e4%b8%80%e6%9c%ac%e4%bb%8b%e7%bb%8d-linux-%e5%91%bd%e4%bb%a4%e8%a1%8c%e7%9a%84%e5%a5%bd%e4%b9%a6.html</guid>
		<description><![CDATA[《The Linux Command Line》由 William E. Shotts, Jr. 所著，William E. Shotts. Jr. 是著名的 LinuxCommand.org 网站的维护者，相信资深的 Linux CLI 控都不会陌生。这本《The Linux Command Linux》有 500 多页，对 Linux 命令行进行了全面的介绍，但是写得深入浅出，不仅适合 Linux CLI 新手阅读，就算是老鸟也能从中有..... ]]></description>
			<content:encoded><![CDATA[<p>《The Linux Command Line》由 William E. Shotts, Jr. 所著，William E. Shotts. Jr. 是著名的 <a href="http://linuxcommand.org/">LinuxCommand.org</a> 网站的维护者，相信资深的 Linux CLI 控都不会陌生。这本《The Linux Command Linux》有 500 多页，对 Linux 命令行进行了全面的介绍，但是写得深入浅出，不仅适合 Linux CLI 新手阅读，就算是老鸟也能从中有所崭获。</p>
<p>&#160;</p>
<p>本书是免费的，为 PDF 格式，可从<a href="http://linuxcommand.org/tlcl.php">这里下载</a>。</p>
<h3  class="related_post_title">相关博文</h3><ul class="related_post"><li>2009-10-09 -- <a href="http://jimey.com/2009/10/09/eclipse-hadoop-full-linux-environment-for-development.html" title="Eclipse+Hadoop 全linux环境开发">Eclipse+Hadoop 全linux环境开发</a> (6)</li><li>2009-04-09 -- <a href="http://jimey.com/2009/04/09/p2psim-installation.html" title="P2PSim安装">P2PSim安装</a> (0)</li><li>2009-03-30 -- <a href="http://jimey.com/2009/03/30/currently-in-use-firefox-ubiquity-command.html" title="目前在用的Firefox的Ubiquity Command">目前在用的Firefox的Ubiquity Command</a> (0)</li><li>2009-03-18 -- <a href="http://jimey.com/2009/03/18/glftpd-and-zipscript-install-guide.html" title="glftpd and zipscript install guide">glftpd and zipscript install guide</a> (0)</li><li>2009-03-03 -- <a href="http://jimey.com/2009/03/03/install-vmware-server-on-ubuntu-8-04.html" title="install vmware server on ubuntu 8.04">install vmware server on ubuntu 8.04</a> (0)</li><li>2008-12-06 -- <a href="http://jimey.com/2008/12/06/from-the-u0026quotsun-released-javafx-1-0u0026quot-look-at-the-embarrassment-of-the-current-status-linux.html" title="从&quot;Sun发布JavaFX 1.0&ldquo;来看linux目前的尴尬地位">从&quot;Sun发布JavaFX 1.0&ldquo;来看linux目前的尴尬地位</a> (0)</li><li>2008-10-14 -- <a href="http://jimey.com/2008/10/14/diy-filing-cabinet-linux-server-cluster.html" title="DIY Filing Cabinet Linux Server Cluster">DIY Filing Cabinet Linux Server Cluster</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://jimey.com/2010/04/27/the-linux-command-line-a-good-book-describes-linux-command-line.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>几篇关于twitter,hadoop,Cassandra,Pig,FlockDB的slide</title>
		<link>http://jimey.com/2010/04/22/several-articles-on-twitter-hadoop-cassandra-pig-flockdbu002639s-slide.html</link>
		<comments>http://jimey.com/2010/04/22/several-articles-on-twitter-hadoop-cassandra-pig-flockdbu002639s-slide.html#comments</comments>
		<pubDate>Thu, 22 Apr 2010 07:02:02 +0000</pubDate>
		<dc:creator>jimey</dc:creator>
				<category><![CDATA[Cloud Computing]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Big Data]]></category>
		<category><![CDATA[Cassandra]]></category>
		<category><![CDATA[distributed]]></category>
		<category><![CDATA[FlockDB]]></category>
		<category><![CDATA[hadoop]]></category>
		<category><![CDATA[HBase]]></category>
		<category><![CDATA[Pig]]></category>
		<category><![CDATA[real-time search]]></category>
		<category><![CDATA[SlideShare]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://jimey.com/2010/04/22/%e5%87%a0%e7%af%87%e5%85%b3%e4%ba%8etwitterhadoopcassandrapigflockdb%e7%9a%84slide.html</guid>
		<description><![CDATA[http://www.slideshare.net/kevinweil/nosql-at-twitter-nosql-eu-2010  http://www.slideshare.net/ryansking/scaling-twitter-with-cassandra  http://www.slideshare.net/nkallen/q-con-3770885  Big Data in Real-Time at Twitter  http://www.slideshare.net/al3x/building-distributed-systems-in-scala  &#160;  主要..... ]]></description>
			<content:encoded><![CDATA[<p><a title="http://www.slideshare.net/kevinweil/nosql-at-twitter-nosql-eu-2010" href="http://www.slideshare.net/kevinweil/nosql-at-twitter-nosql-eu-2010">http://www.slideshare.net/kevinweil/nosql-at-twitter-nosql-eu-2010</a></p>
<p><a title="http://www.slideshare.net/ryansking/scaling-twitter-with-cassandra" href="http://www.slideshare.net/ryansking/scaling-twitter-with-cassandra">http://www.slideshare.net/ryansking/scaling-twitter-with-cassandra</a></p>
<p><a title="http://www.slideshare.net/nkallen/q-con-3770885" href="http://www.slideshare.net/nkallen/q-con-3770885">http://www.slideshare.net/nkallen/q-con-3770885</a></p>
<p><a href="http://jimey.com/tag/big-data" class="st_tag internal_tag" rel="tag" title="Posts tagged with Big Data">Big Data</a> in Real-Time at Twitter</p>
<p><a title="http://www.slideshare.net/al3x/building-distributed-systems-in-scala" href="http://www.slideshare.net/al3x/building-distributed-systems-in-scala">http://www.slideshare.net/al3x/building-distributed-systems-in-scala</a></p>
<p>&#160;</p>
<p>主要分析了功能上需求与分散系统采用所能完成的目的的合理搭配.</p>
<p>个人觉得是很不错的几篇slide有助于对twitter的一个基本了解,当然是背后构架的基本了解,各个功能与服务是通过什么来实现以及达到一个怎么样的高度</p>
<p>具体内容各位还是看slide吧,谁看谁知道.</p>
<p>&#160;</p>
<p>^^^^^^^^^^^^</p>
<p>再记下来本书名叫</p>
<p>Programming Scala (O’Reilly 2009)</p>
<h3  class="related_post_title">相关博文</h3><ul class="related_post"><li>2010-04-03 -- <a href="http://jimey.com/2010/04/03/marketing-in-twitter.html" title="Marketing in Twitter">Marketing in Twitter</a> (0)</li><li>2009-03-26 -- <a href="http://jimey.com/2009/03/26/midnight.html" title="半夜">半夜</a> (0)</li><li>2009-03-23 -- <a href="http://jimey.com/2009/03/23/information-retrieval-course-2-weeks-to-a-summary-of.html" title="Information Retrieval 课程2周来的总结">Information Retrieval 课程2周来的总结</a> (0)</li><li>2009-03-09 -- <a href="http://jimey.com/2009/03/09/last-week-record-u0026amp-made-real-time-search-look-forward-to.html" title="上周记录&amp;国产real-time search期待">上周记录&amp;国产real-time search期待</a> (2)</li><li>2009-02-01 -- <a href="http://jimey.com/2009/02/01/wanted-to-terms-u0026amp.html" title="很想写点什么">很想写点什么</a> (0)</li><li>2009-01-21 -- <a href="http://jimey.com/2009/01/21/sorry-google-you-missed-the-real-time-web.html" title="Sorry Google, You Missed the Real-Time Web!">Sorry Google, You Missed the Real-Time Web!</a> (0)</li><li>2009-01-21 -- <a href="http://jimey.com/2009/01/21/frienddeck-a-friendfeed-search-tool.html" title="FriendDeck: A FriendFeed Search Tool">FriendDeck: A FriendFeed Search Tool</a> (0)</li><li>2008-11-18 -- <a href="http://jimey.com/2008/11/18/cloud-computing-on-the-next-week-to-discuss-the-curriculum-some-of-the-ideas.html" title="关于下下周cloud computing讨论课程的一些想法">关于下下周cloud computing讨论课程的一些想法</a> (0)</li><li>2008-11-11 -- <a href="http://jimey.com/2008/11/11/hadoop-hbase-performance-evaluation.html" title="Hadoop HBase Performance Evaluation">Hadoop HBase Performance Evaluation</a> (0)</li><li>2008-11-10 -- <a href="http://jimey.com/2008/11/10/another-week-passed-and-concluded.html" title="又一周过去了，总结">又一周过去了，总结</a> (0)</li><li>2010-05-06 -- <a href="http://jimey.com/2010/05/06/ubuntu10-04-compiled-hadoop-version-eclipse-plugin-jar-and-hadoop-0-20-3-dev-eclipse-plugin-jar-download.html" title="Ubuntu10.04 编译hadoop-${version}-eclipse- plugin.jar and hadoop-0.20.3-dev-eclipse-plugin.jar">Ubuntu10.04 编译hadoop-${version}-eclipse- plugin.jar and hadoop-0.20.3-dev-eclipse-plugin.jar</a> (0)</li><li>2010-05-05 -- <a href="http://jimey.com/2010/05/05/mocospace-architecture-3-billion-mobile-page-views-a-month.html" title="MocoSpace Architecture &#8211; 3 Billion Mobile Page Views a Month">MocoSpace Architecture &#8211; 3 Billion Mobile Page Views a Month</a> (0)</li><li>2010-04-01 -- <a href="http://jimey.com/2010/04/01/foolu002639s-day.html" title="愚人节">愚人节</a> (2)</li><li>2010-03-30 -- <a href="http://jimey.com/2010/03/30/the-garden-of-eden-subtitle-blog-station-uses-the-approach.html" title="伊甸园字幕博客站利用办法">伊甸园字幕博客站利用办法</a> (2)</li><li>2010-03-24 -- <a href="http://jimey.com/2010/03/24/twittersleepingtime.html" title="TwitterSleepingtime">TwitterSleepingtime</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://jimey.com/2010/04/22/several-articles-on-twitter-hadoop-cassandra-pig-flockdbu002639s-slide.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>云端医疗信息系统的不成熟构思</title>
		<link>http://jimey.com/2010/04/12/cloud-of-medical-information-systems-immature-idea.html</link>
		<comments>http://jimey.com/2010/04/12/cloud-of-medical-information-systems-immature-idea.html#comments</comments>
		<pubDate>Mon, 12 Apr 2010 13:10:41 +0000</pubDate>
		<dc:creator>jimey</dc:creator>
				<category><![CDATA[Cloud Computing]]></category>
		<category><![CDATA[ERP]]></category>
		<category><![CDATA[hdfs]]></category>
		<category><![CDATA[HIS]]></category>
		<category><![CDATA[IC病历卡]]></category>
		<category><![CDATA[key/value]]></category>
		<category><![CDATA[OA]]></category>
		<category><![CDATA[OpenSource]]></category>
		<category><![CDATA[Private Cloud]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[云]]></category>
		<category><![CDATA[云计算]]></category>
		<category><![CDATA[信息系统]]></category>
		<category><![CDATA[倾向]]></category>
		<category><![CDATA[医生]]></category>
		<category><![CDATA[医疗]]></category>
		<category><![CDATA[医院]]></category>
		<category><![CDATA[卖方]]></category>
		<category><![CDATA[喜好]]></category>
		<category><![CDATA[存储]]></category>
		<category><![CDATA[安全]]></category>
		<category><![CDATA[工作站]]></category>
		<category><![CDATA[影像库]]></category>
		<category><![CDATA[成本]]></category>
		<category><![CDATA[技术革命]]></category>
		<category><![CDATA[投入]]></category>
		<category><![CDATA[数据]]></category>
		<category><![CDATA[无盘]]></category>
		<category><![CDATA[构思]]></category>
		<category><![CDATA[桌面]]></category>
		<category><![CDATA[正版]]></category>
		<category><![CDATA[绿色IT]]></category>
		<category><![CDATA[隐私]]></category>
		<category><![CDATA[高效率]]></category>

		<guid isPermaLink="false">http://jimey.com/2010/04/12/%e4%ba%91%e7%ab%af%e5%8c%bb%e7%96%97%e4%bf%a1%e6%81%af%e7%b3%bb%e7%bb%9f%e7%9a%84%e4%b8%8d%e6%88%90%e7%86%9f%e6%9e%84%e6%80%9d.html</guid>
		<description><![CDATA[其实题目想叫着医疗信息系统云计算化或者叫医疗信息化云计算  不过 - - 都觉得无法表达我想说的意思,所以把仨题目都丢这  昨晚本来是睡觉的时候,在构思了下我之前曾经发过的一篇blog 韩国医院看病流程 也许不是普遍事例  关于医疗系统的云化构思,在床上想了差不多一个小时,又来又爬起来   在医院信息系统云计算,不同于现有的..... ]]></description>
			<content:encoded><![CDATA[<p>其实题目想叫着医疗信息系统云计算化或者叫医疗信息化云计算</p>
<p>不过 &#8211; - 都觉得无法表达我想说的意思,所以把仨题目都丢这</p>
<p>昨晚本来是睡觉的时候,在构思了下我之前曾经发过的一篇blog <a href="http://jimey.com/2009/12/03/south-korean-hospital-processes-may-not-be-common-examples-of.html">韩国医院看病流程 也许不是普遍事例</a></p>
<p>关于医疗系统的云化构思,在床上想了差不多一个小时,又来又爬起来 </p>
<p>在医院信息系统云计算,不同于现有的OA,ERP,SQL数据库的模式.基于纯web的模式</p>
<p>下午在跟<a href="http://blog.it580.com/" target="_blank">davidpanchina</a>同学探讨关于这个云的具体实施想法</p>
<p>我才明白.医生工作站在国内没有市场，因为卫生部不认可电子病历。国内的情况是<a href="http://jimey.com/tag/his" class="st_tag internal_tag" rel="tag" title="Posts tagged with HIS">HIS</a>+影像库，<a href="http://jimey.com/tag/his" class="st_tag internal_tag" rel="tag" title="Posts tagged with HIS">HIS</a>应用主要是挂号，收费，药房，财务系统。 </p>
<p>我曾经的理解是: 现在老外做云OA已经是蛮成熟了.我个人理解现在的医院信息系统都是医生桌面软件+远端DB,桌面软件开发大多都是采用vb;vc;.net之类.而云的话,就是软件处理+DB全部在云端.医生这边只用web来和云做沟通.</p>
<p>果然到国内去就变样了.当然目前从我观察来看,韩国应该是可以这样做</p>
<p>有几个问题:</p>
<p>1.对比国内医生部分不会使用电脑,韩国医院基本上已经实现了信息化</p>
<p>2. 数据安全,数据隐私</p>
<p>3. IC病历卡与整个系统连结</p>
<p>4. 医生无盘工作站的桌面 (cost可以节约一些)</p>
<p>5. 投入与产出,国内医院目前应该还是个卖方市场,对于IT行业的投入与倾向的喜好?</p>
<p>6. 各个医院数据的统一与协调,当然这个数据即使不统一,对于云数据库来说,其实是个很容易解决的问题,反正都是key-value存储,即使value短那么一截,也没什么大不了,把能对得上的对上即可</p>
<p>7. 如果采用private cloud 在医院内部解决数据隐私的问题的话, 与现有的集群服务器又有什么差别? 答案: 如果采用Open Source的软件的话,价格上可能会有优势</p>
<p>另外接着说那个影像库</p>
<p>1. 其实就是个存储系统,说白了,如果往云上靠,那么可以用hdfs来做,用分布式存储的模式来 vs 目前的集群服务器容错机制</p>
<p>^^^^^^^^^^^^^^^^</p>
<p>最后讨论到最后也没什么特别的结论</p>
<p>当然我自己个人主要是想挂靠几个理念,1.云, 2.绿色IT, 3.技术革命, 4.成本, 5.高效率 </p>
<p>至于谁优谁劣倒是没说太多,只是想说云可以满足今后医疗信息系统的需求,当然目前来看可能国内还不太需要这个玩意,但是,相信经过一段时期发展,比如医生基本上都可以独立操作电脑,病患者可以独立操作IC卡读卡器,无人充值机,以及医院领导层对医院执行效率的提升的需求,另外是领导层对科技的倾向,软件正版化趋势(比如目前的产品采用盗版的话软件成本当然会低很多),</p>
<p>&#160;</p>
<p>心中构思的未来医院是:</p>
<p>先说门诊部:</p>
<p>1. 病人进入医院,有几位引导人员对看病流程做一个介绍,并且帮助不会使用无人挂号机的病人</p>
<p>2. 病人带着IC病历卡在门诊前台无人机挂号(类似目前地铁IC卡无人充值机默认),目的是解决医院挂号窗口少,队伍长排队的问题</p>
<p>3. 门诊医生在遇到病人的时候,拿病人的IC病历卡插入读卡器,在无盘工作站上登入云,针对病人病情做出诊断,然后把诊断情况存入云端数据库,比如需要进一步化验的话,可以请病人进一步化验</p>
<p>4. 病人拿着IC卡到化验处插卡,比如验血,化验部抽血病人即可离开,化验部门会通知病人几点几分到专用设备前查看结果</p>
<p>5. 化验部门把化验结果数据全部存入云端数据库,并且通知门诊医生,门诊医生在针对化验结果上做出自己的判断,比如开处方,比如再见面,比如化验其他项目</p>
<p>6. 待到几点几分的时候,病人带上IC卡可以在医院专用无人读卡设备前查询化验结果和门诊医生的意见or处方,可以打印结果,等等功能</p>
<p>7. 如果是处方的话,病人可以打印处方然后在外面药店自己买药,或者不打印处方,在医院内部联网的处方药窗口,递卡买药即可</p>
<p>住院部:</p>
<p>1. 医生不再拿着病历一个床一个床的看,直接弄台手持设备即可,比如ipad,比如各种table的笔记本</p>
<p>2. 各个病人有RFID tag,或者戴手腕上的条形码或者其他快捷识别方式,住院医生只需手持装置能够读取即可</p>
<p>3. 住院医生可根据病人状况,通过手持装置把数据写入云数据库</p>
<p>…………………</p>
<p>当然这些都是我不成熟的想法,可能很多就现实来说先决条件也许都是错误的, 我只是想来一个Brainstorm </p>
<p>最后,此文内容少许有保留,如果你想继续探讨,请留下你的看法与见解.</p>
<h3  class="related_post_title">相关博文</h3><ul class="related_post"><li>2008-10-14 -- <a href="http://jimey.com/2008/10/14/cloud-computing-forecast.html" title="Cloud Computing展望">Cloud Computing展望</a> (5)</li><li>2010-04-11 -- <a href="http://jimey.com/2010/04/11/after-a-section-of-a-bird-finishing-under-the-environment.html" title="过了一小节鸟,整理下周围环境">过了一小节鸟,整理下周围环境</a> (2)</li><li>2010-03-17 -- <a href="http://jimey.com/2010/03/17/weekly-meeting.html" title="每周例会">每周例会</a> (0)</li><li>2009-12-03 -- <a href="http://jimey.com/2009/12/03/south-korean-hospital-processes-may-not-be-common-examples-of.html" title="韩国医院看病流程 也许不是普遍事例">韩国医院看病流程 也许不是普遍事例</a> (0)</li><li>2009-03-25 -- <a href="http://jimey.com/2009/03/25/linux-server-clustered-hdfs-access-from-windows-eclipse-java-application.html" title="Linux server clustered HDFS: access from Windows eclipse Java application">Linux server clustered HDFS: access from Windows eclipse Java application</a> (0)</li><li>2009-03-06 -- <a href="http://jimey.com/2009/03/06/days-do-not-want-to-sleep-to-be-bright.html" title="天要亮了不想睡觉了">天要亮了不想睡觉了</a> (2)</li><li>2009-01-05 -- <a href="http://jimey.com/2009/01/05/ikunori-technology-news.html" title="几则科技新闻">几则科技新闻</a> (0)</li><li>2008-11-18 -- <a href="http://jimey.com/2008/11/18/cloud-computing-on-the-next-week-to-discuss-the-curriculum-some-of-the-ideas.html" title="关于下下周cloud computing讨论课程的一些想法">关于下下周cloud computing讨论课程的一些想法</a> (0)</li><li>2008-11-15 -- <a href="http://jimey.com/2008/11/15/laboratory-disorder-desktop.html" title="实验室的乱桌面">实验室的乱桌面</a> (0)</li><li>2008-09-15 -- <a href="http://jimey.com/2008/09/15/fat-point-toxic-food.html" title="发点有毒食品">发点有毒食品</a> (2)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://jimey.com/2010/04/12/cloud-of-medical-information-systems-immature-idea.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Marketing in Twitter</title>
		<link>http://jimey.com/2010/04/03/marketing-in-twitter.html</link>
		<comments>http://jimey.com/2010/04/03/marketing-in-twitter.html#comments</comments>
		<pubDate>Fri, 02 Apr 2010 18:56:04 +0000</pubDate>
		<dc:creator>jimey</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Echofon]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[SlideShare]]></category>
		<category><![CDATA[SXSW]]></category>
		<category><![CDATA[Tweet]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[分析]]></category>
		<category><![CDATA[惊讶]]></category>
		<category><![CDATA[诡异]]></category>
		<category><![CDATA[语义]]></category>
		<category><![CDATA[震撼]]></category>

		<guid isPermaLink="false">http://jimey.com/2010/04/03/marketing-in-twitter.html</guid>
		<description><![CDATA[之前对这方面也算有所了解,但是今天真真正正的被我撞到了,确实很惊讶,很震撼,有点迷茫有点觉得技术的力量是强大的,当然这都是我单反面猜测的结果.  我下午在twitter发了一条这个消息  哪位对#SXSW 2010这个会议有了解呢?能否大概介绍下今年都有啥闪光的? http://sxsw.com about 9 hours ago via Echofon  然后就刚刚...收到..... ]]></description>
			<content:encoded><![CDATA[<p>之前对这方面也算有所了解,但是今天真真正正的被我撞到了,确实很惊讶,很震撼,有点迷茫有点觉得技术的力量是强大的,当然这都是我单反面猜测的结果.</p>
<p>我下午在twitter发了一条这个消息</p>
<p>哪位对<a href="http://twitter.com/search?q=%23SXSW">#SXSW</a> 2010这个会议有了解呢?能否大概介绍下今年都有啥闪光的? <a href="http://sxsw.com">http://sxsw.com</a> <a href="http://twitter.com/jimey/status/11472364962">about 9 hours ago </a>via <a href="http://echofon.com/">Echofon</a></p>
<p>然后就刚刚&#8230;收到了slideshare的email</p>
<p>Dear jimeyren,   <br />We know not everyone can make it out to Austin for SXSW, so we&#8217;ve compiled as many SXSW presentations as possible. Hope you enjoy!    <br />Cheers,    <br />SlideShare Team</p>
<p>&#160;</p>
<p>&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;</p>
<p>我不能说这是巧合了.只能怀疑slideshare肯定语义分析了我今天发的tweets了,要不然不可能知道我想要找SXSW的资料啊,竟然给我发email提醒.忒诡异了</p>
<h3  class="related_post_title">相关博文</h3><ul class="related_post"><li>2010-04-22 -- <a href="http://jimey.com/2010/04/22/several-articles-on-twitter-hadoop-cassandra-pig-flockdbu002639s-slide.html" title="几篇关于twitter,hadoop,Cassandra,Pig,FlockDB的slide">几篇关于twitter,hadoop,Cassandra,Pig,FlockDB的slide</a> (0)</li><li>2009-12-26 -- <a href="http://jimey.com/2009/12/26/nateu002639s-twitter-business-model.html" title="NATE的twitter商业模式">NATE的twitter商业模式</a> (0)</li><li>2010-06-29 -- <a href="http://jimey.com/2010/06/29/%e4%b8%b4%e7%9d%a1%e5%89%8d%e5%8f%88%e8%a7%89%e5%be%97%e8%a6%81%e5%86%99%e7%82%b9%e4%bb%80%e4%b9%88.html" title="临睡前,又觉得要写点什么">临睡前,又觉得要写点什么</a> (0)</li><li>2010-05-05 -- <a href="http://jimey.com/2010/05/05/mocospace-architecture-3-billion-mobile-page-views-a-month.html" title="MocoSpace Architecture &#8211; 3 Billion Mobile Page Views a Month">MocoSpace Architecture &#8211; 3 Billion Mobile Page Views a Month</a> (0)</li><li>2010-04-01 -- <a href="http://jimey.com/2010/04/01/foolu002639s-day.html" title="愚人节">愚人节</a> (2)</li><li>2010-03-30 -- <a href="http://jimey.com/2010/03/30/the-garden-of-eden-subtitle-blog-station-uses-the-approach.html" title="伊甸园字幕博客站利用办法">伊甸园字幕博客站利用办法</a> (2)</li><li>2010-03-29 -- <a href="http://jimey.com/2010/03/29/the-subversion-of-traditional.html" title="传统的颠覆">传统的颠覆</a> (6)</li><li>2010-03-24 -- <a href="http://jimey.com/2010/03/24/twittersleepingtime.html" title="TwitterSleepingtime">TwitterSleepingtime</a> (0)</li><li>2009-12-25 -- <a href="http://jimey.com/2009/12/25/christmas-activities-laboratory-of-day-trips-special-offers.html" title="圣诞节活动：实验室一日游,特价优惠">圣诞节活动：实验室一日游,特价优惠</a> (0)</li><li>2009-12-25 -- <a href="http://jimey.com/2009/12/25/twitter-search-result-u0026gt-language-filter.html" title="twitter search result -&gt; language filter">twitter search result -&gt; language filter</a> (0)</li><li>2009-12-18 -- <a href="http://jimey.com/2009/12/18/twitter-rss-reminder.html" title="twitter rss 提醒">twitter rss 提醒</a> (0)</li><li>2009-12-18 -- <a href="http://jimey.com/2009/12/18/feedburner-to-be-more-social.html" title="feedburner &#8211; To be more social">feedburner &#8211; To be more social</a> (0)</li><li>2009-11-05 -- <a href="http://jimey.com/2009/11/05/flickr-pro-account-to-use-experience.html" title="Flickr Pro帐号使用经历">Flickr Pro帐号使用经历</a> (1)</li><li>2009-10-31 -- <a href="http://jimey.com/2009/10/31/to-continue-to-micro-blog-to-continue-to-sync-messages.html" title="继续微博客，继续同步消息">继续微博客，继续同步消息</a> (2)</li><li>2009-08-17 -- <a href="http://jimey.com/2009/08/17/too-long-and-i-did-not-write-a-blog-camera-u0026amp-monday.html" title="太久没写博客了&amp;周一照相">太久没写博客了&amp;周一照相</a> (4)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://jimey.com/2010/04/03/marketing-in-twitter.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>修复Lifestream时区设定</title>
		<link>http://jimey.com/2010/03/29/lifestream-repair-time-zone-settings.html</link>
		<comments>http://jimey.com/2010/03/29/lifestream-repair-time-zone-settings.html#comments</comments>
		<pubDate>Mon, 29 Mar 2010 11:53:09 +0000</pubDate>
		<dc:creator>jimey</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[GMT]]></category>
		<category><![CDATA[lifestream]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[timestamp]]></category>
		<category><![CDATA[timezone]]></category>
		<category><![CDATA[UTC]]></category>

		<guid isPermaLink="false">http://jimey.com/2010/03/29/%e4%bf%ae%e5%a4%8dlifestream%e6%97%b6%e5%8c%ba%e8%ae%be%e5%ae%9a.html</guid>
		<description><![CDATA[LifeStream作者为 David Cramer &#124; 访问插件主页  俺这是9时区设置,8时区的话,请自行修改   主要需要修改5个地方, today&#160; yesterday&#160; 以及下面3个timestam... ]]></description>
			<content:encoded><![CDATA[<p>LifeStream作者为 <a href="http://www.davidcramer.net">David Cramer </a>| <a href="http://www.enthropia.com/labs/wp-lifestream/">访问插件主页</a></p>
<p>俺这是9时区设置,8时区的话,请自行修改</p>
<p>修改lifestream\themes\default\main.inc.php</p>
<p>主要需要修改5个地方, today  yesterday  以及下面3个timestamp</p>
<p>[code lang="php"]</p>
<p>&lt;?php<br />
$day = '';<br />
if (count($events))<br />
{<br />
 $today = date('m d Y', time() - 54000);<br />
 $yesterday = date('m d Y', time() -140400);<br />
 if ($has_paging)<br />
 {<br />
 if ($has_prev_page) {<br />
 echo '&lt;p&gt;&lt;a href=&quot;' . $lifestream-&gt;get_previous_page_url($page) .</p>
<p>'&quot;&gt;Newer Entries&lt;/a&gt;&lt;/p&gt;';<br />
 }<br />
 }<br />
 ?&gt;<br />
 &lt;table&gt;<br />
 &lt;?php<br />
 foreach ($events as $event)<br />
 {<br />
 $timestamp = $event-&gt;get_date();<br />
 if ($today == date('m d Y', $timestamp -32400)) $this_day = $lifestream-&gt;__('Today');<br />
 else if ($yesterday == date('m d Y', $timestamp-32400)) $this_day = $lifestream-&gt;__('Yesterday');<br />
 else $this_day = $lifestream-&gt;__(ucfirst(htmlentities(date($lifestream-&gt;get_option('day_format'),</p>
<p>$timestamp-82400))));<br />
 if ($day != $this_day)<br />
 {<br />
 ?&gt;<br />
 &lt;tr&gt;<br />
 &lt;th colspan=&quot;2&quot;&gt;<br />
 &lt;h2&gt;&lt;?php echo $this_day; ?&gt;&lt;/h2&gt;<br />
 &lt;/th&gt;<br />
 &lt;/tr&gt;<br />
 &lt;?php<br />
 $day = $this_day;<br />
}<br />
..............<br />
[/code]</p>
<h3  class="related_post_title">相关博文</h3><ul class="related_post"><li>2009-11-04 -- <a href="http://jimey.com/2009/11/04/9-years-a-number-of-pp.html" title="9年间的一些pp">9年间的一些pp</a> (8)</li><li>2009-10-22 -- <a href="http://jimey.com/2009/10/22/to-edit-your-blog-code-changed-10-hours-naveru002639s-airview.html" title="修改博客代码改了10个小时+Naver的airview">修改博客代码改了10个小时+Naver的airview</a> (0)</li><li>2009-10-21 -- <a href="http://jimey.com/2009/10/21/wordpress-lifestream-plugin.html" title="WordPress Lifestream 插件">WordPress Lifestream 插件</a> (0)</li><li>2009-01-21 -- <a href="http://jimey.com/2009/01/21/weekend-project-host-your-own-web-services.html" title="Weekend Project: Host Your Own Web Services">Weekend Project: Host Your Own Web Services</a> (0)</li><li>2008-12-11 -- <a href="http://jimey.com/2008/12/11/u0026quot10-11u0026quot.html" title="&lt;10号11号&gt;">&lt;10号11号&gt;</a> (0)</li><li>2008-10-22 -- <a href="http://jimey.com/2008/10/22/schedule-hodgepodge-of-things-that-the-north-south.html" title="杂七杂八的日程计划东西南北">杂七杂八的日程计划东西南北</a> (4)</li><li>2008-09-20 -- <a href="http://jimey.com/2008/09/20/the-concept-of-a-new-lifestream.html" title="一个新的lifestream概念">一个新的lifestream概念</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://jimey.com/2010/03/29/lifestream-repair-time-zone-settings.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>纯idea 时间流+空间流</title>
		<link>http://jimey.com/2010/03/29/idea-of-pure-space-time-stream-flow.html</link>
		<comments>http://jimey.com/2010/03/29/idea-of-pure-space-time-stream-flow.html#comments</comments>
		<pubDate>Mon, 29 Mar 2010 06:16:28 +0000</pubDate>
		<dc:creator>jimey</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Other]]></category>
		<category><![CDATA[foursquare]]></category>
		<category><![CDATA[GPS]]></category>
		<category><![CDATA[SNS]]></category>
		<category><![CDATA[Spaceline]]></category>
		<category><![CDATA[Timeline]]></category>
		<category><![CDATA[产品]]></category>

		<guid isPermaLink="false">http://jimey.com/2010/03/29/%e7%ba%afidea-%e6%97%b6%e9%97%b4%e6%b5%81%e7%a9%ba%e9%97%b4%e6%b5%81.html</guid>
		<description><![CDATA[有foursquare这样的空间流应用  具体可以查看http://foursquare.com/  不知道能否有个timeline+spaceline 的应用?  即:记录每天24小时,在什么地方待了多久,在什么地方待了多久 如此记录下每天的行程  虽然对于个人隐私来讲,这些数据不便公开,但是就好比车载gps一样,来一个人载gps记录下自己每天的行程  犹如目前已有的记录自..... ]]></description>
			<content:encoded><![CDATA[<p>有foursquare这样的空间流应用</p>
<p>具体可以查看<a title="http://foursquare.com/" href="http://foursquare.com/">http://foursquare.com/</a></p>
<p>不知道能否有个timeline+spaceline 的应用?</p>
<p>即:记录每天24小时,在什么地方待了多久,在什么地方待了多久 如此记录下每天的行程</p>
<p>虽然对于个人隐私来讲,这些数据不便公开,但是就好比车载gps一样,来一个人载gps记录下自己每天的行程</p>
<p>犹如目前已有的记录自己每天做什么事情的录像记录模式一样,其实待今后退休,闲暇的时候均可以翻出来回忆</p>
<p>随着越来越繁忙的生活,越来越没办法闲暇来记录自己的点点滴滴的时候 在如此越来越开放如此越来越没隐私的社会,也许将会有如此产品推出吧?</p>
<h3  class="related_post_title">相关博文</h3><ul class="related_post"><li>2010-03-10 -- <a href="http://jimey.com/2010/03/10/snow-great-snow.html" title="雪,很大的雪">雪,很大的雪</a> (3)</li><li>2009-12-26 -- <a href="http://jimey.com/2009/12/26/nateu002639s-twitter-business-model.html" title="NATE的twitter商业模式">NATE的twitter商业模式</a> (0)</li><li>2008-09-04 -- <a href="http://jimey.com/2008/09/04/cloud-computing-first-class-discussion-online-and-offline-counter-productive-anonymous.html" title="Cloud Computing第一节课讨论：网上和网下的反作用：匿名性">Cloud Computing第一节课讨论：网上和网下的反作用：匿名性</a> (1)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://jimey.com/2010/03/29/idea-of-pure-space-time-stream-flow.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>数字化移动化乞丐的思考</title>
		<link>http://jimey.com/2009/12/27/digital-mobile-beggars-thinking.html</link>
		<comments>http://jimey.com/2009/12/27/digital-mobile-beggars-thinking.html#comments</comments>
		<pubDate>Sun, 27 Dec 2009 03:53:17 +0000</pubDate>
		<dc:creator>jimey</dc:creator>
				<category><![CDATA[Other]]></category>
		<category><![CDATA[放心情]]></category>
		<category><![CDATA[AI]]></category>
		<category><![CDATA[RFID]]></category>
		<category><![CDATA[乞丐]]></category>
		<category><![CDATA[平板电脑]]></category>
		<category><![CDATA[数字化]]></category>
		<category><![CDATA[机器识别]]></category>
		<category><![CDATA[网上交易]]></category>

		<guid isPermaLink="false">http://jimey.com/2009/12/27/%e6%95%b0%e5%ad%97%e5%8c%96%e7%a7%bb%e5%8a%a8%e5%8c%96%e4%b9%9e%e4%b8%90%e7%9a%84%e6%80%9d%e8%80%83.html</guid>
		<description><![CDATA[早上躺床上无聊，想来想去，不知道怎么想到这儿去了     也许是前2天在网上看到这个图？  &#160;  我在想着，以后大家在街上要饭，直接丢个显示屏在前面，显示当前讨了多少钱  当然，这个显示多少钱是跟网上交易账号挂钩的，比如绑定个支付宝账号呀，绑定个paypal啊(让国际友人也有机会给钱嘛)  另外也不要要这个纸板了，直..... ]]></description>
			<content:encoded><![CDATA[<p>早上躺床上无聊，想来想去，不知道怎么想到这儿去了</p>
<p><img src="http://farm3.static.flickr.com/2555/4217932176_a1f3a951d4_o.jpg" /> </p>
<p>也许是前2天在网上看到这个图？</p>
<p>&#160;</p>
<p>我在想着，以后大家在街上要饭，直接丢个显示屏在前面，显示当前讨了多少钱</p>
<p>当然，这个显示多少钱是跟网上交易账号挂钩的，比如绑定个支付宝账号呀，绑定个paypal啊(让国际友人也有机会给钱嘛)</p>
<p>另外也不要要这个纸板了，直接弄个平板电脑丢前面，滚动显示多好，内容又丰富精彩，还可以自定制，再加个摄像头，自动对过路行人进行外貌分析。</p>
<p>比如看到要走来一个小妞，那么就显示卡哇伊点的文字风格</p>
<p>比如看到对面走来一老外，那么内容就显示英文嘛&#160; lol 要不然谁看得懂中文</p>
<p>&#160;</p>
<p>然后路过的行人们，想给钱的，利用RFID技术，直接拿出自己的手机(无线手持装置)，输入个价钱，对着这人的接收装置，直接按个回车就可以走人了嘛，也不用翻翻自己钱包有没零钱，省时又省事。</p>
<p>……………………………………………………………………</p>
<p>另外再来点中国特色，每个乞丐都要去当地部门登记，才可以领取比如RFID识别，或者是全球唯一IPv6地址认定。这样可以保证乞讨事实的真实可靠性，当然这些都是要靠管理部门的信誉来保证了……后话不提</p>
<h3  class="related_post_title">相关博文</h3><ul class="related_post"><li>2009-03-23 -- <a href="http://jimey.com/2009/03/23/ai_ai.html" title="AI_AI">AI_AI</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://jimey.com/2009/12/27/digital-mobile-beggars-thinking.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>NATE的twitter商业模式</title>
		<link>http://jimey.com/2009/12/26/nateu002639s-twitter-business-model.html</link>
		<comments>http://jimey.com/2009/12/26/nateu002639s-twitter-business-model.html#comments</comments>
		<pubDate>Sat, 26 Dec 2009 09:45:25 +0000</pubDate>
		<dc:creator>jimey</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[hantweet]]></category>
		<category><![CDATA[KT]]></category>
		<category><![CDATA[LGT]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Nate]]></category>
		<category><![CDATA[NateOn]]></category>
		<category><![CDATA[SKT]]></category>
		<category><![CDATA[SNS]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://jimey.com/2009/12/26/nate%e7%9a%84twitter%e5%95%86%e4%b8%9a%e6%a8%a1%e5%bc%8f.html</guid>
		<description><![CDATA[NATE就好比中国国内的移动梦网  韩国最大的手机通信商SK开设的服务  之前一直不知道  http://twitter.com/natetweeting  今天在twitter上收到RT才发现  @tweeting_event: [트위팅 고객님이라면 모두 받으세요!] 스타벅스까페라떼 100%당첨 + 이 글을 RT하면 Sony VAIO 넷북,햅틱 아몰레드폰까지~ http://j.mp/4TbI97  基本上..... ]]></description>
			<content:encoded><![CDATA[<p>NATE就好比中国国内的移动梦网</p>
<p>韩国最大的手机通信商SK开设的服务</p>
<p>之前一直不知道</p>
<p><a title="http://twitter.com/natetweeting" href="http://twitter.com/natetweeting">http://twitter.com/natetweeting</a></p>
<p>今天在twitter上收到RT才发现</p>
<p>@<a href="http://twitter.com/tweeting_event">tweeting_event</a>: [트위팅 고객님이라면 모두 받으세요!] 스타벅스까페라떼 100%당첨 + 이 글을 RT하면 Sony VAIO 넷북,햅틱 아몰레드폰까지~ <a href="http://j.mp/4TbI97">http://j.mp/4TbI97</a></p>
<p>基本上就是勾引人加入NATE提供的twitter服务，然后给点小奖励与优惠</p>
<p>加入了以后</p>
<p>有一个月300条免费往手机上发送的功能，就是读取你twitter上的消息发送给你</p>
<p>1.全部好友</p>
<p>2.部分好友</p>
<p>3.关闭好友</p>
<p>4.只发@自己的</p>
<p>5.发送时间段设置</p>
<p>6.暂时关闭这个功能</p>
<p>&#160;</p>
<p>当然也给了一个号码可以往twitter上发</p>
<p>*1234 这个号码即可</p>
<p>&#160;</p>
<p>另外</p>
<p><a href="http://hantweet.com/">http://hantweet.com/</a></p>
<p>看来这个服务要……被取代了。不过LGT和KT还可以用这个服务应该</p>
<p>……………………………………………………………………</p>
<p>SKT NATE目前不足之处</p>
<p>1.twitter 认证采用id &amp; pw, 没采用目前流行的Oauth方式……</p>
<p>2.还没在twitter上申请自己的API地址…默认还是API方式，这个比较丑…</p>
<p>&#160;</p>
<p>优势：</p>
<p>1.目前一个月300条免费发送到手机上，发送的消息都是abstract,如果想看全文，需要在手机登录NATE，那都是要给钱的……流量费啊流量费……钱就是这么赚出来了</p>
<p>2.hantweet 如果要收消息，也是要给钱的，</p>
<p>包月制：</p>
<ul>
<li>4900원/월</li>
<li>월 최대 200건까지 한트윗의 답글과 DM을 전달해줍니다</li>
</ul>
<p>&#160;</p>
<ul>
<li>9900원/월</li>
<li>월 최대 500건까지 한트윗의 답글과 DM을 전달해줍니다. </li>
</ul>
<p>按条：</p>
<ul>
<li>3300원 </li>
<li>토큰 100개를 구입합니다. </li>
</ul>
<p>100条3300&#160; 200条6600&#160; 300条9900这样</p>
<p>……………………………………………………………………………………</p>
<h3  class="related_post_title">相关博文</h3><ul class="related_post"><li>2010-04-03 -- <a href="http://jimey.com/2010/04/03/marketing-in-twitter.html" title="Marketing in Twitter">Marketing in Twitter</a> (0)</li><li>2009-03-07 -- <a href="http://jimey.com/2009/03/07/life-hanging-net.html" title="挂网人生">挂网人生</a> (2)</li><li>2010-06-30 -- <a href="http://jimey.com/2010/06/30/%e9%9f%a9%e5%9b%bdskt%e6%89%8b%e6%9c%ba%e6%8d%a2%e5%90%8d.html" title="韩国SKT手机换名">韩国SKT手机换名</a> (0)</li><li>2010-05-05 -- <a href="http://jimey.com/2010/05/05/mocospace-architecture-3-billion-mobile-page-views-a-month.html" title="MocoSpace Architecture &#8211; 3 Billion Mobile Page Views a Month">MocoSpace Architecture &#8211; 3 Billion Mobile Page Views a Month</a> (0)</li><li>2010-04-22 -- <a href="http://jimey.com/2010/04/22/several-articles-on-twitter-hadoop-cassandra-pig-flockdbu002639s-slide.html" title="几篇关于twitter,hadoop,Cassandra,Pig,FlockDB的slide">几篇关于twitter,hadoop,Cassandra,Pig,FlockDB的slide</a> (0)</li><li>2010-04-01 -- <a href="http://jimey.com/2010/04/01/foolu002639s-day.html" title="愚人节">愚人节</a> (2)</li><li>2010-03-30 -- <a href="http://jimey.com/2010/03/30/the-garden-of-eden-subtitle-blog-station-uses-the-approach.html" title="伊甸园字幕博客站利用办法">伊甸园字幕博客站利用办法</a> (2)</li><li>2010-03-29 -- <a href="http://jimey.com/2010/03/29/idea-of-pure-space-time-stream-flow.html" title="纯idea 时间流+空间流">纯idea 时间流+空间流</a> (1)</li><li>2010-03-24 -- <a href="http://jimey.com/2010/03/24/twittersleepingtime.html" title="TwitterSleepingtime">TwitterSleepingtime</a> (0)</li><li>2009-12-25 -- <a href="http://jimey.com/2009/12/25/twitter-search-result-u0026gt-language-filter.html" title="twitter search result -&gt; language filter">twitter search result -&gt; language filter</a> (0)</li><li>2009-12-18 -- <a href="http://jimey.com/2009/12/18/twitter-rss-reminder.html" title="twitter rss 提醒">twitter rss 提醒</a> (0)</li><li>2009-12-18 -- <a href="http://jimey.com/2009/12/18/feedburner-to-be-more-social.html" title="feedburner &#8211; To be more social">feedburner &#8211; To be more social</a> (0)</li><li>2009-11-08 -- <a href="http://jimey.com/2009/11/08/nate-on-a-new-feature-or-i-had-not-found-the-function.html" title="NATE ON 某新功能?or 我以前没发现的功能">NATE ON 某新功能?or 我以前没发现的功能</a> (1)</li><li>2009-11-05 -- <a href="http://jimey.com/2009/11/05/flickr-pro-account-to-use-experience.html" title="Flickr Pro帐号使用经历">Flickr Pro帐号使用经历</a> (1)</li><li>2009-10-31 -- <a href="http://jimey.com/2009/10/31/to-continue-to-micro-blog-to-continue-to-sync-messages.html" title="继续微博客，继续同步消息">继续微博客，继续同步消息</a> (2)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://jimey.com/2009/12/26/nateu002639s-twitter-business-model.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>twitter search result -&gt; language filter</title>
		<link>http://jimey.com/2009/12/25/twitter-search-result-u0026gt-language-filter.html</link>
		<comments>http://jimey.com/2009/12/25/twitter-search-result-u0026gt-language-filter.html#comments</comments>
		<pubDate>Thu, 24 Dec 2009 18:45:35 +0000</pubDate>
		<dc:creator>jimey</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[filter]]></category>
		<category><![CDATA[language]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://jimey.com/2009/12/25/twitter-search-result-language-filter.html</guid>
		<description><![CDATA[   &#160;  没中文，没韩语  泰国语都有- -&#160; 难道twitter有泰国的员工... ]]></description>
			<content:encoded><![CDATA[<p><img src="http://farm3.static.flickr.com/2609/4211675592_13d2a2a73a_o.jpg" /> </p>
<p>&#160;</p>
<p>没中文，没韩语</p>
<p>泰国语都有- -&#160; 难道twitter有泰国的员工？</p>
<h3  class="related_post_title">相关博文</h3><ul class="related_post"><li>2009-03-23 -- <a href="http://jimey.com/2009/03/23/information-retrieval-course-2-weeks-to-a-summary-of.html" title="Information Retrieval 课程2周来的总结">Information Retrieval 课程2周来的总结</a> (0)</li><li>2009-01-21 -- <a href="http://jimey.com/2009/01/21/sorry-google-you-missed-the-real-time-web.html" title="Sorry Google, You Missed the Real-Time Web!">Sorry Google, You Missed the Real-Time Web!</a> (0)</li><li>2008-12-14 -- <a href="http://jimey.com/2008/12/14/this-is-a-two-day-subscription-rss-feedback.html" title="这两天订阅的RSS的一个信息反馈">这两天订阅的RSS的一个信息反馈</a> (0)</li><li>2010-05-05 -- <a href="http://jimey.com/2010/05/05/mocospace-architecture-3-billion-mobile-page-views-a-month.html" title="MocoSpace Architecture &#8211; 3 Billion Mobile Page Views a Month">MocoSpace Architecture &#8211; 3 Billion Mobile Page Views a Month</a> (0)</li><li>2010-04-22 -- <a href="http://jimey.com/2010/04/22/several-articles-on-twitter-hadoop-cassandra-pig-flockdbu002639s-slide.html" title="几篇关于twitter,hadoop,Cassandra,Pig,FlockDB的slide">几篇关于twitter,hadoop,Cassandra,Pig,FlockDB的slide</a> (0)</li><li>2010-04-03 -- <a href="http://jimey.com/2010/04/03/marketing-in-twitter.html" title="Marketing in Twitter">Marketing in Twitter</a> (0)</li><li>2010-04-01 -- <a href="http://jimey.com/2010/04/01/foolu002639s-day.html" title="愚人节">愚人节</a> (2)</li><li>2010-03-30 -- <a href="http://jimey.com/2010/03/30/the-garden-of-eden-subtitle-blog-station-uses-the-approach.html" title="伊甸园字幕博客站利用办法">伊甸园字幕博客站利用办法</a> (2)</li><li>2010-03-24 -- <a href="http://jimey.com/2010/03/24/twittersleepingtime.html" title="TwitterSleepingtime">TwitterSleepingtime</a> (0)</li><li>2009-12-26 -- <a href="http://jimey.com/2009/12/26/nateu002639s-twitter-business-model.html" title="NATE的twitter商业模式">NATE的twitter商业模式</a> (0)</li><li>2009-12-18 -- <a href="http://jimey.com/2009/12/18/twitter-rss-reminder.html" title="twitter rss 提醒">twitter rss 提醒</a> (0)</li><li>2009-12-18 -- <a href="http://jimey.com/2009/12/18/feedburner-to-be-more-social.html" title="feedburner &#8211; To be more social">feedburner &#8211; To be more social</a> (0)</li><li>2009-11-13 -- <a href="http://jimey.com/2009/11/13/firefox-ubiquity-use-scholar-and-shooter-of-the-two-search-commands.html" title="Firefox.Ubiquity 用的scholar和shooter的2个搜索的命令">Firefox.Ubiquity 用的scholar和shooter的2个搜索的命令</a> (0)</li><li>2009-11-05 -- <a href="http://jimey.com/2009/11/05/flickr-pro-account-to-use-experience.html" title="Flickr Pro帐号使用经历">Flickr Pro帐号使用经历</a> (1)</li><li>2009-10-31 -- <a href="http://jimey.com/2009/10/31/to-continue-to-micro-blog-to-continue-to-sync-messages.html" title="继续微博客，继续同步消息">继续微博客，继续同步消息</a> (2)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://jimey.com/2009/12/25/twitter-search-result-u0026gt-language-filter.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>twitter rss 提醒</title>
		<link>http://jimey.com/2009/12/18/twitter-rss-reminder.html</link>
		<comments>http://jimey.com/2009/12/18/twitter-rss-reminder.html#comments</comments>
		<pubDate>Fri, 18 Dec 2009 12:23:04 +0000</pubDate>
		<dc:creator>jimey</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[feedburner]]></category>
		<category><![CDATA[monitor]]></category>
		<category><![CDATA[rss]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Twitterfead]]></category>
		<category><![CDATA[提醒]]></category>

		<guid isPermaLink="false">http://jimey.com/2009/12/18/twitter-rss-%e6%8f%90%e9%86%92.html</guid>
		<description><![CDATA[今天话比较多，所以博客发的也比较多 - - 希望不会骚扰到太多人  这篇内容是关于，如何利用twitter来做monitor  基本上本人目前都是用twitter来监控，比如我的博客评论，比如我msn live空间的评论，比如某些人在网上的一些行为，只要有rss，就可以用twitter来干这个监控！  之前我是用twitterfeed的，不过这2天全部改成feed..... ]]></description>
			<content:encoded><![CDATA[<p>今天话比较多，所以博客发的也比较多 &#8211; - 希望不会骚扰到太多人</p>
<p>这篇内容是关于，如何利用twitter来做monitor</p>
<p>基本上本人目前都是用twitter来监控，比如我的博客评论，比如我msn live空间的评论，比如某些人在网上的一些行为，只要有rss，就可以用twitter来干这个监控！</p>
<p>之前我是用twitterfeed的，不过这2天全部改成feedburner了，大同小异</p>
<p>在这里我只说方法</p>
<p>&#160;</p>
<p>比如：我的博客评论</p>
<p>我是另外申请了个twitter的小号来做监控，抓取我博客评论的rss来自动发消息到twitter上，但是发消息的时候，加一个 @jimey的前缀 ，这样我在看我主号jimey的@的时候，就可以看到消息了。这样不会错过消息。</p>
<p>其他类似都可以采用如此办法</p>
<h3  class="related_post_title">相关博文</h3><ul class="related_post"><li>2009-12-18 -- <a href="http://jimey.com/2009/12/18/feedburner-to-be-more-social.html" title="feedburner &#8211; To be more social">feedburner &#8211; To be more social</a> (0)</li><li>2010-03-30 -- <a href="http://jimey.com/2010/03/30/the-garden-of-eden-subtitle-blog-station-uses-the-approach.html" title="伊甸园字幕博客站利用办法">伊甸园字幕博客站利用办法</a> (2)</li><li>2009-10-31 -- <a href="http://jimey.com/2009/10/31/to-continue-to-micro-blog-to-continue-to-sync-messages.html" title="继续微博客，继续同步消息">继续微博客，继续同步消息</a> (2)</li><li>2009-03-27 -- <a href="http://jimey.com/2009/03/27/comments-to-open-real-time-twitter-to-remind-self-propelled.html" title="评论开启实时twitter自推提醒">评论开启实时twitter自推提醒</a> (0)</li><li>2009-03-16 -- <a href="http://jimey.com/2009/03/16/web-2-0-era-sfile-development-outlook.html" title="web 2.0时代的sfile发展展望">web 2.0时代的sfile发展展望</a> (0)</li><li>2009-02-01 -- <a href="http://jimey.com/2009/02/01/wanted-to-terms-u0026amp.html" title="很想写点什么">很想写点什么</a> (0)</li><li>2010-05-05 -- <a href="http://jimey.com/2010/05/05/mocospace-architecture-3-billion-mobile-page-views-a-month.html" title="MocoSpace Architecture &#8211; 3 Billion Mobile Page Views a Month">MocoSpace Architecture &#8211; 3 Billion Mobile Page Views a Month</a> (0)</li><li>2010-04-22 -- <a href="http://jimey.com/2010/04/22/several-articles-on-twitter-hadoop-cassandra-pig-flockdbu002639s-slide.html" title="几篇关于twitter,hadoop,Cassandra,Pig,FlockDB的slide">几篇关于twitter,hadoop,Cassandra,Pig,FlockDB的slide</a> (0)</li><li>2010-04-03 -- <a href="http://jimey.com/2010/04/03/marketing-in-twitter.html" title="Marketing in Twitter">Marketing in Twitter</a> (0)</li><li>2010-04-01 -- <a href="http://jimey.com/2010/04/01/foolu002639s-day.html" title="愚人节">愚人节</a> (2)</li><li>2010-03-24 -- <a href="http://jimey.com/2010/03/24/twittersleepingtime.html" title="TwitterSleepingtime">TwitterSleepingtime</a> (0)</li><li>2009-12-26 -- <a href="http://jimey.com/2009/12/26/nateu002639s-twitter-business-model.html" title="NATE的twitter商业模式">NATE的twitter商业模式</a> (0)</li><li>2009-12-25 -- <a href="http://jimey.com/2009/12/25/twitter-search-result-u0026gt-language-filter.html" title="twitter search result -&gt; language filter">twitter search result -&gt; language filter</a> (0)</li><li>2009-11-12 -- <a href="http://jimey.com/2009/11/12/utorrent-support-the-garden-of-eden-bt-software-bt-download-station-resources-u0026quotautomaticu0026quot-download-tutorial.html" title="bt软件uTorrent支持伊甸园bt下载站资源&ldquo;全自动&rdquo;下载教程">bt软件uTorrent支持伊甸园bt下载站资源&ldquo;全自动&rdquo;下载教程</a> (0)</li><li>2009-11-05 -- <a href="http://jimey.com/2009/11/05/flickr-pro-account-to-use-experience.html" title="Flickr Pro帐号使用经历">Flickr Pro帐号使用经历</a> (1)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://jimey.com/2009/12/18/twitter-rss-reminder.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>feedburner &#8211; To be more social</title>
		<link>http://jimey.com/2009/12/18/feedburner-to-be-more-social.html</link>
		<comments>http://jimey.com/2009/12/18/feedburner-to-be-more-social.html#comments</comments>
		<pubDate>Fri, 18 Dec 2009 12:09:12 +0000</pubDate>
		<dc:creator>jimey</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[feedburner]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[pubsubhubbub]]></category>
		<category><![CDATA[Rss2twitter]]></category>
		<category><![CDATA[short url]]></category>
		<category><![CDATA[Social]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Twitterfead]]></category>
		<category><![CDATA[web analysis]]></category>

		<guid isPermaLink="false">http://jimey.com/2009/12/18/feedburner-to-be-more-social.html</guid>
		<description><![CDATA[数据为王，google又一次胜利了  收购了feedburner，等于拿到了源  而这次，12.14 feedburner宣布支持在twitter上同步rss更新的时候，也就是提供与twitterfeed rss2twitter 等一些网站功能完全一致的服务的时候  我就知道google 又要胜利了  由于当时已经是韩国时间12.15了 我要准备去首尔，所以没怎么来得及测试  只是匆匆的..... ]]></description>
			<content:encoded><![CDATA[<p>数据为王，google又一次胜利了</p>
<p>收购了feedburner，等于拿到了源</p>
<p>而这次，12.14 feedburner宣布支持在twitter上同步rss更新的时候，也就是提供与twitterfeed rss2twitter 等一些网站功能完全一致的服务的时候</p>
<p>我就知道google 又要胜利了</p>
<p>由于当时已经是韩国时间12.15了 我要准备去首尔，所以没怎么来得及测试</p>
<p>只是匆匆的把其中一个博客评论监控的功能加了一下，就闪人了</p>
<p>后来17号在首尔看到，这个feedburner的发布twitter功能，要比twitterfeed快2个小时。这个时候我才真真正正的明白，google的服务器力量是强大的</p>
<p>当然<a href="http://jimey.com/tag/pubsubhubbub" class="st_tag internal_tag" rel="tag" title="Posts tagged with pubsubhubbub">pubsubhubbub</a> 这项google原创的技术google自己在自己的服务上应用起来也是得心应手的</p>
<p>而google新开启的短域名服务<a href="http://goo.gl">http://goo.gl</a>&#160; 则也是完全的市场布局</p>
<p>&#160;</p>
<p>feedburner的高效服务，会把大家从twitterfeed或者rss2twitter的应用上拉走 造成的后果</p>
<p>1.feedburner用户的增加</p>
<p>2.很多原生的rss本来在twitterfeed, rss2twitter上是可以直接用的，而这里就不得不先要burn下才可以使用了，增加了google收集的信息量</p>
<p>3.短域名服务<a href="http://goo.gl">http://goo.gl</a> 对于连接点击的跟踪，从而也可以更加好的进行 web analysis</p>
<p>&#160;</p>
<p>把数据都掌握在自己手中，依然是google的一贯风格，而广大消费者，面对着这高速的服务，基本上无间隔就会post到twitter上的高效，都会忍不住转到feedburner来。这也许是大家双赢的结局。而最终悲惨出局的，还是twitterfeed和rss2twitter等这些小型服务提供商。。</p>
<h3  class="related_post_title">相关博文</h3><ul class="related_post"><li>2009-12-18 -- <a href="http://jimey.com/2009/12/18/twitter-rss-reminder.html" title="twitter rss 提醒">twitter rss 提醒</a> (0)</li><li>2010-03-30 -- <a href="http://jimey.com/2010/03/30/the-garden-of-eden-subtitle-blog-station-uses-the-approach.html" title="伊甸园字幕博客站利用办法">伊甸园字幕博客站利用办法</a> (2)</li><li>2009-10-31 -- <a href="http://jimey.com/2009/10/31/to-continue-to-micro-blog-to-continue-to-sync-messages.html" title="继续微博客，继续同步消息">继续微博客，继续同步消息</a> (2)</li><li>2009-10-23 -- <a href="http://jimey.com/2009/10/23/read-the-paper-scaling-online-social-networks-without-pains.html" title="阅读paper:Scaling Online Social Networks without Pains">阅读paper:Scaling Online Social Networks without Pains</a> (0)</li><li>2009-03-16 -- <a href="http://jimey.com/2009/03/16/web-2-0-era-sfile-development-outlook.html" title="web 2.0时代的sfile发展展望">web 2.0时代的sfile发展展望</a> (0)</li><li>2008-12-14 -- <a href="http://jimey.com/2008/12/14/this-is-a-two-day-subscription-rss-feedback.html" title="这两天订阅的RSS的一个信息反馈">这两天订阅的RSS的一个信息反馈</a> (0)</li><li>2010-05-05 -- <a href="http://jimey.com/2010/05/05/mocospace-architecture-3-billion-mobile-page-views-a-month.html" title="MocoSpace Architecture &#8211; 3 Billion Mobile Page Views a Month">MocoSpace Architecture &#8211; 3 Billion Mobile Page Views a Month</a> (0)</li><li>2010-04-22 -- <a href="http://jimey.com/2010/04/22/several-articles-on-twitter-hadoop-cassandra-pig-flockdbu002639s-slide.html" title="几篇关于twitter,hadoop,Cassandra,Pig,FlockDB的slide">几篇关于twitter,hadoop,Cassandra,Pig,FlockDB的slide</a> (0)</li><li>2010-04-03 -- <a href="http://jimey.com/2010/04/03/marketing-in-twitter.html" title="Marketing in Twitter">Marketing in Twitter</a> (0)</li><li>2010-04-01 -- <a href="http://jimey.com/2010/04/01/foolu002639s-day.html" title="愚人节">愚人节</a> (2)</li><li>2010-03-24 -- <a href="http://jimey.com/2010/03/24/twittersleepingtime.html" title="TwitterSleepingtime">TwitterSleepingtime</a> (0)</li><li>2009-12-26 -- <a href="http://jimey.com/2009/12/26/nateu002639s-twitter-business-model.html" title="NATE的twitter商业模式">NATE的twitter商业模式</a> (0)</li><li>2009-12-25 -- <a href="http://jimey.com/2009/12/25/twitter-search-result-u0026gt-language-filter.html" title="twitter search result -&gt; language filter">twitter search result -&gt; language filter</a> (0)</li><li>2009-11-05 -- <a href="http://jimey.com/2009/11/05/flickr-pro-account-to-use-experience.html" title="Flickr Pro帐号使用经历">Flickr Pro帐号使用经历</a> (1)</li><li>2009-10-09 -- <a href="http://jimey.com/2009/10/09/compiled-hadoop-version-eclipse-plugin-jar-and-hadoop-0-20-1-eclipse-plugin-jar-download.html" title="编译hadoop-${version}-eclipse-plugin.jar and hadoop-0.20.1-eclipse-plugin.jar download">编译hadoop-${version}-eclipse-plugin.jar and hadoop-0.20.1-eclipse-plugin.jar download</a> (3)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://jimey.com/2009/12/18/feedburner-to-be-more-social.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Karmasphere Studio for Hadoop</title>
		<link>http://jimey.com/2009/12/02/karmasphere-studio-for-hadoop.html</link>
		<comments>http://jimey.com/2009/12/02/karmasphere-studio-for-hadoop.html#comments</comments>
		<pubDate>Wed, 02 Dec 2009 06:21:42 +0000</pubDate>
		<dc:creator>jimey</dc:creator>
				<category><![CDATA[Cloud Computing]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Cluster]]></category>
		<category><![CDATA[graphical]]></category>
		<category><![CDATA[hadoop]]></category>
		<category><![CDATA[IDE]]></category>
		<category><![CDATA[Karmasphere]]></category>
		<category><![CDATA[MapReduce]]></category>
		<category><![CDATA[NetBeans]]></category>

		<guid isPermaLink="false">http://jimey.com/2009/12/02/karmasphere-studio-for-hadoop.html</guid>
		<description><![CDATA[Karmasphere Studio for Hadoop is a    MapReduce development environment (IDE) based on NetBeans. It enables you to rapidly prototype MapReduce jobs without the need for a cluster, and to deploy, monitor and debug jobs on Hadoop clusters or Amazon Elastic MapReduce clusters, all from within a graphic..... ]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.hadoopstudio.org/screenshots/composite-0.png"><img src="http://www.hadoopstudio.org/screenshots/composite-0-s.png" alt="Sample screenshot" width="350" height="241" /></a><a href="http://www.hadoopstudio.org/screenshots/composite-0.png"> </a></p>
<p>Karmasphere Studio for Hadoop is a <a href="http://en.wikipedia.org/wiki/MapReduce">MapReduce</a> development environment (<a href="http://jimey.com/tag/ide" class="st_tag internal_tag" rel="tag" title="Posts tagged with IDE">IDE</a>) based on NetBeans. It enables you to rapidly prototype MapReduce jobs without the need for a cluster, and to deploy, monitor and debug jobs on Hadoop clusters or Amazon Elastic MapReduce clusters, all from within a graphical desktop <a href="http://jimey.com/tag/ide" class="st_tag internal_tag" rel="tag" title="Posts tagged with IDE">IDE</a>.</p>
<h3  class="related_post_title">相关博文</h3><ul class="related_post"><li>2008-11-10 -- <a href="http://jimey.com/2008/11/10/another-week-passed-and-concluded.html" title="又一周过去了，总结">又一周过去了，总结</a> (0)</li><li>2008-11-10 -- <a href="http://jimey.com/2008/11/10/cluster-configuration-with-hadoop-introduction.html" title="Hadoop用cluster配置简介">Hadoop用cluster配置简介</a> (1)</li><li>2008-11-18 -- <a href="http://jimey.com/2008/11/18/cloud-computing-on-the-next-week-to-discuss-the-curriculum-some-of-the-ideas.html" title="关于下下周cloud computing讨论课程的一些想法">关于下下周cloud computing讨论课程的一些想法</a> (0)</li><li>2008-11-12 -- <a href="http://jimey.com/2008/11/12/sunday-the-day-to-do-the-wordcount-screenshots-mapreduce.html" title="周日那天做的mapreduce中的wordcount测试截图">周日那天做的mapreduce中的wordcount测试截图</a> (0)</li><li>2008-11-10 -- <a href="http://jimey.com/2008/11/10/hadoop-cluster-to-do-with-the-composition-of-cluster-machines.html" title="用Hadoop做集群机器构成的cluster">用Hadoop做集群机器构成的cluster</a> (0)</li><li>2008-10-31 -- <a href="http://jimey.com/2008/10/31/hadoop-user-group-meeting-oct-meeting-continue-last-unfinished-blog.html" title="Hadoop User Group Meeting (Oct.Meeting) Continue last unfinished blog">Hadoop User Group Meeting (Oct.Meeting) Continue last unfinished blog</a> (0)</li><li>2008-10-31 -- <a href="http://jimey.com/2008/10/31/then-boil-for-one-night-the-outcome-is-still-a-significant-drop.html" title="又熬一晚，成果还是显著滴">又熬一晚，成果还是显著滴</a> (0)</li><li>2008-10-31 -- <a href="http://jimey.com/2008/10/31/staying-up-late-at-night-the-spirit-and-sleepy-is-not-ok.html" title="熬夜熬夜，精神来了，想睡也不行">熬夜熬夜，精神来了，想睡也不行</a> (0)</li><li>2008-10-17 -- <a href="http://jimey.com/2008/10/17/hadoop-user-group-meeting-oct-meeting.html" title="Hadoop User Group Meeting (Oct.Meeting)">Hadoop User Group Meeting (Oct.Meeting)</a> (0)</li><li>2010-05-06 -- <a href="http://jimey.com/2010/05/06/ubuntu10-04-compiled-hadoop-version-eclipse-plugin-jar-and-hadoop-0-20-3-dev-eclipse-plugin-jar-download.html" title="Ubuntu10.04 编译hadoop-${version}-eclipse- plugin.jar and hadoop-0.20.3-dev-eclipse-plugin.jar">Ubuntu10.04 编译hadoop-${version}-eclipse- plugin.jar and hadoop-0.20.3-dev-eclipse-plugin.jar</a> (0)</li><li>2010-05-05 -- <a href="http://jimey.com/2010/05/05/what-causes-errors-in-databases.html" title="what causes errors in databases.">what causes errors in databases.</a> (0)</li><li>2010-04-22 -- <a href="http://jimey.com/2010/04/22/several-articles-on-twitter-hadoop-cassandra-pig-flockdbu002639s-slide.html" title="几篇关于twitter,hadoop,Cassandra,Pig,FlockDB的slide">几篇关于twitter,hadoop,Cassandra,Pig,FlockDB的slide</a> (0)</li><li>2009-10-09 -- <a href="http://jimey.com/2009/10/09/eclipse-hadoop-full-linux-environment-for-development.html" title="Eclipse+Hadoop 全linux环境开发">Eclipse+Hadoop 全linux环境开发</a> (6)</li><li>2009-10-09 -- <a href="http://jimey.com/2009/10/09/compiled-hadoop-version-eclipse-plugin-jar-and-hadoop-0-20-1-eclipse-plugin-jar-download.html" title="编译hadoop-${version}-eclipse-plugin.jar and hadoop-0.20.1-eclipse-plugin.jar download">编译hadoop-${version}-eclipse-plugin.jar and hadoop-0.20.1-eclipse-plugin.jar download</a> (3)</li><li>2009-05-01 -- <a href="http://jimey.com/2009/05/01/hadoop-0-20-0.html" title="hadoop-0.20.0">hadoop-0.20.0</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://jimey.com/2009/12/02/karmasphere-studio-for-hadoop.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ytet upload user guide</title>
		<link>http://jimey.com/2009/11/17/ytet-upload-user-guide.html</link>
		<comments>http://jimey.com/2009/11/17/ytet-upload-user-guide.html#comments</comments>
		<pubDate>Tue, 17 Nov 2009 13:32:51 +0000</pubDate>
		<dc:creator>jimey</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[Sub]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[ytet]]></category>

		<guid isPermaLink="false">http://jimey.com/2009/11/17/ytet-upload-user-guide.html</guid>
		<description><![CDATA[首先，注册之后，然后把用户名QQ给我，我开通发文权限    &#160;  开通后登陆，显示出的页面，其他部分可以不用理，主要点那个add new 即可  &#160;    需要关注几个部分  部分1.标题  部分2是附件上传  部分3是内容，这里就随便填了  部分4是tag标签，如果可能，尽量多填写一些，各个关键词用英文逗号分开  部分5是分类，一..... ]]></description>
			<content:encoded><![CDATA[<p>首先，注册之后，然后把用户名QQ给我，我开通发文权限</p>
<p><a title="4" href="http://www.flickr.com/photos/46438329@N00/4111521273/"><img border="0" alt="4" src="http://static.flickr.com/2783/4111521273_99046eaf2d.jpg" /></a></p>
<p>&#160;</p>
<p>开通后登陆，显示出的页面，其他部分可以不用理，主要点那个add new 即可</p>
<p>&#160;</p>
<p><a title="5" href="http://www.flickr.com/photos/46438329@N00/4111521459/"><img border="0" alt="5" src="http://farm3.static.flickr.com/2784/4111521459_7b3b3db97b.jpg" /></a></p>
<p>需要关注几个部分</p>
<p>部分1.标题</p>
<p>部分2是附件上传</p>
<p>部分3是内容，这里就随便填了</p>
<p>部分4是tag标签，如果可能，尽量多填写一些，各个关键词用英文逗号分开</p>
<p>部分5是分类，一般来讲，什么剧目归到什么剧目名下，如果没该剧目的分类，请添加，添加的时候注意该剧目名的父类</p>
<p>比如24 的父类是0-9</p>
<p>American Idol 的父类是A-F</p>
<p>&#160;</p>
<p>然后完成以上5项目之后，点6即可完成一次发布，个中最难的是上传附件的2部分</p>
<p>下面具体来讲解这个2的使用</p>
<p>&#160;</p>
<p>点那个向下的箭头</p>
<p>&#160;</p>
<p><a title="2" href="http://www.flickr.com/photos/46438329@N00/4111489995/"><img border="0" alt="2" src="http://static.flickr.com/2761/4111489995_018a7e3280.jpg" /></a></p>
<p>即可出来这个画面</p>
<p>首先是附件的标题，即该字幕文件名是什么，这里不推荐使用@ #这些字符，所以我们之前的字幕命名方式</p>
<p><a href="mailto:xxx.group@YTET">xxx.group@YTET</a> 这样的方式现在不推荐，因为这个@有可能导致字符换算丢失路径</p>
<p>&#160;</p>
<p> 其他项目可以不用填</p>
<p><a title="2.1" href="http://www.flickr.com/photos/46438329@N00/4112256152/"><img border="0" alt="2.1" src="http://static.flickr.com/2597/4112256152_f0e63b9c40.jpg" /></a></p>
<p>往下拉滚轴，可以找到这个Upload File的选项，即上传文件选择了，相信这地方大家基本上都操作过，我就不细说了</p>
<p>唯一需要注意的是&#160; 这里文件需要用.zip的方式&#160; 而不再推荐我们字幕组常用的.rar的方式，这点也是比较…麻烦的地方</p>
<p>具体zip的方式如果生成，可参看博客 <a href="http://jimey.com/2009/11/17/use-winrar-to-zip-something.html">use winrar to zip something</a>&#160; <a title="http://jimey.com/2009/11/17/use-winrar-to-zip-something.html" href="http://jimey.com/2009/11/17/use-winrar-to-zip-something.html">http://jimey.com/2009/11/17/use-winrar-to-zip-something.html</a></p>
<p>&#160;</p>
<p> 添加完文件之后，就最下面那个深蓝色按钮按了即可 </p>
<p>&#160;</p>
<p>接着会到下面这幅图</p>
<p>&#160;</p>
<p>如果有时候也许会看不到这副图，那么就跳过这副图，看下一步骤教程</p>
<p><a title="2.2" href="http://www.flickr.com/photos/46438329@N00/4111489863/"><img border="0" alt="2.2" src="http://static.flickr.com/2676/4111489863_3435194534.jpg" /></a></p>
<p>&#160;</p>
<p>这里，直接按这个Insert into Post 就会把刚刚上传的字幕附件给粘贴到刚刚要post的文章里面去了。</p>
<p>&#160;</p>
<p><a title="3" href="http://www.flickr.com/photos/46438329@N00/4112256544/"><img border="0" alt="3" src="http://static.flickr.com/2574/4112256544_ec90599722.jpg" /></a></p>
<p>如果没那个上面那个图，得把框拉到最上面，选择View Doadloads 会有一排文件列表，选择你要insert的文件即可</p>
<h3  class="related_post_title">相关博文</h3><ul class="related_post"><li>2009-11-17 -- <a href="http://jimey.com/2009/11/17/caption-blog-station-and-the-garden-of-eden-garden-of-eden-drama-wikipedia-desks-set-up-the-united-states-shows.html" title="伊甸园字幕博客站和伊甸园美剧百科站成立说明">伊甸园字幕博客站和伊甸园美剧百科站成立说明</a> (2)</li><li>2009-10-23 -- <a href="http://jimey.com/2009/10/23/feedsky-feed-plug-in-plug-in-will-lead-to-failure-of-task-execution-wp-booking.html" title="Feedsky Feed 插件插件会导致wp的预订任务执行失败">Feedsky Feed 插件插件会导致wp的预订任务执行失败</a> (0)</li><li>2009-10-21 -- <a href="http://jimey.com/2009/10/21/wordpress-lifestream-plugin.html" title="WordPress Lifestream 插件">WordPress Lifestream 插件</a> (0)</li><li>2009-03-24 -- <a href="http://jimey.com/2009/03/24/wordpress-plugin.html" title="Wordpress插件">Wordpress插件</a> (0)</li><li>2009-03-18 -- <a href="http://jimey.com/2009/03/18/glftpd-and-zipscript-install-guide.html" title="glftpd and zipscript install guide">glftpd and zipscript install guide</a> (0)</li><li>2009-03-16 -- <a href="http://jimey.com/2009/03/16/web-2-0-era-sfile-development-outlook.html" title="web 2.0时代的sfile发展展望">web 2.0时代的sfile发展展望</a> (0)</li><li>2008-12-30 -- <a href="http://jimey.com/2008/12/30/wordpress-changed-a-blog-hosting.html" title="WordPress换了个博客主机">WordPress换了个博客主机</a> (0)</li><li>2008-12-22 -- <a href="http://jimey.com/2008/12/22/picasau002639s-wordpress-plug-in-problem.html" title="Picasa的wordpress插件问题">Picasa的wordpress插件问题</a> (0)</li><li>2008-12-13 -- <a href="http://jimey.com/2008/12/13/sat-matter-of-non-decent.html" title="周六的不正经事">周六的不正经事</a> (0)</li><li>2008-09-18 -- <a href="http://jimey.com/2008/09/18/windows-live-writer-vs-wordpress.html" title="Windows Live Writer vs. Wordpress">Windows Live Writer vs. Wordpress</a> (0)</li><li>2008-09-13 -- <a href="http://jimey.com/2008/09/13/added-three-new-plug-ins.html" title="新加了3个插件">新加了3个插件</a> (10)</li><li>2008-09-13 -- <a href="http://jimey.com/2008/09/13/wordpress-plug-ins-sync-with-msn-live-space.html" title="Wordpress与MSN Live Space同步插件">Wordpress与MSN Live Space同步插件</a> (2)</li><li>2008-08-27 -- <a href="http://jimey.com/2008/08/27/installation-complexlife.html" title="安装ComplexLife">安装ComplexLife</a> (1)</li><li>2008-08-24 -- <a href="http://jimey.com/2008/08/24/this-wordpress-engaged-in-the-three-days.html" title="搞了3天这个WordPress">搞了3天这个WordPress</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://jimey.com/2009/11/17/ytet-upload-user-guide.html/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>use winrar to zip something</title>
		<link>http://jimey.com/2009/11/17/use-winrar-to-zip-something.html</link>
		<comments>http://jimey.com/2009/11/17/use-winrar-to-zip-something.html#comments</comments>
		<pubDate>Tue, 17 Nov 2009 12:59:32 +0000</pubDate>
		<dc:creator>jimey</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[how]]></category>
		<category><![CDATA[winrar]]></category>
		<category><![CDATA[zip]]></category>

		<guid isPermaLink="false">http://jimey.com/2009/11/17/use-winrar-to-zip-something.html</guid>
		<description><![CDATA[  选要打包的文件  &#160;    然后是弹出的框的设... ]]></description>
			<content:encoded><![CDATA[<p><a title="1" href="http://www.flickr.com/photos/46438329@N00/4111491137/"><img border="0" alt="1" src="http://static.flickr.com/2530/4111491137_a206eee367.jpg" /></a></p>
<p>选要打包的文件</p>
<p>&#160;</p>
<p><a title="2" href="http://www.flickr.com/photos/46438329@N00/4111491259/"><img border="0" alt="2" src="http://static.flickr.com/2793/4111491259_3456491485.jpg" /></a></p>
<p>然后是弹出的框的设置</p>
<h3  class="related_post_title">相关博文</h3><ul class="related_post"><li>2009-03-18 -- <a href="http://jimey.com/2009/03/18/custom-my-winrar-to-extract-the-files-on-demand-and-should.html" title="定制我的WinRAR 让文件解压按需而宜">定制我的WinRAR 让文件解压按需而宜</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://jimey.com/2009/11/17/use-winrar-to-zip-something.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>伊甸园字幕博客站和伊甸园美剧百科站成立说明</title>
		<link>http://jimey.com/2009/11/17/caption-blog-station-and-the-garden-of-eden-garden-of-eden-drama-wikipedia-desks-set-up-the-united-states-shows.html</link>
		<comments>http://jimey.com/2009/11/17/caption-blog-station-and-the-garden-of-eden-garden-of-eden-drama-wikipedia-desks-set-up-the-united-states-shows.html#comments</comments>
		<pubDate>Tue, 17 Nov 2009 05:14:47 +0000</pubDate>
		<dc:creator>jimey</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[放心情]]></category>
		<category><![CDATA[ftp]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[好处]]></category>
		<category><![CDATA[媒体]]></category>
		<category><![CDATA[字幕]]></category>
		<category><![CDATA[字幕站]]></category>
		<category><![CDATA[官方]]></category>
		<category><![CDATA[权限]]></category>
		<category><![CDATA[用途]]></category>
		<category><![CDATA[维基]]></category>
		<category><![CDATA[缺点]]></category>
		<category><![CDATA[美剧百科]]></category>
		<category><![CDATA[问题]]></category>

		<guid isPermaLink="false">http://jimey.com/2009/11/17/%e4%bc%8a%e7%94%b8%e5%9b%ad%e5%ad%97%e5%b9%95%e5%8d%9a%e5%ae%a2%e7%ab%99%e5%92%8c%e4%bc%8a%e7%94%b8%e5%9b%ad%e7%be%8e%e5%89%a7%e7%99%be%e7%a7%91%e7%ab%99%e6%88%90%e7%ab%8b%e8%af%b4%e6%98%8e.html</guid>
		<description><![CDATA[^^^^^^^^^^^^^续^^^^^^^^^^^^^^^^^^^   由于长期以来伊甸园没有自己的字幕站，不得不挂靠在射手上，在高峰时期射手字幕站挂机也有发生导致我们无法下载字幕，所以从那时候起想一个办法，就是用ftp更新字幕，把做好的字幕都放到ftp作为我们备用，由于ftp使用的局限性，无法搜索，只能按字幕文件夹名找，效率不高。    半年前..... ]]></description>
			<content:encoded><![CDATA[<p>^^^^^^^^^^^^^续^^^^^^^^^^^^^^^^^^^   <br />由于长期以来伊甸园没有自己的字幕站，不得不挂靠在射手上，在高峰时期射手字幕站挂机也有发生导致我们无法下载字幕，所以从那时候起想一个办法，就是用<a href="http://jimey.com/tag/ftp" class="st_tag internal_tag" rel="tag" title="Posts tagged with ftp">ftp</a>更新字幕，把做好的字幕都放到<a href="http://jimey.com/tag/ftp" class="st_tag internal_tag" rel="tag" title="Posts tagged with ftp">ftp</a>作为我们备用，由于<a href="http://jimey.com/tag/ftp" class="st_tag internal_tag" rel="tag" title="Posts tagged with ftp">ftp</a>使用的局限性，无法搜索，只能按字幕文件夹名找，效率不高。    <br />半年前我有一个想法，就是用wordpress博客程序来做我们的字幕站，每一篇博客文章来作为我们的一个字幕更新帖用    <br />字幕组每个成员可以申请一个id，该id可以获得发字幕修改文件等权限，另外可以给字幕组组长更高的，修改字幕附件，修改帖子内容等权限    <br />当初在论坛帖了这个想法，响应的同学也有，只是一直没人来做，半年之后，也就是今天，在跟卡口以及干活的沟通之下，终于把这个想法给实现了。</p>
<p>^^^^^^^^^^^^^用途^^^^^^^^^^^^^^^^^^^    <br />1、初期我只是想拿来做单纯的字幕站    <br />2、后来我觉得其实也可以用来作为我们官方的博客站，比如宣传下字幕组内部的八卦，奇闻轶事、字幕组下季度的做剧目的计划、一些技术性的文章等等    <br />3、再到后来我觉得，我们可以利用这个博客站来做一个媒体工作，比如针对每个剧的点评，可以接收会员和成员的投稿，选择优秀的文章帖到我们的博客分享出去    <br />4、跟论坛的结合，各分版版主可以每周，或者几周，来一个本分版内的精华帖推荐，在博客发布</p>
<p>^^^^^^^^^^^^^^好处^^^^^^^^^^^^^^^^^^    <br />1、在续中已经解释了，有自己的字幕站的好处。另外由于博客有rss订阅功能，这样可以更加友好的往外推广，更加方便各会员获取字幕信息，从论坛单纯的pull方式，到现在的push方式，由于人的懒惰性的存在，目前push才是更加适合发展。 结合twitter等微博，可以把字幕更加广泛的散播出去    <br />2、官方博客站，目前很多大的公司，政府，组织都有在做自己的博客，开放性的发展是当今网络发展的一个元素之一，可以拉近与会员的关系    <br />3、关于媒体工作，这个也是一个目前论坛其实可以做，但是效果不够好的一个事情，在论坛做，由于是pull的方式，有人可能会漏掉，大量的贴会把这些贴埋没。而在博客发的话，push的方式，利用rss可以给所有订阅读者看到，由于是精选剧评，不会被埋没    <br />4、跟论坛的结合，其实也是跟论坛互动的结果，在论坛宣传博客，在博客宣传论坛，论坛人多，宣传博客会有效果，而博客的push方式，会让我们推荐的精华被更多订阅读者看到，增加论坛精华帖的阅读量    <br />5、搜索功能强大，不会给会员带来找不到字幕的麻烦，利用博客的搜索，tag 标签功能，Categories分类功能，可以很方便很快捷的给会员找到自己需要的字幕    <br />当然，我个人还是最喜欢用 Categories 分类 ，可以分3层，又可以做到我们论坛最喜欢的，按数字和字母A-Z的方式，来把剧名按名一个一个的排列下来，效果如下所示    <br />Categories </p>
<ul>
<li>0-9
<ul>
<li><u>24</u></li>
<li>30 Rocks</li>
</ul>
</li>
</ul>
<blockquote><p>另外关于这个地方的rss订阅&#160; 0-9这个目项可以有个RSS订阅，&#160; 24可以有个RSS订阅只显示24的内容更新&#160;&#160; 30 Rocks可以有个RSS订阅来只显示30 Rocks的内容更新</p>
<p>而 0-9的RSS显示24和30 Rocks 内容的更新</p>
<p>(这个地方看不懂就算了 -_-!!) 主要是用来给一些同学比如，有人喜欢24，不喜欢30 Rocks， 有人喜欢24 又喜欢30Rocks 有人喜欢30 Rocks 不喜欢24 这样的情况下怎么解决RSS订阅的问题</p>
</blockquote>
<p><em>&#160;</em></p>
<p>^^^^^^^^^^^^^^如何用^^^^^^^^^^^^^^^^^^^   <br />1、字幕的更新需要各位工作人员的支持和协助    <br />2、官方的博客站，字幕组内部的事情需要字幕组内部来协调，我这只是提个建议    <br />3、媒体工作，这个我主要是在豆瓣看到一些兄弟贴过一些美剧的剧评，所以才想到这条    <br />4、这个也需要各位美剧分坛版主来协调</p>
<p>&#160;</p>
<p>^^^^^^^^^^^^^目前的缺点和问题^^^^^^^^^^^^^^     <br />1、操作的问题，需要首先添加字幕文件，然后再插入文件到博客文章中    <br />2、字幕文件格式，不支持.rar打包，只支持.zip的打包方式&#160;&#160; 由于linux系统对rar支持的不够好，所以才不得不使用.zip的方式</p>
<p>&#160;</p>
<p>……………………………………………………………………………………………………………………………………………………………………</p>
<p>再来美剧百科站     <br />由于论坛的美剧百科板块，过于依靠版主，只有版主才能更新帖子，劳动量过大，且无法发动广大劳动人民的积极性，所以我们采用维基百科，人人都可以编辑的方式来建立了这样一个美剧百科    <br />这个是初衷，具体内容该如何建立，还需要跟广大童鞋门讨论之后再决定，目前只是平台已经搞定。</p>
<p>……………………………………………………………………………………………………………………………………………………………………</p>
<h3  class="related_post_title">相关博文</h3><ul class="related_post"><li>2008-11-18 -- <a href="http://jimey.com/2008/11/18/cloud-computing-on-the-next-week-to-discuss-the-curriculum-some-of-the-ideas.html" title="关于下下周cloud computing讨论课程的一些想法">关于下下周cloud computing讨论课程的一些想法</a> (0)</li><li>2010-07-10 -- <a href="http://jimey.com/2010/07/10/%e4%b8%8a%e7%8f%ad%e4%b8%80%e5%91%a8%e4%ba%86.html" title="上班一周了">上班一周了</a> (2)</li><li>2010-06-20 -- <a href="http://jimey.com/2010/06/20/self-denial.html" title="克己">克己</a> (0)</li><li>2010-03-30 -- <a href="http://jimey.com/2010/03/30/the-garden-of-eden-subtitle-blog-station-uses-the-approach.html" title="伊甸园字幕博客站利用办法">伊甸园字幕博客站利用办法</a> (2)</li><li>2010-01-05 -- <a href="http://jimey.com/2010/01/05/choose.html" title="选择">选择</a> (7)</li><li>2009-11-17 -- <a href="http://jimey.com/2009/11/17/ytet-upload-user-guide.html" title="ytet upload user guide">ytet upload user guide</a> (5)</li><li>2009-10-23 -- <a href="http://jimey.com/2009/10/23/feedsky-feed-plug-in-plug-in-will-lead-to-failure-of-task-execution-wp-booking.html" title="Feedsky Feed 插件插件会导致wp的预订任务执行失败">Feedsky Feed 插件插件会导致wp的预订任务执行失败</a> (0)</li><li>2009-10-21 -- <a href="http://jimey.com/2009/10/21/wordpress-lifestream-plugin.html" title="WordPress Lifestream 插件">WordPress Lifestream 插件</a> (0)</li><li>2009-03-27 -- <a href="http://jimey.com/2009/03/27/automatically-detect-100-percent-folder-and-delete-the-sub-extracting-rar-file-bat.html" title="自动检测文件夹内100%解压rar分包并且删除文件的bat">自动检测文件夹内100%解压rar分包并且删除文件的bat</a> (0)</li><li>2009-03-24 -- <a href="http://jimey.com/2009/03/24/wordpress-plugin.html" title="Wordpress插件">Wordpress插件</a> (0)</li><li>2009-03-16 -- <a href="http://jimey.com/2009/03/16/web-2-0-era-sfile-development-outlook.html" title="web 2.0时代的sfile发展展望">web 2.0时代的sfile发展展望</a> (0)</li><li>2008-12-30 -- <a href="http://jimey.com/2008/12/30/wordpress-changed-a-blog-hosting.html" title="WordPress换了个博客主机">WordPress换了个博客主机</a> (0)</li><li>2008-12-22 -- <a href="http://jimey.com/2008/12/22/picasau002639s-wordpress-plug-in-problem.html" title="Picasa的wordpress插件问题">Picasa的wordpress插件问题</a> (0)</li><li>2008-12-13 -- <a href="http://jimey.com/2008/12/13/sat-matter-of-non-decent.html" title="周六的不正经事">周六的不正经事</a> (0)</li><li>2008-09-18 -- <a href="http://jimey.com/2008/09/18/windows-live-writer-vs-wordpress.html" title="Windows Live Writer vs. Wordpress">Windows Live Writer vs. Wordpress</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://jimey.com/2009/11/17/caption-blog-station-and-the-garden-of-eden-garden-of-eden-drama-wikipedia-desks-set-up-the-united-states-shows.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
