<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://rss.shk3.pp.ru/~d/styles/itemcontent.css"?><rss 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/" xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" version="2.0">

<channel>
	<title>猴子的小窝</title>
	
	<link>http://www.shk3.pp.ru</link>
	<description>Monkey 's House</description>
	<lastBuildDate>Sat, 04 Feb 2012 16:57:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://rss.shk3.pp.ru/shk3" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="shk3" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://superfeedr.com/hubbub" /><creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license><feedburner:emailServiceId xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">shk3</feedburner:emailServiceId><feedburner:feedburnerHostname xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>从SVN转向GIT (Turn to GIT from SVN)</title>
		<link>http://www.shk3.pp.ru/2012/01/turn-to-git-from-svn/</link>
		<comments>http://www.shk3.pp.ru/2012/01/turn-to-git-from-svn/#comments</comments>
		<pubDate>Wed, 18 Jan 2012 07:20:58 +0000</pubDate>
		<dc:creator>George Monkey</dc:creator>
				<category><![CDATA[在校学生]]></category>
		<category><![CDATA[电脑爱好者]]></category>
		<category><![CDATA[Git]]></category>
		<category><![CDATA[NP-Carlo]]></category>
		<category><![CDATA[SVN]]></category>

		<guid isPermaLink="false">http://www.shk3.pp.ru/?p=1179</guid>
		<description><![CDATA[版本控制也是一种软件工程技巧，借此能在软件开发的过程中，确保由不同人所编辑的同一程式档案都得到同步。对于猴哥来说，主要用处是在与代码管理和多人协作。 过去猴哥一直使用SVN来实现版本控制，在一位不愿意公开姓名的同学的建议下，猴哥尝试使用Git。其主要原因在于Git可以离线提交，并且能够较好地处理冲突问题。 猴哥于是尝试把手头上正在做的NP-Carlo项目从SVN转换到Git，没想到遇到了不小的麻烦。之前正是由于SVN必须联网提交，NP-Carlo半年来一直没有提交，因此版本控制系统的很多信息都是不正确的，校验这些信息花了猴哥很长时间。尤其是其中将某个目录进行拷贝的过程，导致SVN认为他们是同一个目录的不同工作拷贝，但实际上猴哥是想在同一份工作拷贝中，将一个目录复制成两个——结果就出了这样的麻烦。 在删除了新的拷贝中所有的“.svn”文件以后，SVN的数据终于正确了，然后猴哥将数据最后一次提交，在从托管商那里dump下来了代码仓库，挂在本地的SVN服务器上。 按照教程来说，直接使用下面的语句就可以了。猴哥的电脑可能是因为上一次的程序没有运行完，执行下面的语句后一直没有反应。 重新启动以后，再运行上面的代码就可以了。TortoiseGit也有类似的Git Clone功能，但是如果从本地的工作拷贝导入，会出现一些奇怪的问题。所以猴哥使用了本地的SVN服务器导入。 猴哥其实使用版本控制系统也不多，SVN使用目录来区分trunk、branches、tags；可是Git不是，如果要修改某一个分支，则需要重新checkout来进行切换。刚刚完成导入以后，猴哥郁闷的发现工作目录里只有trunk里面的东西了。 经过猴哥的考虑，仅仅将NP-Carlo核心的一个目录作为trunk导入，其他的内容由于不是本项目的内容，而不再进行版本控制。 经过如此的调整，NP-Carlo项目的工作目录就整洁多了，但是版本号从13变回到了1，这还不包括由于前面说的网络问题，trunk里面一直没有提交的若干次修订。 Git进行软件开发是很不错的，因为其可以为每一段代码追溯来源、进行合并和拆分，但猴哥不打算把所有的版本控制目录都改为Git，特别是即将进行的美国数学建模竞赛中，猴哥依然打算使用SVN，因为Git似乎不适合非代码的东西。 在转换的过程中，猴哥发现了一些不错的书籍（ProGit、SVNBook），打算有机会好好看一看，搞明白版本控制系统的用法。 Revision control, also known as version control and source control (and an aspect of software configuration management or SCM), is the management of changes to documents, programs, large web sites and other information stored as computer files. It is most commonly used in software development, where a teamof people may change the same [...]<p><a href="http://shk3.pp.ru"><img src="http://rss.shk3.pp.ru/shk3.gif" /></a><hr /><small><a href="http://www.shk3.pp.ru/2012/01/turn-to-git-from-svn/">从SVN转向GIT (Turn to GIT from SVN)</a>(&#23436;&#25972;&#29256;&#26412;/Full Text) | <a href="http://creativecommons.org/licenses/by-nc-sa/2.5/cn/">&copy; 2011</a> <a href="http://shk3.pp.ru">Shk3.PP.RU</a></small></p>
]]></description>
			<content:encoded><![CDATA[<p>版本控制也是一种软件工程技巧，借此能在软件开发的过程中，确保由不同人所编辑的同一程式档案都得到同步。对于猴哥来说，主要用处是在与代码管理和多人协作。</p>
<p>过去猴哥一直使用<a href="http://baike.baidu.com/view/183128.htm" target="_blank">SVN</a>来实现版本控制，在一位不愿意公开姓名的同学的建议下，猴哥尝试使用<a href="http://zh.wikipedia.org/zh/Git" target="_blank">Git</a>。其主要原因在于Git可以离线提交，并且能够较好地处理冲突问题。</p>
<p>猴哥于是尝试把手头上正在做的NP-Carlo项目从SVN转换到Git，没想到遇到了不小的麻烦。之前正是由于SVN必须联网提交，NP-Carlo半年来一直没有提交，因此版本控制系统的很多信息都是不正确的，校验这些信息花了猴哥很长时间。尤其是其中将某个目录进行拷贝的过程，导致SVN认为他们是同一个目录的不同工作拷贝，但实际上猴哥是想在同一份工作拷贝中，将一个目录复制成两个——结果就出了这样的麻烦。</p>
<p>在删除了新的拷贝中所有的“.svn”文件以后，SVN的数据终于正确了，然后猴哥将数据最后一次提交，在从托管商那里dump下来了代码仓库，挂在本地的SVN服务器上。</p>
<p>按照<a href="http://progit.org/book/zh/ch8-2.html" target="_blank">教程</a>来说，直接使用下面的语句就可以了。猴哥的电脑可能是因为上一次的程序没有运行完，执行下面的语句后一直没有反应。</p>
<pre class="brush: bash; title: ; notranslate">$ git svn clone svn://localhost --no-meta -s carlo</pre>
<p>重新启动以后，再运行上面的代码就可以了。TortoiseGit也有类似的Git Clone功能，但是如果从本地的工作拷贝导入，会出现一些奇怪的问题。所以猴哥使用了本地的SVN服务器导入。</p>
<p>猴哥其实使用版本控制系统也不多，SVN使用目录来区分trunk、branches、tags；可是Git不是，如果要修改某一个分支，则需要重新checkout来进行切换。刚刚完成导入以后，猴哥郁闷的发现工作目录里只有trunk里面的东西了。</p>
<p>经过猴哥的考虑，仅仅将NP-Carlo核心的一个目录作为trunk导入，其他的内容由于不是本项目的内容，而不再进行版本控制。</p>
<p>经过如此的调整，NP-Carlo项目的工作目录就整洁多了，但是版本号从13变回到了1，这还不包括由于前面说的网络问题，trunk里面一直没有提交的若干次修订。</p>
<p>Git进行软件开发是很不错的，因为其可以为每一段代码追溯来源、进行合并和拆分，但猴哥不打算把所有的版本控制目录都改为Git，特别是即将进行的美国数学建模竞赛中，猴哥依然打算使用SVN，因为Git似乎不适合非代码的东西。</p>
<p>在转换的过程中，猴哥发现了一些不错的书籍（<a href="http://progit.org/book/zh/" target="_blank">ProGit</a>、<a href="http://svnbook.red-bean.com/" target="_blank">SVNBook</a>），打算有机会好好看一看，搞明白版本控制系统的用法。</p>
<p><strong>Revision control</strong>, also known as <strong>version control</strong> and <strong>source control</strong> (and an aspect of <strong>software configuration management</strong> or SCM), is the management of changes to documents, programs, large web sites and other information stored as computer files. It is most commonly used in software development, where a teamof people may change the same files. For the Monkey, it is used to manage the codes and do the team-work.</p>
<p>The Monkey used to code with SVN, which is one of the popular revision control system. With the suggestion from a person who does not want to publish his name, the Monkey decided to  turn to Git, in which the Monkey can commit without the Internet connection.</p>
<p>The Monkey would like to switch the NP-Carlo project from SVN into Git. Because of the requirement of Internet connection when commit, the Monkey had not committed the modifications of NP-Carlo for quite a long time. So, the working copy came to very dirty. Especially the new folder, which was cloned by the monkey, was incorrectly treated as the original folder rather than a new folder. The Monkey spent a long time to solve the problem by deleting all the ".svn" meta-data.</p>
<p>According to <a href="http://progit.org/book/ch8-2.html" target="_blank">the book</a>, the following command would migrate the code into Git. However, the Monkey's computer might not finish its previous task. The command went to irresponsible.</p>
<pre class="brush: bash; title: ; notranslate">$ git svn clone svn://localhost --no-meta -s carlo</pre>
<p>After rebooting, the command above worked for the Monkey. But the cloned folder made the Monkey anxious, in which there was only files in the trunk of SVN working copy. The Monkey realized that Git does not use folders to divide the trunk and branches — the working copy should be re-checkout if the Monkey wants to switch into a branch!</p>
<p>To make the working copy tidy, the Monkey only imported the Carlo folder into Git, and deleted others, which were not in the project, but just for debugging, from the revision control.  After that, the reversion number turned back from 13 to 1, which were not included the uncommitted modifications because of the connection.</p>
<p>Git is good, but the Monkey does not want to switch everything into Git, especially the coming MCM paper. Because the Git may not suit for the non-code stuff.</p>
<p>During the converting, the Monkey found some good books (<a href="http://progit.org/book/" target="_blank">ProGit</a>, <a href="http://svnbook.red-bean.com/" target="_blank">SVNBook</a>), which are worth reading to understand the revision control.</p>
<p><a href="http://shk3.pp.ru"><img src="http://rss.shk3.pp.ru/shk3.gif" /></a><hr /><small><a href="http://www.shk3.pp.ru/2012/01/turn-to-git-from-svn/">从SVN转向GIT (Turn to GIT from SVN)</a>(&#23436;&#25972;&#29256;&#26412;/Full Text) | <a href="http://creativecommons.org/licenses/by-nc-sa/2.5/cn/">&copy; 2011</a> <a href="http://shk3.pp.ru">Shk3.PP.RU</a></small></p>

<p><a href="http://feedads.g.doubleclick.net/~a/oh--qG3gBouKF5frMfRweNgESzc/0/da"><img src="http://feedads.g.doubleclick.net/~a/oh--qG3gBouKF5frMfRweNgESzc/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/oh--qG3gBouKF5frMfRweNgESzc/1/da"><img src="http://feedads.g.doubleclick.net/~a/oh--qG3gBouKF5frMfRweNgESzc/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.shk3.pp.ru/2012/01/turn-to-git-from-svn/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>12月2日在与11级团日活动上的发言提纲</title>
		<link>http://www.shk3.pp.ru/2011/12/december-2-and-11-in-group-activities-on-the-outline-of-the-statement-on/</link>
		<comments>http://www.shk3.pp.ru/2011/12/december-2-and-11-in-group-activities-on-the-outline-of-the-statement-on/#comments</comments>
		<pubDate>Sun, 04 Dec 2011 14:32:54 +0000</pubDate>
		<dc:creator>George Monkey</dc:creator>
				<category><![CDATA[在校学生]]></category>
		<category><![CDATA[习作]]></category>

		<guid isPermaLink="false">http://www.shk3.pp.ru/?p=1177</guid>
		<description><![CDATA[本次团日活动主要是关于学习经验的，本发言提纲介绍学习经验。 The English version of this post is not available. 我认为在大学衡量一个人是否成功，不在成绩，而在于是否学会--&#62;这也是我奋斗的目标。 我觉得该说的别的同学会说，不该说的也会有人说，所以我说一下其他人可能不说的。 早睡早起； 吃好早餐； 多运动--&#62;健康的体魄； 有问题要及时问老师--&#62;当天上午数分课问问题的同学。 12月2日在与11级团日活动上的发言提纲(&#23436;&#25972;&#29256;&#26412;/Full Text) &#124; &#169; 2011 Shk3.PP.RU<p><a href="http://shk3.pp.ru"><img src="http://rss.shk3.pp.ru/shk3.gif" /></a><hr /><small><a href="http://www.shk3.pp.ru/2011/12/december-2-and-11-in-group-activities-on-the-outline-of-the-statement-on/">12月2日在与11级团日活动上的发言提纲</a>(&#23436;&#25972;&#29256;&#26412;/Full Text) | <a href="http://creativecommons.org/licenses/by-nc-sa/2.5/cn/">&copy; 2011</a> <a href="http://shk3.pp.ru">Shk3.PP.RU</a></small></p>
]]></description>
			<content:encoded><![CDATA[<p><em>本次团日活动主要是关于学习经验的，本发言提纲介绍学习经验。</em></p>
<p><em>The English version of this post is not available.</em></p>
<p>我认为在大学衡量一个人是否成功，不在成绩，而在于是否学会--&gt;这也是我奋斗的目标。</p>
<p>我觉得该说的别的同学会说，不该说的也会有人说，所以我说一下其他人可能不说的。</p>
<ul>
<li>早睡早起；</li>
<li>吃好早餐；</li>
<li>多运动--&gt;健康的体魄；</li>
<li>有问题要及时问老师--&gt;当天上午数分课问问题的同学。</li>
</ul>
<p><a href="http://shk3.pp.ru"><img src="http://rss.shk3.pp.ru/shk3.gif" /></a><hr /><small><a href="http://www.shk3.pp.ru/2011/12/december-2-and-11-in-group-activities-on-the-outline-of-the-statement-on/">12月2日在与11级团日活动上的发言提纲</a>(&#23436;&#25972;&#29256;&#26412;/Full Text) | <a href="http://creativecommons.org/licenses/by-nc-sa/2.5/cn/">&copy; 2011</a> <a href="http://shk3.pp.ru">Shk3.PP.RU</a></small></p>

<p><a href="http://feedads.g.doubleclick.net/~a/l6WEf6goxWkpzhp8ec4FHf2hKAs/0/da"><img src="http://feedads.g.doubleclick.net/~a/l6WEf6goxWkpzhp8ec4FHf2hKAs/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/l6WEf6goxWkpzhp8ec4FHf2hKAs/1/da"><img src="http://feedads.g.doubleclick.net/~a/l6WEf6goxWkpzhp8ec4FHf2hKAs/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.shk3.pp.ru/2011/12/december-2-and-11-in-group-activities-on-the-outline-of-the-statement-on/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>写在两个月之后(Two Months Past)</title>
		<link>http://www.shk3.pp.ru/2011/10/two-months-past/</link>
		<comments>http://www.shk3.pp.ru/2011/10/two-months-past/#comments</comments>
		<pubDate>Sun, 30 Oct 2011 13:11:20 +0000</pubDate>
		<dc:creator>George Monkey</dc:creator>
				<category><![CDATA[在校学生]]></category>
		<category><![CDATA[北京四中]]></category>
		<category><![CDATA[总结]]></category>
		<category><![CDATA[数学建模]]></category>
		<category><![CDATA[高考]]></category>

		<guid isPermaLink="false">http://www.shk3.pp.ru/?p=1171</guid>
		<description><![CDATA[The English version of this post is not available yet. 距离上次写日志已经过去了两个月，不是不想写，而是确实太忙了。转眼就从开学的兴奋掉进了忙碌，再走到了本学期的中点，从这一天开始，各种考试将陆续到来。 算法协会 经过各种，我加入了期盼已久软件学院创新基地，结果后来又因为时间安排不过来，主动放弃了。说是退出了，却还是怎么也割舍不下我热爱的算法领域研究。 其实我挺羡慕软件学院能有这么好的一个创新平台，我组织研讨组、组织讨论会，目的就是有这样一个群有着共同爱好的人，围着一个共同的兴趣而奋斗。可我却还是退出了，真是有点割舍不下。真不知道为了一个开放实验放弃我的兴趣，到底值不值。 讹传 数学建模比赛被上报到全国组委会参加全国评奖了，这本来是件好事，可是各种宣传就来了，有的说我拿了“全国一等奖”，有的说我拿了“全国二等奖”，更有甚者都说我“可以保研”了……其实上报上去最坏的结果是有可能被降级成北京市级奖的。 责任 周五的基础课表彰大会上，李副校长讲得话给我的触动很大，我回想起了在四中的时候，常说的几句口号“做杰出的中国人”、“明日四中以我为荣”、“每天锻炼一小时，为祖国健康工作五十年”，作为一名大学生我深感肩上的责任，却又为自己知识的匮乏、能力的局限而感到汗颜。 学霸•不正常的学霸 有件事情给我触动很大，我通过一个偶然的机会得知0581专业11级的孩子们把我称为“学霸”，学霸的意思是[1]指某些学术权威者。一些利用自己在该学术上的声望，而进行打压异己、把持整个学术界、破坏学术界研究氛围的人（贬义）；[2]专注于学习，很少参加社工活动，分数很高的学生（中性义）。 我觉得这些孩子们可能是想使用第二个意项，但实际上我的分数在全校看来不算高，或者上个学期看来也不算高；我也经常参加社会工作活动。有的时候人就是一种思维定势，发生在别的地方的事情爱往自己身边的人上套用，就像四中最近所谓的“罢饭”事件一样。 把我称作学霸，我虽然不愿意，但我还可以理解——毕竟除了迎新和社团活动，这些孩子们基本没有与我接触过，听到的关于我的东西也都是传说，但是他们还在“学霸”二字前面加了一个让我无法忍受的定语“不正常的”。难道成绩好的人就应该被称为“学霸”吗？难道成绩好又参加社会活动的人，就该被称为“不正常”吗？ 意外 除了数学建模的事情以外，最近还出了很多意外。电路分析实验A (ELC05011)第八周开课，教务系统竟然将第一次课放在了最下面，于是我竟然意外地“旷”了一次课！！尽管后来补上了，这依然是不可容忍的事故。 这周三我又把上午一二节课记反了，还好两个课两节都有，跟老师协商了以后，我补上了。 最近攒人品的速率看来很大。 没有成果 忙碌了两个月，我发现自己没有做出什么成果，有的时候没有坚持自己高考后定下的“时刻清楚自己在做什么”的原则，更没有坚持“专时专用”原则，甚至连“课程至上”原则都出现了松动。 是时候反思了。 转型 这个学期开学的时候我都在说转型的这个问题，在这个问题上我是认真的。从发展的角度来看，在转型过程中出现上面的这些问题还可以理解的，也是可以预见到的，但是对于这些问题的处理对转型的成败至关重要。 我所谓的转型，不是学习态度的转变，而是学习方法、研究领域的一次提升，是要站在更高视角上，统筹地更加合理高效地规划。“学习态度”原则、“专时专用”原则是基本点，不可动摇。 写在两个月之后(Two Months Past)(&#23436;&#25972;&#29256;&#26412;/Full Text) &#124; &#169; 2011 Shk3.PP.RU<p><a href="http://shk3.pp.ru"><img src="http://rss.shk3.pp.ru/shk3.gif" /></a><hr /><small><a href="http://www.shk3.pp.ru/2011/10/two-months-past/">写在两个月之后(Two Months Past)</a>(&#23436;&#25972;&#29256;&#26412;/Full Text) | <a href="http://creativecommons.org/licenses/by-nc-sa/2.5/cn/">&copy; 2011</a> <a href="http://shk3.pp.ru">Shk3.PP.RU</a></small></p>
]]></description>
			<content:encoded><![CDATA[<p><em>The English version of this post is not available yet.</em></p>
<p>距离上次写日志已经过去了两个月，不是不想写，而是确实太忙了。转眼就从开学的兴奋掉进了忙碌，再走到了本学期的中点，从这一天开始，各种考试将陆续到来。</p>
<h4>算法协会</h4>
<p>经过各种，我加入了期盼已久软件学院创新基地，结果后来又因为时间安排不过来，主动放弃了。说是退出了，却还是怎么也割舍不下我热爱的算法领域研究。<br />
其实我挺羡慕软件学院能有这么好的一个创新平台，我组织研讨组、组织讨论会，目的就是有这样一个群有着共同爱好的人，围着一个共同的兴趣而奋斗。可我却还是退出了，真是有点割舍不下。真不知道为了一个开放实验放弃我的兴趣，到底值不值。</p>
<h4>讹传</h4>
<p>数学建模比赛被上报到全国组委会参加全国评奖了，这本来是件好事，可是各种宣传就来了，有的说我拿了“全国一等奖”，有的说我拿了“全国二等奖”，更有甚者都说我“可以保研”了……其实上报上去最坏的结果是有可能被降级成北京市级奖的。</p>
<h4>责任</h4>
<p>周五的基础课表彰大会上，李副校长讲得话给我的触动很大，我回想起了在四中的时候，常说的几句口号“做杰出的中国人”、“明日四中以我为荣”、“每天锻炼一小时，为祖国健康工作五十年”，作为一名大学生我深感肩上的责任，却又为自己知识的匮乏、能力的局限而感到汗颜。</p>
<h4>学霸•不正常的学霸</h4>
<p>有件事情给我触动很大，我通过一个偶然的机会得知0581专业11级的孩子们把我称为“<a href="http://baike.baidu.com/view/775599.html" target="_blank">学霸</a>”，学霸的意思是[1]指某些学术权威者。一些利用自己在该学术上的声望，而进行打压异己、把持整个学术界、破坏学术界研究氛围的人（贬义）；[2]专注于学习，很少参加社工活动，分数很高的学生（中性义）。</p>
<p>我觉得这些孩子们可能是想使用第二个意项，但实际上我的分数在全校看来不算高，或者上个学期看来也不算高；我也经常参加社会工作活动。有的时候人就是一种思维定势，发生在别的地方的事情爱往自己身边的人上套用，就像四中最近所谓的“罢饭”事件一样。</p>
<p>把我称作学霸，我虽然不愿意，但我还可以理解——毕竟除了迎新和社团活动，这些孩子们基本没有与我接触过，听到的关于我的东西也都是传说，但是他们还在“学霸”二字前面加了一个让我无法忍受的定语“不正常的”。难道成绩好的人就应该被称为“学霸”吗？难道成绩好又参加社会活动的人，就该被称为“不正常”吗？</p>
<h4>意外</h4>
<p>除了数学建模的事情以外，最近还出了很多意外。电路分析实验A (ELC05011)第八周开课，教务系统竟然将第一次课放在了最下面，于是我竟然意外地“旷”了一次课！！尽管后来补上了，这依然是不可容忍的事故。</p>
<p>这周三我又把上午一二节课记反了，还好两个课两节都有，跟老师协商了以后，我补上了。</p>
<p>最近攒人品的速率看来很大。</p>
<h4>没有成果</h4>
<p>忙碌了两个月，我发现自己没有做出什么成果，有的时候没有坚持自己高考后定下的“时刻清楚自己在做什么”的原则，更没有坚持“专时专用”原则，甚至连“课程至上”原则都出现了松动。</p>
<p>是时候反思了。</p>
<h4>转型</h4>
<p>这个学期开学的时候我都在说转型的这个问题，在这个问题上我是认真的。从发展的角度来看，在转型过程中出现上面的这些问题还可以理解的，也是可以预见到的，但是对于这些问题的处理对转型的成败至关重要。</p>
<p>我所谓的转型，不是学习态度的转变，而是学习方法、研究领域的一次提升，是要站在更高视角上，统筹地更加合理高效地规划。“学习态度”原则、“专时专用”原则是基本点，不可动摇。</p>
<p><a href="http://shk3.pp.ru"><img src="http://rss.shk3.pp.ru/shk3.gif" /></a><hr /><small><a href="http://www.shk3.pp.ru/2011/10/two-months-past/">写在两个月之后(Two Months Past)</a>(&#23436;&#25972;&#29256;&#26412;/Full Text) | <a href="http://creativecommons.org/licenses/by-nc-sa/2.5/cn/">&copy; 2011</a> <a href="http://shk3.pp.ru">Shk3.PP.RU</a></small></p>

<p><a href="http://feedads.g.doubleclick.net/~a/0HWCj-M7PO8qfX-CrV-iTqq4LWg/0/da"><img src="http://feedads.g.doubleclick.net/~a/0HWCj-M7PO8qfX-CrV-iTqq4LWg/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/0HWCj-M7PO8qfX-CrV-iTqq4LWg/1/da"><img src="http://feedads.g.doubleclick.net/~a/0HWCj-M7PO8qfX-CrV-iTqq4LWg/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.shk3.pp.ru/2011/10/two-months-past/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>松鼠之死 (Death of the Squirrels)</title>
		<link>http://www.shk3.pp.ru/2011/09/death-of-the-squirrels/</link>
		<comments>http://www.shk3.pp.ru/2011/09/death-of-the-squirrels/#comments</comments>
		<pubDate>Sun, 04 Sep 2011 13:25:35 +0000</pubDate>
		<dc:creator>George Monkey</dc:creator>
				<category><![CDATA[公民]]></category>
		<category><![CDATA[在校学生]]></category>
		<category><![CDATA[习作]]></category>

		<guid isPermaLink="false">http://www.shk3.pp.ru/?p=1165</guid>
		<description><![CDATA[冬天要来了，松鼠们在准备过冬的食物储备。四只刚成年的松鼠在年长松鼠的监护下组队收集食物储备。 一只松鼠看见别的小松鼠在森林里游荡、瞎玩儿，故意通过捡石子装出一副努力捡拾坚果的样子，一遍一遍的往返于巢穴与森林深处，每次经过他的同伴时总要故意的弄出一些动静，好让他的同伴知道他每一次出去玩儿都是“不是在玩儿”。 另一只松鼠在无聊的游荡了几天，或者说玩了几天以后，望着自己空空的巢穴，每天都坐在巢穴边上发呆，想自己为什么前几天没有努力。 再一只松鼠，担心年长的松鼠看见他的巢穴空空的而训他，把别人吃剩下的坚果壳拿来放到自己的巢穴里。 几个星期的时间一晃就过去了，第二只松鼠竟然一直在发呆。第三只松鼠成功地应付过了年长松鼠的检查，获得了年长松树的表扬。 冬天来了，前三只松鼠死了。 Winter is coming. Squirrels are preparing for their food for winter. Three teen squirrels do the work together under help of a senior. Having seen other teen squirrels are hanging and playing in the forest, one squirrel pretends to collect nuts by collecting stones after playing. Going and returning [...]<p><a href="http://shk3.pp.ru"><img src="http://rss.shk3.pp.ru/shk3.gif" /></a><hr /><small><a href="http://www.shk3.pp.ru/2011/09/death-of-the-squirrels/">松鼠之死 (Death of the Squirrels)</a>(&#23436;&#25972;&#29256;&#26412;/Full Text) | <a href="http://creativecommons.org/licenses/by-nc-sa/2.5/cn/">&copy; 2011</a> <a href="http://shk3.pp.ru">Shk3.PP.RU</a></small></p>
]]></description>
			<content:encoded><![CDATA[<p>冬天要来了，松鼠们在准备过冬的食物储备。四只刚成年的松鼠在年长松鼠的监护下组队收集食物储备。</p>
<p>一只松鼠看见别的小松鼠在森林里游荡、瞎玩儿，故意通过捡石子装出一副努力捡拾坚果的样子，一遍一遍的往返于巢穴与森林深处，每次经过他的同伴时总要故意的弄出一些动静，好让他的同伴知道他每一次出去玩儿都是“不是在玩儿”。</p>
<p>另一只松鼠在无聊的游荡了几天，或者说玩了几天以后，望着自己空空的巢穴，每天都坐在巢穴边上发呆，想自己为什么前几天没有努力。</p>
<p>再一只松鼠，担心年长的松鼠看见他的巢穴空空的而训他，把别人吃剩下的坚果壳拿来放到自己的巢穴里。</p>
<p>几个星期的时间一晃就过去了，第二只松鼠竟然一直在发呆。第三只松鼠成功地应付过了年长松鼠的检查，获得了年长松树的表扬。</p>
<p>冬天来了，前三只松鼠死了。</p>
<p>Winter is coming. Squirrels are preparing for their food for winter. Three teen squirrels do the work together under help of a senior.</p>
<p>Having seen other teen squirrels are hanging and playing in the forest, one squirrel pretends to collect nuts by collecting stones after playing. Going and returning again and again, he always makes some noisy the draw attentions from his mates to show that he is not for fun every time he gets out.</p>
<p>The second boy plays for several days. Then he looks at his empty house, and is just thinking why he played before rather than work.</p>
<p>The third teen is afraid of the crticizing from the senior, so he collects the husts of nuts.</p>
<p>Time flies awfully fast. The second has spent the days by only THINKING. The third one gets the appreciation from the senior successfully.</p>
<p>Winter comes, and the three squirrels die.</p>
<p>&nbsp;</p>
<p><a href="http://shk3.pp.ru"><img src="http://rss.shk3.pp.ru/shk3.gif" /></a><hr /><small><a href="http://www.shk3.pp.ru/2011/09/death-of-the-squirrels/">松鼠之死 (Death of the Squirrels)</a>(&#23436;&#25972;&#29256;&#26412;/Full Text) | <a href="http://creativecommons.org/licenses/by-nc-sa/2.5/cn/">&copy; 2011</a> <a href="http://shk3.pp.ru">Shk3.PP.RU</a></small></p>

<p><a href="http://feedads.g.doubleclick.net/~a/-qznmRCmLRL7qfMHeiB69cA4OZI/0/da"><img src="http://feedads.g.doubleclick.net/~a/-qznmRCmLRL7qfMHeiB69cA4OZI/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/-qznmRCmLRL7qfMHeiB69cA4OZI/1/da"><img src="http://feedads.g.doubleclick.net/~a/-qznmRCmLRL7qfMHeiB69cA4OZI/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.shk3.pp.ru/2011/09/death-of-the-squirrels/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>良乡准备好了！(Liangxiang Campus is ready)</title>
		<link>http://www.shk3.pp.ru/2011/08/liangxiang-campus-is-ready/</link>
		<comments>http://www.shk3.pp.ru/2011/08/liangxiang-campus-is-ready/#comments</comments>
		<pubDate>Wed, 24 Aug 2011 09:44:06 +0000</pubDate>
		<dc:creator>George Monkey</dc:creator>
				<category><![CDATA[在校学生]]></category>
		<category><![CDATA[北京理工大学]]></category>

		<guid isPermaLink="false">http://www.shk3.pp.ru/?p=1141</guid>
		<description><![CDATA[The English version of this post is not available. [本网良乡快讯]明日，8月25日2011级新生报到的日子。良乡准备好了！ 良乡准备好了！(Liangxiang Campus is ready)(&#23436;&#25972;&#29256;&#26412;/Full Text) &#124; &#169; 2011 Shk3.PP.RU<p><a href="http://shk3.pp.ru"><img src="http://rss.shk3.pp.ru/shk3.gif" /></a><hr /><small><a href="http://www.shk3.pp.ru/2011/08/liangxiang-campus-is-ready/">良乡准备好了！(Liangxiang Campus is ready)</a>(&#23436;&#25972;&#29256;&#26412;/Full Text) | <a href="http://creativecommons.org/licenses/by-nc-sa/2.5/cn/">&copy; 2011</a> <a href="http://shk3.pp.ru">Shk3.PP.RU</a></small></p>
]]></description>
			<content:encoded><![CDATA[<p><em>The English version of this post is not available.</em></p>
<p><strong>[本网良乡快讯]</strong>明日，8月25日2011级新生报到的日子。良乡准备好了！</p>
<div id="attachment_1144" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.shk3.pp.ru/uploads/2011/08/DSC02743.jpg" rel="lightbox[1141]"><img class="size-medium wp-image-1144 " title="工作人员正在悬挂横幅。良乡准备好了！" src="http://www.shk3.pp.ru/uploads/2011/08/DSC02743-300x169.jpg" alt="" width="300" height="169" /></a><p class="wp-caption-text">工作人员正在悬挂横幅。良乡准备好了！</p></div>
<div id="attachment_1143" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.shk3.pp.ru/uploads/2011/08/DSC02746.jpg" rel="lightbox[1141]"><img class="size-medium wp-image-1143" title="校园内悬挂着彩色气球。良乡准备好了！" src="http://www.shk3.pp.ru/uploads/2011/08/DSC02746-300x168.jpg" alt="" width="300" height="168" /></a><p class="wp-caption-text">校园内悬挂着彩色气球。良乡准备好了！</p></div>
<div id="attachment_1145" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.shk3.pp.ru/uploads/2011/08/DSC02745.jpg" rel="lightbox[1141]"><img class="size-medium wp-image-1145" title="迎新现场基础设施已经基本布置完毕。良乡准备好了！" src="http://www.shk3.pp.ru/uploads/2011/08/DSC02745-300x225.jpg" alt="" width="300" height="225" /></a><p class="wp-caption-text">迎新现场基础设施已经基本布置完毕。良乡准备好了！</p></div>
<div id="attachment_1142" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.shk3.pp.ru/uploads/2011/08/DSC02736.jpg" rel="lightbox[1141]"><img class="size-medium wp-image-1142" title="良乡1号公寓水池已经蓄水。良乡准备好了！" src="http://www.shk3.pp.ru/uploads/2011/08/DSC02736-300x225.jpg" alt="" width="300" height="225" /></a><p class="wp-caption-text">良乡1号公寓水池已经蓄水。良乡准备好了！</p></div>
<div id="attachment_1152" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.shk3.pp.ru/uploads/2011/08/DSC02754.jpg" rel="lightbox[1141]"><img class="size-medium wp-image-1152" title="工作人员正在进行最后的调试。良乡准备好了。" src="http://www.shk3.pp.ru/uploads/2011/08/DSC02754-300x168.jpg" alt="" width="300" height="168" /></a><p class="wp-caption-text">工作人员正在进行最后的调试。良乡准备好了。</p></div>
<div id="attachment_1151" class="wp-caption aligncenter" style="width: 235px"><a href="http://www.shk3.pp.ru/uploads/2011/08/DSC02753.jpg" rel="lightbox[1141]"><img class="size-medium wp-image-1151" title="志愿者服务亭的照明设施已经安装好。良乡准备好了。" src="http://www.shk3.pp.ru/uploads/2011/08/DSC02753-225x300.jpg" alt="" width="225" height="300" /></a><p class="wp-caption-text">志愿者服务亭的照明设施已经安装好。良乡准备好了。</p></div>
<div id="attachment_1154" class="wp-caption aligncenter" style="width: 235px"><a href="http://www.shk3.pp.ru/uploads/2011/08/DSC02757.jpg" rel="lightbox[1141]"><img class="size-medium wp-image-1154" title="校园采取了临时交通管理措施。良乡准备好了。" src="http://www.shk3.pp.ru/uploads/2011/08/DSC02757-225x300.jpg" alt="" width="225" height="300" /></a><p class="wp-caption-text">校园采取了临时交通管理措施。良乡准备好了。</p></div>
<div id="attachment_1155" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.shk3.pp.ru/uploads/2011/08/DSC02758.jpg" rel="lightbox[1141]"><img class="size-medium wp-image-1155" title="校门景观设施全面启动。良乡准备好了。" src="http://www.shk3.pp.ru/uploads/2011/08/DSC02758-300x168.jpg" alt="" width="300" height="168" /></a><p class="wp-caption-text">校门景观设施全面启动。良乡准备好了。</p></div>
<div id="attachment_1153" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.shk3.pp.ru/uploads/2011/08/DSC02756.jpg" rel="lightbox[1141]"><img class="size-medium wp-image-1153" title="北京理工欢迎你！" src="http://www.shk3.pp.ru/uploads/2011/08/DSC02756-300x168.jpg" alt="" width="300" height="168" /></a><p class="wp-caption-text">北京理工欢迎你！</p></div>
<div id="attachment_1150" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.shk3.pp.ru/uploads/2011/08/DSC02750.jpg" rel="lightbox[1141]"><img class="size-medium wp-image-1150" title="新生站——新生报到的第一站。良乡准备好了。" src="http://www.shk3.pp.ru/uploads/2011/08/DSC02750-300x168.jpg" alt="" width="300" height="168" /></a><p class="wp-caption-text">新生站——新生报到的第一站。良乡准备好了。</p></div>
<div id="attachment_1149" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.shk3.pp.ru/uploads/2011/08/DSC02749.jpg" rel="lightbox[1141]"><img class="size-medium wp-image-1149" title="灯光下的校训。良乡准备好了。" src="http://www.shk3.pp.ru/uploads/2011/08/DSC02749-300x168.jpg" alt="" width="300" height="168" /></a><p class="wp-caption-text">灯光下的校训。良乡准备好了。</p></div>
<div id="attachment_1156" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.shk3.pp.ru/uploads/2011/08/DSC02759.jpg" rel="lightbox[1141]"><img class="size-medium wp-image-1156" title="学生和家长正在查看良乡校区规划图。良乡准备好了。" src="http://www.shk3.pp.ru/uploads/2011/08/DSC02759-300x225.jpg" alt="" width="300" height="225" /></a><p class="wp-caption-text">学生和家长正在查看良乡校区规划图。良乡准备好了。</p></div>
<div id="attachment_1157" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.shk3.pp.ru/uploads/2011/08/DSC02761.jpg" rel="lightbox[1141]"><img class="size-medium wp-image-1157" title="夜深了。良乡准备好了。" src="http://www.shk3.pp.ru/uploads/2011/08/DSC02761-300x225.jpg" alt="" width="300" height="225" /></a><p class="wp-caption-text">夜深了。良乡准备好了。</p></div>
<p><a href="http://shk3.pp.ru"><img src="http://rss.shk3.pp.ru/shk3.gif" /></a><hr /><small><a href="http://www.shk3.pp.ru/2011/08/liangxiang-campus-is-ready/">良乡准备好了！(Liangxiang Campus is ready)</a>(&#23436;&#25972;&#29256;&#26412;/Full Text) | <a href="http://creativecommons.org/licenses/by-nc-sa/2.5/cn/">&copy; 2011</a> <a href="http://shk3.pp.ru">Shk3.PP.RU</a></small></p>

<p><a href="http://feedads.g.doubleclick.net/~a/FQLxanigZQ2337K1C82dfyk2FfE/0/da"><img src="http://feedads.g.doubleclick.net/~a/FQLxanigZQ2337K1C82dfyk2FfE/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/FQLxanigZQ2337K1C82dfyk2FfE/1/da"><img src="http://feedads.g.doubleclick.net/~a/FQLxanigZQ2337K1C82dfyk2FfE/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.shk3.pp.ru/2011/08/liangxiang-campus-is-ready/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Attending Lectures in UWA (在西澳大学旁听课程)</title>
		<link>http://www.shk3.pp.ru/2011/08/attending-lectures-in-uwa/</link>
		<comments>http://www.shk3.pp.ru/2011/08/attending-lectures-in-uwa/#comments</comments>
		<pubDate>Mon, 08 Aug 2011 14:34:32 +0000</pubDate>
		<dc:creator>George Monkey</dc:creator>
				<category><![CDATA[公民]]></category>
		<category><![CDATA[在校学生]]></category>
		<category><![CDATA[位移]]></category>
		<category><![CDATA[北京理工大学]]></category>
		<category><![CDATA[城市大冒险]]></category>
		<category><![CDATA[澳大利亚]]></category>

		<guid isPermaLink="false">http://www.shk3.pp.ru/?p=1138</guid>
		<description><![CDATA[Finally, I decided to attend some lectures in UWA. The classrooms here are called Lecture Theaters or Rooms. There are a lot of multi-media systems in every room, so each lecture can be recorded. I attended Calculus and Linear Algebra, Fundamental Concepts in Mathematics, Signals and Systems 2 and General Physics B today. The lecturer of Signals and [...]<p><a href="http://shk3.pp.ru"><img src="http://rss.shk3.pp.ru/shk3.gif" /></a><hr /><small><a href="http://www.shk3.pp.ru/2011/08/attending-lectures-in-uwa/">Attending Lectures in UWA (在西澳大学旁听课程)</a>(&#23436;&#25972;&#29256;&#26412;/Full Text) | <a href="http://creativecommons.org/licenses/by-nc-sa/2.5/cn/">&copy; 2011</a> <a href="http://shk3.pp.ru">Shk3.PP.RU</a></small></p>
]]></description>
			<content:encoded><![CDATA[<p>Finally, I decided to attend some lectures in UWA.</p>
<p>The classrooms here are called Lecture Theaters or Rooms. There are a lot of multi-media systems in every room, so each lecture can be recorded.</p>
<p>I attended <em>Calculus and Linear Algebra</em>, <em>Fundamental Concepts in Mathematics</em>, <em>Signals and Systems 2</em> and <em>General Physics B</em> today.</p>
<p>The lecturer of <em>Signals and Systems 2</em> was so active that he asked students to ANSWER questions. The <em>Calculus and Linear Algebra </em>talked about Mathematical Induction while <em>Fundamental Concepts in Mathematics</em> showed some thermos related to countable / uncountable sets.</p>
<p>There were some interesting things in <em>General Physics B</em>. To show how vibration and wave is, the professor used a long string, which was pined on a wall of the theater. To make all students see him, he turned on the camera, which can follow him automatically.</p>
<p>Lecturers here write notes on papers and show to everyone by projectors, instead of using the traditional chalks. Everything here seems very modern though the theaters are older than the classrooms in Liangxiang Campus of  Beijing Institute of Technology.</p>
<p>After class, professors will upload all the stuffs they write down during classes immediately. It makes the Internet based teaching really work.</p>
<p>I am looking forward to tomorrow's journey in UWA.</p>
<p>最终，我决定去西澳大学旁听一些课程。</p>
<p>这里的教室叫做Lecture Theaters，里面有各种高级的多媒体系统。每节课都可以录制下来。</p>
<p>我今天旁听了“微积分与线性代数”、“数学中的基础概念”、“信号与系统2”和“普通物理B”。</p>
<p>“信号与系统2”的老师很活跃，竟然<strong>提问</strong>。“微积分与线性代数”则讨论了数学归纳法，而“数学中的基础概念”讲了可列集和不可列集。</p>
<p>“普通物理B”课上有很多有意思的东西：为了展示什么是震动和波，教授使用了一个长长的拴在教室一面墙上的绳子；为了让所有的同学看得见他，他打开了摄像机，这个摄像机竟然能够自动追随他。</p>
<p>这里的老师们把板书写在纸上，再通过投影机让所有人看到，而不是使用传统的粉笔。这里的每一个东西都看起来十分先进，尽管这些教室比北理工良乡校区的教室要老。</p>
<p>课后，教授们会把课上他们写的东西立即传到网上，这让网络教学真正的起到了作用。</p>
<p>非常期待明天的西澳大学之行。</p>
<p><a href="http://shk3.pp.ru"><img src="http://rss.shk3.pp.ru/shk3.gif" /></a><hr /><small><a href="http://www.shk3.pp.ru/2011/08/attending-lectures-in-uwa/">Attending Lectures in UWA (在西澳大学旁听课程)</a>(&#23436;&#25972;&#29256;&#26412;/Full Text) | <a href="http://creativecommons.org/licenses/by-nc-sa/2.5/cn/">&copy; 2011</a> <a href="http://shk3.pp.ru">Shk3.PP.RU</a></small></p>

<p><a href="http://feedads.g.doubleclick.net/~a/vetk3vWQzW-oVbFzzvkOp8qJl6U/0/da"><img src="http://feedads.g.doubleclick.net/~a/vetk3vWQzW-oVbFzzvkOp8qJl6U/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/vetk3vWQzW-oVbFzzvkOp8qJl6U/1/da"><img src="http://feedads.g.doubleclick.net/~a/vetk3vWQzW-oVbFzzvkOp8qJl6U/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.shk3.pp.ru/2011/08/attending-lectures-in-uwa/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finished in Phoenix Academy (在凤凰学院毕业)</title>
		<link>http://www.shk3.pp.ru/2011/08/finished-in-phoenix-academy/</link>
		<comments>http://www.shk3.pp.ru/2011/08/finished-in-phoenix-academy/#comments</comments>
		<pubDate>Fri, 05 Aug 2011 14:14:22 +0000</pubDate>
		<dc:creator>George Monkey</dc:creator>
				<category><![CDATA[公民]]></category>
		<category><![CDATA[在校学生]]></category>
		<category><![CDATA[位移]]></category>
		<category><![CDATA[澳大利亚]]></category>
		<category><![CDATA[英语]]></category>

		<guid isPermaLink="false">http://www.shk3.pp.ru/?p=1128</guid>
		<description><![CDATA[Four weeks have flied away awfully fast. The memory of the first day in Phoenix Academy is still lively. At the time to graduate,  I want to  thank Charles, Carlo and Felicity, who gave me help to get into Phoenix. I appreciate the vivid classes from Ineke, Antony, Kevin, Cathy, Andrew and Tom. From speaking [...]<p><a href="http://shk3.pp.ru"><img src="http://rss.shk3.pp.ru/shk3.gif" /></a><hr /><small><a href="http://www.shk3.pp.ru/2011/08/finished-in-phoenix-academy/">Finished in Phoenix Academy (在凤凰学院毕业)</a>(&#23436;&#25972;&#29256;&#26412;/Full Text) | <a href="http://creativecommons.org/licenses/by-nc-sa/2.5/cn/">&copy; 2011</a> <a href="http://shk3.pp.ru">Shk3.PP.RU</a></small></p>
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.shk3.pp.ru/uploads/2011/08/DSC02636.jpg" rel="lightbox[1128]"><img class="alignright size-thumbnail wp-image-1129" title="My Classroom in Phoenix Academy / 我在凤凰学院的教室" src="http://www.shk3.pp.ru/uploads/2011/08/DSC02636-150x112.jpg" alt="" width="150" height="112" /></a></p>
<p>Four weeks have flied away awfully fast. The memory of the <a title="The First of My Course(上课第一天)" href="http://www.shk3.pp.ru/2011/07/the-first-of-my-course/">first day in Phoenix Academy</a> is still lively.</p>
<p>At the time to graduate,  I want to  thank Charles, Carlo and Felicity, who gave me help to get into Phoenix.</p>
<p>I appreciate the vivid classes from Ineke, Antony, Kevin, Cathy, Andrew and Tom. From speaking to writing, from <a title="Culture Differences (文化差异)" href="http://www.shk3.pp.ru/2011/07/culture-differences/">culture differences</a> to common interests, I have learnt a lot from you.</p>
<p>Then, I would like to thank all my classmates. Thank you for being such nice friends.</p>
<p>I am glad that I have been group mate of the English teachers from Fujian Province in the on-class activities. It also has been please to be friend with German-speaking classmates from Switzerland and Germany.</p>
<p>I believe the memory in Phoenix Academy will never be faded forever.</p>
<p>四个星期过得飞快，<a title="The First of My Course(上课第一天)" href="http://www.shk3.pp.ru/2011/07/the-first-of-my-course/">第一天到凤凰学院</a>的场景依旧历历在目。</p>
<p>在毕业的时候，我希望对各位帮助过我的人士表示感谢。从<a title="Culture Differences (文化差异)" href="http://www.shk3.pp.ru/2011/07/culture-differences/">文化差异</a>到共同兴趣，我学到了很多。</p>
<p>我还要感谢我的所有同学，感谢你们做这么好的朋友。我很荣幸能够与福建省的英语教师们成为课堂活动的队友，我也非常开心能够成为来自瑞士和德国的同学的朋友。</p>
<p><a href="http://shk3.pp.ru"><img src="http://rss.shk3.pp.ru/shk3.gif" /></a><hr /><small><a href="http://www.shk3.pp.ru/2011/08/finished-in-phoenix-academy/">Finished in Phoenix Academy (在凤凰学院毕业)</a>(&#23436;&#25972;&#29256;&#26412;/Full Text) | <a href="http://creativecommons.org/licenses/by-nc-sa/2.5/cn/">&copy; 2011</a> <a href="http://shk3.pp.ru">Shk3.PP.RU</a></small></p>

<p><a href="http://feedads.g.doubleclick.net/~a/A28DvcpR05Uxo5zQwSeEk5Qk9Ns/0/da"><img src="http://feedads.g.doubleclick.net/~a/A28DvcpR05Uxo5zQwSeEk5Qk9Ns/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/A28DvcpR05Uxo5zQwSeEk5Qk9Ns/1/da"><img src="http://feedads.g.doubleclick.net/~a/A28DvcpR05Uxo5zQwSeEk5Qk9Ns/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.shk3.pp.ru/2011/08/finished-in-phoenix-academy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why do not study here for one more week? (为什么不在这里再待一个星期)</title>
		<link>http://www.shk3.pp.ru/2011/08/why-do-not-study-here-for-one-more-week/</link>
		<comments>http://www.shk3.pp.ru/2011/08/why-do-not-study-here-for-one-more-week/#comments</comments>
		<pubDate>Tue, 02 Aug 2011 14:00:32 +0000</pubDate>
		<dc:creator>George Monkey</dc:creator>
				<category><![CDATA[公民]]></category>
		<category><![CDATA[在校学生]]></category>
		<category><![CDATA[位移]]></category>
		<category><![CDATA[澳大利亚]]></category>
		<category><![CDATA[英语]]></category>

		<guid isPermaLink="false">http://www.shk3.pp.ru/?p=1126</guid>
		<description><![CDATA[We have a new teacher today. She was an English teacher from Netherlands, and had taught English in Australia before as a high school teacher. Today, a Chinese-looked graduated student joined our class. I assumed he was from Hong Kong or Macau because his full name was in Webster's phonetic symbols. But he was too quiet [...]<p><a href="http://shk3.pp.ru"><img src="http://rss.shk3.pp.ru/shk3.gif" /></a><hr /><small><a href="http://www.shk3.pp.ru/2011/08/why-do-not-study-here-for-one-more-week/">Why do not study here for one more week? (为什么不在这里再待一个星期)</a>(&#23436;&#25972;&#29256;&#26412;/Full Text) | <a href="http://creativecommons.org/licenses/by-nc-sa/2.5/cn/">&copy; 2011</a> <a href="http://shk3.pp.ru">Shk3.PP.RU</a></small></p>
]]></description>
			<content:encoded><![CDATA[<p>We have a new teacher today. She was an English teacher from Netherlands, and had taught English in Australia before as a high school teacher.</p>
<p>Today, a Chinese-looked graduated student joined our class. I assumed he was from Hong Kong or Macau because his full name was in Webster's phonetic symbols. But he was too quiet that I had not recognized his accent. I think his experiences here will be very interesting to me.</p>
<p>My new teacher Ineke taught Conditionals in grammar, which were learnt by me in high school. But, if she had not recalled this part of grammar, I would have never found I had forgotten some very important knowledge taught in high school, which might be organized creatively, and had ever made me very proud.</p>
<p>Interested in China, she asked me a lot of questions. From one-child policy to the press freedom, from  the gap between the rich and the poor  to Chinese-style socialism, her questions showed her curiosity to the booming Asian country. She was confused by the fact that I am the only child in my family whereas all the other Chinese in our class have siblings. The 'amazing' answer to her was that when they were born there was not one-child policy.</p>
<p>In the afternoon, Ineke suddenly said "You will leave this Friday? What a pity!" to me, as she had known I would graduate this Friday. She said I was clever, humors ... and  easy to talk with. She said, "Why do not study here for one more week? Our class becomes so lively with you. You have such a nice class and a good teacher here. Why not stay?"</p>
<p>我们今天又换了一个新老师，她来自荷兰，曾经在澳大利亚当过中学英语老师。</p>
<p>她今天教了英语语法的虚拟语气条件句，条件句我高中学过，但是如果不是她今天谈到这部分知识，我不会发现我已经遗忘了一些高中非常重要的知识。</p>
<p>她对中国非常感兴趣，课间问了我很多关于中国的问题。从计划生育政策到言论自由，从贫富差距到中国特色社会主义，她的问题展现了她对这个亚洲新兴国家的好奇。她被我是独生子女而其他中国同学都有兄弟姐妹的这个事实搞糊涂了，而我们给她的“神奇的”答案是，她们出生的时候，中国还没有计划生育政策。</p>
<p>下午，她突然对我说：“你这周五走？太遗憾了！”她说我聪明、幽默、容易交流……她说：“为什么不在这里再待一个星期？因为有你，我们的课堂变得生动起来。你在这里有这么一个不错的班级、好的老师，为什么不待在这里呢？”</p>
<p><a href="http://shk3.pp.ru"><img src="http://rss.shk3.pp.ru/shk3.gif" /></a><hr /><small><a href="http://www.shk3.pp.ru/2011/08/why-do-not-study-here-for-one-more-week/">Why do not study here for one more week? (为什么不在这里再待一个星期)</a>(&#23436;&#25972;&#29256;&#26412;/Full Text) | <a href="http://creativecommons.org/licenses/by-nc-sa/2.5/cn/">&copy; 2011</a> <a href="http://shk3.pp.ru">Shk3.PP.RU</a></small></p>

<p><a href="http://feedads.g.doubleclick.net/~a/rWCVjFEqImqsKNqhKwKVIaLQjtk/0/da"><img src="http://feedads.g.doubleclick.net/~a/rWCVjFEqImqsKNqhKwKVIaLQjtk/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/rWCVjFEqImqsKNqhKwKVIaLQjtk/1/da"><img src="http://feedads.g.doubleclick.net/~a/rWCVjFEqImqsKNqhKwKVIaLQjtk/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.shk3.pp.ru/2011/08/why-do-not-study-here-for-one-more-week/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oops! Being Late (糟糕，迟到了)</title>
		<link>http://www.shk3.pp.ru/2011/07/oops-being-late/</link>
		<comments>http://www.shk3.pp.ru/2011/07/oops-being-late/#comments</comments>
		<pubDate>Tue, 19 Jul 2011 14:39:45 +0000</pubDate>
		<dc:creator>George Monkey</dc:creator>
				<category><![CDATA[公民]]></category>
		<category><![CDATA[在校学生]]></category>
		<category><![CDATA[位移]]></category>
		<category><![CDATA[城市大冒险]]></category>
		<category><![CDATA[澳大利亚]]></category>
		<category><![CDATA[英语]]></category>

		<guid isPermaLink="false">http://www.shk3.pp.ru/?p=1121</guid>
		<description><![CDATA[It was my first time to take buses all the way to school in this city. The buses here are scheduled by an exact timetable, whose time point might be appropriate. This morning, I walked to the first bus stop and the first bus arrived late about 3 minutes. When I arrived the interchange station, I [...]<p><a href="http://shk3.pp.ru"><img src="http://rss.shk3.pp.ru/shk3.gif" /></a><hr /><small><a href="http://www.shk3.pp.ru/2011/07/oops-being-late/">Oops! Being Late (糟糕，迟到了)</a>(&#23436;&#25972;&#29256;&#26412;/Full Text) | <a href="http://creativecommons.org/licenses/by-nc-sa/2.5/cn/">&copy; 2011</a> <a href="http://shk3.pp.ru">Shk3.PP.RU</a></small></p>
]]></description>
			<content:encoded><![CDATA[<p>It was my first time to take buses all the way to school in this city. The buses here are scheduled by an exact timetable, whose time point might be appropriate.</p>
<p>This morning, I walked to the first bus stop and the first bus arrived late about 3 minutes. When I arrived the interchange station, I had to go across the busy street at the rush hour and waited at another bus stand in the station.</p>
<p>Unfortunately, I was ONE minute late to arrive at the bus stand, and when I got there, <em>the bus had gone just as the way it came</em>.</p>
<p>The next bus to the school would be about 15 minutes late, which would be another bus line. I have never been to the bus stop I should get off, and to be honest, I lose the sense of direction. Thus, I missed the bus stop...</p>
<p>When I arrived school, I was 30-minutes late, and was not allowed to get into the classroom according to the regulations in school. That will be my first absence since I began my primary school!</p>
<p>I think it will be a lesson that I should not make a very very tight plan, and always anticipate some possible blips on my journey.</p>
<p>这是我第一次在这个城市全程乘坐公交车去学校，这里的公交车依照一个固定的时刻表运行，尽管一些时间点可能是近似的。</p>
<p>今天早上，我走到了第一段行程的公交停靠点，第一段的车晚到了大约3分钟。当我到达换乘站的时候，我需要横穿一条高峰期十分繁忙的大街，在车站内的一个站牌处等车。</p>
<p>遗憾的是，我晚到达站牌了一分钟，<em><strong>车悄悄地走了，没有带走一片云彩</strong></em>……</p>
<p>下一个去学校的车在15分钟以后，是另一条线路，停靠在我从来没去过的一个停靠点，而且说实话我也有一点转向了。因此我下错了车站……</p>
<p>当我到达学校的时候，我已经晚了30分钟，按照学校的规定，我不能进入教室。这将是我从上小学以来第一次缺勤！</p>
<p>我想这将是一个教训：我不应该制定这种非常紧凑的计划，应该经常为一些路途中可能的小波折做好准备。</p>
<p><a href="http://shk3.pp.ru"><img src="http://rss.shk3.pp.ru/shk3.gif" /></a><hr /><small><a href="http://www.shk3.pp.ru/2011/07/oops-being-late/">Oops! Being Late (糟糕，迟到了)</a>(&#23436;&#25972;&#29256;&#26412;/Full Text) | <a href="http://creativecommons.org/licenses/by-nc-sa/2.5/cn/">&copy; 2011</a> <a href="http://shk3.pp.ru">Shk3.PP.RU</a></small></p>

<p><a href="http://feedads.g.doubleclick.net/~a/fFGMz4tYHWFVIjmmzMvZuHK_z6U/0/da"><img src="http://feedads.g.doubleclick.net/~a/fFGMz4tYHWFVIjmmzMvZuHK_z6U/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/fFGMz4tYHWFVIjmmzMvZuHK_z6U/1/da"><img src="http://feedads.g.doubleclick.net/~a/fFGMz4tYHWFVIjmmzMvZuHK_z6U/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.shk3.pp.ru/2011/07/oops-being-late/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>纪念通栏: 逃离良乡 (Escaped From LIANGXIANG)</title>
		<link>http://www.shk3.pp.ru/2011/07/navbar-escaped-from-liangxiang/</link>
		<comments>http://www.shk3.pp.ru/2011/07/navbar-escaped-from-liangxiang/#comments</comments>
		<pubDate>Mon, 18 Jul 2011 14:55:31 +0000</pubDate>
		<dc:creator>George Monkey</dc:creator>
				<category><![CDATA[在校学生]]></category>
		<category><![CDATA[位移]]></category>
		<category><![CDATA[北京理工大学]]></category>
		<category><![CDATA[纪念通栏]]></category>

		<guid isPermaLink="false">http://www.shk3.pp.ru/?p=1111</guid>
		<description><![CDATA[The English Version of this post is not available. 虽说没有赶上学长们的世纪大逃亡，但我还是在撤离良乡以后去中关村校区见证了传说中的女生比例超标到男生比例超标的蜕变，还去学长们在良乡和中关村的宿舍慰问考察了一番，还跟几个学长在校园里和附近（甚至国家图书馆）溜达了一圈。 不管怎么说，离我回良乡还有不到一个月的时间，好好享受我的假期吧。 纪念通栏: 逃离良乡 (Escaped From LIANGXIANG)(&#23436;&#25972;&#29256;&#26412;/Full Text) &#124; &#169; 2011 Shk3.PP.RU<p><a href="http://shk3.pp.ru"><img src="http://rss.shk3.pp.ru/shk3.gif" /></a><hr /><small><a href="http://www.shk3.pp.ru/2011/07/navbar-escaped-from-liangxiang/">纪念通栏: 逃离良乡 (Escaped From LIANGXIANG)</a>(&#23436;&#25972;&#29256;&#26412;/Full Text) | <a href="http://creativecommons.org/licenses/by-nc-sa/2.5/cn/">&copy; 2011</a> <a href="http://shk3.pp.ru">Shk3.PP.RU</a></small></p>
]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-thumbnail wp-image-1115" title="纪念通栏: 逃离良乡 / Escaped From LIANGXIANG" src="http://www.shk3.pp.ru/uploads/2011/07/bg-escape-liangxiang-150x32.jpg" alt="" width="150" height="32" /><br />
<em>The English Version of this post is not available.</em></p>
<p>虽说没有赶上学长们的<a href="http://www.bit.edu.cn/xww/xwtt/68554.htm" target="_blank">世纪大逃亡</a>，但我还是在撤离良乡以后去中关村校区见证了传说中的女生比例超标到男生比例超标的蜕变，还去学长们在良乡和中关村的宿舍慰问考察了一番，还跟几个学长在校园里和附近（甚至国家图书馆）溜达了一圈。<br />
不管怎么说，离我回良乡还有不到一个月的时间，好好享受我的假期吧。</p>
<p><a href="http://shk3.pp.ru"><img src="http://rss.shk3.pp.ru/shk3.gif" /></a><hr /><small><a href="http://www.shk3.pp.ru/2011/07/navbar-escaped-from-liangxiang/">纪念通栏: 逃离良乡 (Escaped From LIANGXIANG)</a>(&#23436;&#25972;&#29256;&#26412;/Full Text) | <a href="http://creativecommons.org/licenses/by-nc-sa/2.5/cn/">&copy; 2011</a> <a href="http://shk3.pp.ru">Shk3.PP.RU</a></small></p>

<p><a href="http://feedads.g.doubleclick.net/~a/msunWRJhjpNFVEnYSo-VgxVvJcE/0/da"><img src="http://feedads.g.doubleclick.net/~a/msunWRJhjpNFVEnYSo-VgxVvJcE/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/msunWRJhjpNFVEnYSo-VgxVvJcE/1/da"><img src="http://feedads.g.doubleclick.net/~a/msunWRJhjpNFVEnYSo-VgxVvJcE/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.shk3.pp.ru/2011/07/navbar-escaped-from-liangxiang/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

