<?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>Observer Life</title>
	<atom:link href="http://observerlife.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://observerlife.com</link>
	<description>To be a better man (Observer)</description>
	<lastBuildDate>Fri, 27 Aug 2010 04:57:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Memcached最大缓存时间</title>
		<link>http://observerlife.com/the-max-expires-time-of-memcached/</link>
		<comments>http://observerlife.com/the-max-expires-time-of-memcached/#comments</comments>
		<pubDate>Fri, 27 Aug 2010 04:57:27 +0000</pubDate>
		<dc:creator>ycg</dc:creator>
				<category><![CDATA[Unix/Linux]]></category>
		<category><![CDATA[cache]]></category>
		<category><![CDATA[memcached]]></category>

		<guid isPermaLink="false">http://observerlife.com/?p=692</guid>
		<description><![CDATA[首先要说，这是个BT的问题，以前还真少想过。先说我遇到的问题吧。 我看到的一行代码里，Memcached的缓存时间被设置为86400*24*4, 等于是96天。而当调用set去存储的时候，memcached会返回true。而当你用get的时候，就是相反的结果了: FALSE。 要说BT呢，因为用到Memcached的人，通常不会去给缓存96天，这种情况下，更好的选择是DB、filecache或者其他。尽管BT，我还是去测试了一下最长时间，得到的结果是: 30 days。去memcached源码里查了一下，这下就明白多了： #define REALTIME_MAXDELTA 60*60*24*30 /* * given time value that&#8217;s either unix time or delta from current unix time, return * unix time. Use the fact that delta can&#8217;t exceed one month (and real time value can&#8217;t * be that low). */ static rel_time_t realtime(const time_t exptime) { /* [...]]]></description>
			<content:encoded><![CDATA[<p>首先要说，这是个BT的问题，以前还真少想过。先说我遇到的问题吧。</p>
<p>我看到的一行代码里，Memcached的缓存时间被设置为86400*24*4, 等于是96天。而当调用set去存储的时候，memcached会返回true。而当你用get的时候，就是相反的结果了: <strong>FALSE</strong>。</p>
<p>要说BT呢，因为用到Memcached的人，通常不会去给缓存96天，这种情况下，更好的选择是DB、filecache或者其他。尽管BT，我还是去测试了一下最长时间，得到的结果是: 30 days。去memcached源码里查了一下，这下就明白多了：</p>
<blockquote>
<div id="_mcePaste">#define REALTIME_MAXDELTA 60*60*24*30</div>
<div id="_mcePaste"></div>
<div id="_mcePaste">/*</div>
<div id="_mcePaste">* given time value that&#8217;s either unix time or delta from current unix time, return</div>
<div id="_mcePaste">* unix time. Use the fact that delta can&#8217;t exceed one month (and real time value can&#8217;t</div>
<div id="_mcePaste">* be that low).</div>
<div id="_mcePaste">*/</div>
<div id="_mcePaste">static rel_time_t realtime(const time_t exptime) {</div>
<div id="_mcePaste">/* no. of seconds in 30 days &#8211; largest possible delta exptime */</div>
<div id="_mcePaste"></div>
<div id="_mcePaste">if (exptime == 0) return 0; /* 0 means never expire */</div>
<div id="_mcePaste"></div>
<div id="_mcePaste">if (exptime &gt; REALTIME_MAXDELTA) {</div>
<div id="_mcePaste">/* if item expiration is at/before the server started, give it an</div>
<div id="_mcePaste">expiration time of 1 second after the server started.</div>
<div id="_mcePaste">(because 0 means don&#8217;t expire).  without this, we&#8217;d</div>
<div id="_mcePaste">underflow and wrap around to some large value way in the</div>
<div id="_mcePaste">future, effectively making items expiring in the past</div>
<div id="_mcePaste">really expiring never */</div>
<div id="_mcePaste">if (exptime &lt;= process_started)</div>
<div id="_mcePaste">return (rel_time_t)1;</div>
<div id="_mcePaste">return (rel_time_t)(exptime &#8211; process_started);</div>
<div id="_mcePaste">} else {</div>
<div id="_mcePaste">return (rel_time_t)(exptime + current_time);</div>
<div id="_mcePaste">}</div>
<div id="_mcePaste">}</div>
<div></div>
</blockquote>
<div>Memcached最大缓存时间为30d, 而且从实际应用上，这么变态的时间也已经足够了。</div>
<div></div>
<div>看源代码是终极办法啊。</div>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://observerlife.com/happy-man-ha/" rel="bookmark" class="crp_title">面朝大海，春暖花开</a></li><li><a href="http://observerlife.com/%e4%b8%80%e9%94%ae%e5%be%ae%e5%8d%9a%e5%a4%87%e4%bb%bd%e5%88%b0wordpress-wp-tsina%e5%be%ae%e5%8d%9a%e6%8f%92%e4%bb%b60-2-0%e5%8f%91%e5%b8%83/" rel="bookmark" class="crp_title">一键微博备份到WordPress &#8211; WP-Tsina微博插件0.2.0发布</a></li><li><a href="http://observerlife.com/time-and-space-optimization/" rel="bookmark" class="crp_title">Time and space optimization</a></li><li><a href="http://observerlife.com/%e5%85%b3%e4%ba%8eapache%e7%9a%84timeout/" rel="bookmark" class="crp_title">关于Apache的TimeOut</a></li><li><a href="http://observerlife.com/remember-the-name/" rel="bookmark" class="crp_title">Remember The Name</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://observerlife.com/the-max-expires-time-of-memcached/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>VIM自动化更新脚本推荐:vimana</title>
		<link>http://observerlife.com/vimana/</link>
		<comments>http://observerlife.com/vimana/#comments</comments>
		<pubDate>Tue, 24 Aug 2010 13:40:29 +0000</pubDate>
		<dc:creator>ycg</dc:creator>
				<category><![CDATA[Unix/Linux]]></category>
		<category><![CDATA[vim]]></category>
		<category><![CDATA[vimana]]></category>

		<guid isPermaLink="false">http://observerlife.com/?p=687</guid>
		<description><![CDATA[很多人会觉得VIM是个非常好的Editor，也有很多人因为黑色的界面而对VIM充满了向往。但很多的人，或者说，大部分上述的人都因为VIM上手过程中频繁的配置，不停的去下载并安装plugin, 来回的修改vimrc文件等等等等，在过了几分热情之后，就渐渐对VIM说baybay了。 今天给大家推荐一个由一位来自台湾的兄弟林佑安(翻墙)开发维护的Vimana，这是一个安装以后，可以自动搜索、下载、安装并配置VIM插件好东东。省得大家到处去找寻了。这是一个Perl编写的东东，所以安装的时候，需要先确定机器里安装了Perl，然后在CPAN下安装(如果你不知道Perl和CPAN，google之)。具体安装与介绍，请参看下面的keynote. 这里面不光是介绍了这个Vimana，事实上主体不是这个，而是介绍了相当的VIM使用技巧，有兴趣的可以认真关注一下，E文的，不过不难的。 PS: VIM 7.3发布了，有兴趣的可以下载来试用一下: ftp://ftp.vim.org/pub/vim/unix/vim-7.3.tar.bz2。下午的时候我已经在单位的开发机上和Mac上都装上了，我还在体验中。下午郁闷的是，编译的时候居然忘记加multibyte支持，还在twitter上发牢骚说不对中文支持不行了呢。看来这段关注点的变化导致自己有些神经已经退化了。 Perl.Hacks.On.Vim View more presentations from Cornelius Lin. Related Posts:[share]State of the Mobile BrowsersBcastr 3.1 flash 通用图片轮换播放器一段可以避过一般拦截程序的弹出窗口代码《士兵突击》里钢七连连歌六一儿童节快乐]]></description>
			<content:encoded><![CDATA[<div>
很多人会觉得VIM是个非常好的Editor，也有很多人因为黑色的界面而对VIM充满了向往。但很多的人，或者说，大部分上述的人都因为VIM上手过程中频繁的配置，不停的去下载并安装plugin, 来回的修改vimrc文件等等等等，在过了几分热情之后，就渐渐对VIM说baybay了。</div>
<div>
<div id="attachment_689" class="wp-caption aligncenter" style="width: 610px"><a href="http://observerlife.com/wp-content/uploads/2010/08/learning_curves.jpg"><img class="size-full wp-image-689" title="各大编辑器或IDE学习成本曲线" src="http://observerlife.com/wp-content/uploads/2010/08/learning_curves.jpg" alt="各大编辑器或IDE学习成本曲线" width="600" height="400" /></a><p class="wp-caption-text">各大编辑器或IDE学习成本曲线</p></div>
</div>
<div>今天给大家推荐一个由一位来自台湾的兄弟<a href="http://c9s.blogspot.com/" target="_blank">林佑安</a>(翻墙)开发维护的<a href="http://search.cpan.org/dist/Vimana/" target="_blank">Vimana</a>，这是一个安装以后，可以自动搜索、下载、安装并配置VIM插件好东东。省得大家到处去找寻了。这是一个Perl编写的东东，所以安装的时候，需要先确定机器里安装了Perl，然后在CPAN下安装(如果你不知道Perl和CPAN，google之)。具体安装与介绍，请参看下面的keynote. 这里面不光是介绍了这个Vimana，事实上主体不是这个，而是介绍了相当的VIM使用技巧，有兴趣的可以认真关注一下，E文的，不过不难的。</div>
<div>PS: VIM 7.3发布了，有兴趣的可以下载来试用一下: <a href="ftp://ftp.vim.org/pub/vim/unix/vim-7.3.tar.bz2" target="_blank">ftp://ftp.vim.org/pub/vim/unix/vim-7.3.tar.bz2</a>。下午的时候我已经在单位的开发机上和Mac上都装上了，我还在体验中。下午郁闷的是，编译的时候居然忘记加multibyte支持，还在twitter上发牢骚说不对中文支持不行了呢。看来这段关注点的变化导致自己有些神经已经退化了。</div>
<div id="__ss_1981451" style="width: 425px;"><strong><a title="Perl.Hacks.On.Vim" href="http://www.slideshare.net/c9s/perlhacksonvim">Perl.Hacks.On.Vim</a></strong><object id="__sse1981451" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="355" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=perl-hacks-on-vim-090910214743-phpapp02&amp;stripped_title=perlhacksonvim" /><param name="name" value="__sse1981451" /><param name="allowfullscreen" value="true" /><embed id="__sse1981451" type="application/x-shockwave-flash" width="425" height="355" src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=perl-hacks-on-vim-090910214743-phpapp02&amp;stripped_title=perlhacksonvim" name="__sse1981451" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<div style="padding: 5px 0 12px;">View more <a href="http://www.slideshare.net/">presentations</a> from <a href="http://www.slideshare.net/c9s">Cornelius Lin</a>.</div>
</div>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://observerlife.com/sharestate-of-the-mobile-browsers/" rel="bookmark" class="crp_title">[share]State of the Mobile Browsers</a></li><li><a href="http://observerlife.com/bcastr-3-1-flash-%e9%80%9a%e7%94%a8%e5%9b%be%e7%89%87%e8%bd%ae%e6%8d%a2%e6%92%ad%e6%94%be%e5%99%a8/" rel="bookmark" class="crp_title">Bcastr 3.1 flash 通用图片轮换播放器</a></li><li><a href="http://observerlife.com/%e4%b8%80%e6%ae%b5%e5%8f%af%e4%bb%a5%e9%81%bf%e8%bf%87%e4%b8%80%e8%88%ac%e6%8b%a6%e6%88%aa%e7%a8%8b%e5%ba%8f%e7%9a%84%e5%bc%b9%e5%87%ba%e7%aa%97%e5%8f%a3%e4%bb%a3%e7%a0%81/" rel="bookmark" class="crp_title">一段可以避过一般拦截程序的弹出窗口代码</a></li><li><a href="http://observerlife.com/%e3%80%8a%e5%a3%ab%e5%85%b5%e7%aa%81%e5%87%bb%e3%80%8b%e9%87%8c%e9%92%a2%e4%b8%83%e8%bf%9e%e8%bf%9e%e6%ad%8c/" rel="bookmark" class="crp_title">《士兵突击》里钢七连连歌</a></li><li><a href="http://observerlife.com/%e5%85%ad%e4%b8%80%e5%84%bf%e7%ab%a5%e8%8a%82%e5%bf%ab%e4%b9%90/" rel="bookmark" class="crp_title">六一儿童节快乐</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://observerlife.com/vimana/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>HTTP/1.1 Cache-Control header field</title>
		<link>http://observerlife.com/http1-1-cache-control-header-field/</link>
		<comments>http://observerlife.com/http1-1-cache-control-header-field/#comments</comments>
		<pubDate>Thu, 12 Aug 2010 09:52:22 +0000</pubDate>
		<dc:creator>ycg</dc:creator>
				<category><![CDATA[HTML/JavaScript]]></category>
		<category><![CDATA[Cache-Conrol]]></category>
		<category><![CDATA[http]]></category>

		<guid isPermaLink="false">http://observerlife.com/?p=685</guid>
		<description><![CDATA[This standard HTTP header field is defined in RFC 2616 The Cache-Control general-header field is used to specify directives that MUST be obeyed by all caching mechanisms along the request/response chain. The directives specify behavior intended to prevent caches from adversely interfering with the request or response. These directives typically override the default caching algorithms. Cache [...]]]></description>
			<content:encoded><![CDATA[<p><strong>This standard HTTP header field is defined in <a title="Request For Comments #2616" href="http://www.ietf.org/rfc/rfc2616.txt">RFC 2616</a></strong></p>
<p>The Cache-Control general-header field is used to specify directives that MUST be obeyed by all caching mechanisms along the request/response chain. The directives specify behavior intended to prevent caches from adversely interfering with the request or response. These directives typically override the default caching algorithms. Cache directives are unidirectional in that the presence of a directive in a request does not imply that the same directive is to be given in the response.</p>
<p>Cache directives MUST be passed through by a proxy or gateway application, regardless of their significance to that application, since the directives might be applicable to all recipients along the request/response chain. It is not possible to specify a cache-directive for a specific cache.</p>
<h2>Common Cache-Control header values:</h2>
<ul>
<li>Cache-Control: no-cache</li>
<li>Cache-Control: private</li>
<li>Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0</li>
<li>Cache-Control: post-check=0, pre-check=0</li>
<li>Cache-Control: no-store, no-cache, must-revalidate</li>
<li>Cache-Control: must-revalidate, no-store</li>
<li>Cache-Control: no-cache,no-store</li>
<li>Cache-Control: max-age=60</li>
<li>Cache-Control: no-cache, must-revalidate</li>
<li>Cache-Control: no-store</li>
<li>Cache-Control: max-age=0, must-revalidate</li>
<li>Cache-Control: max-age=0, no-cache</li>
<li>Cache-Control: no-cache, no-store, must-revalidate, max-age=0</li>
<li>Cache-Control: no-store, no-cache, must-revalidate, max-age=0</li>
<li>Cache-Control: store, no-cache, must-revalidate</li>
<li>Cache-Control: public</li>
<li>Cache-Control: max-age=86400</li>
<li>Cache-Control: max-age=0</li>
<li>Cache-Control: max-age=2592000</li>
<li>Cache-Control: private, max-age=0</li>
<li>Cache-Control: private, pre-check=0, post-check=0, max-age=0</li>
<li>Cache-Control: max-age=3600</li>
<li>Cache-Control: must-revalidate</li>
<li>Cache-Control: max-age=3600, public</li>
<li>Cache-Control: no-cache, no-store, must-revalidate</li>
<li>Cache-Control: max-age=600</li>
<li>Cache-Control: no-cache=&#8221;set-cookie&#8221;</li>
<li>Cache-Control: private, max-age=0, must-revalidate</li>
<li>Cache-Control: must-revalidate = no-cache</li>
<li>Cache-Control: no-cache, no-store</li>
<li>Cache-Control: private, must-revalidate, max-age=0</li>
<li>Cache-Control: max-age=300</li>
<li>Cache-Control: private, must-revalidate</li>
<li>Cache-Control: Private</li>
<li>Cache-Control: max-age=1</li>
<li>Cache-Control: max-age=604800</li>
<li>Cache-Control: private, no-cache=&#8221;set-cookie&#8221;</li>
<li>Cache-Control: &#8220;must-revalidate&#8221;</li>
<li>Cache-Control: max-age=0, no-store</li>
<li>Cache-Control: no-cache,no-store,must-revalidate</li>
<li>Cache-Control: private, no-cache</li>
<li>Cache-Control: no-cache, pre-check=0, post-check=0</li>
<li>Cache-Control: public, max-age=10800</li>
<li>Cache-Control: max-age=86400, public</li>
<li>Cache-Control: must-revalidate, max-age=1</li>
<li>Cache-Control: no-cache,must-revalidate</li>
<li>Cache-Control: no-store, no-cache</li>
<li>Cache-Control: private, max-age=10800, pre-check=10800</li>
<li>Cache-Control: No-cache</li>
<li>Cache-Control: cache</li>
<li>Cache-Control: max-age=1800</li>
<li>Cache-Control: max-age=345600</li>
<li>Cache-Control: no-cache, must-revalidate, max-age=0</li>
<li>Cache-Control: no-cache, must-revalidate, post-check=0, pre-check=0</li>
<li>Cache-Control: no-cache,no-store,max-age=0</li>
<li>Cache-Control: no-cache=&#8221;set-cookie,set-cookie2&#8243;</li>
<li>Cache-Control: no-store, no-cache, must-revaldate, post-check=1, pre-check=2</li>
<li>Cache-Control: pre-check=0, post-check=0, max-age=0</li>
<li>Cache-Control: private, post-check=0, pre-check=0, max-age=0</li>
<li>Cache-Control: store, no-cache, must-revalidate, post-check=0, pre-check=0</li>
<li>Cache-Control: No-Cache</li>
<li>Cache-Control: max-age=0, no-cache, no-store</li>
<li>Cache-Control: max-age=1209600</li>
<li>Cache-Control: no-cache, no-store, must-revalidate, max-age=-1</li>
<li>Cache-Control: no-cache, private</li>
<li>Cache-Control: no-cache,max-age=0,must-revalidate</li>
<li>Cache-Control: post-check=0, pre-check=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0</li>
<li>Cache-Control: ,</li>
<li>Cache-Control: max-age=0, private, must-revalidate</li>
<li>Cache-Control: max-age=21600</li>
<li>Cache-Control: max-age=28800</li>
<li>Cache-Control: max-age=5184000</li>
<li>Cache-Control: max-age=82800</li>
<li>Cache-Control: no-cache, max-age=1</li>
<li>Cache-Control: public,max-age=3600</li>
<li>Cache-Control: Public</li>
<li>Cache-Control: max-age=0, private</li>
<li>Cache-Control: max-age=0, private, proxy-revalidate</li>
<li>Cache-Control: max-age=120</li>
<li>Cache-Control: max-age=18000</li>
<li>Cache-Control: max-age=25920000</li>
<li>Cache-Control: max-age=31104000</li>
<li>Cache-Control: max-age=311040000</li>
<li>Cache-Control: max-age=31536000</li>
<li>Cache-Control: max-age=3600, private</li>
<li>Cache-Control: max-age=900</li>
<li>Cache-Control: must-revalidate, no-cache, no-store, private, s-maxage=0, pre-check=0, post-check=0, max-age=0</li>
<li>Cache-Control: no-cache, no-store, must-revalidate</li>
<li>Cache-Control: no-cache, no-store, private</li>
<li>Cache-Control: no-cache,no-transform</li>
<li>Cache-Control: no-cache=&#8221;set-cookie, set-cookie2&#8243;</li>
<li>Cache-Control: no-store, must-revalidate</li>
<li>Cache-Control: no-store, no-cache, must-revalidate, max_age=0</li>
<li>Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0, private</li>
<li>Cache-Control: private, no-cache, max-age=0</li>
<li>Cache-Control: private, no-cache, no-store, proxy-revalidate, no-transform</li>
<li>Cache-Control: private, no-store</li>
<li>Cache-Control: private, proxy-revalidate</li>
<li>Cache-Control: public, max-age=60</li>
<li>Cache-Control: public, max-age=604800, post-check=7200, pre-check=604800</li>
<li>Cache-Control: 7200</li>
<li>Cache-Control: &#8220;no-cache&#8221;</li>
<li>Cache-Control: False</li>
<li>Cache-Control: NO-CACHE</li>
<li>Cache-Control: No-Store</li>
<li>Cache-Control: No-store</li>
<li>Cache-Control: max-age=-111581876</li>
<li>Cache-Control: max-age=-170009618</li>
<li>Cache-Control: max-age=-4366177</li>
<li>Cache-Control: max-age=-492324790</li>
<li>Cache-Control: max-age=-52613456</li>
<li>Cache-Control: max-age=-625447</li>
<li>Cache-Control: max-age=-9274207</li>
<li>Cache-Control: max-age=0, no-cache, no-store, must-revalidate</li>
<li>Cache-Control: max-age=0, no-store, max-age=-2592000</li>
<li>Cache-Control: max-age=0, no-store, no-cache, must-revalidate</li>
<li>Cache-Control: max-age=0, s-maxage=0, private, must-revalidate</li>
<li>Cache-Control: max-age=1, must-revalidate, private</li>
<li>Cache-Control: max-age=1, no-cache, must-revalidate</li>
<li>Cache-Control: max-age=1, s-maxage=1, no-cache, must-revalidate</li>
<li>Cache-Control: max-age=10</li>
<li>Cache-Control: max-age=10800</li>
<li>Cache-Control: max-age=1200</li>
<li>Cache-Control: max-age=124416000</li>
<li>Cache-Control: max-age=14400</li>
<li>Cache-Control: max-age=172800</li>
<li>Cache-Control: max-age=180</li>
<li>Cache-Control: max-age=1800,public</li>
<li>Cache-Control: max-age=25920</li>
<li>Cache-Control: max-age=259200</li>
<li>Cache-Control: max-age=2678400, public</li>
<li>Cache-Control: max-age=300, must-revalidate</li>
<li>Cache-Control: max-age=300, private, proxy-revalidate</li>
<li>Cache-Control: max-age=315360000</li>
<li>Cache-Control: max-age=3600, s-maxage=3600, no-cache</li>
<li>Cache-Control: max-age=43200</li>
<li>Cache-Control: max-age=60, must-revalidate</li>
<li>Cache-Control: max-age=60, private, proxy-revalidate</li>
<li>Cache-Control: max-age=600, must-revalidate</li>
<li>Cache-Control: max-age=600, s-maxage=600</li>
<li>Cache-Control: max-age=604800, public, proxy-revalidate, must-revalidate</li>
<li>Cache-Control: max-age=64800</li>
<li>Cache-Control: max-age=7075</li>
<li>Cache-Control: max-age=7200</li>
<li>Cache-Control: max-age=86400, must-revalidate</li>
<li>Cache-Control: max-age=864000</li>
<li>Cache-Control: must-revalidate, max-age=0</li>
<li>Cache-Control: no &#8211; cache</li>
<li>Cache-Control: no-Cache</li>
<li>Cache-Control: no-cache, max-age=0</li>
<li>Cache-Control: no-cache, max-age=2592000</li>
<li>Cache-Control: no-cache, max-age=3600</li>
<li>Cache-Control: no-cache, max-age=86400</li>
<li>Cache-Control: no-cache, must-revalidate, max_age=0</li>
<li>Cache-Control: no-cache, must-revalidate, max_age=0, private</li>
<li>Cache-Control: no-cache, must-revalidate, no-cache=&#8221;Set-Cookie&#8221;, private</li>
<li>Cache-Control: no-cache, must-revalidate, no-store, post-check=0, pre-check=0</li>
<li>Cache-Control: no-cache, must-revalidate;</li>
<li>Cache-Control: no-cache, no-cache, no-cache, no-cache</li>
<li>Cache-Control: no-cache, no-store, max-age=0, must-revalidate</li>
<li>Cache-Control: no-cache, no-store, max-age=0, private, must-revalidate, proxy-revalidate</li>
<li>Cache-Control: no-cache, no-store, must-revalidate, max-age=0, proxy-revalidate, no-transform, max-age=0</li>
<li>Cache-Control: no-cache, no-store, must-revalidate, private</li>
<li>Cache-Control: no-cache, no-store, no-transform</li>
<li>Cache-Control: no-cache, no-store, private, max-age=0</li>
<li>Cache-Control: no-cache, no-store, private, max-age=1, must-revalidate</li>
<li>Cache-Control: no-cache, no-store, private, must-revalidate, post-check=0, pre-check=0</li>
<li>Cache-Control: no-cache, no-store, proxy-revalidate, must-revalidate</li>
<li>Cache-Control: no-cache, nostore</li>
<li>Cache-Control: no-cache, post-check=0,pre-check=0, max-age=0, max-age=1</li>
<li>Cache-Control: no-cache,must-revalidate, no-store</li>
<li>Cache-Control: no-cache,no-store,max-age=0,s-maxage=0,must-revalidate</li>
<li>Cache-Control: no-cache,private</li>
<li>Cache-Control: no-cache; max-age=0</li>
<li>Cache-Control: no-cache=set-cookie</li>
<li>Cache-Control: no-cash, must-revalidate</li>
<li>Cache-Control: no-store, no-cache, must-revalidate, max-age=0, max-age=0</li>
<li>Cache-Control: no-store, no-cache, private</li>
<li>Cache-Control: no-store,max-age=0,post-check=0,pre-check=0</li>
<li>Cache-Control: no-store,no-cache,must-revalidate, post-check=0, pre-check=0, max_age=0</li>
<li>Cache-Control: no-store,no-cache,must-revalidate,max-age=-1</li>
<li>Cache-Control: no-store,no-cache,must-revalidate,max-age=0,post-check=0,pre-check=0</li>
<li>Cache-Control: no-transform</li>
<li>Cache-Control: post-check=-1, pre-check=-1</li>
<li>Cache-Control: post-check=3600,pre-check=43200</li>
<li>Cache-Control: pre-check=0, post-check=0</li>
<li>Cache-Control: private , proxy-revalidate, must-revalidate</li>
<li>Cache-Control: private, must-revalidate, no-cache, no-check</li>
<li>Cache-Control: private, no-cache, must-revalidate</li>
<li>Cache-Control: private, no-cache, must-revalidate, no-store, max-age=0, post-check=0, pre-check=0</li>
<li>Cache-Control: private, no-cache, no-store, must-revalidate</li>
<li>Cache-Control: private, no-cache, no-store, must-revalidate, max-age=0</li>
<li>Cache-Control: private, no-store, must-revalidate</li>
<li>Cache-Control: private,max-age=3600</li>
<li>Cache-Control: private,no-cache,no-store,max-age=0,must-revalidate,proxy-revalidate</li>
<li>Cache-Control: private,no-cache,no-store,must-revalidate</li>
<li>Cache-Control: proxy-revalidate, max-age=0, must-revalidate</li>
<li>Cache-Control: public, max-age=141456</li>
<li>Cache-Control: public, max-age=294</li>
<li>Cache-Control: public, max-age=30</li>
<li>Cache-Control: public, max-age=300</li>
<li>Cache-Control: public, max-age=5</li>
<li>Cache-Control: public, must-revalidate</li>
<li>Cache-Control: public, must-revalidate, no-cache=&#8221;Set-Cookie&#8221;, max-age=300</li>
<li>Cache-Control: public, proxy-revalidate, must-revalidate, max-age=157680000</li>
<li>Cache-Control: s-maxage=1200, must-revalidate, max-age=0</li>
</ul>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://observerlife.com/ie-firefox-%e6%b5%8f%e8%a7%88%e5%99%a8%e5%88%b7%e6%96%b0%e5%92%8c%e5%bc%ba%e5%88%b6%e5%88%b7%e6%96%b0%e5%8f%91%e9%80%81%e7%9a%84-http-request-header/" rel="bookmark" class="crp_title">IE Firefox 浏览器刷新和强制刷新发送的 HTTP Request Header</a></li><li><a href="http://observerlife.com/cache-control%e6%b6%88%e6%81%af%e5%a4%b4%e5%9f%9f%e8%af%b4%e6%98%8e/" rel="bookmark" class="crp_title">Cache-Control消息头域说明</a></li><li><a href="http://observerlife.com/freebsd-%e8%99%9a%e6%8b%9f%e5%86%85%e5%ad%98%e7%9a%84%e6%b5%85%e6%9e%90/" rel="bookmark" class="crp_title">FreeBSD 虚拟内存的浅析</a></li><li><a href="http://observerlife.com/lighttpdsquidapache%e6%90%ad%e5%bb%ba%e9%ab%98%e6%95%88%e7%8e%87web%e6%9c%8d%e5%8a%a1%e5%99%a8/" rel="bookmark" class="crp_title">Lighttpd+Squid+Apache搭建高效率Web服务器</a></li><li><a href="http://observerlife.com/vi%e4%bd%bf%e7%94%a8%e6%89%8b%e5%86%8c/" rel="bookmark" class="crp_title">VI使用手册</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://observerlife.com/http1-1-cache-control-header-field/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>this week</title>
		<link>http://observerlife.com/this-week/</link>
		<comments>http://observerlife.com/this-week/#comments</comments>
		<pubDate>Sun, 08 Aug 2010 14:58:58 +0000</pubDate>
		<dc:creator>ycg</dc:creator>
				<category><![CDATA[MyLife]]></category>
		<category><![CDATA[立秋]]></category>

		<guid isPermaLink="false">http://observerlife.com/?p=681</guid>
		<description><![CDATA[1.本周开始请教练教打羽毛球了 2.周末跟大学网络中心的几个兄弟(也有女生)聚了下,这帮人在一起还是那么单纯地开心 3.越来越多的人不赞成我现在对感情问题的处理方式,需要作出些改变了吗? 4.立秋了,扇子要丢到一边了,时间也越来越少了 Related Posts:用rsync对网站进行镜像备份rsync中文手册 用rsync实现网站镜像和备份]]></description>
			<content:encoded><![CDATA[<p>
<p>1.本周开始请教练教打羽毛球了</p>
<p>
2.周末跟大学网络中心的几个兄弟(也有女生)聚了下,这帮人在一起还是那么单纯地开心</p>
<p>
3.越来越多的人不赞成我现在对感情问题的处理方式,需要作出些改变了吗?</p>
<p>
4.立秋了,扇子要丢到一边了,时间也越来越少了</p>
</p>
<p></p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://observerlife.com/%e7%94%a8rsync%e5%af%b9%e7%bd%91%e7%ab%99%e8%bf%9b%e8%a1%8c%e9%95%9c%e5%83%8f%e5%a4%87%e4%bb%bd/" rel="bookmark" class="crp_title">用rsync对网站进行镜像备份</a></li><li><a href="http://observerlife.com/rsync%e4%b8%ad%e6%96%87%e6%89%8b%e5%86%8c-%e7%94%a8rsync%e5%ae%9e%e7%8e%b0%e7%bd%91%e7%ab%99%e9%95%9c%e5%83%8f%e5%92%8c%e5%a4%87%e4%bb%bd/" rel="bookmark" class="crp_title">rsync中文手册 用rsync实现网站镜像和备份</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://observerlife.com/this-week/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>部分针对手机网站的搜索引擎 robots User-Agent信息</title>
		<link>http://observerlife.com/user-agents-of-some-mobile-robots/</link>
		<comments>http://observerlife.com/user-agents-of-some-mobile-robots/#comments</comments>
		<pubDate>Fri, 06 Aug 2010 03:21:04 +0000</pubDate>
		<dc:creator>ycg</dc:creator>
				<category><![CDATA[HTML/JavaScript]]></category>
		<category><![CDATA[robots]]></category>
		<category><![CDATA[user-agent]]></category>

		<guid isPermaLink="false">http://observerlife.com/?p=679</guid>
		<description><![CDATA[收集并整理了一下部分抓取手机网站的搜索引擎robots的User-Agent信息。有需要的同学可以点击下面的链接下载。 目前比较可恶的是部分国内手机搜索引擎，抓取的时候，不会在User-Agent信息里说明自己是robot。其实，说明一下，这样更方便的。 点击这里下载 Related Posts:Nokia公开机型产品信息csv08-04-2010words to share &#8211; series 3六一儿童节快乐VIM自动化更新脚本推荐:vimana[多图]Google Reader再次更新,添加搜索功能]]></description>
			<content:encoded><![CDATA[<p>收集并整理了一下部分抓取手机网站的搜索引擎robots的User-Agent信息。有需要的同学可以点击下面的链接下载。</p>
<p>目前比较可恶的是部分国内手机搜索引擎，抓取的时候，不会在User-Agent信息里说明自己是robot。其实，说明一下，这样更方便的。</p>
<p><a href="http://observerlife.com/wp-content/uploads/2010/08/robotua.txt" target="_blank">点击这里下载</a></p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://observerlife.com/nokia_device_info_csv_08-04-2010/" rel="bookmark" class="crp_title">Nokia公开机型产品信息csv08-04-2010</a></li><li><a href="http://observerlife.com/words-to-share-series-3/" rel="bookmark" class="crp_title">words to share &#8211; series 3</a></li><li><a href="http://observerlife.com/%e5%85%ad%e4%b8%80%e5%84%bf%e7%ab%a5%e8%8a%82%e5%bf%ab%e4%b9%90/" rel="bookmark" class="crp_title">六一儿童节快乐</a></li><li><a href="http://observerlife.com/vimana/" rel="bookmark" class="crp_title">VIM自动化更新脚本推荐:vimana</a></li><li><a href="http://observerlife.com/%e5%a4%9a%e5%9b%begoogle-reader%e5%86%8d%e6%ac%a1%e6%9b%b4%e6%96%b0%e6%b7%bb%e5%8a%a0%e6%90%9c%e7%b4%a2%e5%8a%9f%e8%83%bd/" rel="bookmark" class="crp_title">[多图]Google Reader再次更新,添加搜索功能</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://observerlife.com/user-agents-of-some-mobile-robots/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nokia公开机型产品信息csv08-04-2010</title>
		<link>http://observerlife.com/nokia_device_info_csv_08-04-2010/</link>
		<comments>http://observerlife.com/nokia_device_info_csv_08-04-2010/#comments</comments>
		<pubDate>Wed, 04 Aug 2010 01:42:49 +0000</pubDate>
		<dc:creator>ycg</dc:creator>
				<category><![CDATA[Focus]]></category>
		<category><![CDATA[device]]></category>
		<category><![CDATA[nokia]]></category>

		<guid isPermaLink="false">http://observerlife.com/?p=672</guid>
		<description><![CDATA[更新于08-04-2010 这些天在整理Nokia的一些机型信息，用脚本从Nokia Forum上跑出一份产品信息来，包括如下信息： 机型名 model 机型平台 platform 机型系统 system 屏幕分辨率 resolution 产品ID(只是S60平台的有)  productID 图形信息 浏览器信息 设备信息URL地址  Device URL 点击这里下载 Related Posts:Nokia公开机型产品信息csvNokia公开机型产品信息csv090831部分针对手机网站的搜索引擎 robots User-Agent信息六一儿童节快乐words to share &#8211; series 3]]></description>
			<content:encoded><![CDATA[<div>
<p>更新于08-04-2010</p>
<p>这些天在整理Nokia的一些机型信息，用脚本从Nokia Forum上跑出一份产品信息来，包括如下信息：<br />
机型名 model<br />
机型平台 platform<br />
机型系统 system<br />
屏幕分辨率 resolution<br />
产品ID(只是S60平台的有)  productID<br />
图形信息<br />
浏览器信息<br />
设备信息URL地址  Device URL</p>
<p><a href="http://observerlife.com/wp-content/uploads/2010/08/nokiaphones.csv" target="_blank">点击这里下载</a></p>
</div>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://observerlife.com/nokia%e5%85%ac%e5%bc%80%e6%9c%ba%e5%9e%8b%e4%ba%a7%e5%93%81%e4%bf%a1%e6%81%afcsv/" rel="bookmark" class="crp_title">Nokia公开机型产品信息csv</a></li><li><a href="http://observerlife.com/nokia%e5%85%ac%e5%bc%80%e6%9c%ba%e5%9e%8b%e4%ba%a7%e5%93%81%e4%bf%a1%e6%81%afcsv090831/" rel="bookmark" class="crp_title">Nokia公开机型产品信息csv090831</a></li><li><a href="http://observerlife.com/user-agents-of-some-mobile-robots/" rel="bookmark" class="crp_title">部分针对手机网站的搜索引擎 robots User-Agent信息</a></li><li><a href="http://observerlife.com/%e5%85%ad%e4%b8%80%e5%84%bf%e7%ab%a5%e8%8a%82%e5%bf%ab%e4%b9%90/" rel="bookmark" class="crp_title">六一儿童节快乐</a></li><li><a href="http://observerlife.com/words-to-share-series-3/" rel="bookmark" class="crp_title">words to share &#8211; series 3</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://observerlife.com/nokia_device_info_csv_08-04-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[share]State of the Mobile Browsers</title>
		<link>http://observerlife.com/sharestate-of-the-mobile-browsers/</link>
		<comments>http://observerlife.com/sharestate-of-the-mobile-browsers/#comments</comments>
		<pubDate>Thu, 29 Jul 2010 02:56:25 +0000</pubDate>
		<dc:creator>ycg</dc:creator>
				<category><![CDATA[HTML/JavaScript]]></category>
		<category><![CDATA[browsers]]></category>
		<category><![CDATA[mobile]]></category>

		<guid isPermaLink="false">http://observerlife.com/?p=669</guid>
		<description><![CDATA[Developing for Mobile Rules: Rule 1: Do NOT use the emulators. Rule 2: Make sure you have: - iPhone or Android (or both ) - S60 - Windows Mobile - ( BlackBerry ) Rule 3: Use media queies State of the Mobile Browsers View more presentations from Peter-Paul Koch. Related Posts:VIM自动化更新脚本推荐:vimana一段可以避过一般拦截程序的弹出窗口代码Bcastr 3.1 flash 通用图片轮换播放器《士兵突击》里钢七连连歌火色郁金香]]></description>
			<content:encoded><![CDATA[<p>Developing for Mobile Rules:</p>
<p>Rule 1:<br />
Do NOT use the emulators.</p>
<p>Rule 2:<br />
Make sure you have:<br />
- iPhone or Android (or both )<br />
- S60<br />
- Windows Mobile<br />
- ( BlackBerry )</p>
<p>Rule 3:<br />
Use media queies</p>
<div id="__ss_1653728" style="width: 425px;"><strong><a title="State of the Mobile Browsers" href="http://www.slideshare.net/pp.koch/state-of-the-mobile-browsers">State of the Mobile Browsers</a></strong><object id="__sse1653728" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="355" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=yahoomobilebrowsers-090629060205-phpapp02&amp;stripped_title=state-of-the-mobile-browsers" /><param name="name" value="__sse1653728" /><param name="allowfullscreen" value="true" /><embed id="__sse1653728" type="application/x-shockwave-flash" width="425" height="355" src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=yahoomobilebrowsers-090629060205-phpapp02&amp;stripped_title=state-of-the-mobile-browsers" name="__sse1653728" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<div style="padding: 5px 0 12px;">View more <a href="http://www.slideshare.net/">presentations</a> from <a href="http://www.slideshare.net/pp.koch">Peter-Paul Koch</a>.</div>
</div>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://observerlife.com/vimana/" rel="bookmark" class="crp_title">VIM自动化更新脚本推荐:vimana</a></li><li><a href="http://observerlife.com/%e4%b8%80%e6%ae%b5%e5%8f%af%e4%bb%a5%e9%81%bf%e8%bf%87%e4%b8%80%e8%88%ac%e6%8b%a6%e6%88%aa%e7%a8%8b%e5%ba%8f%e7%9a%84%e5%bc%b9%e5%87%ba%e7%aa%97%e5%8f%a3%e4%bb%a3%e7%a0%81/" rel="bookmark" class="crp_title">一段可以避过一般拦截程序的弹出窗口代码</a></li><li><a href="http://observerlife.com/bcastr-3-1-flash-%e9%80%9a%e7%94%a8%e5%9b%be%e7%89%87%e8%bd%ae%e6%8d%a2%e6%92%ad%e6%94%be%e5%99%a8/" rel="bookmark" class="crp_title">Bcastr 3.1 flash 通用图片轮换播放器</a></li><li><a href="http://observerlife.com/%e3%80%8a%e5%a3%ab%e5%85%b5%e7%aa%81%e5%87%bb%e3%80%8b%e9%87%8c%e9%92%a2%e4%b8%83%e8%bf%9e%e8%bf%9e%e6%ad%8c/" rel="bookmark" class="crp_title">《士兵突击》里钢七连连歌</a></li><li><a href="http://observerlife.com/%e7%81%ab%e8%89%b2%e9%83%81%e9%87%91%e9%a6%99/" rel="bookmark" class="crp_title">火色郁金香</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://observerlife.com/sharestate-of-the-mobile-browsers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>微博一周 &#8211;  2010-07-18</title>
		<link>http://observerlife.com/%e5%be%ae%e5%8d%9a%e4%b8%80%e5%91%a8-2010-07-18/</link>
		<comments>http://observerlife.com/%e5%be%ae%e5%8d%9a%e4%b8%80%e5%91%a8-2010-07-18/#comments</comments>
		<pubDate>Sun, 18 Jul 2010 03:47:02 +0000</pubDate>
		<dc:creator>ycg</dc:creator>
				<category><![CDATA[inaword]]></category>

		<guid isPermaLink="false">http://observerlife.com/%e5%be%ae%e5%8d%9a%e4%b8%80%e5%91%a8-2010-07-18/</guid>
		<description><![CDATA[@CUGSM: 你虚度的今天，正是昨天死去的人无限向往的明天。 收藏。很多人只是嘴上说说而已，其实就不知道分析目标是什么。这是关键。 一键微博备份到WordPress &#8211; WP-Tsina微博插件0.2.0发布#微博#,#wp-tsina#,#备份# http://sinaurl.cn/GclCF 细节.阿尔卡特电话(可挂在墙上的)背面大多标记着两个挂孔之间的长度. 很贴心. 虽然已经离开好几年，但每当看到金山的LOGO的时候，仍然情不自禁的澎湃 //@张老叉:一直都因为曾经在这样一家公司工作过而自豪 京东上订了台燃气热水器，原来的万和已经折腾我一个多月了，再也没兴趣继续折腾那破玩意儿了。出去找东西吃去，明天就有新热水器用了。 整天轻松着,人就要退化了。 某一天变沉默的时候,就是应该换种生活的时候,对于我来说 //@丁丁one:哈哈，关键你是金子的时候，神态也变得跟金子一样；肯定就觉得你沉默的过于异常了。[红牌] //@bbcallen:我是金子的时候，你们都说我不对劲。。。 //@丁丁one: //@闲心若水:再次印证沉默是金。 //@★微博经典语录★:转发微博。 @kedy: RT @zhufengme 据刚刚回来的朋友讲，北戴河海域出现原因不明的原油泄漏，基本上已经无法下海游泳，最近要去秦皇岛地区的朋友要留意了 I&#8217;m sure that sth will be changed, soon. 决定将主战场迁移到twitter,至少不会被管制. 请fo我:kedy Related Posts:一键微博备份到WordPress &#8211; WP-Tsina微博插件0.2.0发布北京2008年第29届奥运会吉祥物五个福娃wp-tsina 0.1.5 发布&#8211;新浪微博WordPress插件是否允许该页面从你的剪贴板粘贴信息？window.location.href在firefox中不兼容的解决办法[原创]]]></description>
			<content:encoded><![CDATA[<li>@CUGSM: 你虚度的今天，正是昨天死去的人无限向往的明天。</li>
<li>收藏。很多人只是嘴上说说而已，其实就不知道分析目标是什么。这是关键。</li>
<li>一键微博备份到WordPress &#8211; WP-Tsina微博插件0.2.0发布#微博#,#wp-tsina#,#备份# <a href="http://sinaurl.cn/GclCF">http://sinaurl.cn/GclCF</a></li>
<li>细节.阿尔卡特电话(可挂在墙上的)背面大多标记着两个挂孔之间的长度. 很贴心.</li>
<li>虽然已经离开好几年，但每当看到金山的LOGO的时候，仍然情不自禁的澎湃 //@张老叉:一直都因为曾经在这样一家公司工作过而自豪</li>
<li>京东上订了台燃气热水器，原来的万和已经折腾我一个多月了，再也没兴趣继续折腾那破玩意儿了。出去找东西吃去，明天就有新热水器用了。</li>
<li>整天轻松着,人就要退化了。</li>
<li>某一天变沉默的时候,就是应该换种生活的时候,对于我来说 //@丁丁one:哈哈，关键你是金子的时候，神态也变得跟金子一样；肯定就觉得你沉默的过于异常了。[红牌] //@bbcallen:我是金子的时候，你们都说我不对劲。。。 //@丁丁one: //@闲心若水:再次印证沉默是金。 //@★微博经典语录★:转发微博。</li>
<li>@kedy: RT @zhufengme 据刚刚回来的朋友讲，北戴河海域出现原因不明的原油泄漏，基本上已经无法下海游泳，最近要去秦皇岛地区的朋友要留意了</li>
<li>I&#8217;m sure that sth will be changed, soon.</li>
<li>决定将主战场迁移到twitter,至少不会被管制. 请fo我:kedy</li>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://observerlife.com/%e4%b8%80%e9%94%ae%e5%be%ae%e5%8d%9a%e5%a4%87%e4%bb%bd%e5%88%b0wordpress-wp-tsina%e5%be%ae%e5%8d%9a%e6%8f%92%e4%bb%b60-2-0%e5%8f%91%e5%b8%83/" rel="bookmark" class="crp_title">一键微博备份到WordPress &#8211; WP-Tsina微博插件0.2.0发布</a></li><li><a href="http://observerlife.com/%e5%8c%97%e4%ba%ac2008%e5%b9%b4%e7%ac%ac29%e5%b1%8a%e5%a5%a5%e8%bf%90%e4%bc%9a%e5%90%89%e7%a5%a5%e7%89%a9%e4%ba%94%e4%b8%aa%e7%a6%8f%e5%a8%83/" rel="bookmark" class="crp_title">北京2008年第29届奥运会吉祥物五个福娃</a></li><li><a href="http://observerlife.com/wp-tsina-0-1-4/" rel="bookmark" class="crp_title">wp-tsina 0.1.5 发布&#8211;新浪微博WordPress插件</a></li><li><a href="http://observerlife.com/%e6%98%af%e5%90%a6%e5%85%81%e8%ae%b8%e8%af%a5%e9%a1%b5%e9%9d%a2%e4%bb%8e%e4%bd%a0%e7%9a%84%e5%89%aa%e8%b4%b4%e6%9d%bf%e7%b2%98%e8%b4%b4%e4%bf%a1%e6%81%af%ef%bc%9f/" rel="bookmark" class="crp_title">是否允许该页面从你的剪贴板粘贴信息？</a></li><li><a href="http://observerlife.com/window-location-href%e5%9c%a8firefox%e4%b8%ad%e4%b8%8d%e5%85%bc%e5%ae%b9%e7%9a%84%e8%a7%a3%e5%86%b3%e5%8a%9e%e6%b3%95%e5%8e%9f%e5%88%9b/" rel="bookmark" class="crp_title">window.location.href在firefox中不兼容的解决办法[原创]</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://observerlife.com/%e5%be%ae%e5%8d%9a%e4%b8%80%e5%91%a8-2010-07-18/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>一键微博备份到WordPress &#8211; WP-Tsina微博插件0.2.0发布</title>
		<link>http://observerlife.com/%e4%b8%80%e9%94%ae%e5%be%ae%e5%8d%9a%e5%a4%87%e4%bb%bd%e5%88%b0wordpress-wp-tsina%e5%be%ae%e5%8d%9a%e6%8f%92%e4%bb%b60-2-0%e5%8f%91%e5%b8%83/</link>
		<comments>http://observerlife.com/%e4%b8%80%e9%94%ae%e5%be%ae%e5%8d%9a%e5%a4%87%e4%bb%bd%e5%88%b0wordpress-wp-tsina%e5%be%ae%e5%8d%9a%e6%8f%92%e4%bb%b60-2-0%e5%8f%91%e5%b8%83/#comments</comments>
		<pubDate>Sat, 17 Jul 2010 18:39:13 +0000</pubDate>
		<dc:creator>ycg</dc:creator>
				<category><![CDATA[Focus]]></category>
		<category><![CDATA[wp-tsina]]></category>
		<category><![CDATA[备份]]></category>
		<category><![CDATA[微博]]></category>

		<guid isPermaLink="false">http://observerlife.com/?p=659</guid>
		<description><![CDATA[WP-Tsina微博插件升级，目前提供在后台一键点击，备份最近微博到WordPress功能。 定期使用，一来可以防止某些&#8221;和谐&#8221;的原因导致的微博无法访问、数据丢失的惨烈。 二来，可以方便的定期汇总到WordPress，省去手动整理的麻烦。 点击这里下载 升级日志： = 0.2.0 = (2010-07-18) 1、增加后台一键自动备份微博到Wordpress功能(也可当作每周定期汇总微博用)； 2、版本升级为0.2.0 = 0.2.0 =(2010-07-18)1、增加后台一键自动备份微博到Wordpress功能(也可当作每周定期汇总微博用)；2、版本升级为0.2.0 Related Posts:面朝大海，春暖花开Memcached最大缓存时间wp-tsina 0.1.5 发布&#8211;新浪微博WordPress插件wp-tsina 0.1.6[新浪微博WordPress插件] 修正发布时出现HTML代码的bugwp-tsina 0.1.7[新浪微博WordPress插件] 修正后台设置发布显示bug]]></description>
			<content:encoded><![CDATA[<div id="_mcePaste">WP-Tsina微博插件升级，目前提供在后台一键点击，备份最近微博到WordPress功能。</div>
<div>定期使用，一来可以防止某些&#8221;和谐&#8221;的原因导致的微博无法访问、数据丢失的惨烈。</div>
<div>二来，可以方便的定期汇总到WordPress，省去手动整理的麻烦。</div>
<div></div>
<div><a href="http://wordpress.org/extend/plugins/wp-tsina/" target="_blank">点击这里下载</a></div>
<div></div>
<div>升级日志：</div>
<div>= 0.2.0 =</div>
<div id="_mcePaste">(2010-07-18)</div>
<div id="_mcePaste">1、增加后台一键自动备份微博到Wordpress功能(也可当作每周定期汇总微博用)；</div>
<div id="_mcePaste">2、版本升级为0.2.0</div>
<p>= 0.2.0 =(2010-07-18)1、增加后台一键自动备份微博到Wordpress功能(也可当作每周定期汇总微博用)；2、版本升级为0.2.0</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://observerlife.com/happy-man-ha/" rel="bookmark" class="crp_title">面朝大海，春暖花开</a></li><li><a href="http://observerlife.com/the-max-expires-time-of-memcached/" rel="bookmark" class="crp_title">Memcached最大缓存时间</a></li><li><a href="http://observerlife.com/wp-tsina-0-1-4/" rel="bookmark" class="crp_title">wp-tsina 0.1.5 发布&#8211;新浪微博WordPress插件</a></li><li><a href="http://observerlife.com/wp-tsina-0-1-6%e6%96%b0%e6%b5%aa%e5%be%ae%e5%8d%9awordpress%e6%8f%92%e4%bb%b6-%e4%bf%ae%e6%ad%a3%e5%8f%91%e5%b8%83%e6%97%b6%e5%87%ba%e7%8e%b0html%e4%bb%a3%e7%a0%81%e7%9a%84bug/" rel="bookmark" class="crp_title">wp-tsina 0.1.6[新浪微博WordPress插件] 修正发布时出现HTML代码的bug</a></li><li><a href="http://observerlife.com/wp-tsina-0-1-7%e6%96%b0%e6%b5%aa%e5%be%ae%e5%8d%9awordpress%e6%8f%92%e4%bb%b6-%e4%bf%ae%e6%ad%a3%e5%90%8e%e5%8f%b0%e8%ae%be%e7%bd%ae%e5%8f%91%e5%b8%83%e6%98%be%e7%a4%babug/" rel="bookmark" class="crp_title">wp-tsina 0.1.7[新浪微博WordPress插件] 修正后台设置发布显示bug</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://observerlife.com/%e4%b8%80%e9%94%ae%e5%be%ae%e5%8d%9a%e5%a4%87%e4%bb%bd%e5%88%b0wordpress-wp-tsina%e5%be%ae%e5%8d%9a%e6%8f%92%e4%bb%b60-2-0%e5%8f%91%e5%b8%83/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Q3 is coming</title>
		<link>http://observerlife.com/q3-is-coming/</link>
		<comments>http://observerlife.com/q3-is-coming/#comments</comments>
		<pubDate>Sun, 04 Jul 2010 14:55:13 +0000</pubDate>
		<dc:creator>ycg</dc:creator>
				<category><![CDATA[Focus]]></category>
		<category><![CDATA[Q3]]></category>
		<category><![CDATA[回顾]]></category>
		<category><![CDATA[计划]]></category>

		<guid isPermaLink="false">http://observerlife.com/?p=654</guid>
		<description><![CDATA[2010年过了大半， 我的计划实现了多少？不管计划有没有实现，时间都已经义无反顾的跑了过去。所以， 我计划没有实现的变成了遗憾，实现了的变成了事实 。 下半年，实现计划的机会来了，对自己好一点。别为一些不相干的事情所牵绊，拖沓。 没有人会可怜你！&#8211;前同事毕琳 看到前同事Kelly的这段话的时候，2010年的Q3已经来临。今天是7月4号，在Q3已经过去了4天的时候，在这里做一下Q1,Q2的回顾，根据自己的计划对Q3Q4也做个规划准备。 在年初为2010制定的几项任务里，第二项已经得到执行，换了工作，到了当当网工作，如今虽仍未完全适应这个新的环境，不过与过去对比来说，还是有了相当大的变化。有了自己的生活时间，感觉很是不同。第一项英语，已经报了EF，虽然比较贵，不过感觉还不错，只是世界杯开始至今，我还未上过课，从明天开始重新上课。带爸妈出游的计划，得在下半年来执行了。女朋友的事情，目前努力中。今年日志得到了一定程度的坚持，不过还是继续努力。 总的来说，上半年计划里的事情，执行的还算凑合，这里可以打个60分吧。很多让我心虚的或不方便说出来的事，暂时先不往出讲了。在Q3Q4，在下面几个方面需要努力做到： 坚持学好英语。不光是课堂上，平时生活里，还有在线课程，都需要做的更好 。 坚持按自己的目标前进。目标之外的事情，可以不必那么坚持。盯住目标前进。自己的想法，在这次承德之行得到一定的肯定，我所需要做的就是时时清楚自己的目标，和为了达到目标需要做的和不必做的事情。 That&#8217;s all. Q3 is coming, Do your best. Related Posts:words to share &#8211; series 3wp-tsina 0.1.5 发布&#8211;新浪微博WordPress插件words to share &#8212; series 2wp-tsina 0.1.6[新浪微博WordPress插件] 修正发布时出现HTML代码的bugwp-tsina 0.1.7[新浪微博WordPress插件] 修正后台设置发布显示bug]]></description>
			<content:encoded><![CDATA[<blockquote><p>2010年过了大半， 我的计划实现了多少？不管计划有没有实现，时间都已经义无反顾的跑了过去。所以， 我计划没有实现的变成了遗憾，实现了的变成了事实 。 下半年，实现计划的机会来了，对自己好一点。别为一些不相干的事情所牵绊，拖沓。 没有人会可怜你！&#8211;<a href="http://t.sina.com.cn/kellybi" target="_blank">前同事毕琳</a></p></blockquote>
<p>看到前同事Kelly的这段话的时候，2010年的Q3已经来临。今天是7月4号，在Q3已经过去了4天的时候，在这里做一下Q1,Q2的回顾，根据自己的计划对Q3Q4也做个规划准备。</p>
<p>在年初<a href="http://observerlife.com/hello-2010/" target="_blank">为2010制定的几项任务</a>里，第二项已经得到执行，换了工作，到了<a href="http://www.dangdang.com" target="_blank">当当网</a>工作，如今虽仍未完全适应这个新的环境，不过与过去对比来说，还是有了相当大的变化。有了自己的生活时间，感觉很是不同。第一项英语，已经报了EF，虽然比较贵，不过感觉还不错，只是世界杯开始至今，我还未上过课，从明天开始重新上课。带爸妈出游的计划，得在下半年来执行了。女朋友的事情，目前努力中。今年日志得到了一定程度的坚持，不过还是继续努力。</p>
<p>总的来说，上半年计划里的事情，执行的还算凑合，这里可以打个60分吧。很多让我心虚的或不方便说出来的事，暂时先不往出讲了。在Q3Q4，在下面几个方面需要努力做到：</p>
<ol>
<li>坚持学好英语。不光是课堂上，平时生活里，还有在线课程，都需要做的更好 。</li>
<li>坚持按自己的目标前进。目标之外的事情，可以不必那么坚持。盯住目标前进。自己的想法，在这次承德之行得到一定的肯定，我所需要做的就是时时清楚自己的目标，和为了达到目标需要做的和不必做的事情。</li>
</ol>
<p>That&#8217;s all. Q3 is coming, Do your best.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://observerlife.com/words-to-share-series-3/" rel="bookmark" class="crp_title">words to share &#8211; series 3</a></li><li><a href="http://observerlife.com/wp-tsina-0-1-4/" rel="bookmark" class="crp_title">wp-tsina 0.1.5 发布&#8211;新浪微博WordPress插件</a></li><li><a href="http://observerlife.com/words-to-share-series-2/" rel="bookmark" class="crp_title">words to share &#8212; series 2</a></li><li><a href="http://observerlife.com/wp-tsina-0-1-6%e6%96%b0%e6%b5%aa%e5%be%ae%e5%8d%9awordpress%e6%8f%92%e4%bb%b6-%e4%bf%ae%e6%ad%a3%e5%8f%91%e5%b8%83%e6%97%b6%e5%87%ba%e7%8e%b0html%e4%bb%a3%e7%a0%81%e7%9a%84bug/" rel="bookmark" class="crp_title">wp-tsina 0.1.6[新浪微博WordPress插件] 修正发布时出现HTML代码的bug</a></li><li><a href="http://observerlife.com/wp-tsina-0-1-7%e6%96%b0%e6%b5%aa%e5%be%ae%e5%8d%9awordpress%e6%8f%92%e4%bb%b6-%e4%bf%ae%e6%ad%a3%e5%90%8e%e5%8f%b0%e8%ae%be%e7%bd%ae%e5%8f%91%e5%b8%83%e6%98%be%e7%a4%babug/" rel="bookmark" class="crp_title">wp-tsina 0.1.7[新浪微博WordPress插件] 修正后台设置发布显示bug</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://observerlife.com/q3-is-coming/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
