<?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>Xiao Meng's Blog</title>
	<atom:link href="http://ender.hitidea.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://ender.hitidea.org</link>
	<description>Rover In The Small Word</description>
	<lastBuildDate>Sun, 28 Dec 2008 21:03:46 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Hello world!</title>
		<link>http://ender.hitidea.org/2008/12/28/hello-world/</link>
		<comments>http://ender.hitidea.org/2008/12/28/hello-world/#comments</comments>
		<pubDate>Sun, 28 Dec 2008 21:03:46 +0000</pubDate>
		<dc:creator>ender</dc:creator>
				<category><![CDATA[未分类]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[欢迎来到撞击思想. 这是你的第一篇blog，开始你的撞击思想之旅吧！... ]]></description>
			<content:encoded><![CDATA[<p>欢迎来到<a href="http://hitidea.org/">撞击思想</a>. 这是你的第一篇blog，开始你的撞击思想之旅吧！</p>
]]></content:encoded>
			<wfw:commentRss>http://ender.hitidea.org/2008/12/28/hello-world/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Latex中文配置</title>
		<link>http://ender.hitidea.org/2008/10/20/latex%e4%b8%ad%e6%96%87%e9%85%8d%e7%bd%ae/</link>
		<comments>http://ender.hitidea.org/2008/10/20/latex%e4%b8%ad%e6%96%87%e9%85%8d%e7%bd%ae/#comments</comments>
		<pubDate>Mon, 20 Oct 2008 03:14:33 +0000</pubDate>
		<dc:creator>ender</dc:creator>
				<category><![CDATA[Tool]]></category>
		<category><![CDATA[latex]]></category>
		<category><![CDATA[中文配置]]></category>

		<guid isPermaLink="false">http://xiaomeng.yo2.cn/articles/latex%e4%b8%ad%e6%96%87%e9%85%8d%e7%bd%ae.html</guid>
		<description><![CDATA[
Linux

从源里面安装Texlive2007(apt就是好啊)，之后下载YueWang zhfonts 。解压到$HOME下的.texmf-config 与 .texmf-var文件。搞定。

Windows

还是用CTEX套装吧，别瞎折腾了。
参考http://forum.ubuntu.org.cn/viewtopic.ph... ]]></description>
			<content:encoded><![CDATA[<ul>
<li>Linux</li>
</ul>
<p>从源里面安装Texlive2007(apt就是好啊)，之后下载<a href="http://bj.soulinfo.com/%7Ehugang/tex/tex2007/?C=S;O=A">YueWang zhfonts</a> 。解压到<i>$HOME</i>下的<i>.texmf-config</i> 与 <i>.texmf-var</i>文件。<br />搞定。
<ul>
<li>Windows</li>
</ul>
<p>还是用CTEX套装吧，别瞎折腾了。</p>
<p>参考<br />http://forum.ubuntu.org.cn/viewtopic.php?f=35&amp;t=84013</p>
<p>
<p class="scribefire-powered">Powered by <a href="http://www.scribefire.com/">ScribeFire</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://ender.hitidea.org/2008/10/20/latex%e4%b8%ad%e6%96%87%e9%85%8d%e7%bd%ae/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Buffered I/O and non-buffered I/O</title>
		<link>http://ender.hitidea.org/2008/10/12/buffered-io-and-non-buffered-io/</link>
		<comments>http://ender.hitidea.org/2008/10/12/buffered-io-and-non-buffered-io/#comments</comments>
		<pubDate>Sat, 11 Oct 2008 17:28:18 +0000</pubDate>
		<dc:creator>ender</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[buffered]]></category>
		<category><![CDATA[direct I/O]]></category>
		<category><![CDATA[I/O]]></category>
		<category><![CDATA[O_DIRECT]]></category>
		<category><![CDATA[raw I/O]]></category>
		<category><![CDATA[unbuffered]]></category>

		<guid isPermaLink="false">http://xiaomeng.yo2.cn/articles/buffered-io-and-non-buffered-io.html</guid>
		<description><![CDATA[实验需要对Flash Disk做无系统缓冲的I/O操作，顺便了解了一下Linux下的I/O.
Linux上的块设备的操作可以分为两类：

第一类是使用C标准库中的fopen/fread/fwrite 系列的函数，我们可以称其为 buffered I/O... ]]></description>
			<content:encoded><![CDATA[<p>实验需要对Flash Disk做无系统缓冲的I/O操作，顺便了解了一下Linux下的I/O.</p>
<p>Linux上的块设备的操作可以分为两类：
<ul>
<li>第一类是使用C标准库中的fopen/fread/fwrite 系列的函数，我们可以称其为 buffered I/O。</li>
</ul>
<p>具体的I/O path如下<br />
<blockquote><i><b>Application&lt;-&gt;Library Buffer&lt;-&gt;Operation System Cache&lt;-&gt;File System/Volume Manager&lt;-&gt;Device<br /></b></i></p></blockquote>
<p>library buffer是标准库提供的用户空间的buffer，可以通过setvbuf改变其大小。
<ul>
<li>第二类是使用Linux的系统调用的open/read/write 系列的函数，我们可以称其为 non-buffered I/O。</li>
</ul>
<p>I/O Path<br />
<blockquote><i><b>Application&lt;-&gt; Operation System Cache &lt;-&gt;File System/Volume Manager&lt;-&gt;Device</b></i></p></blockquote>
<p>此外，我们可以通过设置open的<i><b>O_DIRECT</b></i>标志来实现<i><b>Direct I/O</b></i>（或者叫<b><i>Raw I/O</i></b>）,即绕过OS Cache,直接读取Device ( that&#8217;s what we want^o^ ), 等于将OS cache换成自己管理的cache。不过，Linus在邮件列表中建议不这么做，而是使用posix_fadvice, madvice。<a href="http://www.ukuug.org/events/linux2001/papers/html/AArcangeli-o_direct.html">[2]</a>中表明Direct I/O比buffered I/O的性能高很多。</p>
<p>在使用O_DIRECT的注意buffer的address必须是block alignment的(i.e. 初始地址必须是boundary), 可以用posix_memalign()函数分配内存以得到这样的buffer。至于为什么要这样，与实现的mmap有关，参见<a href="http://www.xml.com/ldd/chapter/book/ch13.html">[5]</a>.</p>
<p><b>参考: </b></p>
<ol>
<li>Linux:  Accessing Files With O_DIRECT <a href="http://kerneltrap.org/node/7563">http://kerneltrap.org/node/7563</a></li>
<li>Andrea Arcangeli , O_DIRECT Whitepaper <a href="http://www.ukuug.org/events/linux2001/papers/html/AArcangeli-o_direct.html">http://www.ukuug.org/events/linux2001/papers/html/AArcangeli-o_direct.html</a></li>
<li>A Trip Down the Data Path: I/O and Performance <a href="http://articles.directorym.net/Operating_Systems_System_Calls_and_IO-a894576.html">http://articles.directorym.net/_A_Trip_Down_the_Data_Path_IO_and_Performance-a894569.html</a></li>
<li>Operating Systems System Calls and I/O <a href="http://articles.directorym.net/Operating_Systems_System_Calls_and_IO-a894576.html">http://articles.directorym.net/Operating_Systems_System_Calls_and_IO-a894576.html</a></li>
<li>Linux Device Drivers, 2nd Edition, Chapter 13 mmap and DMA <a href="http://www.xml.com/ldd/chapter/book/ch13.html">http://www.xml.com/ldd/chapter/book/ch13.html</a></li>
<li><a href="http://lists.alioth.debian.org/pipermail/parted-devel/2007-July/thread.html#1855">http://topic.csdn.net/u/20080806/10/cdb1faa1-0146-4e96-8b12-26ba60acdbb5.html</a></li>
<li><a href="http://lists.alioth.debian.org/pipermail/parted-devel/2007-July/thread.html#1855">http://lists.alioth.debian.org/pipermail/parted-devel/2007-July/thread.html#1855</a></li>
<li>Read系统调用剖析, <a href="http://www.ibm.com/developerworks/cn/linux/l-cn-read/">http://www.ibm.com/developerworks/cn/linux/l-cn-read/</a>
</li>
</ol>
<p class="scribefire-powered">Powered by <a href="http://www.scribefire.com/">ScribeFire</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://ender.hitidea.org/2008/10/12/buffered-io-and-non-buffered-io/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>dhcp与静态ip切换</title>
		<link>http://ender.hitidea.org/2008/10/11/dhcp%e4%b8%8e%e9%9d%99%e6%80%81ip%e5%88%87%e6%8d%a2/</link>
		<comments>http://ender.hitidea.org/2008/10/11/dhcp%e4%b8%8e%e9%9d%99%e6%80%81ip%e5%88%87%e6%8d%a2/#comments</comments>
		<pubDate>Fri, 10 Oct 2008 16:06:51 +0000</pubDate>
		<dc:creator>ender</dc:creator>
				<category><![CDATA[Tool]]></category>

		<guid isPermaLink="false">http://xiaomeng.yo2.cn/articles/dhcp%e4%b8%8e%e9%9d%99%e6%80%81ip%e5%88%87%e6%8d%a2.html</guid>
		<description><![CDATA[实验室用的是dhcp，寝室用的是静态ip地址，每次切换起来比较烦人，于是上网搜了一下写了个脚本。

Windows

寝室设置[静态ip地址]
netsh interface ip set address &#8220;本地连接&#8221; static IP 地址&#160;... ]]></description>
			<content:encoded><![CDATA[<p>实验室用的是dhcp，寝室用的是静态ip地址，每次切换起来比较烦人，于是上网搜了一下写了个脚本。</p>
<ul>
<li>Windows</li>
</ul>
<p>寝室设置[静态ip地址]</p>
<blockquote><p><b><span class="userInput">netsh interface ip set address &#8220;本地连接&#8221; static <var>IP 地址</var>&nbsp;<var>子网</var>&nbsp;<var>网关</var>&nbsp;<var>跃点数（一般为1）</var></span><i></i><br />
netsh interface ip set dns &#8220;本地连接&#8221;</b> <b><i>dns地址</i></b>
</p></blockquote>
<p>实验室[动态IP地址]</p>
<blockquote><p><b>netsh interface ip set address &#8220;本地连接&#8221;&nbsp; dhcp</b><br />
<b>netsh interface ip set address &#8220;本地连接&#8221;&nbsp; dhcp</b>
</p></blockquote>
<p><b>参考：</b></p>
<ol>
<li>如何使用 Netsh.exe 工具和命令行开关 <a href="http://support.microsoft.com/kb/242468">http://support.microsoft.com/kb/242468</a></li>
<li>如何使用 NETSH 命令在 Windows 2000 中将静态 IP 地址更改为 DHCP 地址 <a href="http://support.microsoft.com/kb/257748">http://support.microsoft.com/kb/257748</a></li>
</ol>
<ul>
<li>Linux</li>
<p>等用了再说</ul>
<p>Technorati 标签: <a class="performancingtags" href="http://technorati.com/tag/%E8%84%9A%E6%9C%AC" rel="tag">脚本</a>, <a class="performancingtags" href="http://technorati.com/tag/netsh" rel="tag">netsh</a>, <a class="performancingtags" href="http://technorati.com/tag/dhcp" rel="tag">dhcp</a>, <a class="performancingtags" href="http://technorati.com/tag/static%20ip" rel="tag">static ip</a></p>
]]></content:encoded>
			<wfw:commentRss>http://ender.hitidea.org/2008/10/11/dhcp%e4%b8%8e%e9%9d%99%e6%80%81ip%e5%88%87%e6%8d%a2/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>git</title>
		<link>http://ender.hitidea.org/2008/10/04/git/</link>
		<comments>http://ender.hitidea.org/2008/10/04/git/#comments</comments>
		<pubDate>Fri, 03 Oct 2008 17:27:59 +0000</pubDate>
		<dc:creator>ender</dc:creator>
				<category><![CDATA[Tool]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[scm]]></category>

		<guid isPermaLink="false">http://xiaomeng.yo2.cn/articles/git.html</guid>
		<description><![CDATA[git是一种分布式的版本控制软件。前段时间完成GSoC的时候用过一段时间，非常强悍！下面是一些资源以及一些常用的命令。 
&#160;
Resources


中文教程 

http://www.bitsun.com/documents/gittutorcn.htm 

gitHub... ]]></description>
			<content:encoded><![CDATA[<p class="line874">git是一种分布式的版本控制软件。前段时间完成GSoC的时候用过一段时间，非常强悍！下面是一些资源以及一些常用的命令。 <span class="anchor"></span><span class="anchor"></span></p>
<p class="line867">&nbsp;</p>
<h1>Resources</h1>
<p><span class="anchor"></span></p>
<ul>
<li>中文教程 <span class="anchor"></span></li>
</ul>
<p class="line867"><a href="http://www.bitsun.com/documents/gittutorcn.htm" class="http">http://www.bitsun.com/documents/gittutorcn.htm</a> <span class="anchor"></span></p>
<ul>
<li>gitHub上的guide (强列推荐)基本上你想问的问题都有了  <span class="anchor"></span></li>
</ul>
<p class="line867"><a href="http://github.com/guides/Home" class="http">http://github.com/guides/Home</a> <span class="anchor"></span></p>
<ul>
<li>上面的精简版 <span class="anchor"></span></li>
</ul>
<p class="line867"><a href="http://www.sourcemage.org/Git_Guide" class="http">http://www.sourcemage.org/Git_Guide</a> <span class="anchor"></span></p>
<ul>
<li>Kernel Hackers&#8217; Guide to git  <span class="anchor"></span></li>
</ul>
<p class="line867"><a href="http://linux.yyz.us/git-howto.html" class="http">http://linux.yyz.us/git-howto.html</a> <span class="anchor"></span>最后，最重要的还有官方文档。 <span class="anchor"></span><span class="anchor"></span></p>
<p class="line867">&nbsp;</p>
<h1>Useful Commands</h1>
<p><span class="anchor"></span></p>
<h2>Day of GIT</h2>
<p><span class="anchor"></span></p>
<p class="line867"><span class="anchor"></span></p>
<pre>    $ git clone http://xxx
<span class="anchor"></span>    $ git branch gsoc           # new branch
<span class="anchor"></span>    $ git log #浏览历史
<span class="anchor"></span>    $ git show 12798172e98f1    #显示相应的版本
<span class="anchor"></span>    $ git-tag old 12798172e98f1 #为版本命名
<span class="anchor"></span>    $ git diff a..old a..gsoc   #比较两个版本
<span class="anchor"></span></pre>
<p><span class="anchor"></span><span class="anchor"></span></p>
<p class="line867">&nbsp;</p>
<h2>Revert</h2>
<p><span class="anchor"></span></p>
<p class="line874">回到上次的commit状态(撤除现有的所有修改) <span class="anchor"></span>$ git reset &#8211;hard <span class="anchor"></span>回到某个commit状态 <span class="anchor"></span>$ git revert $id <span class="anchor"></span><span class="anchor"></span></p>
<p class="line867">&nbsp;</p>
<h2>Merge</h2>
<p><span class="anchor"></span></p>
<p class="line874">合并两个branch <span class="anchor"></span>$ git merge $id <span class="anchor"></span><span class="anchor"></span></p>
<p class="line867">&nbsp;</p>
<h2>remote</h2>
<p><span class="anchor"></span></p>
<p class="line874">push一个branch<span class="anchor"></span> [code]$ git push origin branch-name[/code]</p>
<p class="line874"><span class="anchor"></span>删除一个branch [code]$ git push origin :branch-name[/code]</p>
<h2>Misc</h2>
<p><span class="anchor"></span></p>
<p class="line874">这样一个场景 <span class="anchor"></span><span class="anchor"></span></p>
<pre>        repos in web
<span class="anchor"></span>        /               \
<span class="anchor"></span>repos1          repos2
<span class="anchor"></span> |
<span class="anchor"></span> branch-my
<span class="anchor"></span></pre>
<p><span class="anchor"></span></p>
<p class="line874">现在要把原来在branch-my移到repos2下，可以通过patch来完成。 <span class="anchor"></span><span class="anchor"></span></p>
<p>To Be Continued&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://ender.hitidea.org/2008/10/04/git/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>数据管理研究的问题</title>
		<link>http://ender.hitidea.org/2008/08/15/%e6%95%b0%e6%8d%ae%e7%ae%a1%e7%90%86%e7%a0%94%e7%a9%b6%e7%9a%84%e9%97%ae%e9%a2%98/</link>
		<comments>http://ender.hitidea.org/2008/08/15/%e6%95%b0%e6%8d%ae%e7%ae%a1%e7%90%86%e7%a0%94%e7%a9%b6%e7%9a%84%e9%97%ae%e9%a2%98/#comments</comments>
		<pubDate>Fri, 15 Aug 2008 13:00:16 +0000</pubDate>
		<dc:creator>ender</dc:creator>
				<category><![CDATA[Research]]></category>
		<category><![CDATA[DB]]></category>
		<category><![CDATA[MOD]]></category>
		<category><![CDATA[数据管理]]></category>

		<guid isPermaLink="false">http://xiaomeng.yo2.cn/articles/%e6%95%b0%e6%8d%ae%e7%ae%a1%e7%90%86%e7%a0%94%e7%a9%b6%e7%9a%84%e9%97%ae%e9%a2%98.html</guid>
		<description><![CDATA[数据管理要研究的问题本质上是 在各种计算环境下针对各种数据类型的各种计算问题。
大概有下面这些

 计算环境

单机, 分布式(P2P, Sensor Network), 并行
Flash Disk,多核,GPU,Cache

数据类型

结构化... ]]></description>
			<content:encoded><![CDATA[<p>数据管理要研究的问题本质上是 在各种计算环境下针对各种数据类型的各种计算问题。<br />
大概有下面这些</p>
<ul>
<li> 计算环境</li>
</ul>
<p>单机, 分布式(P2P, Sensor Network), 并行<br />
Flash Disk,多核,GPU,Cache</p>
<ul>
<li>数据类型</li>
</ul>
<p>结构化数据(表),半结构化的数据(XML),无结构的数据(Web)<br />
图<br />
高维数据(多媒体数据&#8230;)<br />
数据流<br />
uncertain的数据</p>
<ul>
<li>计算问题</li>
</ul>
<p>数据存取-索引结构<br />
查询- 传统的查询操作, skyline, top-k, knn, keyword search, 自己定义一种查询(这个比较牛X)<br />
数据挖掘 &#8211; 聚类<br />
安全,隐私保护<br />
信息集成 &#8211; schema mapping</p>
<p>而(计算环境 × 数据类型 × 计算问题)的笛卡尔乘积就构成了问题空间:-D<br />
比如SIGMOD08<br />
有这种比较古怪的<br />
Monochromatic and bichromatic reverse skyline search over uncertain databases<br />
还有这种比较有才的<br />
EASE An Effective 3-in-1 Keyword Search Method for Unstructured, Semi-structured and Structured Data<br />
可以找一个比较古怪的组合来做一下,嘿嘿~</p>
]]></content:encoded>
			<wfw:commentRss>http://ender.hitidea.org/2008/08/15/%e6%95%b0%e6%8d%ae%e7%ae%a1%e7%90%86%e7%a0%94%e7%a9%b6%e7%9a%84%e9%97%ae%e9%a2%98/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>回家啦</title>
		<link>http://ender.hitidea.org/2008/07/17/%e5%9b%9e%e5%ae%b6%e5%95%a6/</link>
		<comments>http://ender.hitidea.org/2008/07/17/%e5%9b%9e%e5%ae%b6%e5%95%a6/#comments</comments>
		<pubDate>Thu, 17 Jul 2008 14:52:02 +0000</pubDate>
		<dc:creator>ender</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[]]></category>

		<guid isPermaLink="false">http://xiaomeng.yo2.cn/articles/%e5%9b%9e%e5%ae%b6%e5%95%a6.html</guid>
		<description><![CDATA[今天，又送走两个人。

我也总算在走之前完成了GSoC project PostgreSQL的第一个patch;-)中期检查算是通过了，之后还要抓紧时间测试。
明天就要回家了。还好，有同学一起走。
湖北的酷暑，我回来... ]]></description>
			<content:encoded><![CDATA[<p>今天，又送走两个人。<br />
</br><br />
我也总算在走之前完成了GSoC project PostgreSQL的第一个patch;-)中期检查算是通过了，之后还要抓紧时间测试。<br />
明天就要回家了。还好，有同学一起走。<br />
<big>湖北的酷暑，我回来了～～～</big>
<p class="poweredbyperformancing"><i>Powered by <a href="http://scribefire.com/">ScribeFire</a>.</i></p>
]]></content:encoded>
			<wfw:commentRss>http://ender.hitidea.org/2008/07/17/%e5%9b%9e%e5%ae%b6%e5%95%a6/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>结束与开始</title>
		<link>http://ender.hitidea.org/2008/07/15/%e7%bb%93%e6%9d%9f%e4%b8%8e%e5%bc%80%e5%a7%8b/</link>
		<comments>http://ender.hitidea.org/2008/07/15/%e7%bb%93%e6%9d%9f%e4%b8%8e%e5%bc%80%e5%a7%8b/#comments</comments>
		<pubDate>Tue, 15 Jul 2008 14:23:26 +0000</pubDate>
		<dc:creator>ender</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://xiaomeng.yo2.cn/articles/%e7%bb%93%e6%9d%9f%e4%b8%8e%e5%bc%80%e5%a7%8b.html</guid>
		<description><![CDATA[终于，寝室走得差不多了，不得不离开2063了。


7月是离别的一个月也是疯狂的一个月。

6月末，寝室8个人总算到齐了。本来说8个人轮流请客，结果发现时间安排不过来-__-&#124;&#124;&#124;
结果... ]]></description>
			<content:encoded><![CDATA[<p>终于，寝室走得差不多了，不得不离开2063了。<br />
<br /></br></p>
<ul>
<li>7月是离别的一个月也是疯狂的一个月。</li>
</ul>
<p>6月末，寝室8个人总算到齐了。本来说8个人轮流请客，结果发现时间安排不过来-__-|||<br />
结果只能两人一组了。最终出现了大半夜的去吃夜宵，然后一群人去K歌到早上5点，结果，某人的嗓子沙哑了&#8230;<br />
要毕业的人果然都是疯狂的。</p>
<ul>
<li>7月7号,毕业典礼。</li>
</ul>
<p>学士服，合影，抛向空中的学士帽，这就是毕业了。想起来，4年，原来也只是弹指一挥间。<br />
晚上是班级的散伙饭。一群人喝得酩酊大醉。才明白，人为什么要喝酒。羁绊太多，有些话，人在清醒是说不出来的。一个个抱着痛哭。每个人或许都有不为人知的苦痛和留恋吧。人生苦短，能大声痛哭的时候又有几时？不如哭个痛快。</p>
<ul>
<li>7月14号是住在二公寓的最后一天。</li>
</ul>
<p>原本规定8号就得离校，后来知道其实可以多呆几天，结果寝室的8个人只有1个人走了，3个人退了票;-)<br />
7个人的寝室还是像以前那样吵吵闹闹，让人有一种幻觉－这只不过是另外一个普通的暑假罢了，一切如常。而毕业只不过是一场梦。大家一起打游戏，去看午夜场的赤壁首映&#8230;&#8230;很惬意的日子呢。<br />
只不过，该离开的始终要离开。昨天已是住在二公寓的最后一天，寝室的兄弟一个又一个的走了。送别罗的时候，某人哭得稀里哗啦。<br />
昨天搬到了9公寓，醒来见到的，不再是熟悉的面孔，我才真正意识到——真的是毕业了，有很多人很久都会见不到了。</p>
<p>不写了，我们在大学的这四年中，相遇，相知，相离。人生本就聚多离少，四年的相聚，我们应该知足了。<br />
大家，一路顺风，前程似锦，有缘再见，我会永远想念你们的。2063的兄弟们，我会记得我们走过的那段日子的。</p>
<p>大学四年的生活终于划上了一个休止符了。一起迎接新的生活吧！</p>
]]></content:encoded>
			<wfw:commentRss>http://ender.hitidea.org/2008/07/15/%e7%bb%93%e6%9d%9f%e4%b8%8e%e5%bc%80%e5%a7%8b/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>推荐《把时间当作朋友》</title>
		<link>http://ender.hitidea.org/2008/06/08/%e6%8e%a8%e8%8d%90%e3%80%8a%e6%8a%8a%e6%97%b6%e9%97%b4%e5%bd%93%e4%bd%9c%e6%9c%8b%e5%8f%8b%e3%80%8b/</link>
		<comments>http://ender.hitidea.org/2008/06/08/%e6%8e%a8%e8%8d%90%e3%80%8a%e6%8a%8a%e6%97%b6%e9%97%b4%e5%bd%93%e4%bd%9c%e6%9c%8b%e5%8f%8b%e3%80%8b/#comments</comments>
		<pubDate>Sun, 08 Jun 2008 04:53:27 +0000</pubDate>
		<dc:creator>ender</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://xiaomeng.yo2.cn/articles/%e6%8e%a8%e8%8d%90%e3%80%8a%e6%8a%8a%e6%97%b6%e9%97%b4%e5%bd%93%e4%bd%9c%e6%9c%8b%e5%8f%8b%e3%80%8b.html</guid>
		<description><![CDATA[上个月时间利用得真是混乱不堪。在网上看到李笑来老师的《把时间当作朋友》如当头棒喝，醍醐灌顶，一身冷汗&#8230;&#8230;（省略若干词）。
强烈推荐，很好很强大。
从现在开始作“事件-时... ]]></description>
			<content:encoded><![CDATA[<p>上个月时间利用得真是混乱不堪。在网上看到<a href="http://www.xiaolai.net/">李笑来</a>老师的<a href="http://www.xiaolai.net/?p=484">《把时间当作朋友》</a>如当头棒喝，醍醐灌顶，一身冷汗&#8230;&#8230;（省略若干词）。</p>
<p>强烈推荐，很好很强大。</p>
<p>从现在开始作“<a href="http://www.xiaolai.net/?p=427">事件-时间日志</a>”，把每天做的事情以及花费的时间记录下来，很有效哦。</p>
<p>P.S. 端午节快乐。<br />Google今天也换logo了,很漂亮啊，可惜没粽子;-)</p>
<p><img src="http://xiaomeng.yo2.cn/wp-content/uploads/112/11241/2008/06/moz-screenshot.jpg" /><br /><i>Powered by <a href="http://scribefire.com/">ScribeFire</a>.</i></p>
]]></content:encoded>
			<wfw:commentRss>http://ender.hitidea.org/2008/06/08/%e6%8e%a8%e8%8d%90%e3%80%8a%e6%8a%8a%e6%97%b6%e9%97%b4%e5%bd%93%e4%bd%9c%e6%9c%8b%e5%8f%8b%e3%80%8b/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BLESS</title>
		<link>http://ender.hitidea.org/2008/06/07/bless-2/</link>
		<comments>http://ender.hitidea.org/2008/06/07/bless-2/#comments</comments>
		<pubDate>Sat, 07 Jun 2008 05:44:17 +0000</pubDate>
		<dc:creator>ender</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://xiaomeng.yo2.cn/articles/bless-2.html</guid>
		<description><![CDATA[又是一年高考，转眼间，4年就过去了。工大今天貌似初中生的什么考试，看到红楼外面的家长们，想起当年高考时，父亲就是这样等在外面的吧，真的恍若隔世。
弟弟今天也高考，bless~~~
P.S.... ]]></description>
			<content:encoded><![CDATA[<p>又是一年高考，转眼间，4年就过去了。工大今天貌似初中生的什么考试，看到红楼外面的家长们，想起当年高考时，父亲就是这样等在外面的吧，真的恍若隔世。</p>
<p>弟弟今天也高考，bless~~~</p>
<p>P.S.今天还是工大88周年的校庆日:-)</p>
]]></content:encoded>
			<wfw:commentRss>http://ender.hitidea.org/2008/06/07/bless-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
