<?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>wd and cc &#187; lilina</title>
	<atom:link href="http://wdicc.com/tag/lilina/feed/" rel="self" type="application/rss+xml" />
	<link>http://wdicc.com</link>
	<description>Happy every day...</description>
	<lastBuildDate>Wed, 01 Feb 2012 03:27:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>安装了一个 Gregarius</title>
		<link>http://wdicc.com/install-gregarius/</link>
		<comments>http://wdicc.com/install-gregarius/#comments</comments>
		<pubDate>Tue, 23 Jan 2007 03:40:38 +0000</pubDate>
		<dc:creator>wd</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[Gregarius]]></category>
		<category><![CDATA[lilina]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://blog.wdicc.com/wordpress/2007/01/23/291/</guid>
		<description><![CDATA[lilina 的速度有点慢，就尝试换一个看看，装好了 Gregarius ，使用了下感觉还行，打开页面的时候比较慢，不知道是卡在哪里。lilina 那个以后不更新了，就使用 Gregarius 了。 wordpress 也更新了，到 2.1 了。好像增加了一些新功能，等会升级看看。]]></description>
			<content:encoded><![CDATA[<p>lilina 的速度有点慢，就尝试换一个看看，装好了 Gregarius ，使用了下感觉还行，打开页面的时候比较慢，不知道是卡在哪里。lilina 那个以后不更新了，就使用 <a href="http://rss.wdicc.com">Gregarius</a> 了。</p>
<p>wordpress 也更新了，到 2.1 了。好像增加了一些新功能，等会升级看看。</p>
]]></content:encoded>
			<wfw:commentRss>http://wdicc.com/install-gregarius/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>lilina里面不能正确生成前一天的cache的问题</title>
		<link>http://wdicc.com/lilina-cache/</link>
		<comments>http://wdicc.com/lilina-cache/#comments</comments>
		<pubDate>Wed, 06 Dec 2006 08:44:07 +0000</pubDate>
		<dc:creator>wd</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[lilina]]></category>
		<category><![CDATA[rss]]></category>

		<guid isPermaLink="false">http://blog.wdicc.com/wordpress/2006/12/06/279/</guid>
		<description><![CDATA[lilina可以生成好几天的cache，可以看到上面有每天的链接可以访问，可是这两天发现，在today里面明明看到前一天晚上23:40多有rss，结果点击到前一天生成的链接却发现，没有？见鬼了。 仔细研究下，似乎是23:00之后的rss都不会做cache，咋回事哩，翻了一下源代码，发现问题所在了。 index.php里面有下面一句： $saven_file = realpath&#40;&#34;.&#34;&#41;.&#34;/&#34;.date&#40;'Ymd'&#41;.&#34;.html&#34;; 这是设置cache文件的名称和位置的语句，可以看到文件名里面用的是当前的日期。单独这一点不会有问题，问题在于我的cron里面是每隔一个小时的0分钟执行一次，也就是1:00，2:00……23:00，0:00，这样，23:00之后0:00之前的rss就被吞掉了。解决方法就是将cron修改为类似下面的，让他每隔整点的58分执行更新。 58 */1 * * * ur_cmd]]></description>
			<content:encoded><![CDATA[<p>lilina可以生成好几天的cache，可以看到上面有每天的链接可以访问，可是这两天发现，在today里面明明看到前一天晚上23:40多有rss，结果点击到前一天生成的链接却发现，没有？见鬼了。</p>
<p>仔细研究下，似乎是23:00之后的rss都不会做cache，咋回事哩，翻了一下源代码，发现问题所在了。</p>
<p>index.php里面有下面一句：</p>

<div class="wp_syntax"><div class="code"><pre class="php"><span class="re0">$saven_file</span> <span class="sy0">=</span> <a href="http://www.php.net/realpath"><span class="kw3">realpath</span></a><span class="br0">&#40;</span><span class="st0">&quot;.&quot;</span><span class="br0">&#41;</span><span class="sy0">.</span><span class="st0">&quot;/&quot;</span><span class="sy0">.</span><a href="http://www.php.net/date"><span class="kw3">date</span></a><span class="br0">&#40;</span><span class="st_h">'Ymd'</span><span class="br0">&#41;</span><span class="sy0">.</span><span class="st0">&quot;.html&quot;</span><span class="sy0">;</span></pre></div></div>

<p>这是设置cache文件的名称和位置的语句，可以看到文件名里面用的是当前的日期。单独这一点不会有问题，问题在于我的cron里面是每隔一个小时的0分钟执行一次，也就是1:00，2:00……23:00，0:00，这样，23:00之后0:00之前的rss就被吞掉了。解决方法就是将cron修改为类似下面的，让他每隔整点的58分执行更新。</p>

<div class="wp_syntax"><div class="code"><pre class="bash"><span class="nu0">58</span> <span class="sy0">*/</span><span class="nu0">1</span> <span class="sy0">*</span> <span class="sy0">*</span> <span class="sy0">*</span> ur_cmd</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://wdicc.com/lilina-cache/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>咱也玩玩lilina</title>
		<link>http://wdicc.com/my-lilina/</link>
		<comments>http://wdicc.com/my-lilina/#comments</comments>
		<pubDate>Fri, 01 Dec 2006 02:52:07 +0000</pubDate>
		<dc:creator>wd</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[GFW]]></category>
		<category><![CDATA[lilina]]></category>
		<category><![CDATA[rss]]></category>

		<guid isPermaLink="false">http://blog.wdicc.com/wordpress/2006/12/01/275/</guid>
		<description><![CDATA[好像不知道从什么时候开始流行起了lilina，自己捣鼓捣鼓也装了一个，我的lilina。其实google reader挺好的，不过就是google有时候会被GFW干掉，这样reader也不能访问了。最近这种情况好像还出现很频繁，真是头痛，其实google reader挺好用的，不过现在就试试看lilina了。 今天也看到一些关于干掉GFW的文章[1][2]，但是需要国外的ssh服务器，偶没有。。不过这个ssh tunnel倒是个不错的东西，比装代理服务器简单，嗯。 用了lilina之后，发现sina的rss好像总是在最前面，而实际上他们更新却是以前的事情了，肯定是他们的rss输出有问题，感觉这样很无耻。]]></description>
			<content:encoded><![CDATA[<p>好像不知道从什么时候开始流行起了lilina，自己捣鼓捣鼓也装了一个，<a href="http://blog.wdicc.com/lilina/index.html">我的lilina</a>。其实google reader挺好的，不过就是google有时候会被GFW干掉，这样reader也不能访问了。最近这种情况好像还出现很频繁，真是头痛，其实google reader挺好用的，不过现在就试试看lilina了。</p>
<p>今天也看到一些关于干掉GFW的文章<a href="http://yesure.blogspot.com/2006/11/ssh-tunnelfuck-gfw.html">[1]</a><a href="http://blog.cathayan.org/item/1508">[2]</a>，但是需要国外的ssh服务器，偶没有。。不过这个ssh tunnel倒是个不错的东西，比装代理服务器简单，嗯。</p>
<p>用了lilina之后，发现sina的rss好像总是在最前面，而实际上他们更新却是以前的事情了，肯定是他们的rss输出有问题，感觉这样很无耻。</p>
]]></content:encoded>
			<wfw:commentRss>http://wdicc.com/my-lilina/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

