<?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"
	>

<channel>
	<title>rm lulu -rf</title>
	<atom:link href="http://www.rmlulu.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.rmlulu.com</link>
	<description>我和超人的唯一区别是：我把内裤穿在里面了。</description>
	<pubDate>Sun, 24 May 2009 02:59:30 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
	<language>en</language>
			<item>
		<title>onReady函数 (类似jquery的 $(document).ready() )</title>
		<link>http://www.rmlulu.com/81.html</link>
		<comments>http://www.rmlulu.com/81.html#comments</comments>
		<pubDate>Sun, 24 May 2009 02:59:30 +0000</pubDate>
		<dc:creator>lulu</dc:creator>
		
		<category><![CDATA[javascript]]></category>

		<category><![CDATA[jquery]]></category>

		<category><![CDATA[onReady]]></category>

		<category><![CDATA[ready()]]></category>

		<guid isPermaLink="false">http://www.rmlulu.com/?p=81</guid>
		<description><![CDATA[因为网络问题，页面加载的速度不一致，导致一些js出错。
所以我们经常需要在页面都加载完成后再执行相应的js操作，那样才会避免很多麻烦和意外。
使用方法：
EF.onReady(functionName);
例：
EF.onReady(function a(){alert(document.getElementById);});
EF.onReady(function b(){alert(document.lastChild);});
&#60;script type=&#8221;text/javascript&#8221;&#62;
var EF = {
 isGecko: function()
 {
 return navigator.userAgent.indexOf(&#8221;Gecko&#8221;) == -1 ? false :true;
 },
 
 isOpera: function()
 {
 return navigator.userAgent.indexOf(&#8221;Opera&#8221;) == -1 ? false :true;
 },
 
 isIE: function()
 {
 return document.all ?  true : false;
 },
 
 onReady: function(newFunction)
 {
 if(newFunction == undefined)
 return false;
 
 this.domReady = false;
 
 [...]]]></description>
			<content:encoded><![CDATA[<p>因为网络问题，页面加载的速度不一致，导致一些js出错。</p>
<p>所以我们经常需要在页面都加载完成后再执行相应的js操作，那样才会避免很多麻烦和意外。</p>
<p>使用方法：<br />
EF.onReady(functionName);<br />
例：<br />
EF.onReady(function a(){alert(document.getElementById);});<br />
EF.onReady(function b(){alert(document.lastChild);});</p>
<p>&lt;script type=&#8221;text/javascript&#8221;&gt;</p>
<p>var EF = {</p>
<p><span> </span>isGecko: function()</p>
<p><span> </span>{</p>
<p><span> </span>return navigator.userAgent.indexOf(&#8221;Gecko&#8221;) == -1 ? false :true;</p>
<p><span> </span>},</p>
<p><span> </span></p>
<p><span> </span>isOpera: function()</p>
<p><span> </span>{</p>
<p><span> </span>return navigator.userAgent.indexOf(&#8221;Opera&#8221;) == -1 ? false :true;</p>
<p><span> </span>},</p>
<p><span> </span></p>
<p><span> </span>isIE: function()</p>
<p><span> </span>{</p>
<p><span> </span>return document.all ?  true : false;</p>
<p><span> </span>},</p>
<p><span> </span></p>
<p><span> </span>onReady: function(newFunction)</p>
<p><span> </span>{</p>
<p><span> </span>if(newFunction == undefined)</p>
<p><span> </span>return false;</p>
<p><span> </span></p>
<p><span> </span>this.domReady = false;</p>
<p><span> </span></p>
<p><span> </span>if(functions == undefined)</p>
<p><span> </span>var functions = [];</p>
<p><span> </span></p>
<p><span> </span>functions.push(newFunction);</p>
<p><span> </span></p>
<p><span> </span>var initial = function()</p>
<p><span> </span>{</p>
<p><span> </span>for(var i in functions)</p>
<p><span> </span>{</p>
<p><span> </span>functions[i]();</p>
<p><span> </span>}</p>
<p><span> </span>}</p>
<p><span> </span></p>
<p><span> </span>this.ready = function()</p>
<p><span> </span>{</p>
<p><span> </span>if(this.domReady)</p>
<p><span> </span>initial();</p>
<p><span> </span></p>
<p><span> </span>if (EF.isGecko() || EF.isOpera()) {</p>
<p><span> </span>try {</p>
<p><span> </span>document.removeEventListener(&#8217;DOMContentLoaded&#8217;, initial);</p>
<p><span> </span>}catch(e){}</p>
<p><span> </span></p>
<p><span> </span>document.addEventListener(&#8217;DOMContentLoaded&#8217;, initial, false);</p>
<p><span> </span>this.domReady = true;</p>
<p><span> </span>}</p>
<p><span> </span>else if (EF.isIE()) {</p>
<p><span> </span></p>
<p><span> </span>var timer = window.setInterval(function()</p>
<p><span> </span>{</p>
<p><span> </span>try {</p>
<p><span> </span>document.body.doScroll(&#8221;left&#8221;);</p>
<p><span> </span>initial();</p>
<p><span> </span>window.clearInterval(timer);</p>
<p><span> </span>this.domReady = true;</p>
<p><span> </span>}</p>
<p><span> </span>catch (e) {}</p>
<p><span> </span>}</p>
<p><span> </span>, 5);<span> </span></p>
<p><span> </span>}</p>
<p><span> </span>}</p>
<p><span> </span>this.ready();</p>
<p><span> </span></p>
<p><span> </span>}</p>
<p>}</p>
<p>EF.onReady(function a(){alert(document.getElementById);});</p>
<p>EF.onReady(function b(){alert(document.lastChild);});</p>
<p>&lt;/script&gt;</p>
<p>来源：http://bbs.blueidea.com/thread-2886882-1-1.html</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rmlulu.com/81.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>高并发缓存触发机制</title>
		<link>http://www.rmlulu.com/79.html</link>
		<comments>http://www.rmlulu.com/79.html#comments</comments>
		<pubDate>Sun, 24 May 2009 02:15:46 +0000</pubDate>
		<dc:creator>lulu</dc:creator>
		
		<category><![CDATA[php]]></category>

		<category><![CDATA[缓存]]></category>

		<category><![CDATA[随机触发]]></category>

		<category><![CDATA[高并发]]></category>

		<category><![CDATA[高并发缓存]]></category>

		<guid isPermaLink="false">http://www.rmlulu.com/?p=79</guid>
		<description><![CDATA[在我们日常的系统中，经常有出现查询才能完成的业务，而此业务必不可少，例如排行数据。
我们一般的解决方法是缓存结果方法：定期一次查询，得到结果写到文件。
而这个定期查询是一般采用的是用户访问触发，而这个解决方法在系统的访问量比较低的时候，是能正常运行的。
但当系统的访问量达到一定的量级的时候(如日ip为 20w)，就会出现并发的情况，就是非常多个人同时触发了定期更新排行数据，那么对于一个非常消耗资源的sql 同时产生，对数据库(如mysql等)肯定是致命的，非常多时候基本就down掉了的。
为了解决上面的问题，而根本问题就是并发，只要减少或者降低并发的机会，那么就可以解决这个问题了的。
看如下代码(php)：

$lastUpdateFile = &#8216;lastUpdateFile.time&#8217;;
$updateingFile = &#8216;updateingFile.lock&#8217;;
$lastUpdate = filectime($lastUpdateFile);
$frequency = 1800;
//note 在缓存到期前的3分钟起，就按20%随机几率随机抽取触发者，如果3分钟内都没有人触发缓存，那么当到缓存期的时候，第一个访问者肯定触发
//note 在触发的生成缓存的时候，就必须确保没有人在触发更新缓存（!file_exists($updateingFile) &#124;&#124; time()-filectime($updateingFile) &#62; 300）
$needUpdate = ((time()-$lastUpdate &#62;$frequency-180)  &#38;&#38; mt_rand(1, 100) &#62; 80 &#124;&#124; time()-$lastUpdate &#62;$frequency) &#38;&#38; (!file_exists($updateingFile) &#124;&#124; time()-filectime($updateingFile) &#62; 300)? true : false;

if($needUpdate) {
touch($updateingFile);
//do something and make cache
//just like select data, insert  data, makecachefile
unlink($updateingFile);
touch($lastUpdateFile);
}


上面代码使用了在一定时间内随机触发缓存，把并发触发几率极大的降低，那么就解决了我们说的根本问题了。
]]></description>
			<content:encoded><![CDATA[<p>在我们日常的系统中，经常有出现查询才能完成的业务，而此业务必不可少，例如排行数据。</p>
<p>我们一般的解决方法是缓存结果方法：定期一次查询，得到结果写到文件。</p>
<p>而这个定期查询是一般采用的是用户访问触发，而这个解决方法在系统的访问量比较低的时候，是能正常运行的。</p>
<p>但当系统的访问量达到一定的量级的时候(如日ip为 20w)，就会出现并发的情况，就是非常多个人同时触发了定期更新排行数据，那么对于一个非常消耗资源的sql 同时产生，对数据库(如mysql等)肯定是致命的，非常多时候基本就down掉了的。</p>
<p>为了解决上面的问题，而根本问题就是并发，只要减少或者降低并发的机会，那么就可以解决这个问题了的。</p>
<p>看如下代码(php)：</p>
<ol>
<li>$lastUpdateFile = &#8216;lastUpdateFile.time&#8217;;</li>
<li>$updateingFile = &#8216;updateingFile.lock&#8217;;</li>
<li>$lastUpdate = filectime($lastUpdateFile);</li>
<li>$frequency = 1800;</li>
<li>//note 在缓存到期前的3分钟起，就按20%随机几率随机抽取触发者，如果3分钟内都没有人触发缓存，那么当到缓存期的时候，第一个访问者肯定触发</li>
<li>//note 在触发的生成缓存的时候，就必须确保没有人在触发更新缓存（!file_exists($updateingFile) || time()-filectime($updateingFile) &gt; 300）</li>
<li>$needUpdate = ((time()-$lastUpdate &gt;$frequency-180)  &amp;&amp; mt_rand(1, 100) &gt; 80 || time()-$lastUpdate &gt;$frequency) &amp;&amp; (!file_exists($updateingFile) || time()-filectime($updateingFile) &gt; 300)? true : false;</li>
<li></li>
<li>if($needUpdate) {</li>
<li>touch($updateingFile);</li>
<li>//do something and make cache</li>
<li>//just like select data, insert  data, makecachefile</li>
<li>unlink($updateingFile);</li>
<li>touch($lastUpdateFile);</li>
<li>}</li>
</ol>
<div></div>
<div>上面代码使用了在一定时间内随机触发缓存，把并发触发几率极大的降低，那么就解决了我们说的根本问题了。</div>
]]></content:encoded>
			<wfw:commentRss>http://www.rmlulu.com/79.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>linux sysstat 网络流量监控</title>
		<link>http://www.rmlulu.com/74.html</link>
		<comments>http://www.rmlulu.com/74.html#comments</comments>
		<pubDate>Thu, 12 Feb 2009 14:26:37 +0000</pubDate>
		<dc:creator>lulu</dc:creator>
		
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.rmlulu.com/?p=74</guid>
		<description><![CDATA[linux 下监控流量
介绍： http://pagesperso-orange.fr/sebastien.godard/index.html
下载： http://pagesperso-orange.fr/sebastien.godard/download.html
而我就使用了
# sar -n DEV 1
如果提示命令不存在，请 ln -sn /installPath/bin/sar  /usr/bin/sar
监控网卡吞吐量的
为了 这个功能而找到强大的 sysstat
更多功能 看官方~

]]></description>
			<content:encoded><![CDATA[<p>linux 下监控流量</p>
<p>介绍：<a href="http://pagesperso-orange.fr/sebastien.godard/index.html"> http://pagesperso-orange.fr/sebastien.godard/index.html</a></p>
<p>下载： <a href="http://pagesperso-orange.fr/sebastien.godard/download.html">http://pagesperso-orange.fr/sebastien.godard/download.html</a></p>
<p>而我就使用了</p>
<p># sar -n DEV 1</p>
<p>如果提示命令不存在，请 ln -sn /installPath/bin/sar  /usr/bin/sar</p>
<p>监控网卡吞吐量的</p>
<p>为了 这个功能而找到强大的 sysstat</p>
<p>更多功能 看官方~</p>
<p><span id="more-74"></span><!--more--><!--more--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.rmlulu.com/74.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>让人迷惑的网络带宽的单位</title>
		<link>http://www.rmlulu.com/71.html</link>
		<comments>http://www.rmlulu.com/71.html#comments</comments>
		<pubDate>Thu, 12 Feb 2009 14:18:52 +0000</pubDate>
		<dc:creator>lulu</dc:creator>
		
		<category><![CDATA[其他]]></category>

		<guid isPermaLink="false">http://www.rmlulu.com/?p=71</guid>
		<description><![CDATA[一直让我迷惑的 100M独享到底是多大的带宽，一直没有一个直观的理解。
我一直想 100M独享是件多么快乐的事情那， 100m，我们平时上网的 adsl 才 大草原的 2m都爽歪歪了
100M那不是 我睡觉都要笑醒了的
刚才被hao32贱人提醒，去baidu了一下下，终于知道机房说得 100m 实际就是 100Mb
而我理解为 100MB了
因为 1B (byte) = 8b (bit)
我大草原的 
实际我们2m的adsl 其实就是 2Mb=2048kb= 256 kB
100m独享 起就是 12.5 MB 而已
迷惑了好久终于明朗啦~~~~
]]></description>
			<content:encoded><![CDATA[<p>一直让我迷惑的 100M独享到底是多大的带宽，一直没有一个直观的理解。</p>
<p>我一直想 100M独享是件多么快乐的事情那， 100m，我们平时上网的 adsl 才 大草原的 2m都爽歪歪了</p>
<p>100M那不是 我睡觉都要笑醒了的</p>
<p>刚才被hao32贱人提醒，去baidu了一下下，终于知道机房说得 100m 实际就是 100Mb</p>
<p>而我理解为 100MB了</p>
<p>因为 1B (byte) = 8b (bit)</p>
<p>我大草原的 </p>
<p>实际我们2m的adsl 其实就是 2Mb=2048kb= 256 kB</p>
<p>100m独享 起就是 12.5 MB 而已</p>
<p>迷惑了好久终于明朗啦~~~~</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rmlulu.com/71.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>流浪，人生</title>
		<link>http://www.rmlulu.com/68.html</link>
		<comments>http://www.rmlulu.com/68.html#comments</comments>
		<pubDate>Sat, 10 Jan 2009 15:20:59 +0000</pubDate>
		<dc:creator>lulu</dc:creator>
		
		<category><![CDATA[未分类]]></category>

		<guid isPermaLink="false">http://www.rmlulu.com/?p=68</guid>
		<description><![CDATA[http://www.abbs.com.cn/bbs/post/view?bid=18&#38;id=8223166&#38;sty=1&#38;tpg=1&#38;ppg=1&#38;age=0#8223166
 
啥也不说了，膜拜去
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.abbs.com.cn/bbs/post/view?bid=18&amp;id=8223166&amp;sty=1&amp;tpg=1&amp;ppg=1&amp;age=0#8223166">http://www.abbs.com.cn/bbs/post/view?bid=18&amp;id=8223166&amp;sty=1&amp;tpg=1&amp;ppg=1&amp;age=0#8223166</a></p>
<p> </p>
<p>啥也不说了，膜拜去</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rmlulu.com/68.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>开源flash统计图表-Open Flash Chart project</title>
		<link>http://www.rmlulu.com/62.html</link>
		<comments>http://www.rmlulu.com/62.html#comments</comments>
		<pubDate>Tue, 02 Dec 2008 18:07:45 +0000</pubDate>
		<dc:creator>lulu</dc:creator>
		
		<category><![CDATA[flash]]></category>

		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.rmlulu.com/?p=62</guid>
		<description><![CDATA[统计图表你会经常用到
如果不是不是奔着学习去
那么完全可以用现有的
google的
http://code.google.com/apis/chart/
这个不错
但这个还是依赖google
flash的效果历来是美观王道那
所以可以看下开源的
http://teethgrinder.co.uk/open-flash-chart/
开源协议：GNU General Public License.
我使用这个的理由是：
  现成的php类库，支持ajax
拿来就用~~
]]></description>
			<content:encoded><![CDATA[<p>统计图表你会经常用到</p>
<p>如果不是不是奔着学习去</p>
<p>那么完全可以用现有的</p>
<p>google的</p>
<p><a href="http://code.google.com/apis/chart/">http://code.google.com/apis/chart/</a></p>
<p>这个不错</p>
<p>但这个还是依赖google</p>
<p>flash的效果历来是美观王道那</p>
<p>所以可以看下开源的</p>
<p><a href="http://teethgrinder.co.uk/open-flash-chart/">http://teethgrinder.co.uk/open-flash-chart/</a></p>
<p>开源协议：<a href="http://www.gnu.org/copyleft/gpl.html">GNU General Public License</a>.</p>
<p>我使用这个的理由是：</p>
<p>  现成的php类库，支持ajax</p>
<p>拿来就用~~</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rmlulu.com/62.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>让我听了一遍又一遍的 Leona Lewis Run</title>
		<link>http://www.rmlulu.com/55.html</link>
		<comments>http://www.rmlulu.com/55.html#comments</comments>
		<pubDate>Wed, 19 Nov 2008 12:07:57 +0000</pubDate>
		<dc:creator>lulu</dc:creator>
		
		<category><![CDATA[music]]></category>

		<category><![CDATA[Leona Lewis Run]]></category>

		<guid isPermaLink="false">http://www.rmlulu.com/?p=55</guid>
		<description><![CDATA[我真的不知道怎么描述我此时的感受
就是整个人都是在享受
享受这如此美妙的音乐
享受我此时的心情

下载 Leona_Lewis_Run
 
 
I&#8217;ll sing it one last time for you 
Then we really have to go 
You&#8217;ve been the only thing that&#8217;s right 
In all I&#8217;ve done 
And I can barely look at you 
But every single time I do 
I know we&#8217;ll make it anywhere 
Away from here 
Light up, light up 
As if you have a choice 
Even if you cannot hear my voice 
I&#8217;ll [...]]]></description>
			<content:encoded><![CDATA[<p>我真的不知道怎么描述我此时的感受</p>
<p>就是整个人都是在享受</p>
<p>享受这如此美妙的音乐</p>
<p>享受我此时的心情<br />
<embed src="http://www.8box.cn/feed/000000_s_344572_/mini.swf" type="application/x-shockwave-flash" wmode="transparent" width="160" height="32"></embed></p>
<p><a href="http://www.rmlulu.com/Leona_Lewis_Run.mp3">下载 Leona_Lewis_Run</a></p>
<p> </p>
<p> </p>
<p>I&#8217;ll sing it one last time for you <br />
Then we really have to go <br />
You&#8217;ve been the only thing that&#8217;s right <br />
In all I&#8217;ve done </p>
<p>And I can barely look at you <br />
But every single time I do <br />
I know we&#8217;ll make it anywhere <br />
Away from here </p>
<p>Light up, light up <br />
As if you have a choice <br />
Even if you cannot hear my voice <br />
I&#8217;ll be right beside you dear </p>
<p>Louder louder <br />
And we&#8217;ll run for our lives <br />
I can hardly speak I understand <br />
Why you can&#8217;t raise your voice to say </p>
<p>To think I might not see those eyes <br />
Makes it so hard not to cry <br />
And as we say our long goodbye <br />
I nearly do </p>
<p>Light up, light up <br />
As if you have a choice <br />
Even if you cannot hear my voice <br />
I&#8217;ll be right beside you dear </p>
<p>Louder louder <br />
And we&#8217;ll run for our lives <br />
I can hardly speak I understand <br />
Why you can&#8217;t raise your voice to say </p>
<p>Light up, light up <br />
As if you have a choice <br />
Even if you cannot hear my voice <br />
I&#8217;ll be right beside you dear </p>
<p>Louder louder <br />
And we&#8217;ll run for our lives <br />
I can hardly speak I understand <br />
Why you can&#8217;t raise your voice to say</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rmlulu.com/55.html/feed</wfw:commentRss>
<enclosure url="http://www.rmlulu.com/Leona_Lewis_Run.mp3" length="7523426" type="audio/mpeg" />
		</item>
		<item>
		<title>linux下查看当前下的所有目录和数目</title>
		<link>http://www.rmlulu.com/52.html</link>
		<comments>http://www.rmlulu.com/52.html#comments</comments>
		<pubDate>Sun, 31 Aug 2008 01:53:18 +0000</pubDate>
		<dc:creator>lulu</dc:creator>
		
		<category><![CDATA[linux]]></category>

		<category><![CDATA[目录]]></category>

		<category><![CDATA[目录数目]]></category>

		<guid isPermaLink="false">http://www.rmlulu.com/?p=52</guid>
		<description><![CDATA[查看当前目录下的所有目录
ls -la &#124;grep &#8220;^d&#8221;
查看当前目录下的所有目录数目
ls -la &#124;grep &#8220;^d&#8221; &#124;awk &#8216;END {print &#8220;Number of directories: &#8221; NR}&#8217;
查看当前目录下的所有文件
ls -la &#124;grep &#8220;^-&#8221;
查看当前目录所有的文件数目
ls -la &#124;grep &#8220;^-&#8221; &#124;awk &#8216;END {print &#8220;Number of files: &#8221; NR}&#8217;
]]></description>
			<content:encoded><![CDATA[<p>查看当前目录下的所有目录</p>
<p>ls -la |grep &#8220;^d&#8221;</p>
<p>查看当前目录下的所有目录数目</p>
<p>ls -la |grep &#8220;^d&#8221; |awk &#8216;END {print &#8220;Number of directories: &#8221; NR}&#8217;</p>
<p>查看当前目录下的所有文件</p>
<p>ls -la |grep &#8220;^-&#8221;</p>
<p>查看当前目录所有的文件数目</p>
<p>ls -la |grep &#8220;^-&#8221; |awk &#8216;END {print &#8220;Number of files: &#8221; NR}&#8217;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rmlulu.com/52.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>比较有意思的否决-被否决的Google Logo</title>
		<link>http://www.rmlulu.com/49.html</link>
		<comments>http://www.rmlulu.com/49.html#comments</comments>
		<pubDate>Tue, 29 Jul 2008 15:03:33 +0000</pubDate>
		<dc:creator>lulu</dc:creator>
		
		<category><![CDATA[笑笑]]></category>

		<category><![CDATA[Google]]></category>

		<category><![CDATA[Logo]]></category>

		<category><![CDATA[否决]]></category>

		<guid isPermaLink="false">http://www.rmlulu.com/?p=49</guid>
		<description><![CDATA[简介：优胜劣汰，Google  Logo也不例外。幸福的Logo是一样的，不幸的Logo各有各的不幸······

原本打算庆祝：2003年儿童节
拒绝原因：太幼稚
 

原本打算庆祝：香烟问世150周年
拒绝原因：政治上欠妥
 

原本打算庆祝：植入式广告（Product Placement）发明50周年
拒绝原因： 星巴克给的钱太少
 

原本打算庆祝：Google 箴言“不做坏事”提出5周年
拒绝原因：太自恋
 

 原本打算庆祝：几年荷兰画家蒙德里安(以抽象几何图案等为特点的) 诞辰130周年
拒绝原因：太抽象
 

 原本打算庆祝：版权法案（Copyright Act）成立90周年
拒绝原因：使用©符号涉嫌侵权
 

原本打算庆祝：任天堂娱乐系统成立20周年
拒绝原因：宠物鸭协会严正抗议
 

 原本打算庆祝：Googol（一个1后边跟100个0）提出65周年
拒绝原因：太极客
 

 原本打算庆祝：纪念艺术家M.C. Escher的草稿之一
拒绝原因：太恐怖
 

原本打算庆祝：庆祝JPEG图片压缩算法提出20周年
拒绝原因：压缩损失太严重
]]></description>
			<content:encoded><![CDATA[<p>简介：优胜劣汰，Google  Logo也不例外。幸福的Logo是一样的，不幸的Logo各有各的不幸······<br />
<img src="http://blogoscoped.com/files/rejected-logo-1.jpg" alt="" /></p>
<p>原本打算庆祝：2003年儿童节<br />
拒绝原因：太幼稚</p>
<div class="separator"> </div>
<p><img src="http://blogoscoped.com/files/rejected-logo-2.jpg" alt="" /></p>
<p>原本打算庆祝：香烟问世150周年<br />
拒绝原因：政治上欠妥</p>
<div class="separator"> </div>
<p><img src="http://blogoscoped.com/files/rejected-logo-3.jpg" alt="" /></p>
<p>原本打算庆祝：植入式广告（Product Placement）发明50周年<br />
拒绝原因： 星巴克给的钱太少</p>
<div class="separator"> </div>
<p><img src="http://blogoscoped.com/files/rejected-logo-4.jpg" alt="" /></p>
<p>原本打算庆祝：Google 箴言“不做坏事”提出5周年<br />
拒绝原因：太自恋</p>
<div class="separator"> </div>
<p><img src="http://blogoscoped.com/files/rejected-logo-5.jpg" alt="" /></p>
<p> 原本打算庆祝：几年荷兰画家蒙德里安(以抽象几何图案等为特点的) 诞辰130周年<br />
拒绝原因：太抽象</p>
<div class="separator"> </div>
<p><img src="http://blogoscoped.com/files/rejected-logo-6.jpg" alt="" /></p>
<p> 原本打算庆祝：版权法案（Copyright Act）成立90周年<br />
拒绝原因：使用©符号涉嫌侵权</p>
<div class="separator"> </div>
<p><img src="http://blogoscoped.com/files/rejected-logo-7.jpg" alt="" /></p>
<p>原本打算庆祝：任天堂娱乐系统成立20周年<br />
拒绝原因：宠物鸭协会严正抗议</p>
<div class="separator"> </div>
<p><img src="http://blogoscoped.com/files/rejected-logo-8.jpg" alt="" /></p>
<p> 原本打算庆祝：Googol（一个1后边跟100个0）提出65周年<br />
拒绝原因：太极客</p>
<div class="separator"> </div>
<p><img src="http://blogoscoped.com/files/rejected-logo-9.jpg" alt="" /></p>
<p> 原本打算庆祝：纪念艺术家M.C. Escher的草稿之一<br />
拒绝原因：太恐怖</p>
<div class="separator"> </div>
<p><img src="http://blogoscoped.com/files/rejected-logo-10.jpg" alt="" /></p>
<p>原本打算庆祝：庆祝JPEG图片压缩算法提出20周年<br />
拒绝原因：压缩损失太严重</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rmlulu.com/49.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>吃饭 k歌 杀人</title>
		<link>http://www.rmlulu.com/44.html</link>
		<comments>http://www.rmlulu.com/44.html#comments</comments>
		<pubDate>Fri, 18 Jul 2008 18:59:20 +0000</pubDate>
		<dc:creator>lulu</dc:creator>
		
		<category><![CDATA[疯言疯语]]></category>

		<category><![CDATA[k歌]]></category>

		<category><![CDATA[吃饭]]></category>

		<category><![CDATA[杀人游戏]]></category>

		<guid isPermaLink="false">http://www.rmlulu.com/?p=44</guid>
		<description><![CDATA[今天一下班全部同事一起去吃饭
地走-&#62;到地点-&#62;吃饭-&#62;k歌-&#62;杀人
吃饭：饿得太厉害了，肚子都饿疼了，一上菜就马上迅速的吃，今天吃得最多或许是我了
k歌：一到k歌的房间就猛吃，猛喝，下场是肚子疼，嚎了几首，声音接近沙哑，没有水准啊，得多练习。
杀人：这次玩还ok，貌似不是所有人都玩过，不过都玩得挺好的，海军比较牛，居然用杀同伴保身，迷惑群众
哈哈
洗洗睡了
]]></description>
			<content:encoded><![CDATA[<p>今天一下班全部同事一起去吃饭</p>
<p>地走-&gt;到地点-&gt;吃饭-&gt;k歌-&gt;杀人</p>
<p>吃饭：饿得太厉害了，肚子都饿疼了，一上菜就马上迅速的吃，今天吃得最多或许是我了</p>
<p>k歌：一到k歌的房间就猛吃，猛喝，下场是肚子疼，嚎了几首，声音接近沙哑，没有水准啊，得多练习。</p>
<p>杀人：这次玩还ok，貌似不是所有人都玩过，不过都玩得挺好的，海军比较牛，居然用杀同伴保身，迷惑群众</p>
<p>哈哈</p>
<p>洗洗睡了</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rmlulu.com/44.html/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
