<?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>Imagination</title>
	<atom:link href="http://danyifeng.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://danyifeng.com</link>
	<description>Logic will get you from A to B. Imagination will take you everywhere.</description>
	<lastBuildDate>Wed, 08 Sep 2010 21:36:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>[Rails 3]Cropping images use paperclip and jcrop</title>
		<link>http://danyifeng.com/2010/09/08/rails-3cropping-images-use-paperclip-and-jcrop/</link>
		<comments>http://danyifeng.com/2010/09/08/rails-3cropping-images-use-paperclip-and-jcrop/#comments</comments>
		<pubDate>Wed, 08 Sep 2010 21:36:21 +0000</pubDate>
		<dc:creator>小单</dc:creator>
				<category><![CDATA[rails]]></category>
		<category><![CDATA[crop]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[jcrop]]></category>
		<category><![CDATA[paperclip]]></category>
		<category><![CDATA[rails 3]]></category>

		<guid isPermaLink="false">http://danyifeng.com/?p=11137</guid>
		<description><![CDATA[在railscast看到用paperclip跟Jcrop（一个jquery的一个插件）来实现图片裁剪功能，看起来很简单 就顺便用在现在做的项目里面了。 结果杯具的花了一天多的时间来弄。 在上一篇 [/rails] paperclip works on windows 中记录了怎么给一个model加avatar 100&#215;100# VS 100&#215;100&#62; 在model中我们加入了一下的代码 has_attached_file :avatar, :styles =&#62; { :medium =&#62; &#34;300x300&#62;&#34;, :thumb =&#62; &#34;100x100&#62;&#34; } 注意这里的在维度后面加了一个大于号，当时不是很理解。 google也没有找到答案，今天又仔细研究了一下， 100*100&#62;的话呢，&#62;是指按比例缩放的情况下最长边等于100. #就不是按比例缩放了， 如果是 100&#215;100# 最后的图就是拉伸到100&#215;100，不论之前的比例。 首先 在model里面把上面这句改成下面一句 has_attached_file :avatar, :style {:medium=&#62;&#34;150x150#&#34;, :large=&#62;&#34;500x500&#62;&#34;} 我们在页面上显示用户的头像是150*150的。 因为用户上传的图片的大小必然是各种各样的，所以我们这里先把用户给的图片变化成我们已知的大小, 这里的large style接下来就会用来被裁剪的图片。 Action 我们要实现的是， 当用户upload一个图片时转到一个叫crop的页面去进行裁剪。 所以需要修改controller里面的action,下面这段代码直接从railscast里面偷过来的。 def create @user = User.new(params[:user]) if @user.save ]]></description>
			<content:encoded><![CDATA[<p>在railscast看到用paperclip跟Jcrop（一个jquery的一个插件）来实现图片裁剪功能，看起来很简单 就顺便用在现在做的项目里面了。 结果杯具的花了一天多的时间来弄。</p>
<p>在上一篇<a href="http://danyifeng.com/2010/09/06/rails-paperclip-works-on-windows/"><br />
</a></p>
<p><a href="http://danyifeng.com/2010/09/06/rails-paperclip-works-on-windows/">
<pre class="brush: ruby;">[/rails]</pre>
<p>paperclip works on windows</a> 中记录了怎么给一个model加avatar</p>
<h2><span style="color: #cc99ff;">100&#215;100# VS 100&#215;100&gt;</span></h2>
<p>在model中我们加入了一下的代码</p>
<pre class="brush: php;">has_attached_file :avatar, :styles =&gt; { :medium =&gt; &quot;300x300&gt;&quot;, :thumb =&gt; &quot;100x100&gt;&quot; }</pre>
<p>注意这里的在维度后面加了一个大于号，当时不是很理解。 google也没有找到答案，今天又仔细研究了一下， 100*100&gt;的话呢，&gt;是指按比例缩放的情况下最长边等于100. #就不是按比例缩放了， 如果是 100&#215;100# 最后的图就是拉伸到100&#215;100，不论之前的比例。</p>
<p>首先 在model里面把上面这句改成下面一句</p>
<pre class="brush: php;">has_attached_file :avatar, :style {:medium=&gt;&quot;150x150#&quot;, :large=&gt;&quot;500x500&gt;&quot;}</pre>
<p>我们在页面上显示用户的头像是150*150的。<br />
因为用户上传的图片的大小必然是各种各样的，所以我们这里先把用户给的图片变化成我们已知的大小, 这里的large style接下来就会用来被裁剪的图片。</p>
<h2><span style="color: #cc99ff;">Action</span></h2>
<p>我们要实现的是， 当用户upload一个图片时转到一个叫crop的页面去进行裁剪。<br />
所以需要修改controller里面的action,下面这段代码直接从railscast里面偷过来的。</p>
<pre class="brush: php;">
def create
    @user = User.new(params[:user])
    if @user.save
      if params[:user][:avatar].blank?
        flash[:notice] = &quot;Successfully created user.&quot;
        redirect_to @user
      else
        render :action =&gt; &quot;crop&quot;
      end
    else
      render :action =&gt; 'new'
    end
  end

  def update
    @user = User.find(params[:id])
    if @user.update_attributes(params[:user])
      if params[:user][:avatar].blank?
        flash[:notice] = &quot;Successfully updated user.&quot;
        redirect_to @user
      else
        render :action =&gt; &quot;crop&quot;
      end
    else
      render :action =&gt; 'edit'
    end
  end
</pre>
<h2><span style="color: #cc99ff;">Jcrop选区</span></h2>
<p>然后我们要新加一个crop的view，就是在upload一个图片后，跳转到用来图片剪裁的页面。 在这个页面中呢， 我们就要用到<a href="http://deepliquid.com/content/Jcrop.html">Jcrop</a>这个plugin了，<a href="http://deepliquid.com/content/Jcrop_Download.html">下载地址</a><br />
把JavaScript，stylesheet一股脑都丢进这个文件里面， 当然为了保证Javascript在head里面呢，我们可以用 yield跟content_for 来做，请同学们自行动手尝试。（也可以到<a href="http://railscasts.com/episodes/182-cropping-images">这里围观</a>Ryan是怎么做的）</p>
<p>加入下列代码 依然是偷过来的，我自己的使用haml写的</p>
<pre class="brush: php;">
    &lt;% title &quot;Crop Avatar&quot; %&gt;
    &lt;% content_for (:head) do %&gt;
    &lt;%= stylesheet_link_tag &quot;jquery.Jcrop&quot; %&gt;
    &lt;%= javascript_include_tag &quot;jquery.Jcrop.min&quot; %&gt;
    &lt;script type=&quot;text/javascript&quot;&gt;
     $(function() {
        $('#cropbox').Jcrop();
      });
    &lt;/script&gt;
   &lt;% end %&gt;

  &lt;%= image_tag @user.avatar.url(:large), :id =&gt; &quot;cropbox&quot; %&gt;
</pre>
<h2><span style="color: #cc99ff;">通知paperclip选区范围</span></h2>
<p>显然这只实现了一个在图片中选中一个区域的步骤，我们需要告诉paperclip我们选择了哪个区域。<br />
回到model里 加入下面的代码</p>
<pre class="brush: php;">attr_accessor:crop_x, :crop_y, :crop_w,:crop_h</pre>
<p>什么是attr_accessor， 字面上来看呢 就是attribute accessors，如果你熟悉java或者c++, whatever else. 这个就相当于getter跟setter的合体。<br />
这里的四个值呢 分别是 crop_x 左上角的x坐标， crop_y 左上角的y坐标， crop_w 所选框的width，同理crop_h 所选框的height.</p>
<p>怎么把这些值传递给paperclip让它知道呢，首先想到的是要弄一个表单,为了不让这些值显示给亲爱的用户，所以我们使用hidden input.</p>
<p>继续偷代码</p>
<pre class="brush: php;">
 &lt;% form_for @user do |form| %&gt;
    &lt;% for attribute in [:crop_x, :crop_y, :crop_w, :crop_h] %&gt;
      &lt;%= form.text_field attribute, :id =&gt; attribute %&gt;
     &lt;% end %&gt;
     &lt;p&gt;&lt;%= form.submit &quot;Crop&quot; %&gt;&lt;/p&gt;
  &lt;% end %&gt;
</pre>
<p>这时候我们在Jcrop的调用中也要加一些配置了</p>
<pre class="brush: php;">
$(function() {
  $('#cropbox').Jcrop({
    onChange: update_crop,
    onSelect: update_crop,
    setSelect: [0, 0, 500, 500],
    aspectRatio: 1
  });
});

function update_crop(coords) {
   $('#crop_x').val(coords.x);
   $('#crop_y').val(coords.y);
   $('#crop_w').val(coords.w);
   $('#crop_h').val(coords.h);
   }
</pre>
<p>这里update_crop的方法呢就是用来更新选区。通过表单提交给model，这时候呢我们要通知model 我们需要来进行crop<br />
在model中加入以下偷来的代码</p>
<pre class="brush: php;">
 after_update :reprocess_avatar, :if =&gt; :cropping?

   def cropping?
     !crop_x.blank? &amp;&amp; !crop_y.blank? &amp;&amp; !crop_w.blank? &amp;&amp; !crop_h.blank?
   end

   private
   def reprocess_avatar
     avatar.reprocess!
   end
</pre>
<p>上面这段代码是说什么呢， 通过crop_x, crop_y, crop_w,crop_h来判定是否进行croping，如果进行cropping的话就通知paperclip再reprocess一下。<br />
然后就是要告诉paperclip该如何处理？</p>
<h2><span style="color: #cc99ff;">Reprocess</span></h2>
<p>安装railscast上讲的，我们需要有在lib文件夹下，新建一个paperclip_processors的文件夹， 然后new以下新的文件cropper.rb 内容如下</p>
<pre class="brush: php;">
module Paperclip
  class Cropper &lt; Thumbnail
    def transformation_command
      if crop_command
        crop_command + super.sub(/ -crop \S+/, '')
      else
        super
      end
    end

    def crop_command
      target = @attachment.instance
      if target.cropping?
        &quot; -crop '#{target.crop_w}x#{target.crop_h}+#{target.crop_x}+#{target.crop_y}'&quot;
      end
    end
  end
end
</pre>
<p>这时候测试一下， 错误如下<br />
<span style="color: #ff0000;"> uninitialized constant Paperclip::Cropper</span><br />
检查一下，好像是因为lib文件夹下面的文件并没有自动载入， 一google才知道 rails3 取消了对lib文件的autoload. 既然不能自动我们就手动呗。到model文件里面加入下面两句</p>
<pre class="brush: php;">
require 'lib/paperclip_processors/cropper.rb'
include Paperclip
</pre>
<p>再次运行，新的错误又来了，<br />
<span style="color: #ff0000;"> undefined method `sub&#8217; for ["-resize", "x170", "-crop", "170x170+9+0", "+repage"]:Array</span></p>
<p>看了railscast下面的comment，有人也有同样的问题，原因是新版本的paperclip改变了他处理命令的方式，这里有人给出了<a href="http://pastie.org/995357">解决方式</a><br />
在cropper文件里面分别替换成下面两行</p>
<pre class="brush: php;">
crop_command + super.join(' ').sub(/ -crop \S+/, '').split(' ')
[&quot;-crop&quot;, &quot;#{target.crop_w}x#{target.crop_h}+#{target.crop_x}+#{target.crop_y}&quot;]
</pre>
<p>再运行下，理论上应该可以crop了。</p>
<h2><span style="color: #cc99ff;">校准</span></h2>
<p>但是视乎裁剪的结果并不不准确，原因是我们用large style的图片来做选区，但其实是在original的图上裁剪的，所以我们需要在中间做一个转换。<br />
我们需要知道original跟large的width跟height。在model里面再加入下面的代码</p>
<pre class="brush: php;">
def avatar_geometry(style= <img src='http://danyifeng.com/wp-includes/images/smilies/icon_surprised.gif' alt=':o' class='wp-smiley' /> riginal)
    @geometry ||= {}
    @geometry[style] ||= Paperclip::Geometry.from_file(avatar.path(style))
 end
</pre>
<p>把update_crop文件更新为下面这样</p>
<pre class="brush: php;">
function update_crop(coords) {
 var ratio = &lt;%= @user.avatar_geometry(:original).width %&gt; / &lt;%= @user.avatar_geometry(:large).width %&gt;;
  $(&quot;#crop_x&quot;).val(Math.round(coords.x * ratio));
  $(&quot;#crop_y&quot;).val(Math.round(coords.y * ratio));
  $(&quot;#crop_w&quot;).val(Math.round(coords.w * ratio));
  $(&quot;#crop_h&quot;).val(Math.round(coords.h * ratio));
}
&lt;/script&gt;
</pre>
<p>现在再一运行 一切正常啦。</p>
<h2><span style="color: #cc99ff;">add a preview</span></h2>
<p>但是这样用户体验不够好啊，那再加入一个预览的吧<br />
view文件里面</p>
<pre class="brush: php;">
&lt;h4&gt;Preview&lt;/h4&gt;
  &lt;div style=&quot;width: 100px; height: 100px; overflow: hidden;&quot;&gt;
  &lt;%= image_tag @user.avatar.url(:large), :id =&gt; &quot;preview&quot; %&gt;
&lt;/div&gt;
</pre>
<p>javascrip里面继续更新一下update_crop文件</p>
<pre class="brush: php;">
function update_crop(coords) {
	var rx = 100/coords.w;
	var ry = 100/coords.h;
	$('#preview').css({
		width: Math.round(rx * &lt;%= @user.avatar_geometry(:large).width %&gt;) + 'px',
		height: Math.round(ry * &lt;%= @user.avatar_geometry(:large).height %&gt;) + 'px',
		marginLeft: '-' + Math.round(rx * coords.x) + 'px',
		marginTop: '-' + Math.round(ry * coords.y) + 'px'
	});
  var ratio = &lt;%= @user.avatar_geometry(:original).width %&gt; / &lt;%= @user.avatar_geometry(:large).width %&gt;;
  $(&quot;#crop_x&quot;).val(Math.round(coords.x * ratio));
  $(&quot;#crop_y&quot;).val(Math.round(coords.y * ratio));
  $(&quot;#crop_w&quot;).val(Math.round(coords.w * ratio));
  $(&quot;#crop_h&quot;).val(Math.round(coords.h * ratio));
}
</pre>
<p>一切搞定。</p>
<p>悲催的我在写cropping？的时候, 少写了一个感叹号给crop_h.blank? debug了好久才找到。希望以后不要再犯这样的错误</p>
]]></content:encoded>
			<wfw:commentRss>http://danyifeng.com/2010/09/08/rails-3cropping-images-use-paperclip-and-jcrop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[rails] paperclip works on windows</title>
		<link>http://danyifeng.com/2010/09/06/rails-paperclip-works-on-windows/</link>
		<comments>http://danyifeng.com/2010/09/06/rails-paperclip-works-on-windows/#comments</comments>
		<pubDate>Mon, 06 Sep 2010 22:08:41 +0000</pubDate>
		<dc:creator>小单</dc:creator>
				<category><![CDATA[rails]]></category>
		<category><![CDATA[avatar]]></category>
		<category><![CDATA[ImageMagick]]></category>
		<category><![CDATA[paperclip]]></category>
		<category><![CDATA[problem solving]]></category>

		<guid isPermaLink="false">http://danyifeng.com/?p=11130</guid>
		<description><![CDATA[需要实现一个avatar的功能 谷哥说paperclip 先在railscast上看了下Ryan的介绍， 对于功能基本满意。 1. 安装 Rails3用bundle来管理gem的dependencies。 在Gemfile里面加上如下代码 gem 'paperclip' 然后命令行 bundle check， paperclip需要安装 再bundle install， 再check一下 现在所有的dependencies 都满足了 2. migration 这里假设我是要给user这个model加一个avatar 按照github上讲的http://github.com/thoughtbot/paperclip， 在model里面加上 下面这句 has_attached_file :avatar, :styles =&#62; { :medium =&#62; &#34;300x300&#62;&#34;, :thumb =&#62; &#34;100x100&#62;&#34; } rails g paperclip user avatar 这样生成了一个migration file,下面这段是自动生成滴 class AddAttachmentAvatarToUser&#60; ActiveRecord::Migration def self.up add_column :users, :avatar_file_name, :string add_column :users, ]]></description>
			<content:encoded><![CDATA[<p>需要实现一个avatar的功能</p>
<p>谷哥说paperclip</p>
<p>先在railscast上看了下Ryan的介绍， 对于功能基本满意。</p>
<h2><strong>1. 安装</strong></h2>
<p>Rails3用bundle来管理gem的dependencies。</p>
<p>在Gemfile里面加上如下代码</p>
<pre class="brush: php;">gem 'paperclip' </pre>
<p>然后命令行 bundle check， paperclip需要安装 再bundle install， 再check一下 现在所有的dependencies 都满足了</p>
<h2><strong>2. migration</strong></h2>
<p>这里假设我是要给user这个model加一个avatar<br />
按照github上讲的h<a href="http://github.com/thoughtbot/paperclip">ttp://github.com/thoughtbot/paperclip</a>， 在model里面加上 下面这句</p>
<pre class="brush: php;"> has_attached_file :avatar, :styles =&gt; { :medium =&gt; &quot;300x300&gt;&quot;, :thumb =&gt; &quot;100x100&gt;&quot; }</pre>
<pre class="brush: php;">rails g paperclip user avatar</pre>
<p>这样生成了一个migration file,下面这段是自动生成滴</p>
<pre class="brush: php;">
class AddAttachmentAvatarToUser&lt; ActiveRecord::Migration
  def self.up
    add_column :users, :avatar_file_name, :string
    add_column :users, :avatar_content_type, :string
    add_column :users, :avatar_file_size, :integer
    add_column :users, :avatar_updated_at, :datetime
  end

  def self.down
    remove_column :users, :avatar_file_name
    remove_column :users, :avatar_content_type
    remove_column :users, :avatar_file_size
    remove_column :users, :avatar_updated_at
  end
end
</pre>
<p>好最后别忘了 rake db:migrate (我经常忘记 囧 )， 这样数据库就搞定啦。</p>
<h2><strong>3. controller</strong></h2>
<p>Controller 里面不需要做什么改动，因为这里的avatar跟其他的email之类的属性是一样的 所以update的时候都会update的， 就来看看view吧</p>
<h2><strong>4. views</strong></h2>
<p>首先要有一个form吧， 嗯在我们的form的partial里面加一句, 因为我这里用的是haml所以就没有&#8221;"</p>
<pre class="brush: php;">= form.file_field :avatar</pre>
<p>还没有完 还要给form加一个html的option, :multipart =&gt; true。这样呢 就给form加了一个enctype=&#8221;multipart/form-data“， 完整的haml代码如下</p>
<pre class="brush: php;">
= form_for(@user,:html=&gt;{:multipart=&gt;true}) do |f|
  .field
      =f.label :avatar
      =f.file_field :avatar
  .field
      =f.label :email
      = f.text_field :email
  .field
      =f.label :name
      = f.text_field :name
  .actions
    = f.submit
</pre>
<p>嗯 form有， 上传完了以后要show出来吧， 然后在show的里面加一句</p>
<pre class="brush: php;">=image_tag police.avatar.url(:medium)</pre>
<h2><strong>5.ImageMagick</strong></h2>
<p>嗯 运行一下，理论上应该是不行的， 因为这里有个重要的东西我们没有安装。 ImageMagick. 这个才是我们今天讨论的重点， 在linux跟mac下这个不是大问题。但是windows总是让人头痛的。<br />
下载地址：<a href="http://www.imagemagick.org/script/binary-releases.php#windows">http://www.imagemagick.org/script/binary-releases.php#windows</a></p>
<p>选好适合自己的下载， 注意安装的时候加入环境变量，为了安全起见可以check一下是否成功加入了</p>
<p>这个时候你运行呢 很可能会得到一个 ”Error: [...] is not recognized by the ‘identify’ command“ 的错误。<br />
为什么环境变量加入了还是不能识别呢， 在cmd里面运行下面的代码<br />
1. 把model里面的styles去掉 测试一下， 如果成功上传 说明确实是paperclip跟ImageMagick之间的沟通出了问题。否则，请检查以上步骤是否正确完成了<br />
2. 测试完以后，加上styles， 为什么要加上？ 因为我们需要嘛，如果不需要这个不同大小的话这里就可以算成功了 请忽略后面的。 现在打开你的log，看看有[paperclip]的行是怎么说。copy那句话，我的是如下的</p>
<pre class="brush: php;">identify '-format' '%wx%h' 'C:/Users/danyi/AppData/Local/Temp/str
eam,4212,0.jpg[0]'  </pre>
<p>在cmd中输入，报错<br />
这个时候呢 根据报错发现需要”代替‘.输入下面的命令，再试一下</p>
<pre class="brush: php;">identify &quot;-format&quot; &quot;%wx%h&quot; &quot;C:/Users/danyi/AppData/Local/Temp/str
eam,4212,0.jpg[0]&quot;</pre>
<p>视乎运行成功了， 嗯 问题也似乎找到了。如何解决呢，我在config/initializers里面加入了一个paperclip_patch.rb文件, 然后加入一下代码,overwirte原来的quote_command_options方法。</p>
<pre class="brush: php;">
if RUBY_PLATFORM == 'i386-mingw32'
  module Paperclip
    def self.quote_command_options(*options)
      options.map do |option|
        option.split(&quot;\&quot;&quot;).map{|m| &quot;\&quot;#{m}\&quot;&quot; }.join(&quot;\\\&quot;&quot;)
      end
    end
  end
end
</pre>
<p>再测试。。搞定。。</p>
<h2>6 最后</h2>
<p>不在于这个问题是怎么解决的，而在于这个过程怎么去发现问题分析问题最后才是解决问题。</p>
<p>明天做image的 crop..</p>
]]></content:encoded>
			<wfw:commentRss>http://danyifeng.com/2010/09/06/rails-paperclip-works-on-windows/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>漂移过海去北爱</title>
		<link>http://danyifeng.com/2010/08/29/%e6%bc%82%e7%a7%bb%e8%bf%87%e6%b5%b7%e5%8e%bb%e5%8c%97%e7%88%b1/</link>
		<comments>http://danyifeng.com/2010/08/29/%e6%bc%82%e7%a7%bb%e8%bf%87%e6%b5%b7%e5%8e%bb%e5%8c%97%e7%88%b1/#comments</comments>
		<pubDate>Sun, 29 Aug 2010 13:19:09 +0000</pubDate>
		<dc:creator>小单</dc:creator>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[on my way]]></category>

		<guid isPermaLink="false">http://danyifeng.com/?p=11084</guid>
		<description><![CDATA[带着两个专辑上路 To Travels &#38; Trunks 虾米地址： http://www.xiami.com/album/387936 Music for Tourists 虾米地址： http://www.xiami.com/album/169183 Air-conditioning is cold, summers hot and love is old i wish i was smaller, i little creepy crawler Theirs lovers sin in this town, lovers cannot let down, the summers hot as hell here you know, if we think we can drink now, we wont stop cos we dont know how, it&#8217;s cold, but we love how it feels alright I sweat it all out, you sweat a lot too we heart the same, the same black and blue ohh ohhhh , i wanna catch my difficult ohh ohhhhh , cos i&#8217;m scared i&#8217;m growing old ohhh oh oh , don&#8217;t return the love i give ohhhh oh oh, your still my favourite Trouble&#8217;s win in this town, Trouble&#8217;s dont turn upside-down, ohh - they shit on the last bit of fun Theres sin all around, Lovers cannot let down, and the winter wears and tears our bones. There&#8217;s a man in this town is shooting us down, he thinks he&#8217;s a big man but he doesnt know anything about us or anything at all. At night he lies awake, and his heart aches, cos its cold - ohh ohh old, he sweats it out all the night through, and he throws up all over me and you. ohh ohhh, i wanna catch my difficult ohhh ohhh, cos i&#8217;m scared of growin old ohh oh ohh, don&#8217;t return the love i gave you ohhh oh oh, your still my favorite Day 1 白墙 蓝天 海边小镇 海边的童年故事 绿的叶 ]]></description>
			<content:encoded><![CDATA[<p>带着两个专辑上路<br />
To Travels &amp; Trunks 虾米地址： http://www.xiami.com/album/387936<br />
<a href="http://danyifeng.com/wp-content/uploads/2010/08/hey_marseilles_to_travels_and_trunks.jpg" rel="lightbox[11084]"><img class="aligncenter size-medium wp-image-11087" title="hey_marseilles_to_travels_and_trunks" src="http://danyifeng.com/wp-content/uploads/2010/08/hey_marseilles_to_travels_and_trunks-300x272.jpg" alt="" width="300" height="272" /></a><br />
Music for Tourists 虾米地址： http://www.xiami.com/album/169183<br />
<a href="http://danyifeng.com/wp-content/uploads/2010/08/Music-for-Tourists.jpg" rel="lightbox[11084]"><img class="aligncenter size-medium wp-image-11086" title="Music for Tourists" src="http://danyifeng.com/wp-content/uploads/2010/08/Music-for-Tourists-300x300.jpg" alt="" width="300" height="300" /></a><br />
<script src="http://www.xiami.com/widget/player-single?uid=362631&amp;sid=2089208&amp;mode=js" type="text/javascript"></script></p>
<p style="text-align: center;">Air-conditioning is cold,<br />
summers hot and love is old<br />
i wish i was smaller,<br />
i little creepy crawler<br />
Theirs lovers sin in this town,<br />
lovers cannot let down,<br />
the summers hot as hell here you know,<br />
if we think we can drink now,<br />
we wont stop cos we dont know how,<br />
it&#8217;s cold, but we love<br />
how it feels alright</p>
<p style="text-align: center;">I sweat it all out, you sweat a lot too<br />
we heart the same, the same black and blue<br />
ohh ohhhh , i wanna catch my difficult<br />
ohh ohhhhh , cos i&#8217;m scared i&#8217;m growing old<br />
ohhh oh oh , don&#8217;t return the love i give<br />
ohhhh oh oh, your still my favourite</p>
<p style="text-align: center;">Trouble&#8217;s win in this town,<br />
Trouble&#8217;s dont turn upside-down,<br />
ohh - they shit on the last bit of fun</p>
<p style="text-align: center;">Theres sin all around,<br />
Lovers cannot let down,<br />
and the winter wears and tears<br />
our bones.</p>
<p style="text-align: center;">There&#8217;s a man in this town<br />
is shooting us down, he<br />
thinks he&#8217;s a big man but he doesnt know anything about us or anything at all.</p>
<p style="text-align: center;">At night he lies awake,<br />
and his heart aches,<br />
cos its cold - ohh ohh old,<br />
he sweats it out all the night through,<br />
and he throws up all over me and you.</p>
<p style="text-align: center;">ohh ohhh, i wanna catch my difficult<br />
ohhh ohhh, cos i&#8217;m scared of growin old<br />
ohh oh ohh, don&#8217;t return the love i gave you<br />
ohhh oh oh, your still my favorite</p>
<p>Day 1</p>
<p style="text-align: center;">白墙 蓝天 海边小镇</p>
<p><a href="http://danyifeng.com/wp-content/uploads/2010/08/white-house.jpg" rel="lightbox[11084]"><img class="aligncenter size-full wp-image-11121" title="white house" src="http://danyifeng.com/wp-content/uploads/2010/08/white-house.jpg" alt="" width="700" height="467" /></a></p>
<p style="text-align: center;">海边的童年故事</p>
<p><a href="http://danyifeng.com/wp-content/uploads/2010/08/swingandsea.jpg" rel="lightbox[11084]"><img class="aligncenter size-full wp-image-11120" title="swingandsea" src="http://danyifeng.com/wp-content/uploads/2010/08/swingandsea.jpg" alt="" width="700" height="467" /></a></p>
<p><a href="http://danyifeng.com/wp-content/uploads/2010/08/beachintown.jpg" rel="lightbox[11084]"><img class="aligncenter size-full wp-image-11089" title="beachintown" src="http://danyifeng.com/wp-content/uploads/2010/08/beachintown.jpg" alt="" width="700" height="467" /></a></p>
<p><a href="http://danyifeng.com/wp-content/uploads/2010/08/sea.jpg" rel="lightbox[11084]"><img class="aligncenter size-full wp-image-11113" title="sea" src="http://danyifeng.com/wp-content/uploads/2010/08/sea.jpg" alt="" width="700" height="467" /></a></p>
<p style="text-align: center;">绿的叶 蓝的天<a href="http://danyifeng.com/wp-content/uploads/2010/08/greenleaf.jpg" rel="lightbox[11084]"><img class="aligncenter size-full wp-image-11101" title="greenleaf" src="http://danyifeng.com/wp-content/uploads/2010/08/greenleaf.jpg" alt="" width="467" height="700" /></a></p>
<p style="text-align: center;">抬头 你是飞向哪里</p>
<p><a href="http://danyifeng.com/wp-content/uploads/2010/08/plane.jpg" rel="lightbox[11084]"><img class="aligncenter size-full wp-image-11109" title="plane" src="http://danyifeng.com/wp-content/uploads/2010/08/plane.jpg" alt="" width="700" height="467" /></a></p>
<p style="text-align: center;">昂首挺胸的花朵<a href="http://danyifeng.com/wp-content/uploads/2010/08/flower.jpg" rel="lightbox[11084]"><img class="aligncenter size-full wp-image-11098" title="flower" src="http://danyifeng.com/wp-content/uploads/2010/08/flower.jpg" alt="" width="467" height="700" /></a></p>
<p style="text-align: center;">温暖的日落<br />
<a href="http://danyifeng.com/wp-content/uploads/2010/08/sunset.jpg" rel="lightbox[11084]"><img class="aligncenter size-full wp-image-11119" title="sunset" src="http://danyifeng.com/wp-content/uploads/2010/08/sunset.jpg" alt="" width="700" height="467" /></a></p>
<p>Day 2</p>
<p style="text-align: center;">水天一色</p>
<p><a href="http://danyifeng.com/wp-content/uploads/2010/08/same-color.jpg" rel="lightbox[11084]"><img class="aligncenter size-full wp-image-11112" title="same color" src="http://danyifeng.com/wp-content/uploads/2010/08/same-color.jpg" alt="" width="660" height="443" /></a></p>
<p>在路上</p>
<p><a href="http://danyifeng.com/wp-content/uploads/2010/08/onmyway.jpg" rel="lightbox[11084]"><img class="aligncenter size-full wp-image-11108" title="onmyway" src="http://danyifeng.com/wp-content/uploads/2010/08/onmyway.jpg" alt="" width="700" height="467" /></a></p>
<p style="text-align: center;">抬头望 心云<a href="http://danyifeng.com/wp-content/uploads/2010/08/heartcloud.jpg" rel="lightbox[11084]"><img class="aligncenter size-full wp-image-11102" title="heartcloud" src="http://danyifeng.com/wp-content/uploads/2010/08/heartcloud.jpg" alt="" width="700" height="467" /></a></p>
<p style="text-align: center;">小镇里的游艇们<br />
<a href="http://danyifeng.com/wp-content/uploads/2010/08/yacht.jpg" rel="lightbox[11084]"><img class="aligncenter size-full wp-image-11122" title="yacht" src="http://danyifeng.com/wp-content/uploads/2010/08/yacht.jpg" alt="" width="700" height="467" /></a></p>
<p style="text-align: center;">海角天涯呢？</p>
<p><a href="http://danyifeng.com/wp-content/uploads/2010/08/sea1.jpg" rel="lightbox[11084]"><img class="aligncenter size-full wp-image-11114" title="sea1" src="http://danyifeng.com/wp-content/uploads/2010/08/sea1.jpg" alt="" width="700" height="467" /></a></p>
<p><a href="http://danyifeng.com/wp-content/uploads/2010/08/rocks.jpg" rel="lightbox[11084]"><img class="aligncenter size-full wp-image-11111" title="rocks" src="http://danyifeng.com/wp-content/uploads/2010/08/rocks.jpg" alt="" width="467" height="700" /></a></p>
<p style="text-align: center;">老人与海<br />
<a href="http://danyifeng.com/wp-content/uploads/2010/08/manandsea.jpg" rel="lightbox[11084]"><img class="aligncenter size-full wp-image-11105" title="manandsea" src="http://danyifeng.com/wp-content/uploads/2010/08/manandsea.jpg" alt="" width="700" height="467" /></a></p>
<p style="text-align: center;">裙摆摇摇<br />
<a href="http://danyifeng.com/wp-content/uploads/2010/08/kid.jpg" rel="lightbox[11084]"><img class="aligncenter size-full wp-image-11104" title="kid" src="http://danyifeng.com/wp-content/uploads/2010/08/kid.jpg" alt="" width="700" height="467" /></a></p>
<p style="text-align: center;">桥 想起了江南<a href="http://danyifeng.com/wp-content/uploads/2010/08/IMG_7861.jpg" rel="lightbox[11084]"><img class="aligncenter size-full wp-image-11103" title="IMG_7861" src="http://danyifeng.com/wp-content/uploads/2010/08/IMG_7861.jpg" alt="" width="700" height="467" /></a></p>
<p style="text-align: center;">午后的美好时光<a href="http://danyifeng.com/wp-content/uploads/2010/08/funtainkid.jpg" rel="lightbox[11084]"><img class="aligncenter size-full wp-image-11099" title="funtainkid" src="http://danyifeng.com/wp-content/uploads/2010/08/funtainkid.jpg" alt="" width="700" height="467" /></a></p>
<p style="text-align: center;">Carrick-A-Rede<br />
<a href="http://danyifeng.com/wp-content/uploads/2010/08/seaandmountain.jpg" rel="lightbox[11084]"><img class="aligncenter size-full wp-image-11115" title="seaandmountain" src="http://danyifeng.com/wp-content/uploads/2010/08/seaandmountain.jpg" alt="" width="700" height="467" /></a></p>
<p style="text-align: center;">Carrick-A-Rede</p>
<p><a href="http://danyifeng.com/wp-content/uploads/2010/08/manandsea1.jpg" rel="lightbox[11084]"><img class="aligncenter size-full wp-image-11106" title="manandsea1" src="http://danyifeng.com/wp-content/uploads/2010/08/manandsea1.jpg" alt="" width="700" height="467" /></a></p>
<p style="text-align: center;">Carrick-A-Rede<a href="http://danyifeng.com/wp-content/uploads/2010/08/bridge.jpg" rel="lightbox[11084]"><img class="aligncenter size-full wp-image-11091" title="bridge" src="http://danyifeng.com/wp-content/uploads/2010/08/bridge.jpg" alt="" width="700" height="467" /></a></p>
<p style="text-align: center;">Giant causeway<br />
<a href="http://danyifeng.com/wp-content/uploads/2010/08/stones.jpg" rel="lightbox[11084]"><img class="aligncenter size-full wp-image-11116" title="stones" src="http://danyifeng.com/wp-content/uploads/2010/08/stones.jpg" alt="" width="467" height="700" /></a></p>
<p style="text-align: center;">石柱<br />
<a href="http://danyifeng.com/wp-content/uploads/2010/08/gaintcauseway.jpg" rel="lightbox[11084]"><img class="aligncenter size-full wp-image-11100" title="gaintcauseway" src="http://danyifeng.com/wp-content/uploads/2010/08/gaintcauseway.jpg" alt="" width="467" height="700" /></a></p>
<p>Day 3- Sunrise</p>
<p style="text-align: center;">第一次看日出</p>
<p style="text-align: center;">那一刻的感觉 非常美妙</p>
<p><a href="http://danyifeng.com/wp-content/uploads/2010/08/ferryandsea.jpg" rel="lightbox[11084]"><img class="aligncenter size-full wp-image-11097" title="ferryandsea" src="http://danyifeng.com/wp-content/uploads/2010/08/ferryandsea.jpg" alt="" width="700" height="467" /></a></p>
<p><a href="http://danyifeng.com/wp-content/uploads/2010/08/ferry1.jpg" rel="lightbox[11084]"><img class="aligncenter size-full wp-image-11096" title="ferry1" src="http://danyifeng.com/wp-content/uploads/2010/08/ferry1.jpg" alt="" width="700" height="467" /></a></p>
<p><a href="http://danyifeng.com/wp-content/uploads/2010/08/ferry.jpg" rel="lightbox[11084]"><img class="aligncenter size-full wp-image-11095" title="ferry" src="http://danyifeng.com/wp-content/uploads/2010/08/ferry.jpg" alt="" width="700" height="467" /></a></p>
<p><a href="http://danyifeng.com/wp-content/uploads/2010/08/beforesunrise.jpg" rel="lightbox[11084]"><img class="aligncenter size-full wp-image-11090" title="beforesunrise" src="http://danyifeng.com/wp-content/uploads/2010/08/beforesunrise.jpg" alt="" width="700" height="467" /></a></p>
<p><a href="http://danyifeng.com/wp-content/uploads/2010/08/sunrise1.jpg" rel="lightbox[11084]"><img class="aligncenter size-full wp-image-11118" title="sunrise1" src="http://danyifeng.com/wp-content/uploads/2010/08/sunrise1.jpg" alt="" width="700" height="467" /></a></p>
<p><a href="http://danyifeng.com/wp-content/uploads/2010/08/sunrise.jpg" rel="lightbox[11084]"><img class="aligncenter size-full wp-image-11117" title="sunrise" src="http://danyifeng.com/wp-content/uploads/2010/08/sunrise.jpg" alt="" width="467" height="700" /></a></p>
<p><a href="http://danyifeng.com/wp-content/uploads/2010/08/coloredcloud.jpg" rel="lightbox[11084]"><img class="aligncenter size-full wp-image-11094" title="coloredcloud" src="http://danyifeng.com/wp-content/uploads/2010/08/coloredcloud.jpg" alt="" width="700" height="467" /></a></p>
<p><a href="http://danyifeng.com/wp-content/uploads/2010/08/colorcloud.jpg" rel="lightbox[11084]"><img class="aligncenter size-full wp-image-11093" title="colorcloud" src="http://danyifeng.com/wp-content/uploads/2010/08/colorcloud.jpg" alt="" width="700" height="467" /></a></p>
<p><a href="http://danyifeng.com/wp-content/uploads/2010/08/backfromsunrise.jpg" rel="lightbox[11084]"><img class="aligncenter size-full wp-image-11088" title="backfromsunrise" src="http://danyifeng.com/wp-content/uploads/2010/08/backfromsunrise.jpg" alt="" width="467" height="700" /></a></p>
<p style="text-align: center;">清晨的游乐场</p>
<p><a href="http://danyifeng.com/wp-content/uploads/2010/08/playgroundinthemorning.jpg" rel="lightbox[11084]"><img class="aligncenter size-full wp-image-11110" title="playgroundinthemorning" src="http://danyifeng.com/wp-content/uploads/2010/08/playgroundinthemorning.jpg" alt="" width="700" height="467" /></a></p>
<p style="text-align: center;">camping site<br />
<a href="http://danyifeng.com/wp-content/uploads/2010/08/campingsite.jpg" rel="lightbox[11084]"><img class="aligncenter size-full wp-image-11092" title="campingsite" src="http://danyifeng.com/wp-content/uploads/2010/08/campingsite.jpg" alt="" width="700" height="467" /></a></p>
<p style="text-align: center;">我的帐篷<br />
<a href="http://danyifeng.com/wp-content/uploads/2010/08/mytent.jpg" rel="lightbox[11084]"></a></p>
<p style="text-align: center;"><a href="http://danyifeng.com/wp-content/uploads/2010/08/mytent.jpg" rel="lightbox[11084]"><img class="aligncenter size-full wp-image-11107" title="mytent" src="http://danyifeng.com/wp-content/uploads/2010/08/mytent.jpg" alt="" width="700" height="467" /></a></p>
<p style="text-align: center;">END</p>
]]></content:encoded>
			<wfw:commentRss>http://danyifeng.com/2010/08/29/%e6%bc%82%e7%a7%bb%e8%bf%87%e6%b5%b7%e5%8e%bb%e5%8c%97%e7%88%b1/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>出路 上路</title>
		<link>http://danyifeng.com/2010/08/14/%e5%87%ba%e8%b7%af-%e4%b8%8a%e8%b7%af/</link>
		<comments>http://danyifeng.com/2010/08/14/%e5%87%ba%e8%b7%af-%e4%b8%8a%e8%b7%af/#comments</comments>
		<pubDate>Fri, 13 Aug 2010 23:46:42 +0000</pubDate>
		<dc:creator>小单</dc:creator>
				<category><![CDATA[on my way]]></category>

		<guid isPermaLink="false">http://danyifeng.com/?p=11081</guid>
		<description><![CDATA[心漂久了 会累 当处变不惊的时候 并不知道这算好还是不好 拥有那些别人以为的美好 却并不能让我觉得快乐 整理好背包 带上帐篷 再次上路 在路上 寻找出路]]></description>
			<content:encoded><![CDATA[<p>心漂久了 会累 </p>
<p>当处变不惊的时候 并不知道这算好还是不好 </p>
<p>拥有那些别人以为的美好  却并不能让我觉得快乐</p>
<p>整理好背包 带上帐篷 再次上路</p>
<p>在路上 寻找出路</p>
]]></content:encoded>
			<wfw:commentRss>http://danyifeng.com/2010/08/14/%e5%87%ba%e8%b7%af-%e4%b8%8a%e8%b7%af/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>01082010</title>
		<link>http://danyifeng.com/2010/08/01/11071/</link>
		<comments>http://danyifeng.com/2010/08/01/11071/#comments</comments>
		<pubDate>Sun, 01 Aug 2010 22:35:18 +0000</pubDate>
		<dc:creator>小单</dc:creator>
				<category><![CDATA[Fun]]></category>

		<guid isPermaLink="false">http://danyifeng.com/?p=11071</guid>
		<description><![CDATA[割肉补血。 Coldplay code play. 困 睡 晚安世界]]></description>
			<content:encoded><![CDATA[<p>割肉补血。 Coldplay code play.<br />
困 睡 晚安世界</p>
]]></content:encoded>
			<wfw:commentRss>http://danyifeng.com/2010/08/01/11071/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>与HUST有关的三人三事</title>
		<link>http://danyifeng.com/2010/06/28/hust/</link>
		<comments>http://danyifeng.com/2010/06/28/hust/#comments</comments>
		<pubDate>Sun, 27 Jun 2010 23:25:53 +0000</pubDate>
		<dc:creator>小单</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[on my way]]></category>

		<guid isPermaLink="false">http://danyifeng.com/?p=11054</guid>
		<description><![CDATA[又是一年夏天 又是一个毕业季 根叔的寄语 如果看过了Ellen DeGeneres at Tulane&#8217;s 2009 Commencement Speech(youtube地址，youku地址)，一定会觉得国内的毕业典礼是相当的无趣。 而这一次根叔只是用我们平时说话的语言就让大家感动了。 浪费了太多的时间听了太多虚假的言语的我们，只是需要一些跟我们说真实的话。 请去掉官僚 让我们真实的对话 赞根叔 “母校 就是那个你一天骂她八遍却不许别人骂的地方。” 李行亮之快男 之前听过他在华工摇滚节上的演唱  Desperado确实惊艳 不记得跟谁一起去看的他的毕业个人演唱会，似乎是跟小猴子他们一起刷过去的。 去看了演唱会的人，定会被那样的情景打动。 一个人唱歌，一万个人在听。 朋友的伴奏，站台。 记得子时当时还弄了个女子第一band 跟一帮有共同梦想的人为了一个梦想而激情奋斗的夏天 之前说不要踏入娱乐圈的他 今年竟然参加了快男 而且一路高歌进入十二强 祝福他能实现音乐梦想 那年一起听演唱会的同学们 你们现在都在哪里呢？ 谢谢 李行亮唤起的那年夏天的hust露天电影院的回忆 R.I.P 陈熙 周五晚上小明忽然在qq上跟我说 如果在国外不开心 就快回来吧 然后跟我讲了陈熙的事情 震惊 不敢相信 对于这个名字并不熟悉 虽然一起上过很多课 惋惜 是怎么样的绝望让他彻底离开的勇气 太理解在国外的孤单 朋友一个一个的送 还有找工作的艰辛与压力 此刻对胖子充满了钦佩 如何强大的内心 让他可以坚持在这边找工作找一年 但是熬过来就好了  everything is ]]></description>
			<content:encoded><![CDATA[<p>又是一年夏天 又是一个毕业季</p>
<p><strong><span style="color: #ff9900;">根叔的寄语</span></strong></p>
<p>如果看过了Ellen DeGeneres at Tulane&#8217;s 2009 Commencement Speech(<a href="http://www.youtube.com/watch?v=0JccudODwwY&amp;feature=PlayList&amp;p=9EE262D4AD7B95FC&amp;playnext_from=PL&amp;playnext=1&amp;index=28">youtube地址</a>，<a href="http://v.youku.com/v_show/id_XMTcwMjExMzUy.html">youku地址</a>)，一定会觉得国内的毕业典礼是相当的无趣。</p>
<p>而这一次根叔只是用我们平时说话的语言就让大家感动了。</p>
<p>浪费了太多的时间听了太多虚假的言语的我们，只是需要一些跟我们说真实的话。</p>
<p>请去掉官僚 让我们真实的对话 赞根叔</p>
<p>“母校 就是那个你一天骂她八遍却不许别人骂的地方。”</p>
<p><strong><span style="color: #ff9900;">李行亮之快男</span></strong></p>
<p>之前听过他在华工摇滚节上的演唱  Desperado确实惊艳</p>
<p>不记得跟谁一起去看的他的毕业个人演唱会，似乎是跟小猴子他们一起刷过去的。</p>
<p>去看了演唱会的人，定会被那样的情景打动。</p>
<p>一个人唱歌，一万个人在听。</p>
<p>朋友的伴奏，站台。</p>
<p>记得子时当时还弄了个女子第一band</p>
<p>跟一帮有共同梦想的人为了一个梦想而激情奋斗的夏天</p>
<p>之前说不要踏入娱乐圈的他 今年竟然参加了快男 而且一路高歌进入十二强</p>
<p>祝福他能实现音乐梦想</p>
<p>那年一起听演唱会的同学们 你们现在都在哪里呢？</p>
<p>谢谢 李行亮唤起的那年夏天的hust露天电影院的回忆</p>
<p><strong><span style="color: #ff9900;">R.I.P 陈熙</span></strong></p>
<p>周五晚上小明忽然在qq上跟我说 如果在国外不开心 就快回来吧</p>
<p>然后跟我讲了陈熙的事情 震惊 不敢相信</p>
<p>对于这个名字并不熟悉 虽然一起上过很多课</p>
<p>惋惜 是怎么样的绝望让他彻底离开的勇气</p>
<p>太理解在国外的孤单 朋友一个一个的送</p>
<p>还有找工作的艰辛与压力</p>
<p>此刻对胖子充满了钦佩 如何强大的内心 让他可以坚持在这边找工作找一年</p>
<p>但是熬过来就好了  everything is gonna be OK</p>
<p>傻孩子 希望你在天堂会快乐 没烦恼</p>
<p><a href="http://danyifeng.com/wp-content/uploads/2010/06/CandleHands-725691.jpg" rel="lightbox[11054]"><img class="size-medium wp-image-11057 alignnone" title="Hands Holding a Lit Candle" src="http://danyifeng.com/wp-content/uploads/2010/06/CandleHands-725691-300x199.jpg" alt="" width="300" height="199" /></a></p>
<p>这个事情以后对于心理健康方面思考了很多</p>
<p>工作以后 我们都变得越来越忙碌 但是请别忘了老朋友</p>
<p>保持联络 你的留言短信电话会温暖另一个人的世界</p>
<p>最后 积极生活 一切都会好起来的</p>
]]></content:encoded>
			<wfw:commentRss>http://danyifeng.com/2010/06/28/hust/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>武汉这些天一直在下雨</title>
		<link>http://danyifeng.com/2010/06/11/wuhan/</link>
		<comments>http://danyifeng.com/2010/06/11/wuhan/#comments</comments>
		<pubDate>Fri, 11 Jun 2010 22:34:26 +0000</pubDate>
		<dc:creator>小单</dc:creator>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[lyric]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[wuhan]]></category>

		<guid isPermaLink="false">http://danyifeng.com/?p=11045</guid>
		<description><![CDATA[在虾米一直循环播这首。 想念那个满是回忆的城市 那里有我爱的人们 那里有再也回不去的年华 这里这些天也一直在下雨 而谁会在有阳光的地方等我呢？ 武汉这些天一直在下雨 词曲：钟立风 武汉这些天一直在下雨 淋湿了她的裙子我的心 还有你 我的小宝贝 我的小宝贝 我看到有人从黄鹤楼跳了下去 像只飞鸟消失无踪影 长江上 白帆点点 飘向了天边 武汉这些天一直在下雨 绵绵细雨里有我纷纷的情欲（你想要的岂止是一句我爱你） 而我很快就会离开这里 我会在有阳光的地方等你 武汉这些天一直在下雨 你用你小小的身体温暖我的心（传过户部巷鲁磨路流连你怀里） 而我很快就会离开这里 我会在有阳光的地方等你 *写于2009年夏。“果实与艳遇”行旅音乐会，行至武汉。]]></description>
			<content:encoded><![CDATA[<p>在虾米一直循环播这首。</p>
<p>想念那个满是回忆的城市</p>
<p>那里有我爱的人们</p>
<p>那里有再也回不去的年华</p>
<p>这里这些天也一直在下雨</p>
<p>而谁会在有阳光的地方等我呢？</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="257" height="33" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://www.xiami.com/widget/0_1769239388/singlePlayer.swf" /><param name="wmode" value="transparent" /><embed type="application/x-shockwave-flash" width="257" height="33" src="http://www.xiami.com/widget/0_1769239388/singlePlayer.swf" wmode="transparent"></embed></object></p>
<p>武汉这些天一直在下雨<br />
词曲：钟立风</p>
<p>武汉这些天一直在下雨<br />
淋湿了她的裙子我的心<br />
还有你<br />
我的小宝贝 我的小宝贝</p>
<p>我看到有人从黄鹤楼跳了下去<br />
像只飞鸟消失无踪影<br />
长江上<br />
白帆点点 飘向了天边</p>
<p>武汉这些天一直在下雨<br />
绵绵细雨里有我纷纷的情欲（你想要的岂止是一句我爱你）<br />
而我很快就会离开这里<br />
我会在有阳光的地方等你</p>
<p>武汉这些天一直在下雨<br />
你用你小小的身体温暖我的心（传过户部巷鲁磨路流连你怀里）<br />
而我很快就会离开这里<br />
我会在有阳光的地方等你</p>
<p>*写于2009年夏。“果实与艳遇”行旅音乐会，行至武汉。</p>
]]></content:encoded>
			<wfw:commentRss>http://danyifeng.com/2010/06/11/wuhan/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>[Into the wild] BenCruachan and KilchurnCastle</title>
		<link>http://danyifeng.com/2010/06/06/into-the-wild-bencruachan-and-kilchurncastle/</link>
		<comments>http://danyifeng.com/2010/06/06/into-the-wild-bencruachan-and-kilchurncastle/#comments</comments>
		<pubDate>Sun, 06 Jun 2010 09:19:50 +0000</pubDate>
		<dc:creator>小单</dc:creator>
				<category><![CDATA[into the wild]]></category>
		<category><![CDATA[on my way]]></category>
		<category><![CDATA[camping]]></category>
		<category><![CDATA[google wave]]></category>
		<category><![CDATA[hitchhiker]]></category>
		<category><![CDATA[wild]]></category>

		<guid isPermaLink="false">http://danyifeng.com/?p=10966</guid>
		<description><![CDATA[行程起源： 5月30日是bank holiday, 加上周末就是long weekend啦。要出去活动活动筋骨才是。 shady提议 Ben Cruachan walking, walking highland 网站提供的路线在此 定了地点就开始安排行程了。Googlewave在Google IO 上正式发布了，跟以前相比有了很大的提高， 我们就用它来作为我们行程准备工具。 截个图先 新加的next wave的功能很不错，可以方便跟进最新的改变。  wave可以记录整个讨论过程，但却不能去掉讨论过程直接文档化。 目前wave好像也不支持打印功能。嗯，但整体来说google wave在做异地团队沟通上还是挺不错的。 由于决定出行的时间比较短，而且大部分人都会在这个bank holiday出行，所以呢就没有办法定到住的地方。 在couchsurfing 上也没有找到合适的地方。 最后决定camping。 &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; 行程计划： Ben Cruachan walking的路线是6-7个小时，周六早上一早出发 11:00 到山脚下，晚上在山上露营，如果天气好的话早上还是可以看个日出的。 第二天下山去loch awe station 附近的 KilchurnCastle， 在google earth上发现这个地方无比的漂亮啊。然后就回家了。 然而计划只是计划 按照行程计划我们周六到周日中午都是在山上渡过，没有任何地方可以买水，shady就背了5l的水，我背了3.5l的水。山上遍地的羊和羊屎，不敢 随便喝泉水。 早上8点在Glasgow Queen street station 汇合，买票，走人。 &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; Day 1 出行前我的背包跟shady的背包， 除了水还有睡袋，防潮垫，帐篷，还有2天的食物。 我们坐的是 ]]></description>
			<content:encoded><![CDATA[<p><strong><br />
行程起源：</strong></p>
<p>5月30日是bank holiday, 加上周末就是long weekend啦。要出去活动活动筋骨才是。</p>
<p>shady提议 Ben Cruachan walking, walking highland 网站提供的路线<a href="http://www.walkhighlands.co.uk/argyll/ben-cruachan.shtml">在此</a></p>
<p>定了地点就开始安排行程了。Googlewave在Google IO 上正式发布了，跟以前相比有了很大的提高，  我们就用它来作为我们行程准备工具。</p>
<p>截个图先</p>
<p><a href="http://danyifeng.com/wp-content/uploads/2010/06/googlewave.png" rel="lightbox[10966]"><img title="googlewave" src="http://danyifeng.com/wp-content/uploads/2010/06/googlewave.png" alt="" width="490" height="515" /></a></p>
<p>新加的next wave的功能很不错，可以方便跟进最新的改变。  wave可以记录整个讨论过程，但却不能去掉讨论过程直接文档化。  目前wave好像也不支持打印功能。嗯，但整体来说google wave在做异地团队沟通上还是挺不错的。</p>
<p>由于决定出行的时间比较短，而且大部分人都会在这个bank holiday出行，所以呢就没有办法定到住的地方。 在couchsurfing  上也没有找到合适的地方。 最后决定camping。</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p><strong>行程计划：</strong></p>
<p>Ben Cruachan walking的路线是6-7个小时，周六早上一早出发 11:00  到山脚下，晚上在山上露营，如果天气好的话早上还是可以看个日出的。</p>
<p>第二天下山去loch awe station 附近的 KilchurnCastle， 在google  earth上发现这个地方无比的漂亮啊。然后就回家了。</p>
<p>然而计划只是计划</p>
<p>按照行程计划我们周六到周日中午都是在山上渡过，没有任何地方可以买水，shady就背了5l的水，我背了3.5l的水。山上遍地的羊和羊屎，不敢 随便喝泉水。</p>
<p>早上8点在Glasgow Queen street station 汇合，买票，走人。</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p><strong>Day 1</strong></p>
<p>出行前我的背包跟shady的背包， 除了水还有睡袋，防潮垫，帐篷，还有2天的食物。</p>
<div id="attachment_10967" class="wp-caption aligncenter" style="width: 419px"><a href="http://danyifeng.com/wp-content/uploads/2010/06/backpack1.jpg" rel="lightbox[10966]"><img class="size-large wp-image-10967 " title="backpack" src="http://danyifeng.com/wp-content/uploads/2010/06/backpack1-682x1024.jpg" alt="" width="409" height="614" /></a><p class="wp-caption-text">我的背包</p></div>
<p>我们坐的是 west highland line，lasgow-oban/Mallaig的路线。  幸亏经人提醒这个火车是会在某个地方断成两截向不同的方向前行的， 才换到正确的车厢。</p>
<p>在Falls of  Cruachan下车，列车员专门叮嘱我们在这一站只有一个车厢的门开，原因是就只有我们两个人在这里下车。这个小车站只有单轨呢。</p>
<div id="attachment_11037" class="wp-caption aligncenter" style="width: 477px"><a href="http://danyifeng.com/wp-content/uploads/2010/06/stoplooklisten.jpg" rel="lightbox[10966]"><img class="size-full wp-image-11037" title="stoplooklisten" src="http://danyifeng.com/wp-content/uploads/2010/06/stoplooklisten.jpg" alt="" width="467" height="700" /></a><p class="wp-caption-text">Stop，Look，Listen</p></div>
<div id="attachment_10968" class="wp-caption aligncenter" style="width: 477px"><a href="http://danyifeng.com/wp-content/uploads/2010/06/falls-of-cruachan.jpg" rel="lightbox[10966]"><img class="size-full wp-image-10968" title="falls of cruachan" src="http://danyifeng.com/wp-content/uploads/2010/06/falls-of-cruachan.jpg" alt="" width="467" height="700" /></a><p class="wp-caption-text">单轨的火车道</p></div>
<p>嗯 准备开始。</p>
<p>忽然意识到我把地图还有详细路线图给丢家里忘记带了， 就只能adventure了。</p>
<p>刚开始爬就开始下雨了 淅淅沥沥</p>
<p>我的鞋子由于服役太久，竟然漏水进去了，相当的难受。</p>
<p>后来肩膀实在受不了 几乎是爬10分钟就要休息一下，边走边嘲笑自己是傻子，连羊都一直咩咩的笑我们。</p>
<div id="attachment_10969" class="wp-caption aligncenter" style="width: 570px"><a href="http://danyifeng.com/wp-content/uploads/2010/06/blackface.jpg" rel="lightbox[10966]"><img class="size-full wp-image-10969 " title="blackface" src="http://danyifeng.com/wp-content/uploads/2010/06/blackface.jpg" alt="" width="560" height="374" /></a><p class="wp-caption-text">黑面羊</p></div>
<div id="attachment_11038" class="wp-caption aligncenter" style="width: 710px"><a href="http://danyifeng.com/wp-content/uploads/2010/06/sheepfamily.jpg" rel="lightbox[10966]"><img class="size-full wp-image-11038" title="sheepfamily" src="http://danyifeng.com/wp-content/uploads/2010/06/sheepfamily.jpg" alt="" width="700" height="467" /></a><p class="wp-caption-text">我们是快乐的一家</p></div>
<div id="attachment_10970" class="wp-caption aligncenter" style="width: 710px"><a href="http://danyifeng.com/wp-content/uploads/2010/06/dam.jpg" rel="lightbox[10966]"><img class="size-full wp-image-10970" title="dam" src="http://danyifeng.com/wp-content/uploads/2010/06/dam.jpg" alt="" width="700" height="467" /></a><p class="wp-caption-text">水坝</p></div>
<div id="attachment_10971" class="wp-caption aligncenter" style="width: 477px"><a href="http://danyifeng.com/wp-content/uploads/2010/06/damnandcouple.jpg" rel="lightbox[10966]"><img class="size-full wp-image-10971" title="damnandcouple" src="http://danyifeng.com/wp-content/uploads/2010/06/damnandcouple.jpg" alt="" width="467" height="700" /></a><p class="wp-caption-text">还是水坝 和路上第一次遇到的人</p></div>
<p><a href="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5671.jpg" rel="lightbox[10966]"><img class="aligncenter size-full wp-image-10972" title="IMG_5671" src="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5671.jpg" alt="" width="467" height="700" /></a></p>
<p><a href="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5677.jpg" rel="lightbox[10966]"><img class="aligncenter size-full wp-image-10973" title="IMG_5677" src="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5677.jpg" alt="" width="700" height="467" /></a></p>
<p><a href="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5684.jpg" rel="lightbox[10966]"><img class="aligncenter size-full wp-image-10974" title="IMG_5684" src="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5684.jpg" alt="" width="700" height="467" /></a></p>
<p><a href="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5689.jpg" rel="lightbox[10966]"><img class="aligncenter size-full wp-image-10975" title="IMG_5689" src="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5689.jpg" alt="" width="467" height="700" /></a></p>
<div id="attachment_10976" class="wp-caption aligncenter" style="width: 710px"><a href="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5690.jpg" rel="lightbox[10966]"><img class="size-full wp-image-10976" title="IMG_5690" src="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5690.jpg" alt="" width="700" height="467" /></a><p class="wp-caption-text">厚厚的雾</p></div>
<p><a href="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5692.jpg" rel="lightbox[10966]"><img class="aligncenter size-full wp-image-10977" title="IMG_5692" src="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5692.jpg" alt="" width="700" height="467" /></a></p>
<div id="attachment_10978" class="wp-caption aligncenter" style="width: 710px"><a href="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5710.jpg" rel="lightbox[10966]"><img class="size-full wp-image-10978" title="IMG_5710" src="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5710.jpg" alt="" width="700" height="467" /></a><p class="wp-caption-text">大雾大雾</p></div>
<p style="text-align: center;">
<p>下午5点眼看是没办法按照计划完成了，问了相反方向走过来的人  说没有什么可以camping的地方，所以我能就找了一个相对比较平的草地，把包丢下，然后自由的爬上山顶。但是云雾也都跟着过来了，完全看不到远处。  anyway，登顶了。等到7点，云雾还没有散去。只有下山搭帐篷。</p>
<p>Camp on the munros(A <em>Munro</em> is a mountain in Scotland with a height over 3000 ft  (914.4 m).)</p>
<div id="attachment_10979" class="wp-caption aligncenter" style="width: 710px"><a href="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5713.jpg" rel="lightbox[10966]"><img class="size-full wp-image-10979" title="IMG_5713" src="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5713.jpg" alt="" width="700" height="590" /></a><p class="wp-caption-text">山顶上写着 memory of的牌子</p></div>
<div id="attachment_10980" class="wp-caption aligncenter" style="width: 710px"><a href="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5714.jpg" rel="lightbox[10966]"><img class="size-full wp-image-10980" title="IMG_5714" src="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5714.jpg" alt="" width="700" height="467" /></a><p class="wp-caption-text">在山顶 什么都看不见。。</p></div>
<div id="attachment_10981" class="wp-caption aligncenter" style="width: 710px"><a href="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5731.jpg" rel="lightbox[10966]"><img class="size-full wp-image-10981" title="IMG_5731" src="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5731.jpg" alt="" width="700" height="467" /></a><p class="wp-caption-text">搭帐篷</p></div>
<p>由于太冷，行动缓慢， 搭个帐篷用了一个多小时。</p>
<p>我冷的想爆粗口，半夜醒来，我还说只有大风没有下雨已经感谢了。  结果瞬间开始下雨，大雨，像是有人拿着水管对着我们帐篷冲。  哎不敢乱说话，一夜睡的都不是很踏实。</p>
<p>本来打算晚上生火把湿的衣服鞋子都烤一下。结果。。</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p><strong>Day 2</strong></p>
<p>早上醒来，最痛苦的就是穿上那些湿的衣服和鞋子。</p>
<p>天开始渐渐放晴了。拿着地图商量了一下，决定改变计划，走另外一条路线， 向着阳光走去。</p>
<div id="attachment_10982" class="wp-caption aligncenter" style="width: 710px"><a href="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5743.jpg" rel="lightbox[10966]"><img class="size-full wp-image-10982 " title="IMG_5743" src="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5743.jpg" alt="" width="700" height="467" /></a><p class="wp-caption-text">早上起来天气好了很多 终于可以看见远处了</p></div>
<p style="text-align: center;">
<div id="attachment_10983" class="wp-caption aligncenter" style="width: 710px"><a href="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5745.jpg" rel="lightbox[10966]"><img class="size-full wp-image-10983" title="IMG_5745" src="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5745.jpg" alt="" width="700" height="467" /></a><p class="wp-caption-text">来拍张照</p></div>
<p style="text-align: center;">
<div id="attachment_10985" class="wp-caption aligncenter" style="width: 710px"><strong><a href="http://danyifeng.com/wp-content/uploads/2010/06/on-the-top-of-ben-cruachan.jpg" rel="lightbox[10966]"><img class="size-full wp-image-10985" title="on the top of ben cruachan" src="http://danyifeng.com/wp-content/uploads/2010/06/on-the-top-of-ben-cruachan.jpg" alt="" width="700" height="467" /></a></strong><p class="wp-caption-text">这张过曝了</p></div>
<p>天气很不错，我们就在山上多拍了些照片</p>
<div id="attachment_10986" class="wp-caption aligncenter" style="width: 710px"><a href="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5778.jpg" rel="lightbox[10966]"><img class="size-full wp-image-10986" title="IMG_5778" src="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5778.jpg" alt="" width="700" height="467" /></a><p class="wp-caption-text">云开始散去</p></div>
<div id="attachment_10987" class="wp-caption aligncenter" style="width: 710px"><a href="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5783.jpg" rel="lightbox[10966]"><img class="size-full wp-image-10987" title="IMG_5783" src="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5783.jpg" alt="" width="700" height="467" /></a><p class="wp-caption-text">蓝天蓝天</p></div>
<div id="attachment_10988" class="wp-caption aligncenter" style="width: 710px"><a href="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5803.jpg" rel="lightbox[10966]"><img class="size-full wp-image-10988" title="IMG_5803" src="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5803.jpg" alt="" width="700" height="467" /></a><p class="wp-caption-text">山上还有雪呢</p></div>
<p><a href="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5814.jpg" rel="lightbox[10966]"><img class="aligncenter size-full wp-image-10989" title="IMG_5814" src="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5814.jpg" alt="" width="700" height="467" /></a></p>
<p>刚开始背起包的那一刻真是痛苦，肩膀很痛，走着走着就已经忘记了肩膀上的重量。因为脚下的路太难走。</p>
<div id="attachment_10993" class="wp-caption aligncenter" style="width: 710px"><a href="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5865.jpg" rel="lightbox[10966]"><img class="size-full wp-image-10993" title="IMG_5865" src="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5865.jpg" alt="" width="700" height="467" /></a><p class="wp-caption-text">回首望</p></div>
<p style="text-align: center;">
<div id="attachment_10990" class="wp-caption aligncenter" style="width: 477px"><a href="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5839.jpg" rel="lightbox[10966]"><img class="size-full wp-image-10990" title="IMG_5839" src="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5839.jpg" alt="" width="467" height="700" /></a><p class="wp-caption-text">站在悬崖边</p></div>
<div id="attachment_10991" class="wp-caption aligncenter" style="width: 477px"><a href="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5848.jpg" rel="lightbox[10966]"><img class="size-full wp-image-10991" title="IMG_5848" src="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5848.jpg" alt="" width="467" height="700" /></a><p class="wp-caption-text">回头望 走过的路 </p></div>
<div id="attachment_10992" class="wp-caption aligncenter" style="width: 710px"><a href="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5850.jpg" rel="lightbox[10966]"><img class="size-full wp-image-10992" title="IMG_5850" src="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5850.jpg" alt="" width="700" height="467" /></a><p class="wp-caption-text">很美的倒影</p></div>
<div id="attachment_10994" class="wp-caption aligncenter" style="width: 710px"><a href="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5876.jpg" rel="lightbox[10966]"><img class="size-full wp-image-10994" title="IMG_5876" src="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5876.jpg" alt="" width="700" height="467" /></a><p class="wp-caption-text">抬头望</p></div>
<p>终于到了草地，开始沿着一个小河奔的很愉快，奔着奔着小河变成了峡谷。每次以为奔完一个山坡的时候都会发现还有另外一个，不过天气好还是挺开心的。</p>
<div id="attachment_10995" class="wp-caption aligncenter" style="width: 710px"><a href="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5886.jpg" rel="lightbox[10966]"><img class="size-full wp-image-10995" title="IMG_5886" src="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5886.jpg" alt="" width="700" height="467" /></a><p class="wp-caption-text">山涧</p></div>
<div id="attachment_10996" class="wp-caption aligncenter" style="width: 477px"><a href="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5891.jpg" rel="lightbox[10966]"><img class="size-full wp-image-10996" title="IMG_5891" src="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5891.jpg" alt="" width="467" height="700" /></a><p class="wp-caption-text">山涧边行走</p></div>
<div id="attachment_10997" class="wp-caption aligncenter" style="width: 523px"><a href="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5905.jpg" rel="lightbox[10966]"><img class="size-full wp-image-10997" title="IMG_5905" src="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5905.jpg" alt="" width="513" height="700" /></a><p class="wp-caption-text">远望</p></div>
<div id="attachment_10998" class="wp-caption aligncenter" style="width: 477px"><a href="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5934.jpg" rel="lightbox[10966]"><img class="size-full wp-image-10998" title="IMG_5934" src="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5934.jpg" alt="" width="467" height="700" /></a><p class="wp-caption-text">we all need down to earth</p></div>
<p><a href="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5943.jpg" rel="lightbox[10966]"><img class="aligncenter size-full wp-image-10999" title="IMG_5943" src="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5943.jpg" alt="" width="700" height="467" /></a></p>
<p>嗯 这个时候终于可以用奔这个字眼了。但是好景不长呢。</p>
<div id="attachment_11000" class="wp-caption aligncenter" style="width: 710px"><a href="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5957.jpg" rel="lightbox[10966]"><img class="size-full wp-image-11000" title="IMG_5957" src="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5957.jpg" alt="" width="700" height="467" /></a><p class="wp-caption-text">陡坡陡坡 就是这样滑下来的</p></div>
<p><a href="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5958.jpg" rel="lightbox[10966]"><img class="aligncenter size-full wp-image-11001" title="IMG_5958" src="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5958.jpg" alt="" width="467" height="700" /></a></p>
<div id="attachment_11002" class="wp-caption aligncenter" style="width: 710px"><a href="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5959.jpg" rel="lightbox[10966]"><img class="size-full wp-image-11002" title="IMG_5959" src="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5959.jpg" alt="" width="700" height="467" /></a><p class="wp-caption-text">远眺的loch awe</p></div>
<p>快接近地面的时候 等高线变得非常密，也就是说很陡。  四五百米的海拔，我们走了差不多快一个小时。有时候看到太陡的坡，顾不上满地的羊屎就滑下去。甚是欢乐啊。整个一路没有看到一个人。</p>
<div id="attachment_11007" class="wp-caption aligncenter" style="width: 477px"><a href="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5990.jpg" rel="lightbox[10966]"><img class="size-full wp-image-11007" title="IMG_5990" src="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5990.jpg" alt="" width="467" height="700" /></a><p class="wp-caption-text">leaves on the blue sky</p></div>
<p style="text-align: center;">
<div id="attachment_11003" class="wp-caption aligncenter" style="width: 477px"><a href="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5963.jpg" rel="lightbox[10966]"><img class="size-full wp-image-11003" title="IMG_5963" src="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5963.jpg" alt="" width="467" height="700" /></a><p class="wp-caption-text">小溪变峡谷</p></div>
<div id="attachment_11004" class="wp-caption aligncenter" style="width: 710px"><a href="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5971.jpg" rel="lightbox[10966]"><img class="size-full wp-image-11004" title="IMG_5971" src="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5971.jpg" alt="" width="700" height="467" /></a><p class="wp-caption-text">back into the civilization </p></div>
<div id="attachment_11005" class="wp-caption aligncenter" style="width: 710px"><a href="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5976.jpg" rel="lightbox[10966]"><img class="size-full wp-image-11005" title="IMG_5976" src="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5976.jpg" alt="" width="700" height="467" /></a><p class="wp-caption-text">穿过这个桥洞 遇见一些在河边钓鱼的人</p></div>
<div id="attachment_11006" class="wp-caption aligncenter" style="width: 710px"><a href="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5985.jpg" rel="lightbox[10966]"><img class="size-full wp-image-11006" title="IMG_5985" src="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5985.jpg" alt="" width="700" height="467" /></a><p class="wp-caption-text">Fishing man is on the phone</p></div>
<div id="attachment_11007" class="wp-caption aligncenter" style="width: 477px"><a href="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5990.jpg" rel="lightbox[10966]"><img class="size-full wp-image-11007" title="IMG_5990" src="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5990.jpg" alt="" width="467" height="700" /></a><p class="wp-caption-text">leaves on the blue sky</p></div>
<div id="attachment_11008" class="wp-caption aligncenter" style="width: 710px"><a href="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5997.jpg" rel="lightbox[10966]"><img class="size-full wp-image-11008" title="IMG_5997" src="http://danyifeng.com/wp-content/uploads/2010/06/IMG_5997.jpg" alt="" width="700" height="467" /></a><p class="wp-caption-text">这就是nature</p></div>
<p>我们就这样想文明社会前行着，到达地面后，在河边休息了好久，真的累坏了。</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p><strong>下一站 kilchurn Castle</strong></p>
<p><strong>Hitchhiker</strong></p>
<p>实在太累，走不动了，也是之前的计划。， 在路边拦了一个小时的车，才搭上一辆。</p>
<div id="attachment_11010" class="wp-caption aligncenter" style="width: 710px"><a href="http://danyifeng.com/wp-content/uploads/2010/06/IMG_60051.jpg" rel="lightbox[10966]"><img class="size-full wp-image-11010" title="IMG_6005" src="http://danyifeng.com/wp-content/uploads/2010/06/IMG_60051.jpg" alt="" width="700" height="467" /></a><p class="wp-caption-text">Hitchhiker</p></div>
<p style="text-align: center;"><a href="http://danyifeng.com/wp-content/uploads/2010/06/IMG_6005.jpg" rel="lightbox[10966]"><br />
</a></p>
<div id="attachment_11011" class="wp-caption aligncenter" style="width: 710px"><a href="http://danyifeng.com/wp-content/uploads/2010/06/IMG_6012.jpg" rel="lightbox[10966]"><img class="size-full wp-image-11011" title="IMG_6012" src="http://danyifeng.com/wp-content/uploads/2010/06/IMG_6012.jpg" alt="" width="700" height="467" /></a><p class="wp-caption-text">Finally, heading to KilchurnCastle</p></div>
<div id="attachment_11012" class="wp-caption aligncenter" style="width: 710px"><a href="http://danyifeng.com/wp-content/uploads/2010/06/IMG_6017.jpg" rel="lightbox[10966]"><img class="size-full wp-image-11012" title="IMG_6017" src="http://danyifeng.com/wp-content/uploads/2010/06/IMG_6017.jpg" alt="" width="700" height="467" /></a><p class="wp-caption-text">Walk into wild again</p></div>
<div id="attachment_11013" class="wp-caption aligncenter" style="width: 710px"><a href="http://danyifeng.com/wp-content/uploads/2010/06/IMG_6018.jpg" rel="lightbox[10966]"><img class="size-full wp-image-11013" title="IMG_6018" src="http://danyifeng.com/wp-content/uploads/2010/06/IMG_6018.jpg" alt="" width="700" height="467" /></a><p class="wp-caption-text">Kilchurn Castle</p></div>
<div id="attachment_11015" class="wp-caption aligncenter" style="width: 710px"><a href="http://danyifeng.com/wp-content/uploads/2010/06/IMG_6027.jpg" rel="lightbox[10966]"><img class="size-full wp-image-11015" title="IMG_6027" src="http://danyifeng.com/wp-content/uploads/2010/06/IMG_6027.jpg" alt="" width="700" height="467" /></a><p class="wp-caption-text">Here we are</p></div>
<div id="attachment_11016" class="wp-caption aligncenter" style="width: 710px"><a href="http://danyifeng.com/wp-content/uploads/2010/06/IMG_6094.jpg" rel="lightbox[10966]"><img class="size-full wp-image-11016" title="IMG_6094" src="http://danyifeng.com/wp-content/uploads/2010/06/IMG_6094.jpg" alt="" width="700" height="467" /></a><p class="wp-caption-text">虽然是废弃的 依然能看出以前是豪宅的样子</p></div>
<div id="attachment_11017" class="wp-caption aligncenter" style="width: 710px"><a href="http://danyifeng.com/wp-content/uploads/2010/06/IMG_6101.jpg" rel="lightbox[10966]"><img class="size-full wp-image-11017" title="IMG_6101" src="http://danyifeng.com/wp-content/uploads/2010/06/IMG_6101.jpg" alt="" width="700" height="467" /></a><p class="wp-caption-text">How peaceful when I was sitting here.</p></div>
<p>这里像是世外桃源一般，有一些人在那边钓鱼。  言语无法形容的感觉，加上错过了最后一班回Glasgow的车，我们就决定留在这里继续camping一晚。</p>
<p>食物都吃光了，接下来分工，shady走出去买食物，我搭帐篷。 此时我已经走不了了，泡了快两天的脚痛的要死。</p>
<p>一个人坐在城堡前面的这个平台上，感觉无比的宁静。  据说这个一片地方是一个老头20年前花1000镑买下来的，他一直不停的赞叹这个老头是个wise man。</p>
<p>shady买回食物回来已经过去2个小时了，过程坎坷，差点没有买到。</p>
<p>决定先生火再吃，没想到生火竟然生了快2个小时。  由于之前下雨，所有的木头都是湿的。好烧的木头烧的快，烧的慢的木头烧不着。薰了两个小时，一身的烧烤味。  然后吃着9镑一盒的fishandchips.</p>
<div id="attachment_11018" class="wp-caption aligncenter" style="width: 710px"><a href="http://danyifeng.com/wp-content/uploads/2010/06/IMG_6125.jpg" rel="lightbox[10966]"><img class="size-full wp-image-11018" title="IMG_6125" src="http://danyifeng.com/wp-content/uploads/2010/06/IMG_6125.jpg" alt="" width="700" height="467" /></a><p class="wp-caption-text">castle, tent, fire. How prefect it is</p></div>
<div id="attachment_11019" class="wp-caption aligncenter" style="width: 710px"><a href="http://danyifeng.com/wp-content/uploads/2010/06/IMG_6128.jpg" rel="lightbox[10966]"><img class="size-full wp-image-11019" title="IMG_6128" src="http://danyifeng.com/wp-content/uploads/2010/06/IMG_6128.jpg" alt="" width="700" height="467" /></a><p class="wp-caption-text">Fire</p></div>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
<strong>DAY 3 -Back to civilization<br />
</strong></p>
<p>周一，醒来天气无比的好，城堡周围晃了晃，拍了下照，准备闪人了。早上起来就开始有些难过，要离开，要结束这个into the  wild的旅程，但又期盼能回家洗澡。</p>
<div id="attachment_11020" class="wp-caption aligncenter" style="width: 710px"><a href="http://danyifeng.com/wp-content/uploads/2010/06/IMG_6140.jpg" rel="lightbox[10966]"><img class="size-full wp-image-11020" title="IMG_6140" src="http://danyifeng.com/wp-content/uploads/2010/06/IMG_6140.jpg" alt="" width="700" height="467" /></a><p class="wp-caption-text">小岛</p></div>
<div id="attachment_11022" class="wp-caption aligncenter" style="width: 710px"><a href="http://danyifeng.com/wp-content/uploads/2010/06/IMG_6142.jpg" rel="lightbox[10966]"><img class="size-full wp-image-11022" title="IMG_6142" src="http://danyifeng.com/wp-content/uploads/2010/06/IMG_6142.jpg" alt="" width="700" height="467" /></a><p class="wp-caption-text">山，帐篷 </p></div>
<div id="attachment_11023" class="wp-caption aligncenter" style="width: 710px"><a href="http://danyifeng.com/wp-content/uploads/2010/06/IMG_6145.jpg" rel="lightbox[10966]"><img class="size-full wp-image-11023" title="IMG_6145" src="http://danyifeng.com/wp-content/uploads/2010/06/IMG_6145.jpg" alt="" width="700" height="467" /></a><p class="wp-caption-text">城堡</p></div>
<div id="attachment_11024" class="wp-caption aligncenter" style="width: 710px"><a href="http://danyifeng.com/wp-content/uploads/2010/06/IMG_6175.jpg" rel="lightbox[10966]"><img class="size-full wp-image-11024" title="IMG_6175" src="http://danyifeng.com/wp-content/uploads/2010/06/IMG_6175.jpg" alt="" width="700" height="467" /></a><p class="wp-caption-text">无需用语言来描述</p></div>
<p style="text-align: center;">
<div id="attachment_11025" class="wp-caption aligncenter" style="width: 710px"><a href="http://danyifeng.com/wp-content/uploads/2010/06/IMG_6188.jpg" rel="lightbox[10966]"><img class="size-full wp-image-11025" title="IMG_6188" src="http://danyifeng.com/wp-content/uploads/2010/06/IMG_6188.jpg" alt="" width="700" height="467" /></a><p class="wp-caption-text">那么小的我</p></div>
<div id="attachment_11026" class="wp-caption aligncenter" style="width: 710px"><a href="http://danyifeng.com/wp-content/uploads/2010/06/IMG_6196.jpg" rel="lightbox[10966]"><img class="size-full wp-image-11026" title="IMG_6196" src="http://danyifeng.com/wp-content/uploads/2010/06/IMG_6196.jpg" alt="" width="700" height="467" /></a><p class="wp-caption-text">衣服都湿了 借了shady的T恤 穿起来像裙子</p></div>
<div id="attachment_11027" class="wp-caption aligncenter" style="width: 710px"><a href="http://danyifeng.com/wp-content/uploads/2010/06/IMG_6199.jpg" rel="lightbox[10966]"><img class="size-full wp-image-11027" title="IMG_6199" src="http://danyifeng.com/wp-content/uploads/2010/06/IMG_6199.jpg" alt="" width="700" height="467" /></a><p class="wp-caption-text">倒影倒影</p></div>
<div id="attachment_11028" class="wp-caption aligncenter" style="width: 710px"><a href="http://danyifeng.com/wp-content/uploads/2010/06/IMG_6205.jpg" rel="lightbox[10966]"><img class="size-full wp-image-11028" title="IMG_6205" src="http://danyifeng.com/wp-content/uploads/2010/06/IMG_6205.jpg" alt="" width="700" height="467" /></a><p class="wp-caption-text">可以拿来当桌面了</p></div>
<div id="attachment_11029" class="wp-caption aligncenter" style="width: 710px"><a href="http://danyifeng.com/wp-content/uploads/2010/06/IMG_6230.jpg" rel="lightbox[10966]"><img class="size-full wp-image-11029" title="IMG_6230" src="http://danyifeng.com/wp-content/uploads/2010/06/IMG_6230.jpg" alt="" width="700" height="467" /></a><p class="wp-caption-text">大叔去小岛上钓鱼去了</p></div>
<div id="attachment_11030" class="wp-caption aligncenter" style="width: 477px"><a href="http://danyifeng.com/wp-content/uploads/2010/06/IMG_6247.jpg" rel="lightbox[10966]"><img class="size-full wp-image-11030" title="IMG_6247" src="http://danyifeng.com/wp-content/uploads/2010/06/IMG_6247.jpg" alt="" width="467" height="700" /></a><p class="wp-caption-text">穿过铁路 走向Dalmally</p></div>
<div id="attachment_11031" class="wp-caption aligncenter" style="width: 710px"><a href="http://danyifeng.com/wp-content/uploads/2010/06/IMG_6255.jpg" rel="lightbox[10966]"><img class="size-full wp-image-11031" title="IMG_6255" src="http://danyifeng.com/wp-content/uploads/2010/06/IMG_6255.jpg" alt="" width="700" height="467" /></a><p class="wp-caption-text">walking on the raod. 看不见我。</p></div>
<div id="attachment_11032" class="wp-caption aligncenter" style="width: 710px"><a href="http://danyifeng.com/wp-content/uploads/2010/06/IMG_6273.jpg" rel="lightbox[10966]"><img class="size-full wp-image-11032 " title="IMG_6273" src="http://danyifeng.com/wp-content/uploads/2010/06/IMG_6273.jpg" alt="" width="700" height="467" /></a><p class="wp-caption-text">Dalmally train station， 踩点</p></div>
<div id="attachment_11033" class="wp-caption aligncenter" style="width: 477px"><a href="http://danyifeng.com/wp-content/uploads/2010/06/IMG_6275.jpg" rel="lightbox[10966]"><img class="size-full wp-image-11033" title="IMG_6275" src="http://danyifeng.com/wp-content/uploads/2010/06/IMG_6275.jpg" alt="" width="467" height="700" /></a><p class="wp-caption-text">路边的b&amp;b，不提供午餐</p></div>
<p>太喜欢这种在路上的感觉，简单自由。</p>
<p>从kilchurnCastle走到Dalmally， 阳光暴晒，伤了。 宁静的小乡村，找到一家bar，午餐。</p>
<div id="attachment_11034" class="wp-caption aligncenter" style="width: 710px"><a href="http://danyifeng.com/wp-content/uploads/2010/06/IMG_6302.jpg" rel="lightbox[10966]"><img class="size-full wp-image-11034" title="IMG_6302" src="http://danyifeng.com/wp-content/uploads/2010/06/IMG_6302.jpg" alt="" width="700" height="467" /></a><p class="wp-caption-text">好大一盘salad</p></div>
<div id="attachment_11035" class="wp-caption aligncenter" style="width: 477px"><a href="http://danyifeng.com/wp-content/uploads/2010/06/IMG_6317.jpg" rel="lightbox[10966]"><img class="size-full wp-image-11035" title="IMG_6317" src="http://danyifeng.com/wp-content/uploads/2010/06/IMG_6317.jpg" alt="" width="467" height="700" /></a><p class="wp-caption-text">等火车</p></div>
<div id="attachment_11036" class="wp-caption aligncenter" style="width: 710px"><a href="http://danyifeng.com/wp-content/uploads/2010/06/IMG_6321.jpg" rel="lightbox[10966]"><img class="size-full wp-image-11036" title="IMG_6321" src="http://danyifeng.com/wp-content/uploads/2010/06/IMG_6321.jpg" alt="" width="700" height="467" /></a><p class="wp-caption-text">Tired</p></div>
<p>回归文明社会。</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p>我尽量不写成流水账。。但是。。。嗯。整理图片文字也花了一天的时间，估计也没有几个人能完整的看完。。太长</p>
<p>华丽的冒险，该体验的都体验了，非常精彩。天气从糟糕的雨天渐渐晴朗，直到晒伤了。 经历了雨天在山上野营，也体验了晴天在湖边的camp。尽管木头都很潮湿，但是最终还是点燃了篝火。走了很rocky的路，也滑了草。实现了第一次在uk的hitchhiker，第一次背着大背包沿着公路走。</p>
<p>带着into the wide 的书在路上，也会想起 <a title="Christopher McCandless" href="http://en.wikipedia.org/wiki/Christopher_McCandless">Christopher McCandless </a></p>
<p>暂时的离开文明社会，在野外真实的生存的感觉很不错。</p>
<p>Keep life simple, Keep life real.</p>
]]></content:encoded>
			<wfw:commentRss>http://danyifeng.com/2010/06/06/into-the-wild-bencruachan-and-kilchurncastle/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Danyifeng.com 正式启用</title>
		<link>http://danyifeng.com/2010/05/26/danyifeng-com/</link>
		<comments>http://danyifeng.com/2010/05/26/danyifeng-com/#comments</comments>
		<pubDate>Wed, 26 May 2010 08:41:58 +0000</pubDate>
		<dc:creator>小单</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[walle]]></category>

		<guid isPermaLink="false">http://danyifeng.com/?p=10951</guid>
		<description><![CDATA[昨天godaddy上0.99刀的offer 迅速强入一枚 danyi.codetea.co.uk 会直接转向danyifeng.com Walle 早上没睡醒就被我拉起来当模特了。。可怜的孩子 散花hoho 欢迎交互链接 O(∩_∩)]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">昨天godaddy上0.99刀的offer 迅速强入一枚</p>
<p style="text-align: left;">danyi.codetea.co.uk 会直接转向danyifeng.com</p>
<p style="text-align: center;"><a href="http://danyifeng.com/wp-content/uploads/2010/05/welcome.jpg" rel="lightbox[10951]"><img class="aligncenter size-full wp-image-10952" title="welcome to danyifeng.com" src="http://danyifeng.com/wp-content/uploads/2010/05/welcome.jpg" alt="" width="560" height="374" /></a></p>
<p style="text-align: left;">Walle 早上没睡醒就被我拉起来当模特了。。可怜的孩子</p>
<p style="text-align: left;">散花hoho</p>
<p style="text-align: left;">欢迎交互链接 O(∩_∩)O</p>
]]></content:encoded>
			<wfw:commentRss>http://danyifeng.com/2010/05/26/danyifeng-com/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Photos&#124; Sunny Weekend at Kelvingrove</title>
		<link>http://danyifeng.com/2010/05/23/sunny-weeken/</link>
		<comments>http://danyifeng.com/2010/05/23/sunny-weeken/#comments</comments>
		<pubDate>Sun, 23 May 2010 19:46:29 +0000</pubDate>
		<dc:creator>小单</dc:creator>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[on my way]]></category>
		<category><![CDATA[summer]]></category>
		<category><![CDATA[sunny]]></category>

		<guid isPermaLink="false">http://danyi.codetea.co.uk/?p=10935</guid>
		<description><![CDATA[很难得的夏天， 周六朋友来访, 吃完下午茶， 去Kelvingrove晃悠了一下。 最后来个冰激凌降降温]]></description>
			<content:encoded><![CDATA[<p>很难得的夏天， 周六朋友来访, 吃完下午茶， 去Kelvingrove晃悠了一下。</p>
<p><a href="http://danyi.codetea.co.uk/wp-content/uploads/2010/05/kelvingrove.jpg" rel="lightbox[10935]"><img class="aligncenter size-full wp-image-10936" title="kelvingrove" src="http://danyi.codetea.co.uk/wp-content/uploads/2010/05/kelvingrove.jpg" alt="" width="467" height="700" /></a></p>
<p><a href="http://danyi.codetea.co.uk/wp-content/uploads/2010/05/various-kinds-of-heads2.jpg" rel="lightbox[10935]"><img class="aligncenter size-full wp-image-10945" title="various-kinds-of-heads2" src="http://danyi.codetea.co.uk/wp-content/uploads/2010/05/various-kinds-of-heads2.jpg" alt="" width="700" height="467" /></a></p>
<p><a href="http://danyi.codetea.co.uk/wp-content/uploads/2010/05/kelvingrove-art-gallery.jpg" rel="lightbox[10935]"><img class="aligncenter size-full wp-image-10937" title="kelvingrove-art-gallery" src="http://danyi.codetea.co.uk/wp-content/uploads/2010/05/kelvingrove-art-gallery.jpg" alt="" width="467" height="700" /></a></p>
<p><a href="http://danyi.codetea.co.uk/wp-content/uploads/2010/05/front-of-art-gallery-and-museum.jpg" rel="lightbox[10935]"><img class="aligncenter size-full wp-image-10939" title="front-of-art-gallery-and-museum" src="http://danyi.codetea.co.uk/wp-content/uploads/2010/05/front-of-art-gallery-and-museum.jpg" alt="" width="467" height="700" /></a></p>
<p><a href="http://danyi.codetea.co.uk/wp-content/uploads/2010/05/hall.jpg" rel="lightbox[10935]"><img class="aligncenter size-full wp-image-10940" title="hall" src="http://danyi.codetea.co.uk/wp-content/uploads/2010/05/hall.jpg" alt="" width="467" height="700" /></a></p>
<p><a href="http://danyi.codetea.co.uk/wp-content/uploads/2010/05/foxandpenguin.jpg" rel="lightbox[10935]"><img class="aligncenter size-full wp-image-10944" title="foxandpenguin" src="http://danyi.codetea.co.uk/wp-content/uploads/2010/05/foxandpenguin.jpg" alt="" width="467" height="700" /></a></p>
<p><a href="http://danyi.codetea.co.uk/wp-content/uploads/2010/05/various-kinds-of-heads.jpg" rel="lightbox[10935]"><img class="aligncenter size-full wp-image-10946" title="various-kinds-of-heads" src="http://danyi.codetea.co.uk/wp-content/uploads/2010/05/various-kinds-of-heads.jpg" alt="" width="700" height="467" /></a></p>
<p><a href="http://danyi.codetea.co.uk/wp-content/uploads/2010/05/elephent-in-Museum.jpg" rel="lightbox[10935]"><br />
</a></p>
<p><a href="http://danyi.codetea.co.uk/wp-content/uploads/2010/05/elephent-in-Museum1.jpg" rel="lightbox[10935]"><img class="aligncenter size-full wp-image-10941" title="elephent-in-Museum" src="http://danyi.codetea.co.uk/wp-content/uploads/2010/05/elephent-in-Museum1.jpg" alt="" width="467" height="700" /></a></p>
<p><a href="http://danyi.codetea.co.uk/wp-content/uploads/2010/05/thereofthem.jpg" rel="lightbox[10935]"><img class="aligncenter size-full wp-image-10947" title="thereofthem" src="http://danyi.codetea.co.uk/wp-content/uploads/2010/05/thereofthem.jpg" alt="" width="700" height="467" /></a></p>
<p><a href="http://danyi.codetea.co.uk/wp-content/uploads/2010/05/shopandyu.jpg" rel="lightbox[10935]"><img class="aligncenter size-full wp-image-10948" title="shopandyu" src="http://danyi.codetea.co.uk/wp-content/uploads/2010/05/shopandyu.jpg" alt="" width="700" height="467" /></a></p>
<p><a href="http://danyi.codetea.co.uk/wp-content/uploads/2010/05/icecream.jpg" rel="lightbox[10935]"><img class="aligncenter size-full wp-image-10942" title="icecream" src="http://danyi.codetea.co.uk/wp-content/uploads/2010/05/icecream.jpg" alt="" width="467" height="700" /></a>最后来个冰激凌降降温</p>
]]></content:encoded>
			<wfw:commentRss>http://danyifeng.com/2010/05/23/sunny-weeken/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>
