<?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>碎碎碎碎屁 &#187; 玩</title>
	<atom:link href="http://ssssp.net/category/%e7%8e%a9/feed/" rel="self" type="application/rss+xml" />
	<link>http://ssssp.net</link>
	<description>个人博客 宣扬自己的人生观价值观</description>
	<lastBuildDate>Tue, 11 Oct 2011 15:44:56 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>记录下自己的$PS1</title>
		<link>http://ssssp.net/2011/10/%e8%ae%b0%e5%bd%95%e4%b8%8b%e8%87%aa%e5%b7%b1%e7%9a%84ps1/</link>
		<comments>http://ssssp.net/2011/10/%e8%ae%b0%e5%bd%95%e4%b8%8b%e8%87%aa%e5%b7%b1%e7%9a%84ps1/#comments</comments>
		<pubDate>Thu, 06 Oct 2011 16:21:54 +0000</pubDate>
		<dc:creator>xufan6</dc:creator>
				<category><![CDATA[学]]></category>
		<category><![CDATA[玩]]></category>
		<category><![CDATA[github ps1 ubuntu]]></category>

		<guid isPermaLink="false">http://ssssp.net/?p=194</guid>
		<description><![CDATA[Steve Jobs, 1955 &#8211; 2011
今天又在弄$PS1，结果发现以前写的都看不懂，好吧，写篇文章记录一下，先来看下完整的
PS1='${debian_chroot:+($debian_chroot)}`a=$?;if [ $a -ne 0 ]; then a="  "$a; echo -ne "\[\e[s\e[1A\e[$((COLUMNS-2))G\e[32m\e[1;41m${a:(-3)}\e[u\]\[\e[0m\e[2m\]"; fi`\[\033[01;32m\]\u@\[\033[01;35m\]\h\[\033[00m\]:\[\033[01;34m\]`pwd`\[\033[00m\]`B=$(git branch 2>/dev/null &#124; sed -e "/^ /d" -e "s/* \(.*\)/\1/"); if [ "$B" != "" ]; then S="git"; elif [ -e .bzr ]; then S=bzr; elif [ -e .hg ]; then S="hg";B="$(hg branch)"; elif [ -e .svn [...]]]></description>
			<content:encoded><![CDATA[<p>Steve Jobs, 1955 &#8211; 2011</p>
<p>今天又在弄$PS1，结果发现以前写的都看不懂，好吧，写篇文章记录一下，先来看下完整的<br />
<code>PS1='${debian_chroot:+($debian_chroot)}`a=$?;if [ $a -ne 0 ]; then a="  "$a; echo -ne "\[\e[s\e[1A\e[$((COLUMNS-2))G\e[32m\e[1;41m${a:(-3)}\e[u\]\[\e[0m\e[2m\]"; fi`\[\033[01;32m\]\u@\[\033[01;35m\]\h\[\033[00m\]:\[\033[01;34m\]`pwd`\[\033[00m\]`B=$(git branch 2>/dev/null | sed -e "/^ /d" -e "s/* \(.*\)/\1/"); if [ "$B" != "" ]; then S="git"; elif [ -e .bzr ]; then S=bzr; elif [ -e .hg ]; then S="hg";B="$(hg branch)"; elif [ -e .svn ]; then S="svn"; else S=""; fi; if [ "$S" != "" ]; then if [ "$B" != "" ]; then M=$S:$B; else M=$S; fi; fi; [[ "$M" != "" ]] &#038;&#038; echo -en "\e[s\e[$((COLUMNS-${#M}-1))G\e[33m\e[1;40m($M)\e[0m\e[u"`\n\[\033[01;34m\]\$\[\033[00m\] '</code><br />
这个也可以从<a href="https://github.com/xufan6/conf">我github里找bashrc的</a><br />
效果图如下<br />
<img src="http://lh3.ggpht.com/-GR7po7XbrDY/To3AJ-4tdoI/AAAAAAAASBs/peED40K4has/Screenshot.png" alt="$PS1的效果图" /><br />
有以下一些特性：分两排显示，前一排最后会显示错误$?，第一排地址显示绝对路径，第一排结尾显示版本控制的信息<span id="more-194"></span><br />
参考文档1：https://wiki.archlinux.org/index.php/Color_Bash_Prompt<br />
参考文档2：http://en.wikipedia.org/wiki/ANSI_escape_code<br />
参考博客1：<a href="http://imtx.me/archives/1298.html">主席的</a><br />
参考博客2：<a href="http://blog.upsuper.org/advanced-prompt-string-of-bash/">主席的pingbacks里看到的</a><br />
参考博客3：<a href="http://b.crhan.com/2011/09/bash-prompt-and-ps1/">@ruohanc的</a></p>
<p>下面分解开来讲解下，只要把这些合成一行就可以用了<br />
<code><br />
PS1='<br />
${debian_chroot:+($debian_chroot)}</p>
<p>`a=$?;<br />
if [ $a -ne 0 ];<br />
then a="  "$a;<br />
echo -ne "<br />
\[\e[s<br />
\e[1A<br />
\e[$((COLUMNS-2))G<br />
\e[32m<br />
\e[1;41m${a:(-3)}<br />
\e[u\]\[<br />
\e[0m<br />
\e[2m\]<br />
";<br />
fi`</p>
<p>\[\033[01;32m\]<br />
\u@<br />
\[\033[01;35m\]<br />
\h<br />
\[\033[00m\]<br />
:<br />
\[\033[01;34m\]<br />
`pwd`<br />
\[\033[00m\]</p>
<p>`<br />
B=$(git branch 2>/dev/null | sed -e "/^ /d" -e "s/* \(.*\)/\1/"); </p>
<p>if [ "$B" != "" ];<br />
then S="git";<br />
elif [ -e .bzr ];<br />
then S=bzr;<br />
elif [ -e .hg ];<br />
then S="hg";<br />
B="$(hg branch)";<br />
elif [ -e .svn ];<br />
then S="svn";<br />
else S="";<br />
fi; </p>
<p>if [ "$S" != "" ];<br />
then<br />
if [ "$B" != "" ];<br />
then M=$S:$B;<br />
else M=$S;<br />
fi;<br />
fi;<br />
[[ "$M" != "" ]]<br />
&#038;&#038;<br />
echo -en "<br />
\e[s<br />
\e[$((COLUMNS-${#M}-1))G<br />
\e[33m<br />
\e[1;40m($M)<br />
\e[0m<br />
\e[u<br />
"<br />
`<br />
\n<br />
\[\033[01;34m\]<br />
\$<br />
\[\033[00m\]<br />
'<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://ssssp.net/2011/10/%e8%ae%b0%e5%bd%95%e4%b8%8b%e8%87%aa%e5%b7%b1%e7%9a%84ps1/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>新加坡手机运营商挑选指点及SingTel预付费卡上网设置</title>
		<link>http://ssssp.net/2011/08/%e6%96%b0%e5%8a%a0%e5%9d%a1%e6%89%8b%e6%9c%ba%e8%bf%90%e8%90%a5%e5%95%86%e6%8c%91%e9%80%89%e6%8c%87%e7%82%b9%e5%8f%8asingtel%e9%a2%84%e4%bb%98%e8%b4%b9%e5%8d%a1%e4%b8%8a%e7%bd%91%e8%ae%be%e7%bd%ae/</link>
		<comments>http://ssssp.net/2011/08/%e6%96%b0%e5%8a%a0%e5%9d%a1%e6%89%8b%e6%9c%ba%e8%bf%90%e8%90%a5%e5%95%86%e6%8c%91%e9%80%89%e6%8c%87%e7%82%b9%e5%8f%8asingtel%e9%a2%84%e4%bb%98%e8%b4%b9%e5%8d%a1%e4%b8%8a%e7%bd%91%e8%ae%be%e7%bd%ae/#comments</comments>
		<pubDate>Sun, 21 Aug 2011 16:18:13 +0000</pubDate>
		<dc:creator>xufan6</dc:creator>
				<category><![CDATA[玩]]></category>
		<category><![CDATA[APN]]></category>
		<category><![CDATA[HiCard]]></category>
		<category><![CDATA[M1]]></category>
		<category><![CDATA[MobileOne]]></category>
		<category><![CDATA[SIM]]></category>
		<category><![CDATA[singapore]]></category>
		<category><![CDATA[SingTel]]></category>
		<category><![CDATA[Starhub]]></category>
		<category><![CDATA[手机]]></category>
		<category><![CDATA[新加坡]]></category>
		<category><![CDATA[新电]]></category>

		<guid isPermaLink="false">http://ssssp.net/?p=191</guid>
		<description><![CDATA[你可以认为这篇是SingTel的软文，因为我只用过SingTel，所以在这儿做点记录。
本文里的资费都是用新币（SGD，singapore dollar）来计算，现在汇率差不多1SGD=5.3RMB。
新加坡手机运营商有三家：SingTel、Starhub、M1。Starhub卡在机场就能买到，最为方便；SingTel卡要在市区才能买，像7-11这种也都有卖；M1我真不熟，就当比较小众吧。
Starhub和SingTel的预付费卡都是S$15一张，内含S$18话费。
下面开始主要讲SingTel的预付费卡
我相中它家的卡主要是看中它有“MOST AFFORDABLE data pack”，具体来说就是可以花S$1买10MB流量7天有效，或者S$7买1GB流量7天有效。我是选了后者，说是1GB流量，反正用不完，而且还是3G。但是但是但是，手机上网设置问题纠缠了我大于24小时。官方说是打*43327就能设置自己手机，但是它机型严重不全，黑莓根本没有在它列表里，所以不得不手动设置，以下是设置细节：

apn:hicard
username:6591237567（前面的65算是国际区号吧，后8位是手机号码）
password:65ideas

以上三行是本文最想说的内容，其余均为废话。我用了如上设置后黑莓自带浏览器还是不能上网，但是Opera啊Google Maps等软件都工作正常了，追求不高也没继续折腾了。
完~
]]></description>
			<content:encoded><![CDATA[<p>你可以认为这篇是SingTel的软文，因为我只用过SingTel，所以在这儿做点记录。<br />
本文里的资费都是用新币（SGD，singapore dollar）来计算，现在汇率差不多1SGD=5.3RMB。</p>
<p>新加坡手机运营商有三家：SingTel、Starhub、M1。Starhub卡在机场就能买到，最为方便；SingTel卡要在市区才能买，像7-11这种也都有卖；M1我真不熟，就当比较小众吧。<br />
Starhub和SingTel的预付费卡都是S$15一张，内含S$18话费。</p>
<p>下面开始主要讲<a href="http://info.singtel.com/personal/communication/mobile/prepaid-plans/prepaid-mobile">SingTel的预付费卡</a><br />
我相中它家的卡主要是看中它有“MOST AFFORDABLE data pack”，具体来说就是可以花S$1买10MB流量7天有效，或者S$7买1GB流量7天有效。我是选了后者，说是1GB流量，反正用不完，而且还是3G。但是但是但是，手机上网设置问题纠缠了我大于24小时。官方说是打*43327就能设置自己手机，但是它机型严重不全，黑莓根本没有在它列表里，所以不得不手动设置，以下是设置细节：</p>
<blockquote><p>
apn:hicard<br />
username:6591237567（前面的65算是国际区号吧，后8位是手机号码）<br />
password:65ideas
</p></blockquote>
<p>以上三行是本文最想说的内容，其余均为废话。我用了如上设置后黑莓自带浏览器还是不能上网，但是Opera啊Google Maps等软件都工作正常了，追求不高也没继续折腾了。<br />
完~</p>
]]></content:encoded>
			<wfw:commentRss>http://ssssp.net/2011/08/%e6%96%b0%e5%8a%a0%e5%9d%a1%e6%89%8b%e6%9c%ba%e8%bf%90%e8%90%a5%e5%95%86%e6%8c%91%e9%80%89%e6%8c%87%e7%82%b9%e5%8f%8asingtel%e9%a2%84%e4%bb%98%e8%b4%b9%e5%8d%a1%e4%b8%8a%e7%bd%91%e8%ae%be%e7%bd%ae/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>新老北川游览指点</title>
		<link>http://ssssp.net/2010/07/%e6%96%b0%e8%80%81%e5%8c%97%e5%b7%9d%e6%b8%b8%e8%a7%88%e6%8c%87%e7%82%b9/</link>
		<comments>http://ssssp.net/2010/07/%e6%96%b0%e8%80%81%e5%8c%97%e5%b7%9d%e6%b8%b8%e8%a7%88%e6%8c%87%e7%82%b9/#comments</comments>
		<pubDate>Tue, 27 Jul 2010 08:43:41 +0000</pubDate>
		<dc:creator>xufan6</dc:creator>
				<category><![CDATA[玩]]></category>
		<category><![CDATA[北川]]></category>
		<category><![CDATA[安县]]></category>
		<category><![CDATA[安昌镇]]></category>
		<category><![CDATA[擂鼓镇]]></category>
		<category><![CDATA[新北川]]></category>
		<category><![CDATA[暑期实践]]></category>
		<category><![CDATA[绵阳]]></category>
		<category><![CDATA[老北川]]></category>
		<category><![CDATA[黄土镇]]></category>

		<guid isPermaLink="false">http://ssssp.net/?p=133</guid>
		<description><![CDATA[这次暑期实践去过北川，新城老城临时城什么的差不多了解了个大概，鉴于网上似乎没有什么具体走法，鉴于Google Maps没有新城什么的标注，特此做文。
老北川
View Larger Map

从Google Maps z=9的级别来看，老北川似乎离江油比较近，但是我觉得还是从绵阳开始一步步靠近比较犀利。绵阳车牌是川B，算是比较发达的城市，从成都坐火车到绵阳估计两小时左右。到了绵阳之后，火车站的西南方向几百米就有汽车站，坐大巴车去北川。正规大巴车前窗玻璃上会写北川——绵阳。这种车发车密度还算高的，不用等很久的，途径黄土镇（下文会提到）。注意，上车买票的时候和售票员说一下，买到“擂鼓镇接待中心”。因为私车是不能进入老北川的，班车到北川离北川县城还有段路，所以还是坐接待中心专用观光车去比较好。到了那个接待中心后，再去买观光车票，￥13，发车平均半小时一班。接待中心还有个小馆，等车时候可以去看看。观光车会带我们到老县城，老县城里面的路有些都修过了，记得别不走寻常路，那儿野狗凶狠啊。观光完毕之后，到刚才那个下车点等车上，还是会带回接待中心，再在路边拦大巴车，可以回绵阳了。
新北川
View Larger Map
官方说法新北川是在“安县安昌镇东南方向两公里处”，这个说法基本正确，也可以理解成“黄土镇北偏西方向三到四公里”。这个地方就是传说中的新城，大量的房屋在建，样子都一样，没人入住。所以如果要住宿就得在新城边上两个城镇找地方住宿，边上一个是安昌镇，一个是黄土镇。这两个镇间有大巴车，也有那种黑车，不过都不贵。去老北川的大巴车也都经过这两个镇的。
我们暑期实践需要找北川教体局，找了半天，北川教体局在安昌镇上。安昌镇上有好多牌子都是北川叉叉叉开头的。所以我觉得安昌镇可能是北川的临时驻扎地。
四川的方言其实不是很难懂，问路的时候让人家慢慢说，仔细辨认一下也能听出个大概。我在北川那片呆了不到50小时，写此文只是想说个大概，如果有错误欢迎指正。路在鼻子下。
]]></description>
			<content:encoded><![CDATA[<p>这次暑期实践去过北川，新城老城临时城什么的差不多了解了个大概，鉴于网上似乎没有什么具体走法，鉴于Google Maps没有新城什么的标注，特此做文。</p>
<p>老北川</p>
<p><iframe width="550" height="250" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/?ie=UTF8&amp;ll=31.697793,104.581604&amp;spn=1.362363,1.766052&amp;z=9&amp;output=embed"></iframe><br /><small><a href="http://maps.google.com/?ie=UTF8&amp;ll=31.697793,104.581604&amp;spn=1.362363,1.766052&amp;z=9&amp;source=embed" >View Larger Map</a></small><br />
<span id="more-133"></span><br />
从Google Maps z=9的级别来看，老北川似乎离江油比较近，但是我觉得还是从绵阳开始一步步靠近比较犀利。绵阳车牌是川B，算是比较发达的城市，从成都坐火车到绵阳估计两小时左右。到了绵阳之后，火车站的西南方向几百米就有汽车站，坐大巴车去北川。正规大巴车前窗玻璃上会写北川——绵阳。这种车发车密度还算高的，不用等很久的，途径黄土镇（下文会提到）。注意，上车买票的时候和售票员说一下，买到“擂鼓镇接待中心”。因为私车是不能进入老北川的，班车到北川离北川县城还有段路，所以还是坐接待中心专用观光车去比较好。到了那个接待中心后，再去买观光车票，￥13，发车平均半小时一班。接待中心还有个小馆，等车时候可以去看看。观光车会带我们到老县城，老县城里面的路有些都修过了，记得别不走寻常路，那儿野狗凶狠啊。观光完毕之后，到刚才那个下车点等车上，还是会带回接待中心，再在路边拦大巴车，可以回绵阳了。</p>
<p>新北川</p>
<p><iframe width="550" height="400" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/?ie=UTF8&amp;ll=31.614066,104.442043&amp;spn=0.058475,0.094585&amp;z=13&amp;output=embed"></iframe><br /><small><a href="http://maps.google.com/?ie=UTF8&amp;ll=31.614066,104.442043&amp;spn=0.058475,0.094585&amp;z=13&amp;source=embed" >View Larger Map</a></small></p>
<p>官方说法新北川是在“安县安昌镇东南方向两公里处”，这个说法基本正确，也可以理解成“黄土镇北偏西方向三到四公里”。这个地方就是传说中的新城，大量的房屋在建，样子都一样，没人入住。所以如果要住宿就得在新城边上两个城镇找地方住宿，边上一个是安昌镇，一个是黄土镇。这两个镇间有大巴车，也有那种黑车，不过都不贵。去老北川的大巴车也都经过这两个镇的。</p>
<p>我们暑期实践需要找北川教体局，找了半天，北川教体局在安昌镇上。安昌镇上有好多牌子都是北川叉叉叉开头的。所以我觉得安昌镇可能是北川的临时驻扎地。</p>
<p>四川的方言其实不是很难懂，问路的时候让人家慢慢说，仔细辨认一下也能听出个大概。我在北川那片呆了不到50小时，写此文只是想说个大概，如果有错误欢迎指正。路在鼻子下。</p>
]]></content:encoded>
			<wfw:commentRss>http://ssssp.net/2010/07/%e6%96%b0%e8%80%81%e5%8c%97%e5%b7%9d%e6%b8%b8%e8%a7%88%e6%8c%87%e7%82%b9/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>d18月圆之夜我回来啦</title>
		<link>http://ssssp.net/2010/07/d18%e6%9c%88%e5%9c%86%e4%b9%8b%e5%a4%9c%e6%88%91%e5%9b%9e%e6%9d%a5%e5%95%a6/</link>
		<comments>http://ssssp.net/2010/07/d18%e6%9c%88%e5%9c%86%e4%b9%8b%e5%a4%9c%e6%88%91%e5%9b%9e%e6%9d%a5%e5%95%a6/#comments</comments>
		<pubDate>Mon, 26 Jul 2010 18:32:24 +0000</pubDate>
		<dc:creator>xufan6</dc:creator>
				<category><![CDATA[玩]]></category>
		<category><![CDATA[暑期实践]]></category>

		<guid isPermaLink="false">http://ssssp.net/2010/07/d18%e6%9c%88%e5%9c%86%e4%b9%8b%e5%a4%9c%e6%88%91%e5%9b%9e%e6%9d%a5%e5%95%a6/</guid>
		<description><![CDATA[今天月亮又圆又亮，嘿嘿。
历经18天，屎(尿)迹遍布：成都(尿)，广元、青川(尿)，江油(路过)，北川(有后文噢)，绵阳(路过)，成都，九寨沟、黄龙，绵阳(尿)，西安。
嘿嘿，回来了，手机发文的。
]]></description>
			<content:encoded><![CDATA[<p>今天月亮又圆又亮，嘿嘿。<br />
历经18天，屎(尿)迹遍布：成都(尿)，广元、青川(尿)，江油(路过)，北川(<a href="http://ssssp.net/2010/07/%e6%96%b0%e8%80%81%e5%8c%97%e5%b7%9d%e6%b8%b8%e8%a7%88%e6%8c%87%e7%82%b9/" target="_blank">有后文噢</a>)，绵阳(路过)，成都，九寨沟、黄龙，绵阳(尿)，西安。<br />
嘿嘿，回来了，手机发文的。</p>
]]></content:encoded>
			<wfw:commentRss>http://ssssp.net/2010/07/d18%e6%9c%88%e5%9c%86%e4%b9%8b%e5%a4%9c%e6%88%91%e5%9b%9e%e6%9d%a5%e5%95%a6/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>暑期实践之d0</title>
		<link>http://ssssp.net/2010/07/%e6%9a%91%e6%9c%9f%e5%ae%9e%e8%b7%b5%e4%b9%8bd0/</link>
		<comments>http://ssssp.net/2010/07/%e6%9a%91%e6%9c%9f%e5%ae%9e%e8%b7%b5%e4%b9%8bd0/#comments</comments>
		<pubDate>Fri, 09 Jul 2010 06:28:24 +0000</pubDate>
		<dc:creator>xufan6</dc:creator>
				<category><![CDATA[玩]]></category>
		<category><![CDATA[zjut]]></category>
		<category><![CDATA[四川]]></category>
		<category><![CDATA[暑期实践]]></category>
		<category><![CDATA[火车]]></category>
		<category><![CDATA[精弘]]></category>

		<guid isPermaLink="false">http://ssssp.net/?p=125</guid>
		<description><![CDATA[今天是2010-7-09。今天晚上20:31分，我将踏上某k字头火车去四川暑期实践。这次出游不像之前几次的，这次历时长——估计17天，人员多——去有6个回来不知道几个，安排混乱——因为是实践不是纯玩，所以我有点虚，就噶。
为什么今天算d0呢？因为他们把明天认为是实践第一天。
为什么会有17天呢？其实暑期实践只有6天。前面两天坐火车，再6天正式实践，后面我准备在成都附近玩。估计九寨沟3天，峨眉2天，西安3到4天，回来的路上2天，保守估计啊17天了。
虚什么？之前出游没一次在外面洗衣服，这次是必须要洗衣服的，是第一次唉。这次后半段行程几乎还没安排过，住宿、觅食这些关键问题都没查过。人员更混乱，实践玩的时候估计是6个人，去九寨沟估计是3+人，去峨眉估计是2+人，去西安估计是1+人，很可能西安我是一个人在玩，据说西安有点乱，虚啊。
世界杯怎么看？决赛那夜应该是在广元过夜，希望宾馆有ccav5。3、4名争夺时是在火车上，考验3g上网卡的时候了。
那到底实践什么？！灾后的食品卫生调查/意识重建。其实我也不太清楚。
回来后的状况。回来之后会有很多很多事。跟导师做实验，据说15几号就开始了，不管了，坤坤同学，那天我把我移动硬盘70多g的文件夹让你随便cp，导师那儿罩着我点啊。精弘服务器调整，第一步的ubuntu server+lnmp我估计是赶不上了，24g内存的服务器第一次装系统我当然想围观啊，可惜啊；之后的数据库搬我估计也插不上手；再后来的静态文件服务器调整，我觉得那时我应该回来了，可惜这东西玩起来没意思。最关键的就是，我一出去，某某某的几张嘴就张开等我带食物回来，呜呜，这次真的东西多，我怕我带不回来了，而且我先前觅食功课都没做好，呜呜，明信片可以有，食物我尽量哦。
需要找我可以发email，应该可以12小时看一次。寂寞时候会上推，蛋疼时候会写博，实在无趣会上上扣扣。手机由于电量和话费的原因，估计不会接，不会回消息。真想知道我在哪儿可以到这儿看我，我一般会开latitude的。
畅想一下17天，下一张睡觉觉的床，下一个拉粑粑的马桶，都是未知数。
]]></description>
			<content:encoded><![CDATA[<p>今天是2010-7-09。今天晚上20:31分，我将踏上某k字头火车去四川暑期实践。这次出游不像之前几次的，这次历时长——估计17天，人员多——去有6个回来不知道几个，安排混乱——因为是实践不是纯玩，所以我有点虚，就噶。</p>
<p><span id="more-125"></span>为什么今天算d0呢？因为他们把明天认为是实践第一天。</p>
<p>为什么会有17天呢？其实暑期实践只有6天。前面两天坐火车，再6天正式实践，后面我准备在成都附近玩。估计九寨沟3天，峨眉2天，西安3到4天，回来的路上2天，保守估计啊17天了。</p>
<p>虚什么？之前出游没一次在外面洗衣服，这次是必须要洗衣服的，是第一次唉。这次后半段行程几乎还没安排过，住宿、觅食这些关键问题都没查过。人员更混乱，实践玩的时候估计是6个人，去九寨沟估计是3+人，去峨眉估计是2+人，去西安估计是1+人，很可能西安我是一个人在玩，据说西安有点乱，虚啊。</p>
<p>世界杯怎么看？决赛那夜应该是在广元过夜，希望宾馆有ccav5。3、4名争夺时是在火车上，考验3g上网卡的时候了。</p>
<p>那到底实践什么？！灾后的食品卫生调查/意识重建。其实我也不太清楚。</p>
<p>回来后的状况。回来之后会有很多很多事。跟导师做实验，据说15几号就开始了，不管了，坤坤同学，那天我把我移动硬盘70多g的文件夹让你随便cp，导师那儿罩着我点啊。精弘服务器调整，第一步的ubuntu server+lnmp我估计是赶不上了，24g内存的服务器第一次装系统我当然想围观啊，可惜啊；之后的数据库搬我估计也插不上手；再后来的静态文件服务器调整，我觉得那时我应该回来了，可惜这东西玩起来没意思。最关键的就是，我一出去，某某某的几张嘴就张开等我带食物回来，呜呜，这次真的东西多，我怕我带不回来了，而且我先前觅食功课都没做好，呜呜，明信片可以有，食物我尽量哦。</p>
<p>需要找我可以发email，应该可以12小时看一次。寂寞时候会上推，蛋疼时候会写博，实在无趣会上上扣扣。手机由于电量和话费的原因，估计不会接，不会回消息。真想知道我在哪儿可以<a href="http://xufan6.com/where" target="_blank">到这儿</a>看我，我一般会开latitude的。</p>
<p>畅想一下17天，下一张睡觉觉的床，下一个拉粑粑的马桶，都是未知数。</p>
]]></content:encoded>
			<wfw:commentRss>http://ssssp.net/2010/07/%e6%9a%91%e6%9c%9f%e5%ae%9e%e8%b7%b5%e4%b9%8bd0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>飘福建土楼＆厦门</title>
		<link>http://ssssp.net/2010/04/%e9%a3%98%e7%a6%8f%e5%bb%ba%e5%9c%9f%e6%a5%bc%e5%92%8c%e5%8e%a6%e9%97%a8/</link>
		<comments>http://ssssp.net/2010/04/%e9%a3%98%e7%a6%8f%e5%bb%ba%e5%9c%9f%e6%a5%bc%e5%92%8c%e5%8e%a6%e9%97%a8/#comments</comments>
		<pubDate>Thu, 22 Apr 2010 07:56:32 +0000</pubDate>
		<dc:creator>xufan6</dc:creator>
				<category><![CDATA[玩]]></category>
		<category><![CDATA[食]]></category>
		<category><![CDATA[babycat]]></category>
		<category><![CDATA[南普陀]]></category>
		<category><![CDATA[南靖]]></category>
		<category><![CDATA[厦门]]></category>
		<category><![CDATA[土楼]]></category>
		<category><![CDATA[永定]]></category>
		<category><![CDATA[漳州]]></category>
		<category><![CDATA[田螺坑]]></category>
		<category><![CDATA[福建]]></category>
		<category><![CDATA[素饼]]></category>
		<category><![CDATA[馅饼]]></category>

		<guid isPermaLink="false">http://ssssp.net/?p=102</guid>
		<description><![CDATA[感谢国家感谢党感谢精弘论坛让我有这次出游的机会~
上周五难得一周么有实验，之前一直在到处呼人出去玩，可惜么人应。上上周四的晚上，飘论坛旅版，偶然发现了有人招人出去玩，而且时间惊人的相似，地点是福建土楼。看了那个鸡动啊鸡动~某些童鞋是知道俺那鸡动的心情滴，我一开始连那人是雄是雌都没关心。。
之后联系了一下，弄到周日晚上基本确定了。大致的行程就是周三晚上坐火车去，周四下午到漳州，再奔到土楼，玩，玩，玩，周六晚上人家自己坐火车回杭州，我到厦门玩，玩，周日晚上飞回杭州。所有土楼行程安排全听她的，人家是功课做足出来的。
这是我第一次坐（硬座）这么长时间（18+小时）火车的，之前最多只坐过4小时的火车。鄙人犀利的在路上睡了14+小时，感谢隔音耳塞&#38;充气护颈。
土楼，怎么说呢，其实去之前我几乎不熟，没听说过的请自觉维基百科去。查了下大概知道已经算是“世界遗产”了。我们住的那片土楼较精确的位置描述是：福建省，漳州市，南靖县，书洋镇，田螺坑（Google Maps 里显示的是田寮坑）。那一带算是在深山里了，再往外一点的几个土楼，例如永定（永定土楼民俗文化村，门票￥90，学生证对折）一带的，商业化气息太浓厚了，本来土楼里面是住人的一间间小房间，全都被用来卖旅游纪念品、茶叶、andsoon。想想这也是么办法的，谁让人家是新开发的旅游区，总要先掠点钱的么。但是门票等这些正经收入都入了政府手里，而村民只能拿到一点点（每人每年￥100），村民就要想办法从另外相关渠道赚钱，而这种赚钱的方法很可能就会破坏当地原来的那种纯朴的人文气息。
扯了这么多就是想说：要去抓紧去，再不去，过半年一年的，连蛮里面的土楼（像田螺坑一类的）都充斥上饱满的商业气的时候，那种土楼也没看的感觉了。但是话又分两面说，不发展商业村民们怎么混啊，当地政府难得碰到肉吃，不大口大口吃怎么行啊。不管了，再扯下去我啊要晕了。
之后，周六下午去了厦门。厦门，半年前去过一次，所以本懒人连宾馆都是和上次一样的，Google Maps上的图层也不改了，直接用上次的了。这次目的其实蛮明确的：买饼饼。南普陀的馅饼和babycat的馅饼。行程差不多是：周六下午到厦门，登入宾馆，去鼓浪屿，看看夜景；周日环岛路、南普陀、厦大、买饼。
其实最有科技部分的是买饼阶段~感谢twitter、4sq、gmail、blackberry~请看如下对话~
Saturday 17th April 2010
xufan6 16:18
呜。。 这么俏的啊。。明天下午1点再来。。原来上次买到是爆人品的啊。。 (@ babycat私家御饼屋(禾祥馆)) http://4sq.com/bcaCmi  from foursquare
xufan6 22:05
@babycat_xm 可不可以推上预定馅饼啊？今天下午来的时候居然没了　TT  from dabr
Sunday 18th April 2010
babycat_xm 01:31
@xufan6 发邮件给我吧  from Tweetie in  reply to xufan6
xufan6 07:17
我是twitter上的xufan6.
我想预定馅饼：3盒绿豆，3盒绿茶，1盒椰榕，1盒随机。
今天下午在石祥西路店拿。
真的可以这样预定吗？
 from gmail
xufan6 07:18
@babycat_xm 发了发了　真可以这样预定吗？  from dabr in reply to babycat_xm
xufan6 14:25
为 什么又卖这么快，我要的绿豆啊　啊啊　啊啊啊 (@ babycat私家御饼屋(禾祥馆)) http://4sq.com/bcaCmi  from foursquare
babycat Huang 14:35
我刚起床才看到，你几点要啊？禾祥没饼了，我鼓浪屿
给你带过去。
 [...]]]></description>
			<content:encoded><![CDATA[<p>感谢国家感谢党感谢<a href="http://bbs.zjut.com" target="_blank">精弘论坛</a>让我有这次出游的机会~</p>
<p>上周五难得一周么有实验，之前一直在到处呼人出去玩，可惜么人应。上上周四的晚上，飘论坛旅版，偶然发现了有人招人出去玩，而且时间惊人的相似，地点是福建土楼。看了那个鸡动啊鸡动~某些童鞋是知道俺那鸡动的心情滴，我一开始连那人是雄是雌都没关心。。</p>
<p>之后联系了一下，弄到周日晚上基本确定了。大致的行程就是周三晚上坐火车去，周四下午到漳州，再奔到土楼，玩，玩，玩，周六晚上人家自己坐火车回杭州，我到厦门玩，玩，周日晚上飞回杭州。所有土楼行程安排全听她的，人家是功课做足出来的。</p>
<p>这是我第一次坐（硬座）这么长时间（18+小时）火车的，之前最多只坐过4小时的火车。鄙人犀利的在路上睡了14+小时，感谢隔音耳塞&amp;充气护颈。<span id="more-102"></span></p>
<p>土楼，怎么说呢，其实去之前我几乎不熟，没听说过的请自觉<a href="http://zh.wikipedia.org/zh-cn/%E7%A6%8F%E5%BB%BA%E5%9C%9F%E6%A5%BC" target="_blank">维基百科去</a>。查了下大概知道已经算是“世界遗产”了。我们住的那片土楼较精确的位置描述是：福建省，漳州市，南靖县，书洋镇，田螺坑（Google Maps 里显示的是<a href="http://maps.google.com/maps?ie=UTF8&amp;ll=24.584554,117.060227&amp;spn=0.019903,0.043945&amp;z=15" target="_blank">田寮坑</a>）。那一带算是在深山里了，再往外一点的几个土楼，例如永定（永定土楼民俗文化村，门票￥90，学生证对折）一带的，商业化气息太浓厚了，本来土楼里面是住人的一间间小房间，全都被用来卖旅游纪念品、茶叶、andsoon。想想这也是么办法的，谁让人家是新开发的旅游区，总要先掠点钱的么。但是门票等这些正经收入都入了政府手里，而村民只能拿到一点点（每人每年￥100），村民就要想办法从另外相关渠道赚钱，而这种赚钱的方法很可能就会破坏当地原来的那种纯朴的人文气息。</p>
<p>扯了这么多就是想说：要去抓紧去，再不去，过半年一年的，连蛮里面的土楼（像田螺坑一类的）都充斥上饱满的商业气的时候，那种土楼也没看的感觉了。但是话又分两面说，不发展商业村民们怎么混啊，当地政府难得碰到肉吃，不大口大口吃怎么行啊。不管了，再扯下去我啊要晕了。</p>
<p>之后，周六下午去了厦门。厦门，半年前去过一次，所以本懒人连宾馆都是和上次一样的，Google Maps上的图层也不改了，直接用上次的了。这次目的其实蛮明确的：买饼饼。南普陀的馅饼和babycat的馅饼。行程差不多是：周六下午到厦门，登入宾馆，去鼓浪屿，看看夜景；周日环岛路、南普陀、厦大、买饼。</p>
<p>其实最有科技部分的是买饼阶段~感谢twitter、4sq、gmail、blackberry~请看如下对话~</p>
<blockquote><p><small><strong>Saturday 17th April 2010</strong></small></p>
<p><strong><a href="https://twitter.com/xufan6">xufan6</a></strong> <small><a href="https://twitter.com/xufan6/status/12331717093">16:18</a></small><br />
呜。。 这么俏的啊。。明天下午1点再来。。原来上次买到是爆人品的啊。。 (@ babycat私家御饼屋(禾祥馆)) <a href="http://4sq.com/bcaCmi">http://4sq.com/bcaCmi</a> <small> from <a rel="nofollow" href="http://foursquare.com/">foursquare</a></small></p>
<p><strong><a href="https://twitter.com/xufan6">xufan6</a></strong> <small><a href="https://twitter.com/xufan6/status/12342608881">22:05</a></small><br />
@<a href="https://twitter.com/babycat_xm">babycat_xm</a> 可不可以推上预定馅饼啊？今天下午来的时候居然没了　TT <small> from <a rel="nofollow" href="http://dabr.co.uk/">dabr</a></small></p>
<p><small><strong>Sunday 18th April 2010</strong></small></p>
<p><strong><a href="https://twitter.com/babycat_xm">babycat_xm</a></strong> <small><a href="https://twitter.com/babycat_xm/status/12352614946">01:31</a></small><br />
@<a href="https://twitter.com/xufan6">xufan6</a> 发邮件给我吧 <small> from <a rel="nofollow" href="http://www.atebits.com/">Tweetie</a> in  reply to <a href="https://twitter.com/xufan6/status/12342608881">xufan6</a></small></p>
<p><strong>xufan6</strong> <small>07:17</small><br />
我是twitter上的xufan6.<br />
我想预定馅饼：3盒绿豆，3盒绿茶，1盒椰榕，1盒随机。<br />
今天下午在石祥西路店拿。<br />
真的可以这样预定吗？<br />
<small> from <a rel="nofollow" href="https://mail.google.com">gmail</a></small></p>
<p><strong><a href="https://twitter.com/xufan6">xufan6</a></strong> <small><a href="https://twitter.com/xufan6/status/12366228479">07:18</a></small><br />
@<a href="https://twitter.com/babycat_xm">babycat_xm</a> 发了发了　真可以这样预定吗？ <small> from <a rel="nofollow" href="http://dabr.co.uk/">dabr</a> in reply to <a href="https://twitter.com/babycat_xm/status/12352614946">babycat_xm</a></small></p>
<p><strong><a href="https://twitter.com/xufan6">xufan6</a></strong> <small><a href="https://twitter.com/xufan6/status/12384283073">14:25</a></small><br />
为 什么又卖这么快，我要的绿豆啊　啊啊　啊啊啊 (@ babycat私家御饼屋(禾祥馆)) <a href="http://4sq.com/bcaCmi">http://4sq.com/bcaCmi</a> <small> from <a rel="nofollow" href="http://foursquare.com/">foursquare</a></small></p>
<p><strong>babycat Huang</strong> <small>14:35</small><br />
我刚起床才看到，你几点要啊？禾祥没饼了，我鼓浪屿<br />
给你带过去。<br />
<small> from <a rel="nofollow" href="https://mail.google.com">gmail</a></small></p>
<p><strong><a href="https://twitter.com/babycat_xm">babycat_xm</a></strong> <small><a href="https://twitter.com/babycat_xm/status/12384644842">14:36</a></small><br />
@<a href="https://twitter.com/xufan6">xufan6</a> 禾祥没饼了我刚起床才看到。你几点要？我给你带过去。 <small> from <a rel="nofollow" href="http://www.atebits.com/">Tweetie</a> in reply to <a href="https://twitter.com/xufan6/status/12366228479">xufan6</a></small></p>
<p><strong><a href="https://twitter.com/babycat_xm">babycat_xm</a></strong> <small><a href="https://twitter.com/babycat_xm/status/12384676650">14:37</a></small><br />
@<a href="https://twitter.com/xufan6">xufan6</a> 你在我禾祥店里啊？ <small> from <a rel="nofollow" href="http://www.atebits.com/">Tweetie</a> in  reply to <a href="https://twitter.com/xufan6/status/12384283073">xufan6</a></small></p>
<p><strong><a href="https://twitter.com/xufan6">xufan6</a></strong> <small><a href="https://twitter.com/xufan6/status/12384679808">14:37</a></small><br />
Babycat 　咬牙切尺。。。　买了之后1分钟就全没了。。　本来要的味道都没了 <small> from <a rel="nofollow" href="http://dabr.co.uk/">dabr</a></small></p>
<p><strong><a href="https://twitter.com/xufan6">xufan6</a></strong> <small><a href="https://twitter.com/xufan6/status/12384707216">14:38</a></small><br />
@<a href="https://twitter.com/babycat_xm">babycat_xm</a> 是啊。。还坐着。。 <small> from <a rel="nofollow" href="http://dabr.co.uk/">dabr</a> in reply to <a href="https://twitter.com/babycat_xm/status/12384676650">babycat_xm</a></small></p>
<p><strong><a href="https://twitter.com/babycat_xm">babycat_xm</a></strong> <small><a href="https://twitter.com/babycat_xm/status/12384744154">14:39</a></small><br />
@<a href="https://twitter.com/xufan6">xufan6</a> 你要等下么？如果不赶时间的话。 <small> from <a rel="nofollow" href="http://www.atebits.com/">Tweetie</a> in reply to <a href="https://twitter.com/xufan6/status/12384707216">xufan6</a></small></p>
<p><strong><a href="https://twitter.com/babycat_xm">babycat_xm</a></strong> <small><a href="https://twitter.com/babycat_xm/status/12384763761">14:40</a></small><br />
@<a href="https://twitter.com/xufan6">xufan6</a> 我把你要的口味送过去 <small> from <a rel="nofollow" href="http://www.atebits.com/">Tweetie</a> in  reply to <a href="https://twitter.com/xufan6/status/12384707216">xufan6</a></small></p>
<p><strong><a href="https://twitter.com/xufan6">xufan6</a></strong> <small><a href="https://twitter.com/xufan6/status/12384795594">14:41</a></small><br />
@<a href="https://twitter.com/babycat_xm">babycat_xm</a> 晚上10点的飞机　我现在买了另外味道的了　可以换吗？ <small> from <a rel="nofollow" href="http://dabr.co.uk/">dabr</a> in reply to <a href="https://twitter.com/babycat_xm/status/12384744154">babycat_xm</a></small></p>
<p><strong><a href="https://twitter.com/babycat_xm">babycat_xm</a></strong> <small><a href="https://twitter.com/babycat_xm/status/12384820070">14:41</a></small><br />
@<a href="https://twitter.com/xufan6">xufan6</a> 可以！你都退給店员，我现在电话过去。 <small> from <a rel="nofollow" href="http://www.atebits.com/">Tweetie</a> in reply to <a href="https://twitter.com/xufan6/status/12384795594">xufan6</a></small></p>
<p><strong><a href="https://twitter.com/xufan6">xufan6</a></strong> <small><a href="https://twitter.com/xufan6/status/12384827474">14:42</a></small><br />
@<a href="https://twitter.com/babycat_xm">babycat_xm</a> 大概要多久啊？　要么我店里再坐一会儿？ <small> from <a rel="nofollow" href="http://dabr.co.uk/">dabr</a> in reply to <a href="https://twitter.com/babycat_xm/status/12384763761">babycat_xm</a></small></p>
<p><strong><a href="https://twitter.com/babycat_xm">babycat_xm</a></strong> <small><a href="https://twitter.com/babycat_xm/status/12384898486">14:44</a></small><br />
@<a href="https://twitter.com/xufan6">xufan6</a> 我现在从鼓浪屿过去最快也要1小时，你随便要点饮料等我吧，我跟店员交代了。 <small> from <a rel="nofollow" href="http://www.atebits.com/">Tweetie</a> in reply to <a href="https://twitter.com/xufan6/status/12384827474">xufan6</a></small></p>
<p><strong><a href="https://twitter.com/xufan6">xufan6</a></strong> <small><a href="https://twitter.com/xufan6/status/12384909994">14:44</a></small><br />
@<a href="https://twitter.com/babycat_xm">babycat_xm</a> 那我就坐等着噢~ 谢谢啦 <small> from <a rel="nofollow" href="http://dabr.co.uk/">dabr</a></small></p>
<p><strong><a href="https://twitter.com/babycat_xm">babycat_xm</a></strong> <small><a href="https://twitter.com/babycat_xm/status/12384941231">14:45</a></small><br />
@<a href="https://twitter.com/xufan6">xufan6</a> 不客气，你是第一个用推订饼哒！哈哈哈哈。 <small> from <a rel="nofollow" href="http://www.atebits.com/">Tweetie</a> in reply to <a href="https://twitter.com/xufan6/status/12384909994">xufan6</a></small></p>
<p><strong><a href="https://twitter.com/xufan6">xufan6</a></strong> <small><a href="https://twitter.com/xufan6/status/12384998676">14:47</a></small><br />
@<a href="https://twitter.com/babycat_xm">babycat_xm</a> 哈哈哈哈　那我等着~~ <small> from <a rel="nofollow" href="http://dabr.co.uk/">dabr</a> in reply to <a href="https://twitter.com/babycat_xm/status/12384941231">babycat_xm</a></small></p>
<p><strong><a href="https://twitter.com/babycat_xm">babycat_xm</a></strong> <small><a href="https://twitter.com/babycat_xm/status/12385057968">14:49</a></small><br />
@<a href="https://twitter.com/xufan6">xufan6</a> 嗯，饮料我买单。 <small> from <a rel="nofollow" href="http://www.atebits.com/">Tweetie</a> in  reply to <a href="https://twitter.com/xufan6/status/12384998676">xufan6</a></small></p>
<p><strong><a href="https://twitter.com/xufan6">xufan6</a></strong> <small><a href="https://twitter.com/xufan6/status/12385106950">14:51</a></small><br />
各 位在厦门的注意了　babycat的馅饼可以向 @<a href="https://twitter.com/babycat_xm">babycat_xm</a> 预定~~　哈哈哈哈~~ <small> from <a rel="nofollow" href="http://dabr.co.uk/">dabr</a></small></p>
<p><strong><a href="https://twitter.com/xufan6">xufan6</a></strong> <small><a href="https://twitter.com/xufan6/status/12385539421">15:04</a></small><br />
我 发现我一个人旅行太现代化了　twitter上召人带进夏大　4sq上找到卖馅饼的店家 twitter上联系好 卖完的味道都能从远方送来~~ thx  @<a href="https://twitter.com/babycat_xm">babycat_xm</a> <small> from <a rel="nofollow" href="http://dabr.co.uk/">dabr</a></small></p>
<p><strong><a href="https://twitter.com/babycat_xm">babycat_xm</a></strong> <small><a href="https://twitter.com/babycat_xm/status/12385655909">15:08</a></small><br />
@<a href="https://twitter.com/xufan6">xufan6</a> 哈哈哈哈，正前来。路上了  <small> from <a rel="nofollow" href="http://www.atebits.com/">Tweetie</a> in reply to <a href="https://twitter.com/xufan6/status/12385539421">xufan6</a></small></p>
<p><strong><a href="https://twitter.com/babycat_xm">babycat_xm</a></strong> <small><a href="https://twitter.com/babycat_xm/status/12385890213">15:15</a></small><br />
I&#8217;m  at babycat私家御饼屋(白馆) (鼓浪屿龙头路8号(工行后), 厦门市). <a href="http://4sq.com/aufbKg">http://4sq.com/aufbKg</a> <small> from <a rel="nofollow" href="http://foursquare.com/">foursquare</a></small></p>
<p><strong><a href="https://twitter.com/babycat_xm">babycat_xm</a></strong> <small><a href="https://twitter.com/babycat_xm/status/12386136533">15:23</a></small><br />
在 轮渡上了。 <small> from <a rel="nofollow" href="http://www.atebits.com/">Tweetie</a></small></p>
<p><strong><a href="https://twitter.com/babycat_xm">babycat_xm</a></strong> <small><a href="https://twitter.com/babycat_xm/status/12386223090">15:26</a></small><br />
I&#8217;m  at 轮渡码头 (思明区鹭江道15号, Xiamen). <a href="http://4sq.com/doiSm5">http://4sq.com/doiSm5</a> <small> from <a rel="nofollow" href="http://foursquare.com/">foursquare</a></small></p>
<p><strong><a href="https://twitter.com/babycat_xm">babycat_xm</a></strong> <small><a href="https://twitter.com/babycat_xm/status/12386724765">15:43</a></small><br />
I&#8217;m  at babycat私家御饼屋(禾祥馆) w/ @<a href="https://twitter.com/xufan6">xufan6</a>. <a href="http://4sq.com/bcaCmi">http://4sq.com/bcaCmi</a> <small> from <a rel="nofollow" href="http://foursquare.com/">foursquare</a></small></p></blockquote>
<p>犀利的推上定饼啊~~其实犀利的还有进厦大那一出~因为厦大是有门禁的，我在推上招人求带入，推友@orpzrpv说可以从隧道那边入，可惜太远了，@orpzrpv又说之前他有个豆友说好可以带入，然后我就和豆友联系，纠结了几下就带进去了。下雨天飘厦大，都没仔细荡，因为实在走不动了。</p>
<p>再话说，4月26日，杭州到厦门的动车要通了，感觉上去厦门的成本会下降，感觉上杭州的闲人会有事没事飘一圈，感觉上如果边上有人要去厦门maybe会来拖我OR问我怎么玩。扔张<a href="http://maps.google.com/maps/ms?ie=UTF&amp;msa=0&amp;msid= 103709416143636887754.0004761b35050a708dae7" target="_blank">自己做地标的Google Maps</a>上来，只标注了岛上的几个地方，鼓浪屿么随便逛逛就可以了，反正不太可能迷路的。</p>
<p>以前中学里的文章总要写个结尾，现在么这鸟习惯了。图片懒得折腾，maybe会扔到picasaweb，要做到心中无墙~这篇文章扯了两天才出炉，累死。</p>
]]></content:encoded>
			<wfw:commentRss>http://ssssp.net/2010/04/%e9%a3%98%e7%a6%8f%e5%bb%ba%e5%9c%9f%e6%a5%bc%e5%92%8c%e5%8e%a6%e9%97%a8/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>西塘两日游</title>
		<link>http://ssssp.net/2009/08/%e8%a5%bf%e5%a1%98%e4%b8%a4%e6%97%a5%e6%b8%b8/</link>
		<comments>http://ssssp.net/2009/08/%e8%a5%bf%e5%a1%98%e4%b8%a4%e6%97%a5%e6%b8%b8/#comments</comments>
		<pubDate>Mon, 24 Aug 2009 15:38:57 +0000</pubDate>
		<dc:creator>xufan6</dc:creator>
				<category><![CDATA[玩]]></category>
		<category><![CDATA[旅游]]></category>
		<category><![CDATA[西塘]]></category>

		<guid isPermaLink="false">http://ssssp.net/?p=61</guid>
		<description><![CDATA[和5个高中同学一起去西塘玩了两天一夜。
汽车东站坐车到嘉善，差不多半小时一班的车。到了之后下车重新进站，买4元钱的票到西塘，十几分钟就到了。客栈是之前订好的，网络发达么。叫老板到车站来接，然后两人一辆三轮车，很速度的就到客栈了。放下东西，东拐西扭的走到了“老品芳”，在那儿吃中饭的，150元6个人，包间有空调，好饱。
之后回客栈，我和狗以很犀利的速度洗了个澡。下午3点半，继续出发，看到一家人均最低消费10元的店，就坐进去了，几乎人手一盘沙冰，开始玩uno牌。好吧，我承认，在西塘的第一天几乎就是换地方玩牌。晚上吃的是小混沌，再坐船，再烧烤+uno牌。之后回客栈洗澡睡觉。
话说我那陪我将近一年的蓝色的1000ml的水杯命丧西塘。默哀。
第二天早上起来到“迷楼”吃早饭，之后再荡了一圈，我买了点吃的，打道回府。
中午12点左右到杭州。
下面是图片了


上两张是客栈，雕花大床啊。


按常规，上自己的图了。

似乎图片太多了啊，下次还是直接上相册吧。
]]></description>
			<content:encoded><![CDATA[<p>和5个高中同学一起去西塘玩了两天一夜。</p>
<p>汽车东站坐车到嘉善，差不多半小时一班的车。到了之后下车重新进站，买4元钱的票到西塘，十几分钟就到了。客栈是之前订好的，网络发达么。叫老板到车站来接，然后两人一辆三轮车，很速度的就到客栈了。放下东西，东拐西扭的走到了“老品芳”，在那儿吃中饭的，150元6个人，包间有空调，好饱。</p>
<p>之后回客栈，我和狗以很犀利的速度洗了个澡。下午3点半，继续出发，看到一家人均最低消费10元的店，就坐进去了，几乎人手一盘沙冰，开始玩uno牌。好吧，我承认，在西塘的第一天几乎就是换地方玩牌。晚上吃的是小混沌，再坐船，再烧烤+uno牌。之后回客栈洗澡睡觉。</p>
<p>话说我那陪我将近一年的蓝色的1000ml的水杯命丧西塘。默哀。</p>
<p>第二天早上起来到“迷楼”吃早饭，之后再荡了一圈，我买了点吃的，打道回府。</p>
<p>中午12点左右到杭州。</p>
<p>下面是图片了<span id="more-61"></span></p>
<p><a href="http://picasaweb.google.com/xufan6/2009820#5373548463357103714"><img class="pie-img" style="margin:10px 10px 10px 10px;" src="http://lh5.ggpht.com/_T3mmS8biflg/SpKt222_DmI/AAAAAAAAAuU/dfctaewBp2s/IMG_3053.JPG?imgmax=400" alt="IMG_3053.JPG" /></a></p>
<p><a href="http://picasaweb.google.com/xufan6/2009820#5373548468922131554"><img class="pie-img" style="margin:10px 10px 10px 10px;" src="http://lh5.ggpht.com/_T3mmS8biflg/SpKt3LlypGI/AAAAAAAAAuY/WRYKZzz7XsE/IMG_3054.JPG?imgmax=400" alt="IMG_3054.JPG" /></a></p>
<p>上两张是客栈，雕花大床啊。</p>
<p><a href="http://picasaweb.google.com/xufan6/2009820#5373541955988929506"><img class="pie-img" style="margin:10px 10px 10px 10px;" src="http://lh3.ggpht.com/_T3mmS8biflg/SpKn8FBgu-I/AAAAAAAAAtQ/0C-GynAF7xc/IMG_3013.JPG?imgmax=400" alt="IMG_3013.JPG" /></a><a href="http://picasaweb.google.com/xufan6/2009820#5373541959725720018"><img class="pie-img" style="margin:10px 10px 10px 10px;" src="http://lh3.ggpht.com/_T3mmS8biflg/SpKn8S8bodI/AAAAAAAAAtU/A8Ob26j_vkE/IMG_3014.JPG?imgmax=400" alt="IMG_3014.JPG" /></a></p>
<p><a href="http://picasaweb.google.com/xufan6/2009820#5373541954309726946"><img class="pie-img" style="margin:10px 10px 10px 10px;" src="http://lh4.ggpht.com/_T3mmS8biflg/SpKn7-xKIuI/AAAAAAAAAtE/wM6PW0pqQ-c/IMG_3010.JPG?imgmax=400" alt="IMG_3010.JPG" /></a><a href="http://picasaweb.google.com/xufan6/2009820#5373541952230680402"><img class="pie-img" style="margin:10px 10px 10px 10px;" src="http://lh4.ggpht.com/_T3mmS8biflg/SpKn73BeZ1I/AAAAAAAAAtI/tXWwhSsW5Sw/IMG_3011.JPG?imgmax=400" alt="IMG_3011.JPG" /></a><a href="http://picasaweb.google.com/xufan6/2009820#5373543808999517810"><img class="pie-img" style="margin:10px 10px 10px 10px;" src="http://lh4.ggpht.com/_T3mmS8biflg/SpKpn8BqbnI/AAAAAAAAAtY/v3kHoK8GiRs/IMG_3016.JPG?imgmax=400" alt="IMG_3016.JPG" /></a><a href="http://picasaweb.google.com/xufan6/2009820#5373546748801113282"><img class="pie-img" style="margin:10px 10px 10px 10px;" src="http://lh5.ggpht.com/_T3mmS8biflg/SpKsTDo-3MI/AAAAAAAAAtc/rCdDS4rmjZQ/IMG_3017.JPG?imgmax=400" alt="IMG_3017.JPG" /></a><a href="http://picasaweb.google.com/xufan6/2009820#5373547009322825826"><img class="pie-img" style="margin:10px 10px 10px 10px;" src="http://lh3.ggpht.com/_T3mmS8biflg/SpKsiOKMuGI/AAAAAAAAAtg/WLHLc2JWHt8/IMG_3018.JPG?imgmax=400" alt="IMG_3018.JPG" /></a><a href="http://picasaweb.google.com/xufan6/2009820#5373547011051770674"><img class="pie-img" style="margin:10px 10px 10px 10px;" src="http://lh6.ggpht.com/_T3mmS8biflg/SpKsiUmaUzI/AAAAAAAAAtk/s7H41NjuiI8/IMG_3019.JPG?imgmax=400" alt="IMG_3019.JPG" /></a><a href="http://picasaweb.google.com/xufan6/2009820#5373547264593580754"><img class="pie-img" style="margin:10px 10px 10px 10px;" src="http://lh6.ggpht.com/_T3mmS8biflg/SpKsxFHfUtI/AAAAAAAAAts/LU7zVFS-Vdc/IMG_3020.JPG?imgmax=400" alt="IMG_3020.JPG" /></a><a href="http://picasaweb.google.com/xufan6/2009820#5373547263851854514"><img class="pie-img" style="margin:10px 10px 10px 10px;" src="http://lh4.ggpht.com/_T3mmS8biflg/SpKsxCWperI/AAAAAAAAAtw/Wcp7jnPySic/IMG_3022.JPG?imgmax=400" alt="IMG_3022.JPG" /></a><a href="http://picasaweb.google.com/xufan6/2009820#5373547857951139890"><img class="pie-img" style="margin:10px 10px 10px 10px;" src="http://lh6.ggpht.com/_T3mmS8biflg/SpKtTni9KDI/AAAAAAAAAt8/dmTFTJvtMT4/IMG_3027.JPG?imgmax=400" alt="IMG_3027.JPG" /></a><a href="http://picasaweb.google.com/xufan6/2009820#5373547863643775778"><img class="pie-img" style="margin:10px 10px 10px 10px;" src="http://lh5.ggpht.com/_T3mmS8biflg/SpKtT8wL4yI/AAAAAAAAAuA/43-0K-RW3ns/IMG_3028.JPG?imgmax=400" alt="IMG_3028.JPG" /></a><a href="http://picasaweb.google.com/xufan6/2009820#5373547864292532178"><img class="pie-img" style="margin:10px 10px 10px 10px;" src="http://lh5.ggpht.com/_T3mmS8biflg/SpKtT_K3H9I/AAAAAAAAAuE/G1MsfxiekTY/IMG_3031.JPG?imgmax=400" alt="IMG_3031.JPG" /></a><a href="http://picasaweb.google.com/xufan6/2009820#5373548167931515554"><img class="pie-img" style="margin:10px 10px 10px 10px;" src="http://lh3.ggpht.com/_T3mmS8biflg/SpKtlqUCUqI/AAAAAAAAAuI/95_8xecc8cQ/IMG_3047.JPG?imgmax=400" alt="IMG_3047.JPG" /></a><a href="http://picasaweb.google.com/xufan6/2009820#5373548173338808722"><img class="pie-img" style="margin:10px 10px 10px 10px;" src="http://lh5.ggpht.com/_T3mmS8biflg/SpKtl-dPEZI/AAAAAAAAAuM/4Yo8qF1xAU8/IMG_3049.JPG?imgmax=400" alt="IMG_3049.JPG" /></a><a href="http://picasaweb.google.com/xufan6/2009820#5373548171759280082"><img class="pie-img" style="margin:10px 10px 10px 10px;" src="http://lh3.ggpht.com/_T3mmS8biflg/SpKtl4kpX9I/AAAAAAAAAuQ/y_cFJt4mFUY/IMG_3052.JPG?imgmax=400" alt="IMG_3052.JPG" /></a></p>
<p>按常规，上自己的图了。</p>
<p><a href="http://picasaweb.google.com/xufan6/2009820#5373547613074342354"><img class="pie-img" style="margin:10px 10px 10px 10px;" src="http://lh5.ggpht.com/_T3mmS8biflg/SpKtFXTxwdI/AAAAAAAAAt0/pz0IU9Krc3Q/IMG_3023zz.jpg?imgmax=400" alt="IMG_3023zz.jpg" /></a><a href="http://picasaweb.google.com/xufan6/2009820#5373547618295923106"><img class="pie-img" style="margin:10px 10px 10px 10px;" src="http://lh5.ggpht.com/_T3mmS8biflg/SpKtFqwswaI/AAAAAAAAAt4/IILEoXWvAdw/IMG_3024.JPG?imgmax=400" alt="IMG_3024.JPG" /></a></p>
<p>似乎图片太多了啊，下次还是直接上相册吧。</p>
]]></content:encoded>
			<wfw:commentRss>http://ssssp.net/2009/08/%e8%a5%bf%e5%a1%98%e4%b8%a4%e6%97%a5%e6%b8%b8/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

