<?xml version="1.0" encoding="utf-8"?><?xml-stylesheet href='http://feed.feedsky.com/styles/temp01.xsl' type='text/xsl' ?><!--这是一个由Feedsy提供技术支持的Feed，为了提高读者阅读的体验，以及满足用户美化自己Feed的需要，我们设计了多种精美的Feed模板，提供给大家选择，所有最终呈现出来的样式，皆由用户自愿选择使用，未经许可，任何团体和个人，请不要擅自修改样式或者盗用，这是对于用户选择权的尊重。--><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:fs="http://www.feedsky.com/namespace/feed" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><atom:link href="http://feed.feedsky.com/airhunter" type="application/rss+xml" rel="self"></atom:link><fs:self_link href="http://feed.feedsky.com/airhunter" type="application/rss+xml"></fs:self_link><lastBuildDate>Thu, 29 Dec 2011 05:29:17 GMT</lastBuildDate><title>Under Southern Skies</title><description>让我们面对现实，让我们忠于理想</description><link>http://me.airhunter.com</link><sy:updatePeriod>hourly</sy:updatePeriod><sy:updateFrequency>1</sy:updateFrequency><language>en</language><pubDate>Thu, 29 Dec 2011 05:39:07 GMT</pubDate><item><title>Java语言String的解惑</title><link>http://me.airhunter.com/2011/12/29/java%e8%af%ad%e8%a8%80string%e7%9a%84%e8%a7%a3%e6%83%91/</link><content:encoded>&lt;p&gt;公司要求转换到JAVA平台上来，所以开始研究JAVA语言。最近在看到String时，发现有很多不明白的地方。&lt;br /&gt;
&lt;strong&gt;问题1：&lt;/strong&gt;String str2 = str1这种语法的使用，在书写明确写明了是引用的传递。那么为什么我在修改Str2的值时，Str1的内容没有跟着一起变呢？而StringBuffer就没有这些问题。&lt;/p&gt;

&lt;div class=&quot;wp_codebox_msgheader&quot;&gt;&lt;span class=&quot;right&quot;&gt;&lt;sup&gt;&lt;a href=&quot;http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples&quot; target=&quot;_blank&quot; title=&quot;WP-CodeBox HowTo?&quot;&gt;&lt;span style=&quot;color: #99cc00&quot;&gt;?&lt;/span&gt;&lt;/a&gt;&lt;/sup&gt;&lt;/span&gt;&lt;span class=&quot;left&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;javascript:showCodeTxt('p245code3'); return false;&quot;&gt;View Code&lt;/a&gt; JAVA&lt;/span&gt;&lt;div class=&quot;codebox_clear&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;wp_codebox&quot;&gt;&lt;table&gt;&lt;tr id=&quot;p2453&quot;&gt;&lt;td class=&quot;code&quot; id=&quot;p245code3&quot;&gt;&lt;pre class=&quot;java&quot; style=&quot;font-family:monospace;&quot;&gt;&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;public&lt;/span&gt; &lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;class&lt;/span&gt; Test
&lt;span style=&quot;color: #009900;&quot;&gt;&amp;#123;&lt;/span&gt;
    &lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;public&lt;/span&gt; &lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;static&lt;/span&gt; &lt;span style=&quot;color: #000066; font-weight: bold;&quot;&gt;void&lt;/span&gt; main&lt;span style=&quot;color: #009900;&quot;&gt;&amp;#40;&lt;/span&gt;&lt;span style=&quot;color: #003399;&quot;&gt;String&lt;/span&gt;&lt;span style=&quot;color: #009900;&quot;&gt;&amp;#91;&lt;/span&gt;&lt;span style=&quot;color: #009900;&quot;&gt;&amp;#93;&lt;/span&gt; args&lt;span style=&quot;color: #009900;&quot;&gt;&amp;#41;&lt;/span&gt;
    &lt;span style=&quot;color: #009900;&quot;&gt;&amp;#123;&lt;/span&gt;
        &lt;span style=&quot;color: #003399;&quot;&gt;String&lt;/span&gt; str1 &lt;span style=&quot;color: #339933;&quot;&gt;=&lt;/span&gt; &lt;span style=&quot;color: #0000ff;&quot;&gt;&amp;quot;12345&amp;quot;&lt;/span&gt;&lt;span style=&quot;color: #339933;&quot;&gt;;&lt;/span&gt;
        &lt;span style=&quot;color: #666666; font-style: italic;&quot;&gt;//两者指向相同的地址&lt;/span&gt;
        &lt;span style=&quot;color: #003399;&quot;&gt;String&lt;/span&gt; str2 &lt;span style=&quot;color: #339933;&quot;&gt;=&lt;/span&gt; str1&lt;span style=&quot;color: #339933;&quot;&gt;;&lt;/span&gt;
        &lt;span style=&quot;color: #666666; font-style: italic;&quot;&gt;//两者相等&lt;/span&gt;
        &lt;span style=&quot;color: #003399;&quot;&gt;System&lt;/span&gt;.&lt;span style=&quot;color: #006633;&quot;&gt;out&lt;/span&gt;.&lt;span style=&quot;color: #006633;&quot;&gt;println&lt;/span&gt;&lt;span style=&quot;color: #009900;&quot;&gt;&amp;#40;&lt;/span&gt;&lt;span style=&quot;color: #0000ff;&quot;&gt;&amp;quot;str1 == str2 : &amp;quot;&lt;/span&gt; &lt;span style=&quot;color: #339933;&quot;&gt;+&lt;/span&gt; &lt;span style=&quot;color: #009900;&quot;&gt;&amp;#40;&lt;/span&gt;str1 &lt;span style=&quot;color: #339933;&quot;&gt;==&lt;/span&gt; str2&lt;span style=&quot;color: #009900;&quot;&gt;&amp;#41;&lt;/span&gt;&lt;span style=&quot;color: #009900;&quot;&gt;&amp;#41;&lt;/span&gt;&lt;span style=&quot;color: #339933;&quot;&gt;;&lt;/span&gt;
        &lt;span style=&quot;color: #666666; font-style: italic;&quot;&gt;//给str2重新赋值&lt;/span&gt;
        str2 &lt;span style=&quot;color: #339933;&quot;&gt;=&lt;/span&gt; &lt;span style=&quot;color: #0000ff;&quot;&gt;&amp;quot;4567&amp;quot;&lt;/span&gt;&lt;span style=&quot;color: #339933;&quot;&gt;;&lt;/span&gt;
        &lt;span style=&quot;color: #666666; font-style: italic;&quot;&gt;//为什么str1的值没有变&lt;/span&gt;
        &lt;span style=&quot;color: #003399;&quot;&gt;System&lt;/span&gt;.&lt;span style=&quot;color: #006633;&quot;&gt;out&lt;/span&gt;.&lt;span style=&quot;color: #006633;&quot;&gt;println&lt;/span&gt;&lt;span style=&quot;color: #009900;&quot;&gt;&amp;#40;&lt;/span&gt;&lt;span style=&quot;color: #0000ff;&quot;&gt;&amp;quot;str1 = &amp;quot;&lt;/span&gt; &lt;span style=&quot;color: #339933;&quot;&gt;+&lt;/span&gt; str1&lt;span style=&quot;color: #009900;&quot;&gt;&amp;#41;&lt;/span&gt;&lt;span style=&quot;color: #339933;&quot;&gt;;&lt;/span&gt;
        &lt;span style=&quot;color: #003399;&quot;&gt;System&lt;/span&gt;.&lt;span style=&quot;color: #006633;&quot;&gt;out&lt;/span&gt;.&lt;span style=&quot;color: #006633;&quot;&gt;println&lt;/span&gt;&lt;span style=&quot;color: #009900;&quot;&gt;&amp;#40;&lt;/span&gt;&lt;span style=&quot;color: #0000ff;&quot;&gt;&amp;quot;str2 = &amp;quot;&lt;/span&gt; &lt;span style=&quot;color: #339933;&quot;&gt;+&lt;/span&gt; str2&lt;span style=&quot;color: #009900;&quot;&gt;&amp;#41;&lt;/span&gt;&lt;span style=&quot;color: #339933;&quot;&gt;;&lt;/span&gt;
    &lt;span style=&quot;color: #009900;&quot;&gt;&amp;#125;&lt;/span&gt;
&lt;span style=&quot;color: #009900;&quot;&gt;&amp;#125;&lt;/span&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;后在无数次尝试后得到的结论是：对于String类型，赋值的意思应该是，赋值语句右边的字符串生成一个新串，并把这个新串的引用传递给赋值语句左边String变量。所以变更str2的值后，实际上str2已不再指向str1。&lt;br /&gt;
网上的答案与我的猜测类似：string类型是不可改变的，也就是说，当你想改变一个string对象的时候，比如name= “madding ”&lt;br /&gt;
那么虚拟机不会改变原来的对象，而是生成一个新的string对象，然后让name去指向它，如果原来的那个 “tom “没有任何对象去引用它，虚拟机的垃圾回收机制将接收它。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;问题2：&lt;/strong&gt;String str1 = “123456&amp;#8243;;和String str1 = new String(“123456&amp;#8243;)的区别在哪里？&lt;br /&gt;
尝试后的结论是：不用new的话，会把字符串放入java的pool中缓存起来，下一次如果有另一个变量用到这个字符串时，会直接把这个字符串的引用给它。而new的是直接生成一个新串，不会检查pool中的缓存。测试的示例如下：&lt;/p&gt;

&lt;div class=&quot;wp_codebox_msgheader&quot;&gt;&lt;span class=&quot;right&quot;&gt;&lt;sup&gt;&lt;a href=&quot;http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples&quot; target=&quot;_blank&quot; title=&quot;WP-CodeBox HowTo?&quot;&gt;&lt;span style=&quot;color: #99cc00&quot;&gt;?&lt;/span&gt;&lt;/a&gt;&lt;/sup&gt;&lt;/span&gt;&lt;span class=&quot;left&quot;&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;javascript:showCodeTxt('p245code4'); return false;&quot;&gt;View Code&lt;/a&gt; JAVA&lt;/span&gt;&lt;div class=&quot;codebox_clear&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;wp_codebox&quot;&gt;&lt;table&gt;&lt;tr id=&quot;p2454&quot;&gt;&lt;td class=&quot;code&quot; id=&quot;p245code4&quot;&gt;&lt;pre class=&quot;java&quot; style=&quot;font-family:monospace;&quot;&gt;&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;public&lt;/span&gt; &lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;class&lt;/span&gt; Test
&lt;span style=&quot;color: #009900;&quot;&gt;&amp;#123;&lt;/span&gt;
    &lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;public&lt;/span&gt; &lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;static&lt;/span&gt; &lt;span style=&quot;color: #000066; font-weight: bold;&quot;&gt;void&lt;/span&gt; main&lt;span style=&quot;color: #009900;&quot;&gt;&amp;#40;&lt;/span&gt;&lt;span style=&quot;color: #003399;&quot;&gt;String&lt;/span&gt;&lt;span style=&quot;color: #009900;&quot;&gt;&amp;#91;&lt;/span&gt;&lt;span style=&quot;color: #009900;&quot;&gt;&amp;#93;&lt;/span&gt; args&lt;span style=&quot;color: #009900;&quot;&gt;&amp;#41;&lt;/span&gt;
    &lt;span style=&quot;color: #009900;&quot;&gt;&amp;#123;&lt;/span&gt;
        &lt;span style=&quot;color: #003399;&quot;&gt;String&lt;/span&gt; str1 &lt;span style=&quot;color: #339933;&quot;&gt;=&lt;/span&gt; &lt;span style=&quot;color: #0000ff;&quot;&gt;&amp;quot;12345&amp;quot;&lt;/span&gt;&lt;span style=&quot;color: #339933;&quot;&gt;;&lt;/span&gt;
        &lt;span style=&quot;color: #666666; font-style: italic;&quot;&gt;//两者指向相同的地址&lt;/span&gt;
        &lt;span style=&quot;color: #003399;&quot;&gt;String&lt;/span&gt; str2 &lt;span style=&quot;color: #339933;&quot;&gt;=&lt;/span&gt; &lt;span style=&quot;color: #0000ff;&quot;&gt;&amp;quot;12345&amp;quot;&lt;/span&gt;&lt;span style=&quot;color: #339933;&quot;&gt;;&lt;/span&gt;
        &lt;span style=&quot;color: #666666; font-style: italic;&quot;&gt;//两者相等&lt;/span&gt;
        &lt;span style=&quot;color: #003399;&quot;&gt;System&lt;/span&gt;.&lt;span style=&quot;color: #006633;&quot;&gt;out&lt;/span&gt;.&lt;span style=&quot;color: #006633;&quot;&gt;println&lt;/span&gt;&lt;span style=&quot;color: #009900;&quot;&gt;&amp;#40;&lt;/span&gt;&lt;span style=&quot;color: #0000ff;&quot;&gt;&amp;quot;str1 == str2 : &amp;quot;&lt;/span&gt; &lt;span style=&quot;color: #339933;&quot;&gt;+&lt;/span&gt; &lt;span style=&quot;color: #009900;&quot;&gt;&amp;#40;&lt;/span&gt;str1 &lt;span style=&quot;color: #339933;&quot;&gt;==&lt;/span&gt; str2&lt;span style=&quot;color: #009900;&quot;&gt;&amp;#41;&lt;/span&gt;&lt;span style=&quot;color: #009900;&quot;&gt;&amp;#41;&lt;/span&gt;&lt;span style=&quot;color: #339933;&quot;&gt;;&lt;/span&gt;
        &lt;span style=&quot;color: #666666; font-style: italic;&quot;&gt;//str3使用new方式生成。&lt;/span&gt;
        &lt;span style=&quot;color: #003399;&quot;&gt;String&lt;/span&gt; str3 &lt;span style=&quot;color: #339933;&quot;&gt;=&lt;/span&gt; &lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;new&lt;/span&gt; &lt;span style=&quot;color: #003399;&quot;&gt;String&lt;/span&gt;&lt;span style=&quot;color: #009900;&quot;&gt;&amp;#40;&lt;/span&gt;&lt;span style=&quot;color: #0000ff;&quot;&gt;&amp;quot;12345&amp;quot;&lt;/span&gt;&lt;span style=&quot;color: #009900;&quot;&gt;&amp;#41;&lt;/span&gt;&lt;span style=&quot;color: #339933;&quot;&gt;;&lt;/span&gt;
        &lt;span style=&quot;color: #666666; font-style: italic;&quot;&gt;//str3不会与str2相等&lt;/span&gt;
        &lt;span style=&quot;color: #003399;&quot;&gt;System&lt;/span&gt;.&lt;span style=&quot;color: #006633;&quot;&gt;out&lt;/span&gt;.&lt;span style=&quot;color: #006633;&quot;&gt;println&lt;/span&gt;&lt;span style=&quot;color: #009900;&quot;&gt;&amp;#40;&lt;/span&gt;&lt;span style=&quot;color: #0000ff;&quot;&gt;&amp;quot;str3 == str2 : &amp;quot;&lt;/span&gt; &lt;span style=&quot;color: #339933;&quot;&gt;+&lt;/span&gt; &lt;span style=&quot;color: #009900;&quot;&gt;&amp;#40;&lt;/span&gt;str3 &lt;span style=&quot;color: #339933;&quot;&gt;==&lt;/span&gt; str2&lt;span style=&quot;color: #009900;&quot;&gt;&amp;#41;&lt;/span&gt;&lt;span style=&quot;color: #009900;&quot;&gt;&amp;#41;&lt;/span&gt;&lt;span style=&quot;color: #339933;&quot;&gt;;&lt;/span&gt;
        str3 &lt;span style=&quot;color: #339933;&quot;&gt;=&lt;/span&gt; &lt;span style=&quot;color: #0000ff;&quot;&gt;&amp;quot;12345&amp;quot;&lt;/span&gt;&lt;span style=&quot;color: #339933;&quot;&gt;;&lt;/span&gt;
        &lt;span style=&quot;color: #666666; font-style: italic;&quot;&gt;//str3与str2和str1相等了&lt;/span&gt;
        &lt;span style=&quot;color: #003399;&quot;&gt;System&lt;/span&gt;.&lt;span style=&quot;color: #006633;&quot;&gt;out&lt;/span&gt;.&lt;span style=&quot;color: #006633;&quot;&gt;println&lt;/span&gt;&lt;span style=&quot;color: #009900;&quot;&gt;&amp;#40;&lt;/span&gt;&lt;span style=&quot;color: #0000ff;&quot;&gt;&amp;quot;str3 == str1 : &amp;quot;&lt;/span&gt; &lt;span style=&quot;color: #339933;&quot;&gt;+&lt;/span&gt; &lt;span style=&quot;color: #009900;&quot;&gt;&amp;#40;&lt;/span&gt;str3 &lt;span style=&quot;color: #339933;&quot;&gt;==&lt;/span&gt; str1&lt;span style=&quot;color: #009900;&quot;&gt;&amp;#41;&lt;/span&gt;&lt;span style=&quot;color: #009900;&quot;&gt;&amp;#41;&lt;/span&gt;&lt;span style=&quot;color: #339933;&quot;&gt;;&lt;/span&gt;
        &lt;span style=&quot;color: #003399;&quot;&gt;System&lt;/span&gt;.&lt;span style=&quot;color: #006633;&quot;&gt;out&lt;/span&gt;.&lt;span style=&quot;color: #006633;&quot;&gt;println&lt;/span&gt;&lt;span style=&quot;color: #009900;&quot;&gt;&amp;#40;&lt;/span&gt;&lt;span style=&quot;color: #0000ff;&quot;&gt;&amp;quot;str3 == str2 : &amp;quot;&lt;/span&gt; &lt;span style=&quot;color: #339933;&quot;&gt;+&lt;/span&gt; &lt;span style=&quot;color: #009900;&quot;&gt;&amp;#40;&lt;/span&gt;str3 &lt;span style=&quot;color: #339933;&quot;&gt;==&lt;/span&gt; str2&lt;span style=&quot;color: #009900;&quot;&gt;&amp;#41;&lt;/span&gt;&lt;span style=&quot;color: #009900;&quot;&gt;&amp;#41;&lt;/span&gt;&lt;span style=&quot;color: #339933;&quot;&gt;;&lt;/span&gt;
    &lt;span style=&quot;color: #009900;&quot;&gt;&amp;#125;&lt;/span&gt;
&lt;span style=&quot;color: #009900;&quot;&gt;&amp;#125;&lt;/span&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;歌曲推荐环节：&lt;br /&gt;
《nothing else matters》，来自于Metallica在1991年发行的同名黑色封面专辑《Metallica》。曲子旋律至柔至美，是《Metallica》中唯一的情歌，适合夜深人静时，一个人静静地听。当然心情不要太坏，不然听了太忧郁。此曲创作的背景是：metallica极具天赋的贝司手cliff burton技艺非凡，是乐队的核心人物。1986年他在车祸中丧生，《nothing else matters》就是为纪念他而作,让这支很man的乐队多了份柔情,多了份伤感。优美的前奏,演唱,和声,干净的间奏,JAMES弹的SOLO,整曲中各个乐器的相互配合&amp;#8230;不知道谁喜欢摇滚，如果你喜欢摇滚的话，就不得不听听METALLICA的《nothing else matters》（什么都无所谓）。不得不说说这个乐队，听METALLICA的歌曲，会发现他们的主音吉他非常的厉害，几乎每首歌曲中的大段吉他SOLO都具有非常的难度且极为耐听，最为难得的是主唱James Hetfield的超绝嗓音和唱功，James Hetfield的嗓音高亢时如钛金一般铿锵，却也有其柔和的一面，听听这首歌吧。你会喜欢的。（&lt;a title=&quot;Noting Else Matters&quot; href=&quot;http://baike.baidu.com/view/3092973.htm&quot;&gt;百度百科&lt;/a&gt;）&lt;/p&gt;
&lt;p style=&quot;text-align: center;&quot;&gt;
&lt;object width=&quot;257&quot; height=&quot;33&quot; classid=&quot;clsid:d27cdb6e-ae6d-11cf-96b8-444553540000&quot; codebase=&quot;http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0&quot;&gt;&lt;param name=&quot;src&quot; value=&quot;http://www.xiami.com/widget/0_1070393/singlePlayer.swf&quot; /&gt;&lt;param name=&quot;wmode&quot; value=&quot;transparent&quot; /&gt;&lt;embed width=&quot;257&quot; height=&quot;33&quot; type=&quot;application/x-shockwave-flash&quot; src=&quot;http://www.xiami.com/widget/0_1070393/singlePlayer.swf&quot; wmode=&quot;transparent&quot; /&gt;&lt;/object&gt;&lt;br /&gt;
So close, no matter how far 如此靠近，不管有多远&lt;br /&gt;
Couldn&amp;#8217;t be much more from the heart 不可能比心更遥远&lt;br /&gt;
Forever trusting who we are 永远相信我们自己&lt;br /&gt;
And nothing else matters 一切都无关紧要&lt;br /&gt;
Never opened myself this way 从来不曾如此敞开胸怀&lt;br /&gt;
Life is ours, we live it our way 人生属於我们，我们过着自己的生活&lt;br /&gt;
All these words I don&amp;#8217;t just say 这些话我不会说出口&lt;br /&gt;
And nothing else matters 一切都无关紧要&lt;br /&gt;
Trust I seek and I find in you 我信任我寻觅到的你&lt;br /&gt;
Every day for us something new 对我俩而言，每天都是新的开始&lt;br /&gt;
Open mind for a different view 敞开心门，接收不同的视野&lt;br /&gt;
And nothing else matters 一切都无关紧要&lt;br /&gt;
Never cared for what they do 绝不在乎别人做了什麽&lt;br /&gt;
Never cared for what they know 绝不在乎别人知道什麽&lt;br /&gt;
But I know 但我明白&lt;br /&gt;
So close, no matter how far 如此靠近，不管有多远&lt;br /&gt;
Couldn&amp;#8217;t be much more from the heart 不可能比心更遥远&lt;br /&gt;
Forever trusting who we are 永远相信我们自己&lt;br /&gt;
And nothing else matters 一切都无关紧要&lt;br /&gt;
Never cared for what they do 绝不在乎别人做了什麽&lt;br /&gt;
Never cared for what they know 绝不在乎别人知道什麽&lt;br /&gt;
But I know 但我明白&lt;br /&gt;
Never opened myself this way 从来不曾如此敞开胸怀&lt;br /&gt;
Life is ours, we live it our way 人生属於我们，我们过着自己的生活&lt;br /&gt;
All these words I don&amp;#8217;t just say 这些话我不会说出口&lt;br /&gt;
And nothing else matters 一切都无关紧要&lt;br /&gt;
Trust I seek and I find in you 我信任我寻觅到的你&lt;br /&gt;
Every day for us, something new 对我俩而言，每天都是新的开始&lt;br /&gt;
Open mind for a different view 敞开心门，接收不同的视野&lt;br /&gt;
And nothing else matters 一切都无关紧要&lt;br /&gt;
Never cared for what they say绝不在乎别人说了什么&lt;br /&gt;
Never cared for games they play绝不在乎别人玩什么游戏&lt;br /&gt;
Never cared for what they do 绝不在乎别人做了什麽&lt;br /&gt;
Never cared for what they know 绝不在乎别人知道什麽&lt;br /&gt;
But I know 但我明白&lt;br /&gt;
So close, no matter how far 如此靠近，不管有多远&lt;br /&gt;
Couldn&amp;#8217;t be much more from the heart 不可能比心更遥远&lt;br /&gt;
Forever trusting who we are 永远相信我们自己&lt;br /&gt;
No, nothing else matters 一切都无关紧要&lt;/p&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/591463949/airhunter/feedsky/s.gif?r=http://me.airhunter.com/2011/12/29/java%e8%af%ad%e8%a8%80string%e7%9a%84%e8%a7%a3%e6%83%91/&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;</content:encoded><wfw:commentRss>http://me.airhunter.com/2011/12/29/java%e8%af%ad%e8%a8%80string%e7%9a%84%e8%a7%a3%e6%83%91/feed/</wfw:commentRss><slash:comments>0</slash:comments><description>公司要求转换到JAVA平台上来，所以开始研究JAVA语言。最近在看到String时，发现有很多不明白的地方。 问题1：String str2 = str1这种语法的使用，在书写明确写明了是引用的传递。那么为什么我在修改Str2的值时，Str1的内容没有跟着一起变呢？而StringBuffer就没有这些问题。 ?View Code JAVApublic class Test &amp;#123; public static void main&amp;#40;String&amp;#91;&amp;#93; args&amp;#41; &amp;#123; String str1 = &amp;#34;12345&amp;#34;; //两者指向相同的地址 String str2 = str1; //两者相等 System.out.println&amp;#40;&amp;#34;str1 == str2 : &amp;#34; + &amp;#40;str1 == str2&amp;#41;&amp;#41;; //给str2重新赋值 str2 = &amp;#34;4567&amp;#34;; //为什么str1的值没有变 System.out.println&amp;#40;&amp;#34;str1 = &amp;#34; + str1&amp;#41;; System.out.println&amp;#40;&amp;#34;str2 = &amp;#34; + str2&amp;#41;; &amp;#125; &amp;#125; 后在无数次尝试后得到的结论是：对于String类型，赋值的意思应该是，赋值语句右边的字符串生成一个新串，并把这个新串的引用传递给赋值语句左边String变量。所以变更str2的值后，实际上str2已不再指向str1。 网上的答案与我的猜测类似：string类型是不可改变的，也就是说，当你想改变一个string对象的时候，比如name= [...]&lt;img src=&quot;http://www1.feedsky.com/t1/591463949/airhunter/feedsky/s.gif?r=http://me.airhunter.com/2011/12/29/java%e8%af%ad%e8%a8%80string%e7%9a%84%e8%a7%a3%e6%83%91/&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;</description><category>技术</category><pubDate>Thu, 29 Dec 2011 13:29:17 +0800</pubDate><author>airhunter</author><comments>http://me.airhunter.com/2011/12/29/java%e8%af%ad%e8%a8%80string%e7%9a%84%e8%a7%a3%e6%83%91/#comments</comments><guid isPermaLink="false">http://me.airhunter.com/?p=245</guid><dc:creator>airhunter</dc:creator><fs:srclink>http://me.airhunter.com/2011/12/29/java%e8%af%ad%e8%a8%80string%e7%9a%84%e8%a7%a3%e6%83%91/</fs:srclink><fs:srcfeed>http://me.airhunter.com/feed/</fs:srcfeed><fs:itemid>feedsky/airhunter/~8618382/591463949/6141597</fs:itemid></item><item><title>事情总要给个结局</title><link>http://me.airhunter.com/2010/08/09/%e4%ba%8b%e6%83%85%e6%80%bb%e8%a6%81%e7%bb%99%e4%b8%aa%e7%bb%93%e5%b1%80/</link><content:encoded>&lt;p style=&quot;text-align: left;&quot;&gt;不是我不想写BLOG了，但有时候把一些事情写出来反而让事情变得很糟（迷信想法）。每当偶觉得应该把喜讯让大家分享时，事情就会来个180度大转弯，转到偶不希望发生的那个方向上面（还是迷信想法）。所以我现在都在想是不是应该继续写下去。不过上次的事情还没有结束，所以给个结局吧。&lt;br /&gt;
不用多想就知道又结束了，只能说遇到了不可抗力——MM有男朋友。这次的故事教育我们，不要以为有共同语言就万事大吉了，先确保情报工作做到家。事后害偶伤心了几天，还为此请了一天病假。不过我这个心态的人似乎不适合买醉，所以只能找人聊聊天，希望能转移一下情绪，不过发现一切都是徒劳。&lt;br /&gt;
但怎么说呢，有时心情的变化让你出人意料。正当你觉得寒冬将至时，上帝给了你一根救命的稻草——MM后来的言行让我极度的反感，所以瞬间就心态调整好了。&lt;br /&gt;
事情有坏的一面，也有好的一面。但你如何去看待问题。虽然这个MM不适合偶。但不经意间发现，原来好的MM就在偶身边，只是一直没有发现。&lt;/p&gt;
&lt;p style=&quot;text-align: center;&quot;&gt;《Never Had A Dream Come True》&lt;br /&gt;
——S Club 7&lt;/p&gt;
&lt;p style=&quot;text-align: center;&quot;&gt;&lt;object classid=&quot;clsid:d27cdb6e-ae6d-11cf-96b8-444553540000&quot; width=&quot;257&quot; height=&quot;33&quot; codebase=&quot;http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0&quot;&gt;&lt;param name=&quot;src&quot; value=&quot;http://www.xiami.com/widget/0_185116/singlePlayer.swf&quot; /&gt;&lt;param name=&quot;wmode&quot; value=&quot;transparent&quot; /&gt;&lt;embed type=&quot;application/x-shockwave-flash&quot; width=&quot;257&quot; height=&quot;33&quot; src=&quot;http://www.xiami.com/widget/0_185116/singlePlayer.swf&quot; wmode=&quot;transparent&quot;&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/p&gt;
&lt;p style=&quot;text-align: center;&quot;&gt;Everybody&amp;#8217;s got something&lt;br /&gt;
每个人都有一些&lt;br /&gt;
They had to leave behind&lt;br /&gt;
被迫舍弃的东西&lt;br /&gt;
One regret from yesterday&lt;br /&gt;
昨天的某个遗憾&lt;br /&gt;
That just seems to grow with time&lt;br /&gt;
今天越来越难以释怀。&lt;br /&gt;
There&amp;#8217;s no use looking back or wondering&lt;br /&gt;
回头何用,假设何用&lt;br /&gt;
How it could be now or might have been&lt;br /&gt;
假设终究只是一场空&lt;br /&gt;
All this I know but still I can&amp;#8217;t find ways To let you go&lt;br /&gt;
这些,我全明白，但我无法和你分开。&lt;/p&gt;
&lt;p style=&quot;text-align: center;&quot;&gt;I never had a dream come true&lt;br /&gt;
从未有过梦想成真的感觉&lt;br /&gt;
&amp;#8216;Til the day that I found you&lt;br /&gt;
直到我那天发现了你&lt;br /&gt;
Even though I pretend that I&amp;#8217;ve moved on&lt;br /&gt;
虽然,我假装毫不在乎朝前走，&lt;br /&gt;
You&amp;#8217;ll always be my baby&lt;br /&gt;
你却永远是我的最爱。&lt;br /&gt;
I never found the words to say&lt;br /&gt;
我的心里话无法用语言表达&lt;br /&gt;
You&amp;#8217;re the one I think about each day&lt;br /&gt;
你是我朝思暮想的女孩&lt;br /&gt;
And I know no matter where love takes me to&lt;br /&gt;
我知道无论爱把我带到何方&lt;br /&gt;
A part of me will always be with you, yeah&lt;br /&gt;
我的一部份永远与你同在&lt;/p&gt;
&lt;p style=&quot;text-align: center;&quot;&gt;Somewhere in my memory&lt;br /&gt;
在我记忆的某个地方&lt;br /&gt;
I&amp;#8217;ve lost all sense of time (ah-ha, ha-ha)&lt;br /&gt;
时间已不复存在.&lt;br /&gt;
And tommorow can never be&lt;br /&gt;
似乎永远没有了明天&lt;br /&gt;
&amp;#8216;Cos yesterday is all that fills my mind&lt;br /&gt;
因为昨天占据了我全部的思想&lt;br /&gt;
There&amp;#8217;s no use looking back or wondering&lt;br /&gt;
回头何用,假设何用&lt;br /&gt;
How it should be now or might have been&lt;br /&gt;
假设终究只是一场空&lt;br /&gt;
All this I know but still I can&amp;#8217;t find ways To let you go&lt;br /&gt;
这些,我全明白,但我无法和你分开&lt;/p&gt;
&lt;p style=&quot;text-align: center;&quot;&gt;I never had a dream come true&lt;br /&gt;
从未有过梦想成真的感觉&lt;br /&gt;
&amp;#8216;Til the day that I found you&lt;br /&gt;
直到我那天发现了你&lt;br /&gt;
Even though I pretend that I&amp;#8217;ve moved on&lt;br /&gt;
虽然,我假装毫不在乎朝前走，&lt;br /&gt;
You&amp;#8217;ll always be my baby&lt;br /&gt;
你却永远是我的最爱。&lt;br /&gt;
I never found the words to say&lt;br /&gt;
我的心里话无法用语言表达&lt;br /&gt;
You&amp;#8217;re the one I think about each day&lt;br /&gt;
你是我朝思暮想的女孩&lt;br /&gt;
And I know no matter where love takes me to&lt;br /&gt;
我知道无论爱把我带到何方&lt;br /&gt;
A part of me will always be&lt;br /&gt;
我的一部份永远与你同在&lt;/p&gt;
&lt;p style=&quot;text-align: center;&quot;&gt;You&amp;#8217;ll always be the dream that fills my head&lt;br /&gt;
你永远是我心中全部的梦想&lt;br /&gt;
Yes you will, say you will&lt;br /&gt;
是的,你就是,说吧你就是,你知道&lt;br /&gt;
You know you will, oh baby&lt;br /&gt;
你就是,噢宝贝&lt;br /&gt;
You&amp;#8217;ll always be the one I know I&amp;#8217;ll never forget&lt;br /&gt;
我知道你是我永远不会忘记的恋人&lt;br /&gt;
It&amp;#8217;s no use looking back or wondering&lt;br /&gt;
回头或是假设都无用&lt;br /&gt;
Because love is a strange and funny thing&lt;br /&gt;
因为爱是一件奇怪而有趣的东西&lt;br /&gt;
No matter how I try and try&lt;br /&gt;
无论我如何努力又努力&lt;br /&gt;
I just can&amp;#8217;t say goodbye, no, no, no, no&lt;br /&gt;
我就是无法说分离 ,不,不,不,不&lt;/p&gt;
&lt;p style=&quot;text-align: center;&quot;&gt;I never had a dream come true&lt;br /&gt;
从未有过梦想成真的感觉&lt;br /&gt;
&amp;#8216;Til the day that I found you&lt;br /&gt;
直到我那天发现了你&lt;br /&gt;
Even though I pretend that I&amp;#8217;ve moved on&lt;br /&gt;
虽然,我假装毫不在乎朝前走&lt;br /&gt;
You&amp;#8217;ll always be my baby&lt;br /&gt;
你却永远是我的最爱&lt;br /&gt;
I never found the words&lt;br /&gt;
我的心里话无法用语言表达&lt;br /&gt;
(Never found the words to say) to say You&amp;#8217;re the one I think about each day (each day)&lt;br /&gt;
你是我朝思暮想的女孩&lt;br /&gt;
And I know no matter where love takes me to&lt;br /&gt;
我知道无论爱把我带到何方&lt;br /&gt;
A part of me will always be&lt;br /&gt;
我的一部份永远与你同在&lt;br /&gt;
A part of me will always be with you, ooh&lt;br /&gt;
我的一部份永远和你同在,噢&amp;#8230;.&lt;/p&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/589668945/airhunter/feedsky/s.gif?r=http://me.airhunter.com/2010/08/09/%e4%ba%8b%e6%83%85%e6%80%bb%e8%a6%81%e7%bb%99%e4%b8%aa%e7%bb%93%e5%b1%80/&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;</content:encoded><wfw:commentRss>http://me.airhunter.com/2010/08/09/%e4%ba%8b%e6%83%85%e6%80%bb%e8%a6%81%e7%bb%99%e4%b8%aa%e7%bb%93%e5%b1%80/feed/</wfw:commentRss><slash:comments>0</slash:comments><description>不是我不想写BLOG了，但有时候把一些事情写出来反而让事情变得很糟（迷信想法）。每当偶觉得应该把喜讯让大家分享时，事情就会来个180度大转弯，转到偶不希望发生的那个方向上面（还是迷信想法）。所以我现在都在想是不是应该继续写下去。不过上次的事情还没有结束，所以给个结局吧。 不用多想就知道又结束了，只能说遇到了不可抗力——MM有男朋友。这次的故事教育我们，不要以为有共同语言就万事大吉了，先确保情报工作做到家。事后害偶伤心了几天，还为此请了一天病假。不过我这个心态的人似乎不适合买醉，所以只能找人聊聊天，希望能转移一下情绪，不过发现一切都是徒劳。 但怎么说呢，有时心情的变化让你出人意料。正当你觉得寒冬将至时，上帝给了你一根救命的稻草——MM后来的言行让我极度的反感，所以瞬间就心态调整好了。 事情有坏的一面，也有好的一面。但你如何去看待问题。虽然这个MM不适合偶。但不经意间发现，原来好的MM就在偶身边，只是一直没有发现。 《Never Had A Dream Come True》 ——S Club 7 Everybody&amp;#8217;s got something 每个人都有一些 They had to leave behind 被迫舍弃的东西 One regret from yesterday 昨天的某个遗憾 That just seems to grow with time 今天越来越难以释怀。 There&amp;#8217;s no use looking back or wondering 回头何用,假设何用 How it could be now or might have been 假设终究只是一场空 All [...]&lt;img src=&quot;http://www1.feedsky.com/t1/589668945/airhunter/feedsky/s.gif?r=http://me.airhunter.com/2010/08/09/%e4%ba%8b%e6%83%85%e6%80%bb%e8%a6%81%e7%bb%99%e4%b8%aa%e7%bb%93%e5%b1%80/&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;</description><category>日志</category><pubDate>Mon, 09 Aug 2010 23:29:43 +0800</pubDate><author>airhunter</author><comments>http://me.airhunter.com/2010/08/09/%e4%ba%8b%e6%83%85%e6%80%bb%e8%a6%81%e7%bb%99%e4%b8%aa%e7%bb%93%e5%b1%80/#comments</comments><guid isPermaLink="false">http://blog.airhunter.com/?p=224</guid><dc:creator>airhunter</dc:creator><fs:srclink>http://me.airhunter.com/2010/08/09/%e4%ba%8b%e6%83%85%e6%80%bb%e8%a6%81%e7%bb%99%e4%b8%aa%e7%bb%93%e5%b1%80/</fs:srclink><fs:srcfeed>http://me.airhunter.com/feed/</fs:srcfeed><fs:itemid>feedsky/airhunter/~8618382/589668945/6141597</fs:itemid></item><item><title>第100贴</title><link>http://me.airhunter.com/2010/04/23/%e7%ac%ac100%e8%b4%b4/</link><content:encoded>&lt;p&gt;这是自04年写BLOG以来的第100贴，所以一直很重视，不敢轻意的提笔，结果就是一拖再拖。&lt;br /&gt;
当然被其它事情也的确是耽搁了一下。因为春节时终于找到了一个可爱的MM，其优秀程度远远超越了我的想像力。算是本次春节最大的收获，事实上我们交流的也很不错，节后也约了几次，很有共同语言，基本是不会缺少话题的。不过之后的情况就急转直下，心情不佳，所以一直就拖到现在了。&lt;br /&gt;
这几个月最重要的内容自然就是和MM的相处了，虽然也并没有让情况变得有多好，但总算是止住了这种不佳的局面。从朋友慢慢开始吧……&lt;br /&gt;
就写到这里了，推荐歌的时候到了，这次是我最近刚开始听的旋律死亡风格，没想到也挺好听。&lt;br /&gt;
真是巧，BLOG写到这里，QQ里有个MM有表白倾向了，我明明婉转的拒过一次了，看来有时候人的反应能力还是很迟钝的。晚上又重复了一遍，我想她明白了。希望她还能把偶当朋友，不然我以后每个月的考勤就完蛋了，这也就是我为啥特别不喜欢办公室恋情的原因。&lt;/p&gt;
&lt;p style=&quot;text-align: center;&quot;&gt;＜The Last one for life＞&lt;br /&gt;
&lt;strong&gt;－－&lt;/strong&gt;Eternal Tears Of Sorrow&lt;/p&gt;
&lt;p style=&quot;text-align: center;&quot;&gt;&lt;object classid=&quot;clsid:d27cdb6e-ae6d-11cf-96b8-444553540000&quot; width=&quot;290&quot; height=&quot;40&quot; codebase=&quot;http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0&quot;&gt;&lt;param name=&quot;src&quot; value=&quot;http://www.blogcastone.net/audio/player.swf?soundFile=http%3A%2F%2Ffile.lianpian.com%2FUpload%2FFree%2Fuser%2F2008-1%2F20081221962122524.mp3&amp;amp;playerID=10&amp;amp;bg=0xf8f8f8&amp;amp;leftbg=0xeeeeee&amp;amp;lefticon=0x666666&amp;amp;rightbg=0xcccccc&amp;amp;rightbghover=0x999999&amp;amp;righticon=0x666666&amp;amp;righticonhover=0xffffff&amp;amp;text=0x666666&amp;amp;slider=0x666666&amp;amp;track=0xFFFFFF&amp;amp;border=0x666666&amp;amp;loader=0x9FFFB8&amp;amp;loop=no&amp;amp;autostart=no&quot; /&gt;&lt;param name=&quot;wmode&quot; value=&quot;transparent&quot; /&gt;&lt;embed type=&quot;application/x-shockwave-flash&quot; width=&quot;290&quot; height=&quot;40&quot; src=&quot;http://www.blogcastone.net/audio/player.swf?soundFile=http%3A%2F%2Ffile.lianpian.com%2FUpload%2FFree%2Fuser%2F2008-1%2F20081221962122524.mp3&amp;amp;playerID=10&amp;amp;bg=0xf8f8f8&amp;amp;leftbg=0xeeeeee&amp;amp;lefticon=0x666666&amp;amp;rightbg=0xcccccc&amp;amp;rightbghover=0x999999&amp;amp;righticon=0x666666&amp;amp;righticonhover=0xffffff&amp;amp;text=0x666666&amp;amp;slider=0x666666&amp;amp;track=0xFFFFFF&amp;amp;border=0x666666&amp;amp;loader=0x9FFFB8&amp;amp;loop=no&amp;amp;autostart=no&quot; wmode=&quot;transparent&quot;&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/p&gt;
&lt;p style=&quot;text-align: center;&quot;&gt;I hear the silent whispers,&lt;br /&gt;
Darkness still upon me,&lt;br /&gt;
All those empty words&lt;br /&gt;
from the buried heart&lt;/p&gt;
&lt;p style=&quot;text-align: center;&quot;&gt;I don&amp;#8217;t know where fear ends&lt;br /&gt;
and where hate begins,&lt;br /&gt;
It&amp;#8217;s all the same to me,&lt;br /&gt;
Life is falling apart&lt;/p&gt;
&lt;p style=&quot;text-align: center;&quot;&gt;Hand in hand&amp;#8230;side by side&lt;br /&gt;
I walk with fate in the night&lt;/p&gt;
&lt;p style=&quot;text-align: center;&quot;&gt;The red fluid of life is flowing right along my arms,&lt;br /&gt;
I feel the sweet blade diving deep inside,&lt;br /&gt;
This moment I&amp;#8217;ve been waiting for so long a time,&lt;br /&gt;
when I know the last cut will be for my life&lt;/p&gt;
&lt;p style=&quot;text-align: center;&quot;&gt;I&amp;#8217;ve looked through the eyes of pain&lt;br /&gt;
and seen the smile of death&lt;br /&gt;
I&amp;#8217;ve wandered in the shadows of my fears&lt;/p&gt;
&lt;p style=&quot;text-align: center;&quot;&gt;The feathers of a white dove&lt;br /&gt;
were stained by darkened tears&lt;br /&gt;
The final tune is soon to be played&lt;/p&gt;
&lt;p style=&quot;text-align: center;&quot;&gt;Hand in hand&amp;#8230;side by side&lt;br /&gt;
I walk with death in the night&lt;/p&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/589668946/airhunter/feedsky/s.gif?r=http://me.airhunter.com/2010/04/23/%e7%ac%ac100%e8%b4%b4/&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;</content:encoded><wfw:commentRss>http://me.airhunter.com/2010/04/23/%e7%ac%ac100%e8%b4%b4/feed/</wfw:commentRss><slash:comments>0</slash:comments><description>这是自04年写BLOG以来的第100贴，所以一直很重视，不敢轻意的提笔，结果就是一拖再拖。 当然被其它事情也的确是耽搁了一下。因为春节时终于找到了一个可爱的MM，其优秀程度远远超越了我的想像力。算是本次春节最大的收获，事实上我们交流的也很不错，节后也约了几次，很有共同语言，基本是不会缺少话题的。不过之后的情况就急转直下，心情不佳，所以一直就拖到现在了。 这几个月最重要的内容自然就是和MM的相处了，虽然也并没有让情况变得有多好，但总算是止住了这种不佳的局面。从朋友慢慢开始吧…… 就写到这里了，推荐歌的时候到了，这次是我最近刚开始听的旋律死亡风格，没想到也挺好听。 真是巧，BLOG写到这里，QQ里有个MM有表白倾向了，我明明婉转的拒过一次了，看来有时候人的反应能力还是很迟钝的。晚上又重复了一遍，我想她明白了。希望她还能把偶当朋友，不然我以后每个月的考勤就完蛋了，这也就是我为啥特别不喜欢办公室恋情的原因。 ＜The Last one for life＞ －－Eternal Tears Of Sorrow I hear the silent whispers, Darkness still upon me, All those empty words from the buried heart I don&amp;#8217;t know where fear ends and where hate begins, It&amp;#8217;s all the same to me, Life is falling apart Hand in hand&amp;#8230;side by [...]&lt;img src=&quot;http://www1.feedsky.com/t1/589668946/airhunter/feedsky/s.gif?r=http://me.airhunter.com/2010/04/23/%e7%ac%ac100%e8%b4%b4/&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;</description><category>日志</category><pubDate>Fri, 23 Apr 2010 23:39:24 +0800</pubDate><author>airhunter</author><comments>http://me.airhunter.com/2010/04/23/%e7%ac%ac100%e8%b4%b4/#comments</comments><guid isPermaLink="false">http://blog.airhunter.com/?p=215</guid><dc:creator>airhunter</dc:creator><fs:srclink>http://me.airhunter.com/2010/04/23/%e7%ac%ac100%e8%b4%b4/</fs:srclink><fs:srcfeed>http://me.airhunter.com/feed/</fs:srcfeed><fs:itemid>feedsky/airhunter/~8618382/589668946/6141597</fs:itemid></item><item><title>终于完成搬家了</title><link>http://me.airhunter.com/2010/01/20/%e7%bb%88%e4%ba%8e%e5%ae%8c%e6%88%90%e6%90%ac%e5%ae%b6%e4%ba%86/</link><content:encoded>&lt;p&gt;　　CN域名果然不靠谱，我要还留在万网，用着CN域名的话，那么多半很快就要停网拔网线了。早就想租个虚拟主机玩玩，听说功能丰富，价格很公道。现在用了果然名不虚传，客服也挺热情，就是时差问题比较严重，白天基本找不到活人。&lt;br /&gt;　　现在我在bloger.com的博客基本上已经发布到新的虚拟主机上了，SSH滴功能基本也搞明白了。回头还可以试试其它功能，比如研究一下PHP。&lt;br /&gt;　　目前新的BLOG地址为：&lt;a href=&quot;http://www.airhunter.com/blog&quot;&gt;http://www.airhunter.com/blog&lt;/a&gt;。&lt;br /&gt;　　feedsky和feedburner用户不用修改订阅地址。&lt;br /&gt;　　未来可能还会支持地址：&lt;a href=&quot;http://blog.airhunter.com/&quot;&gt;http://blog.airhunter.com&lt;/a&gt;。不过目前怎么设置还不会，要研究一下。&lt;br /&gt;　　出差了一个季度，回来后又立刻投入到了无尽滴相亲工作中。亲戚、朋友、同事热情的推荐，真是忙不过来啊。看了很多，有些我喜欢的，但我说不出这种喜欢有多强烈，有点犹豫。唉～～推荐歌曲吧。&lt;/p&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;《Wonderful tonight》&lt;br /&gt;Eric Clapton&lt;br /&gt;&lt;embed src=&quot;http://www.blogcastone.net/audio/player.swf?soundFile=http%3A%2F%2Fenergy2000.narod.ru%2FMusa%2FEric_Clapton__Wonderful_Tonight.mp3&amp;amp;playerID=10&amp;amp;bg=0xf8f8f8&amp;amp;leftbg=0xeeeeee&amp;amp;lefticon=0x666666&amp;amp;rightbg=0xcccccc&amp;amp;rightbghover=0x999999&amp;amp;righticon=0x666666&amp;amp;righticonhover=0xffffff&amp;amp;text=0x666666&amp;amp;slider=0x666666&amp;amp;track=0xFFFFFF&amp;amp;border=0x666666&amp;amp;loader=0x9FFFB8&amp;amp;loop=no&amp;amp;autostart=no&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot; height=&quot;40&quot; width=&quot;290&quot;&gt;&lt;/embed&gt;&lt;/p&gt;
&lt;p&gt;It&amp;#8217;s late in the evening(夜色渐浓)&lt;br /&gt;she&amp;#8217;s wondering what close to wear(她还在为如何装扮犹豫不决)&lt;br /&gt;she puts on her make up(选好衣服穿上,薄施粉黛)&lt;br /&gt;and brushes her long blond her(并盘好了那一头漂亮的金发)&lt;br /&gt;and than she ask me: “Do I look allright?”(然后她问我,”这样打扮得合适吗?”)&lt;br /&gt;and I say: “yes, you look wonderful tonight”(我答到:”是的,你今晚看起来很迷人”)&lt;/p&gt;
&lt;p&gt;We go to a party(我们去参加一个晚会)&lt;br /&gt;and everyone turns to see(惹得众人频频侧目)&lt;br /&gt;this beautiful lady(这位美丽的淑女)&lt;br /&gt;is walking around with me(与我结伴款款而行)&lt;br /&gt;and than she ask me: “do you feel allright?”(这时她问我:”你感觉还好吧?”)&lt;br /&gt;and I say: “yes, I feel wonderful tonight”(我回答:”是的,我今晚感觉很不错”)&lt;/p&gt;
&lt;p&gt;I feel wonderful because I see the love(我感觉不错是因为我看到)&lt;br /&gt;lighting in your eyes(在你眼中燃烧着的爱意)&lt;br /&gt;and the wonder of it all(而且我还在想)&lt;br /&gt;is that you just don&amp;#8217;t realize(你可能并不知道)&lt;br /&gt;how much I love you&amp;#8230;.(我到底有多爱你)&lt;/p&gt;
&lt;p&gt;It&amp;#8217;s time to go home now(该回家的时候)&lt;br /&gt;And I&amp;#8217;ve got an aching head(我觉到有点头痛)&lt;br /&gt;so I give her the car keys(因此我给她车钥匙)&lt;br /&gt;and she helps me to bed(她送我回家并扶我上床)&lt;br /&gt;and than I tell her(我告诉她)&lt;br /&gt;as I turn off the light(当我把灯关掉的时候)&lt;br /&gt;I said: “my darling, you are wonderful tonight”(我说:”亲爱的,你今晚很迷人)&lt;br /&gt;“oh my darling, you are wonderful tonight”(哦,我亲爱的,你今晚真的很迷人)&lt;/p&gt;
&lt;p&gt;oh~~~~&lt;/p&gt;&lt;/div&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/589668947/airhunter/feedsky/s.gif?r=http://me.airhunter.com/2010/01/20/%e7%bb%88%e4%ba%8e%e5%ae%8c%e6%88%90%e6%90%ac%e5%ae%b6%e4%ba%86/&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;</content:encoded><wfw:commentRss>http://me.airhunter.com/2010/01/20/%e7%bb%88%e4%ba%8e%e5%ae%8c%e6%88%90%e6%90%ac%e5%ae%b6%e4%ba%86/feed/</wfw:commentRss><slash:comments>0</slash:comments><description>　　CN域名果然不靠谱，我要还留在万网，用着CN域名的话，那么多半很快就要停网拔网线了。早就想租个虚拟主机玩玩，听说功能丰富，价格很公道。现在用了果然名不虚传，客服也挺热情，就是时差问题比较严重，白天基本找不到活人。　　现在我在bloger.com的博客基本上已经发布到新的虚拟主机上了，SSH滴功能基本也搞明白了。回头还可以试试其它功能，比如研究一下PHP。　　目前新的BLOG地址为：http://www.airhunter.com/blog。　　feedsky和feedburner用户不用修改订阅地址。　　未来可能还会支持地址：http://blog.airhunter.com。不过目前怎么设置还不会，要研究一下。　　出差了一个季度，回来后又立刻投入到了无尽滴相亲工作中。亲戚、朋友、同事热情的推荐，真是忙不过来啊。看了很多，有些我喜欢的，但我说不出这种喜欢有多强烈，有点犹豫。唉～～推荐歌曲吧。 《Wonderful tonight》Eric Clapton It&amp;#8217;s late in the evening(夜色渐浓)she&amp;#8217;s wondering what close to wear(她还在为如何装扮犹豫不决)she puts on her make up(选好衣服穿上,薄施粉黛)and brushes her long blond her(并盘好了那一头漂亮的金发)and than she ask me: “Do I look allright?”(然后她问我,”这样打扮得合适吗?”)and I say: “yes, you look wonderful tonight”(我答到:”是的,你今晚看起来很迷人”) We go to a party(我们去参加一个晚会)and everyone turns to see(惹得众人频频侧目)this beautiful lady(这位美丽的淑女)is walking around with me(与我结伴款款而行)and than [...]&lt;img src=&quot;http://www1.feedsky.com/t1/589668947/airhunter/feedsky/s.gif?r=http://me.airhunter.com/2010/01/20/%e7%bb%88%e4%ba%8e%e5%ae%8c%e6%88%90%e6%90%ac%e5%ae%b6%e4%ba%86/&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;</description><category>日志</category><pubDate>Wed, 20 Jan 2010 22:40:00 +0800</pubDate><author>airhunter</author><comments>http://me.airhunter.com/2010/01/20/%e7%bb%88%e4%ba%8e%e5%ae%8c%e6%88%90%e6%90%ac%e5%ae%b6%e4%ba%86/#comments</comments><guid isPermaLink="false">http://wordpress.airhunter.com/?p=102</guid><dc:creator>airhunter</dc:creator><fs:srclink>http://me.airhunter.com/2010/01/20/%e7%bb%88%e4%ba%8e%e5%ae%8c%e6%88%90%e6%90%ac%e5%ae%b6%e4%ba%86/</fs:srclink><fs:srcfeed>http://me.airhunter.com/feed/</fs:srcfeed><fs:itemid>feedsky/airhunter/~8618382/589668947/6141597</fs:itemid></item><item><title>终于又能更新了</title><link>http://me.airhunter.com/2009/10/09/%e7%bb%88%e4%ba%8e%e5%8f%88%e8%83%bd%e6%9b%b4%e6%96%b0%e4%ba%86/</link><content:encoded>&lt;p&gt;　　没想到最近GFW的升级动作挺大的，现在要穿墙特不容易。害偶现在要穿墙出来更新BLOG也难，没想到最好用的TOR也差点不灵了，现在能到墙外的工具真是越来越少了。&lt;br /&gt;  　　最近也就没出几件事，不过事情都挺大滴。第一件么，就是终于、最终、结果……还是和设计师MM分手了。不过考虑到我之前做了这么多的伏笔，应该也是能料到的吧。&lt;br /&gt;  　　另一件大事么，自然是房子终于搞定，住了进来。基本还算满意，只是没想到离外环这么近。晚上的车流有点小烦，但新房的优点总比缺点多，至少不用看房东的脸色了。&lt;br /&gt;  　　然后么上厦门出差了两个月，领导到是挺照顾偶的说。算是旅游吧～～不过偶已经去了两个月了，玩得也差不多了，结果过完节还要去，真没劲。&lt;br /&gt;  　　大概是年龄差不多了，又或者其它啥原因～～最近几个月相亲或者介绍过来的MM越来越多，加之偶最近两个月的出差，竟然现在积压了。到现在都没把MM一个个见过来。现在又要出差，看来得到11月份来完成这件工作了。&lt;br /&gt;  　　推荐歌曲时间，难得换个流行乐吧。Maria Arredondo的＜Burning＞。算是天籟一类的～～
&lt;div style=&quot;text-align: center;&quot;&gt;＜Burning＞&lt;br /&gt;Maria Arredondo&lt;br /&gt;&lt;embed src=&quot;http://www.blogcastone.net/audio/player.swf?soundFile=http%3A%2F%2Fmusic.hhtsg.cn%2FUploadFiles%2FArticle%2F2009%2F5%2F200952414227.mp3&amp;#038;playerID=10&amp;#038;bg=0xf8f8f8&amp;#038;leftbg=0xeeeeee&amp;#038;lefticon=0x666666&amp;#038;rightbg=0xcccccc&amp;#038;rightbghover=0x999999&amp;#038;righticon=0x666666&amp;#038;righticonhover=0xffffff&amp;#038;text=0x666666&amp;#038;slider=0x666666&amp;#038;track=0xFFFFFF&amp;#038;border=0x666666&amp;#038;loader=0x9FFFB8&amp;#038;loop=no&amp;#038;autostart=no&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot; height=&quot;40&quot; width=&quot;290&quot;&gt;&lt;/embed&gt;&lt;/p&gt;
&lt;p&gt;Passion is sweet 激情令人幸福&lt;br /&gt;Love makes weak 爱情令人脆弱&lt;br /&gt;You said you cherished freedom  你曾说过自由至上&lt;br /&gt;so You refuse to let it go 因此你不愿被束缚&lt;/p&gt;
&lt;p&gt;Follow your fate 命中注定&lt;br /&gt;Love and hate 爱恨情仇&lt;br /&gt;Never fail to seize the day 日夜追逐你的梦想&lt;br /&gt;But don&amp;#8217;t give yourself away 从未放弃&lt;/p&gt;
&lt;p&gt;Oh when the night falls 噢 当夜幕降临&lt;br /&gt;And your all alone 你孤身一人&lt;br /&gt;In your deepest sleep  在你沉睡之时&lt;br /&gt;what Are you dreaming of 你梦见了什么&lt;/p&gt;
&lt;p&gt;My skin&amp;#8217;s still burning from your touch 肌肤之亲 让我陶醉&lt;br /&gt;Oh I just can&amp;#8217;t get enough 噢 我却无法满足&lt;br /&gt;I Said I wouldn&amp;#8217;t ask for much 曾答应不再向你索取&lt;br /&gt;But your eyes are dangerous 然而 你的眼神摄人心魄&lt;br /&gt;so the thought keep spinning in my head 对你的思念挥之不去&lt;br /&gt;Can we drop this masquerade 我们可否坦诚相对&lt;br /&gt;I can&amp;#8217;t predict where it ends 纵使结局无法预料&lt;br /&gt;If your the rock I&amp;#8217;ll crush against 我仍旧甘愿飞蛾扑火&lt;/p&gt;
&lt;p&gt;Trapped in a crowd 置身于茫茫人海之中&lt;br /&gt;The music is loud 乐声噪杂&lt;br /&gt;I said I love my freedom too 我曾说过 我同样珍爱自由&lt;br /&gt;Now I&amp;#8217;m not sure I do 现今却不置可否&lt;/p&gt;
&lt;p&gt;All eyes on you 视线被你占据&lt;br /&gt;Rings so true 我 已经看清一切&lt;br /&gt;Better quit while you&amp;#8217;re ahead 感情深入之时 却是分手之日&lt;br /&gt;Now I&amp;#8217;m not so sure I am 然而我却无法做到&lt;/p&gt;
&lt;p&gt;Oh when the night falls 噢 当夜幕降临&lt;br /&gt;And your all alone 你孤身一人&lt;br /&gt;In your deepest sleep  在你沉睡之时&lt;br /&gt;what Are you dreaming of 你梦见了什么&lt;/p&gt;
&lt;p&gt;My skin&amp;#8217;s still burning from your touch 肌肤之亲 让我陶醉&lt;br /&gt;Oh I just can&amp;#8217;t get enough  噢 我却无法满足&lt;br /&gt;I Said I wouldn&amp;#8217;t ask for much 曾答应不再向你索取&lt;br /&gt;But your eyes are dangerous 然而 你的眼神摄人心魄&lt;br /&gt;so the thought keep spinning in my head 对你的思念挥之不去&lt;br /&gt;Can we drop this masquerade 我们可否坦诚相对&lt;br /&gt;I can&amp;#8217;t predict where it ends 纵使结局无法预料&lt;br /&gt;If you&amp;#8217;re the rock I&amp;#8217;ll crush against 我仍旧甘愿飞蛾扑火&lt;/p&gt;
&lt;p&gt;My soul my heart 我的灵魂 我的芳心&lt;br /&gt;If you&amp;#8217;re near if you&amp;#8217;re far 无论你近在咫尺或是远在天涯&lt;br /&gt;My life my love 我的生命 我的至爱&lt;br /&gt;You can have it all&amp;#8230;.请一并带走&lt;/p&gt;
&lt;p&gt;oh~ e~&lt;/p&gt;
&lt;p&gt;Oh when the night falls 噢 当夜幕降临&lt;br /&gt;And your all alone 你孤身一人&lt;br /&gt;In your deepest sleep  在你沉睡之时&lt;br /&gt;what Are you dreaming of 你梦见了什么&lt;/p&gt;
&lt;p&gt;My skin&amp;#8217;s still burning from your touch 肌肤之亲 让我陶醉&lt;br /&gt;Oh I just can&amp;#8217;t get enough  噢 我却无法满足&lt;br /&gt;I Said I wouldn&amp;#8217;t ask for much 曾答应不再向你索取&lt;br /&gt;But your eyes are dangerous 然而 你的眼神摄人心魄&lt;br /&gt;so the thought keep spinning in my head 对你的思念挥之不去&lt;br /&gt;Can we drop this masquerade 我们可否坦诚相对&lt;br /&gt;I can&amp;#8217;t predict where it ends 纵使结局无法预料&lt;br /&gt;If your the rock I&amp;#8217;ll crush against 我仍旧甘愿飞蛾扑火&lt;/p&gt;
&lt;p&gt;oh, if your the rock I&amp;#8217;ll crush against 我仍旧甘愿飞蛾扑火 &lt;/p&gt;&lt;/div&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/589668948/airhunter/feedsky/s.gif?r=http://me.airhunter.com/2009/10/09/%e7%bb%88%e4%ba%8e%e5%8f%88%e8%83%bd%e6%9b%b4%e6%96%b0%e4%ba%86/&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;</content:encoded><wfw:commentRss>http://me.airhunter.com/2009/10/09/%e7%bb%88%e4%ba%8e%e5%8f%88%e8%83%bd%e6%9b%b4%e6%96%b0%e4%ba%86/feed/</wfw:commentRss><slash:comments>1</slash:comments><description>　　没想到最近GFW的升级动作挺大的，现在要穿墙特不容易。害偶现在要穿墙出来更新BLOG也难，没想到最好用的TOR也差点不灵了，现在能到墙外的工具真是越来越少了。 　　最近也就没出几件事，不过事情都挺大滴。第一件么，就是终于、最终、结果……还是和设计师MM分手了。不过考虑到我之前做了这么多的伏笔，应该也是能料到的吧。 　　另一件大事么，自然是房子终于搞定，住了进来。基本还算满意，只是没想到离外环这么近。晚上的车流有点小烦，但新房的优点总比缺点多，至少不用看房东的脸色了。 　　然后么上厦门出差了两个月，领导到是挺照顾偶的说。算是旅游吧～～不过偶已经去了两个月了，玩得也差不多了，结果过完节还要去，真没劲。 　　大概是年龄差不多了，又或者其它啥原因～～最近几个月相亲或者介绍过来的MM越来越多，加之偶最近两个月的出差，竟然现在积压了。到现在都没把MM一个个见过来。现在又要出差，看来得到11月份来完成这件工作了。 　　推荐歌曲时间，难得换个流行乐吧。Maria Arredondo的＜Burning＞。算是天籟一类的～～ ＜Burning＞Maria Arredondo Passion is sweet 激情令人幸福Love makes weak 爱情令人脆弱You said you cherished freedom 你曾说过自由至上so You refuse to let it go 因此你不愿被束缚 Follow your fate 命中注定Love and hate 爱恨情仇Never fail to seize the day 日夜追逐你的梦想But don&amp;#8217;t give yourself away 从未放弃 Oh when the night falls 噢 当夜幕降临And your all [...]&lt;img src=&quot;http://www1.feedsky.com/t1/589668948/airhunter/feedsky/s.gif?r=http://me.airhunter.com/2009/10/09/%e7%bb%88%e4%ba%8e%e5%8f%88%e8%83%bd%e6%9b%b4%e6%96%b0%e4%ba%86/&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;</description><category>日志</category><pubDate>Fri, 09 Oct 2009 22:00:00 +0800</pubDate><author>airhunter</author><comments>http://me.airhunter.com/2009/10/09/%e7%bb%88%e4%ba%8e%e5%8f%88%e8%83%bd%e6%9b%b4%e6%96%b0%e4%ba%86/#comments</comments><guid isPermaLink="false">http://wordpress.airhunter.com/?p=101</guid><dc:creator>airhunter</dc:creator><fs:srclink>http://me.airhunter.com/2009/10/09/%e7%bb%88%e4%ba%8e%e5%8f%88%e8%83%bd%e6%9b%b4%e6%96%b0%e4%ba%86/</fs:srclink><fs:srcfeed>http://me.airhunter.com/feed/</fs:srcfeed><fs:itemid>feedsky/airhunter/~8618382/589668948/6141597</fs:itemid></item><item><title>五月份很胸闷</title><link>http://me.airhunter.com/2009/06/07/%e4%ba%94%e6%9c%88%e4%bb%bd%e5%be%88%e8%83%b8%e9%97%b7/</link><content:encoded>&lt;p&gt;　　五月份挺糟的，真的很糟。国事方面前有欺实马，后有邓玉娇。家事方面和女朋友的关系终于降至冰点，这下夏天凉快了。还没有到分手的地步，但我觉得基本没啥希望了。从大方面来总结就是性格不合。后续还有很多事情要搞定，比如户口、房子等。先把这些靠谱的事做做完。&lt;br /&gt;　　今天更新BLOG也真够复杂的，blogger.com被封了，Filckr.com被封了。而偶在Ubuntu下Your Freedom又总是配置不好，最后终于找到一个速度不错的网页代理先把Blog更新掉，不然这里还要长草了。&lt;br /&gt;　　五月也有好的一小方面，终于出去旅游了一下，拍了不少照片，感觉水平小有进步，可惜现在不知道怎么把照片传上来，不然就可以让大家点评一下。&lt;br /&gt;　　最后推荐歌曲吧～～Theatre Of Tragedy的《Storm》。我很喜欢这个乐队的女主唱（不过现在这个女主唱离队了）&lt;/p&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;《Storm》&lt;br /&gt;Theatre Of Tragedy&lt;br /&gt;&lt;embed src=&quot;http://www.blogcastone.net/audio/player.swf?soundFile=http%3A%2F%2F008.org.cn%2Fup%2Ftheatre%2520of%2520tragedy%2520-%2520storm.mp3&amp;#038;playerID=10&amp;#038;bg=0xf8f8f8&amp;#038;leftbg=0xeeeeee&amp;#038;lefticon=0x666666&amp;#038;rightbg=0xcccccc&amp;#038;rightbghover=0x999999&amp;#038;righticon=0x666666&amp;#038;righticonhover=0xffffff&amp;#038;text=0x666666&amp;#038;slider=0x666666&amp;#038;track=0xFFFFFF&amp;#038;border=0x666666&amp;#038;loader=0x9FFFB8&amp;#038;loop=no&amp;#038;autostart=no&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot; height=&quot;40&quot; width=&quot;290&quot;&gt;&lt;/embed&gt;&lt;br /&gt;Can you see the storm getting closer now?&lt;br /&gt;Tell me how it feels being out there&lt;/p&gt;
&lt;p&gt;A moment&amp;#8217;s glimpse of his vignette&lt;br /&gt;As he shone a light on the falling wall&lt;br /&gt;Instant pictures form shattered persons&lt;br /&gt;Whenever he leaves there&amp;#8217;s a tainted mark&lt;br /&gt;Flashbacks of his stark sleep filter out through smoke&lt;br /&gt;Revoking from the past things less provoked&lt;br /&gt;Any which day, there is no relief&lt;br /&gt;Adhesive words, spoken silently&lt;br /&gt;The shattered man&lt;/p&gt;
&lt;p&gt;Can you see the storm getting closer now?&lt;br /&gt;Tell me how it feels being out there&lt;br /&gt;I want to stay with you, and I see it clear now&lt;br /&gt;You are giving me no choice&lt;br /&gt;Let the rain pour down&lt;/p&gt;
&lt;p&gt;He&amp;#8217;s holding for the moment of the fall&lt;br /&gt;Stolen knowledge by minds unformed&lt;br /&gt;Regulate the demolition of annexe for the differing thoughts&lt;br /&gt;Discarded sparks left years ago&lt;br /&gt;Evoked a language much more austere&lt;br /&gt;Reverberating with figments&lt;br /&gt;He left a trace of translucence&lt;/p&gt;
&lt;p&gt;Shattered man&lt;br /&gt;There&amp;#8217;s a shattered man in a shattered land&lt;/div&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/589668949/airhunter/feedsky/s.gif?r=http://me.airhunter.com/2009/06/07/%e4%ba%94%e6%9c%88%e4%bb%bd%e5%be%88%e8%83%b8%e9%97%b7/&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;</content:encoded><wfw:commentRss>http://me.airhunter.com/2009/06/07/%e4%ba%94%e6%9c%88%e4%bb%bd%e5%be%88%e8%83%b8%e9%97%b7/feed/</wfw:commentRss><slash:comments>0</slash:comments><description>　　五月份挺糟的，真的很糟。国事方面前有欺实马，后有邓玉娇。家事方面和女朋友的关系终于降至冰点，这下夏天凉快了。还没有到分手的地步，但我觉得基本没啥希望了。从大方面来总结就是性格不合。后续还有很多事情要搞定，比如户口、房子等。先把这些靠谱的事做做完。　　今天更新BLOG也真够复杂的，blogger.com被封了，Filckr.com被封了。而偶在Ubuntu下Your Freedom又总是配置不好，最后终于找到一个速度不错的网页代理先把Blog更新掉，不然这里还要长草了。　　五月也有好的一小方面，终于出去旅游了一下，拍了不少照片，感觉水平小有进步，可惜现在不知道怎么把照片传上来，不然就可以让大家点评一下。　　最后推荐歌曲吧～～Theatre Of Tragedy的《Storm》。我很喜欢这个乐队的女主唱（不过现在这个女主唱离队了） 《Storm》Theatre Of TragedyCan you see the storm getting closer now?Tell me how it feels being out there A moment&amp;#8217;s glimpse of his vignetteAs he shone a light on the falling wallInstant pictures form shattered personsWhenever he leaves there&amp;#8217;s a tainted markFlashbacks of his stark sleep filter out through smokeRevoking from the [...]&lt;img src=&quot;http://www1.feedsky.com/t1/589668949/airhunter/feedsky/s.gif?r=http://me.airhunter.com/2009/06/07/%e4%ba%94%e6%9c%88%e4%bb%bd%e5%be%88%e8%83%b8%e9%97%b7/&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;</description><category>日志</category><pubDate>Sun, 07 Jun 2009 21:50:00 +0800</pubDate><author>airhunter</author><comments>http://me.airhunter.com/2009/06/07/%e4%ba%94%e6%9c%88%e4%bb%bd%e5%be%88%e8%83%b8%e9%97%b7/#comments</comments><guid isPermaLink="false">http://wordpress.airhunter.com/?p=100</guid><dc:creator>airhunter</dc:creator><fs:srclink>http://me.airhunter.com/2009/06/07/%e4%ba%94%e6%9c%88%e4%bb%bd%e5%be%88%e8%83%b8%e9%97%b7/</fs:srclink><fs:srcfeed>http://me.airhunter.com/feed/</fs:srcfeed><fs:itemid>feedsky/airhunter/~8618382/589668949/6141597</fs:itemid></item><item><title>追MM是一件让人头大的事情</title><link>http://me.airhunter.com/2009/04/15/%e8%bf%bdmm%e6%98%af%e4%b8%80%e4%bb%b6%e8%ae%a9%e4%ba%ba%e5%a4%b4%e5%a4%a7%e7%9a%84%e4%ba%8b%e6%83%85/</link><content:encoded>&lt;p&gt;　　这几个星期和美女处得似乎是越来越好，感觉气氛正在朝着情侣的方向发展，眼看着就快要离开“关系模糊”的状态了，至少截止到周未为止还是如此。&lt;br /&gt;　　到了这周心情大好，自然精神也不错。不过可惜，好情况似乎也没保持多久，现在一下子变得又模糊起来。今天已经周三了，还没见到一次美女，貌似美女又回到了过去那种每晚都有活动的状态中去了。无语了……美女到是挺能适应这种变来变去的状况。不过我就适应不过来了，现在晚上无聊得没事干，不然也就不会在这里更新BLOG了。希望这些胸闷的日子赶快过去，我不想频繁更新BLOG。&lt;br /&gt;　　得，继续推荐音乐吧，想想……思考……心情不好，推荐个悠郁的歌。Xandria的Eversleeping。&lt;/p&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;《Eversleeping》&lt;br /&gt;——Xandria&lt;br /&gt;&lt;embed lk_media=&quot;yes&quot; lk_mediaid=&quot;lk_juiceapp_mediaPopup_1239119768603&quot; src=&quot;http://www.blogcastone.net/audio/player.swf?soundFile=http%3A%2F%2Fwww.zixiang.com.cn%2Feversleeping.mp3&amp;amp;playerID=10&amp;amp;bg=0xf8f8f8&amp;amp;leftbg=0xeeeeee&amp;amp;lefticon=0x666666&amp;amp;rightbg=0xcccccc&amp;amp;rightbghover=0x999999&amp;amp;righticon=0x666666&amp;amp;righticonhover=0xffffff&amp;amp;text=0x666666&amp;amp;slider=0x666666&amp;amp;track=0xFFFFFF&amp;amp;border=0x666666&amp;amp;loader=0x9FFFB8&amp;amp;loop=no&amp;amp;autostart=no&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot; width=&quot;290&quot; height=&quot;40&quot;&gt;&lt;/embed&gt;&lt;br /&gt;&lt;strong&gt;&lt;/strong&gt;Once I travelled 7 seas to find my love&lt;br /&gt;And once I sang 700 songs&lt;br /&gt;Well, maybe I still have to walk 7000 miles&lt;br /&gt;Until I find the one that I belong&lt;/p&gt;
&lt;p&gt;I will rest my head side by side&lt;br /&gt;To the one that stays in the night&lt;br /&gt;I will lose my breath in my last words of sorrow&lt;br /&gt;And whatever comes will come soon&lt;br /&gt;Dying I will pray to the moon&lt;br /&gt;That there once will be a better tomorrow&lt;/p&gt;
&lt;p&gt;Once I crossed 7 rivers to find my love&lt;br /&gt;And once, for 7 years, I forgot my name&lt;br /&gt;Well, if I have to I will die 7 deaths just to lie&lt;br /&gt;In the arms of my eversleeping aim&lt;/p&gt;
&lt;p&gt;I will rest my head side by side&lt;br /&gt;To the one that stays in the night&lt;br /&gt;I will lose my breath in my last words of sorrow&lt;br /&gt;And whatever comes will come soon&lt;br /&gt;Dying I will pray to the moon&lt;br /&gt;That there once will be a better tomorrow (x2)&lt;/p&gt;
&lt;p&gt;I dreamt last night that he came to me&lt;br /&gt;He said: “My love, why do you cry?”&lt;br /&gt;For now it won&amp;#8217;t be long any more&lt;br /&gt;Until in my cold grave we will lie&lt;br /&gt;Until in my cold grave we will lie&lt;/div&gt;</content:encoded><wfw:commentRss>http://me.airhunter.com/2009/04/15/%e8%bf%bdmm%e6%98%af%e4%b8%80%e4%bb%b6%e8%ae%a9%e4%ba%ba%e5%a4%b4%e5%a4%a7%e7%9a%84%e4%ba%8b%e6%83%85/feed/</wfw:commentRss><slash:comments>1</slash:comments><description>　　这几个星期和美女处得似乎是越来越好，感觉气氛正在朝着情侣的方向发展，眼看着就快要离开“关系模糊”的状态了，至少截止到周未为止还是如此。　　到了这周心情大好，自然精神也不错。不过可惜，好情况似乎也没保持多久，现在一下子变得又模糊起来。今天已经周三了，还没见到一次美女，貌似美女又回到了过去那种每晚都有活动的状态中去了。无语了……美女到是挺能适应这种变来变去的状况。不过我就适应不过来了，现在晚上无聊得没事干，不然也就不会在这里更新BLOG了。希望这些胸闷的日子赶快过去，我不想频繁更新BLOG。　　得，继续推荐音乐吧，想想……思考……心情不好，推荐个悠郁的歌。Xandria的Eversleeping。 《Eversleeping》——XandriaOnce I travelled 7 seas to find my loveAnd once I sang 700 songsWell, maybe I still have to walk 7000 milesUntil I find the one that I belong I will rest my head side by sideTo the one that stays in the nightI will lose my breath in my last words of sorrowAnd [...]</description><category>日志</category><pubDate>Wed, 15 Apr 2009 22:28:00 +0800</pubDate><author>airhunter</author><comments>http://me.airhunter.com/2009/04/15/%e8%bf%bdmm%e6%98%af%e4%b8%80%e4%bb%b6%e8%ae%a9%e4%ba%ba%e5%a4%b4%e5%a4%a7%e7%9a%84%e4%ba%8b%e6%83%85/#comments</comments><guid isPermaLink="false">http://wordpress.airhunter.com/?p=99</guid><dc:creator>airhunter</dc:creator><fs:srclink>http://me.airhunter.com/2009/04/15/%e8%bf%bdmm%e6%98%af%e4%b8%80%e4%bb%b6%e8%ae%a9%e4%ba%ba%e5%a4%b4%e5%a4%a7%e7%9a%84%e4%ba%8b%e6%83%85/</fs:srclink><fs:srcfeed>http://me.airhunter.com/feed/</fs:srcfeed><fs:itemid>feedsky/airhunter/~8618382/589668950/6141597</fs:itemid></item><item><title>虽不理想，但总算是解除了警报</title><link>http://me.airhunter.com/2009/04/06/%e8%99%bd%e4%b8%8d%e7%90%86%e6%83%b3%ef%bc%8c%e4%bd%86%e6%80%bb%e7%ae%97%e6%98%af%e8%a7%a3%e9%99%a4%e4%ba%86%e8%ad%a6%e6%8a%a5/</link><content:encoded>&lt;p&gt;　　此贴本来应该写在三月份，不过那时偶正在为了偶滴情感世界而每日早出晚归，也就没那精神写BLOG了。&lt;br /&gt;　　此标题基本总结了最近的状况，进展还是很慢的，目前大约停留在“脱离朋友”与“关系模糊”之间吧。自己最近的学习体会就是：两个世界的人要走到一起还是挺辛苦的。&lt;br /&gt;　　不写了，推荐歌曲了。这次推荐个幽怨一些的～～当然还是金属乐。歌曲始终找不到下载的地方，只要暂时上传到自己的空间里了，不过速度好像不错哦。&lt;/p&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;＜Everything＞&lt;br /&gt;Mortal Love&lt;br /&gt;&lt;embed lk_media=&quot;yes&quot; lk_mediaid=&quot;lk_juiceapp_mediaPopup_1239119768603&quot; src=&quot;http://www.blogcastone.net/audio/player.swf?soundFile=http%3A%2F%2Fairhunter.cn%2Fmp3%2F12.Everything.mp3&amp;amp;playerID=10&amp;amp;bg=0xf8f8f8&amp;amp;leftbg=0xeeeeee&amp;amp;lefticon=0x666666&amp;amp;rightbg=0xcccccc&amp;amp;rightbghover=0x999999&amp;amp;righticon=0x666666&amp;amp;righticonhover=0xffffff&amp;amp;text=0x666666&amp;amp;slider=0x666666&amp;amp;track=0xFFFFFF&amp;amp;border=0x666666&amp;amp;loader=0x9FFFB8&amp;amp;loop=no&amp;amp;autostart=no&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot; width=&quot;290&quot; height=&quot;40&quot;&gt;&lt;/embed&gt;&lt;/p&gt;
&lt;p&gt;Everything I tried to be&lt;br /&gt;Let the poison into me&lt;br /&gt;All the beauty my sins cost&lt;br /&gt;Everything that I have lost&lt;/p&gt;
&lt;p&gt;Everything I tried to do&lt;br /&gt;Whispered me away from you&lt;br /&gt;If you and I cannot be one&lt;br /&gt;Then forever will be gone&lt;/p&gt;
&lt;p&gt;Now that I have lost everything&lt;/p&gt;
&lt;p&gt;My heart in silence weeps&lt;/p&gt;
&lt;p&gt;You are present in my sleep&lt;br /&gt;You haunt me when I&amp;#8217;m awake&lt;br /&gt;My thoughts you always seem to keep&lt;br /&gt;Is it too late?&lt;/div&gt;</content:encoded><wfw:commentRss>http://me.airhunter.com/2009/04/06/%e8%99%bd%e4%b8%8d%e7%90%86%e6%83%b3%ef%bc%8c%e4%bd%86%e6%80%bb%e7%ae%97%e6%98%af%e8%a7%a3%e9%99%a4%e4%ba%86%e8%ad%a6%e6%8a%a5/feed/</wfw:commentRss><slash:comments>0</slash:comments><description>　　此贴本来应该写在三月份，不过那时偶正在为了偶滴情感世界而每日早出晚归，也就没那精神写BLOG了。　　此标题基本总结了最近的状况，进展还是很慢的，目前大约停留在“脱离朋友”与“关系模糊”之间吧。自己最近的学习体会就是：两个世界的人要走到一起还是挺辛苦的。　　不写了，推荐歌曲了。这次推荐个幽怨一些的～～当然还是金属乐。歌曲始终找不到下载的地方，只要暂时上传到自己的空间里了，不过速度好像不错哦。 ＜Everything＞Mortal Love Everything I tried to beLet the poison into meAll the beauty my sins costEverything that I have lost Everything I tried to doWhispered me away from youIf you and I cannot be oneThen forever will be gone Now that I have lost everything My heart in silence weeps You are present in [...]</description><category>日志</category><pubDate>Mon, 06 Apr 2009 13:37:00 +0800</pubDate><author>airhunter</author><comments>http://me.airhunter.com/2009/04/06/%e8%99%bd%e4%b8%8d%e7%90%86%e6%83%b3%ef%bc%8c%e4%bd%86%e6%80%bb%e7%ae%97%e6%98%af%e8%a7%a3%e9%99%a4%e4%ba%86%e8%ad%a6%e6%8a%a5/#comments</comments><guid isPermaLink="false">http://wordpress.airhunter.com/?p=98</guid><dc:creator>airhunter</dc:creator><fs:srclink>http://me.airhunter.com/2009/04/06/%e8%99%bd%e4%b8%8d%e7%90%86%e6%83%b3%ef%bc%8c%e4%bd%86%e6%80%bb%e7%ae%97%e6%98%af%e8%a7%a3%e9%99%a4%e4%ba%86%e8%ad%a6%e6%8a%a5/</fs:srclink><fs:srcfeed>http://me.airhunter.com/feed/</fs:srcfeed><fs:itemid>feedsky/airhunter/~8618382/589668951/6141597</fs:itemid></item><item><title>新年第一贴</title><link>http://me.airhunter.com/2009/02/08/%e6%96%b0%e5%b9%b4%e7%ac%ac%e4%b8%80%e8%b4%b4/</link><content:encoded>&lt;p&gt;　　假期总是太短暂，这不现在都上班一周了。本以为今年的春节会特别一些，但很可惜，和我之前的那些春节没什么区别，一切都平淡的像白开水。&lt;br /&gt;　　感情方面么，以最近一段时间来看，极为不乐观。虽然一直在接触，但始终是没有进展了。一方面可能是自己经验不足，不过到今天又知道了另一个原因，使我更觉得前景不妙。&lt;br /&gt;　　工作方面情况更糟，一上班就开始加班生活，下周更是要连续工作14天。&lt;br /&gt;　　更新到此结束，实际上这次BLOG更新主要是为了推荐歌曲的。如果一直关注这里的人一定记得N久之前推荐过一首《She&amp;#8217;s gone》(不记得的可以查一下我o7年6月的BLOG)。这次推荐的《Cry》我觉得就是女生版的《She&amp;#8217;s gone》，歌曲通过短短的几句歌词，就把那种悲伤的感情完全的体现了出来。
&lt;div style=&quot;text-align: center;&quot;&gt;《Cry》&lt;br /&gt;Nemesea&lt;br /&gt;&lt;embed src=&quot;http://www.blogcastone.net/audio/player.swf?soundFile=http%3A%2F%2Fvfile.home.news.cn%2Fmusic%2Fpublic%2Fvd2%2F200810%2F08%2F2c%2FMUfs0220081008110511522c4e5f.mp3&amp;#038;playerID=10&amp;#038;bg=0xf8f8f8&amp;#038;leftbg=0xeeeeee&amp;#038;lefticon=0x666666&amp;#038;rightbg=0xcccccc&amp;#038;rightbghover=0x999999&amp;#038;righticon=0x666666&amp;#038;righticonhover=0xffffff&amp;#038;text=0x666666&amp;#038;slider=0x666666&amp;#038;track=0xFFFFFF&amp;#038;border=0x666666&amp;#038;loader=0x9FFFB8&amp;#038;loop=no&amp;#038;autostart=no&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot; height=&quot;40&quot; width=&quot;290&quot;&gt;&lt;/embed&gt;&lt;/p&gt;
&lt;p&gt;I cannot go on without you&lt;br /&gt;But I know you&amp;#8217;ll stay on my mind&lt;/p&gt;
&lt;p&gt;I cry&lt;br /&gt;I still cry&lt;br /&gt;Cry for you&lt;br /&gt;my love&lt;/p&gt;
&lt;p&gt;You won&amp;#8217;t return&lt;br /&gt;But I miss you still&lt;br /&gt;So I cry&lt;br /&gt;I still cry&lt;br /&gt;Cry for you&lt;br /&gt;my love&amp;#8230;&lt;/div&gt;</content:encoded><wfw:commentRss>http://me.airhunter.com/2009/02/08/%e6%96%b0%e5%b9%b4%e7%ac%ac%e4%b8%80%e8%b4%b4/feed/</wfw:commentRss><slash:comments>1</slash:comments><description>　　假期总是太短暂，这不现在都上班一周了。本以为今年的春节会特别一些，但很可惜，和我之前的那些春节没什么区别，一切都平淡的像白开水。　　感情方面么，以最近一段时间来看，极为不乐观。虽然一直在接触，但始终是没有进展了。一方面可能是自己经验不足，不过到今天又知道了另一个原因，使我更觉得前景不妙。　　工作方面情况更糟，一上班就开始加班生活，下周更是要连续工作14天。　　更新到此结束，实际上这次BLOG更新主要是为了推荐歌曲的。如果一直关注这里的人一定记得N久之前推荐过一首《She&amp;#8217;s gone》(不记得的可以查一下我o7年6月的BLOG)。这次推荐的《Cry》我觉得就是女生版的《She&amp;#8217;s gone》，歌曲通过短短的几句歌词，就把那种悲伤的感情完全的体现了出来。 《Cry》Nemesea I cannot go on without youBut I know you&amp;#8217;ll stay on my mind I cryI still cryCry for youmy love You won&amp;#8217;t returnBut I miss you stillSo I cryI still cryCry for youmy love&amp;#8230;</description><category>日志</category><pubDate>Sun, 08 Feb 2009 22:14:00 +0800</pubDate><author>airhunter</author><comments>http://me.airhunter.com/2009/02/08/%e6%96%b0%e5%b9%b4%e7%ac%ac%e4%b8%80%e8%b4%b4/#comments</comments><guid isPermaLink="false">http://wordpress.airhunter.com/?p=97</guid><dc:creator>airhunter</dc:creator><fs:srclink>http://me.airhunter.com/2009/02/08/%e6%96%b0%e5%b9%b4%e7%ac%ac%e4%b8%80%e8%b4%b4/</fs:srclink><fs:srcfeed>http://me.airhunter.com/feed/</fs:srcfeed><fs:itemid>feedsky/airhunter/~8618382/589668952/6141597</fs:itemid></item><item><title>大家新年快乐</title><link>http://me.airhunter.com/2008/12/30/%e5%a4%a7%e5%ae%b6%e6%96%b0%e5%b9%b4%e5%bf%ab%e4%b9%90/</link><content:encoded>&lt;p&gt;　　最近又开始懒散起来了。不过逛一下BLOG后竟然发现我这里也能有两位数的订阅，真是太难得了。本人聊得都是一些私事，也能有这点订阅数，也算是知足了。只是不知道这些订阅是不是有些水份。但不管如何，能有人看，那我就还是不能太懒。&lt;br /&gt;　　12月算是喜忧参半，好事方面：今年的圣诞节偶终于不是一个人过了。和美女进展不错，还算谈得来。看来果然和小超姐所言，和对自己有好感的人交往果然轻松不少。坏事方面么，可能是RP最近耗尽，记得上次我在BLOG里写到公司大大小小的坏事都与我沾不上边。但到了这个月，这项纪录终于还是结束了。本人很不幸运的成了公司最近项目近展不利的替罪羊。凭着我在公司良好的人缘，最终应该是没受什么处罚，但我还是很BS那个拉我下水的人。不过到年底的结局还不错，我的那个项目最终还是在过年前达到了公司的最低要求。同时公司原来进展不错的其它两个项目现在出了更大的问题，所以公司应该也没心情来搭理我的这个小项目。算是能安心过个元旦了。&lt;br /&gt;　　元旦和美女一起回家。上学那会儿想过和哪个美女同学一起结伴回家的情景，虽然现在好像离计划落后了十几年。但有总比没有好。同时也祝大家都能过个美好的新年。&lt;br /&gt;　　最后推荐歌曲时间，12月份本人终于在音乐欣赏方面有了巨大的进展。从轻音乐&amp;#8211;&gt;古典&amp;#8211;&gt;流行&amp;#8211;&gt;new Age&amp;#8211;&gt;摇滚……一路走过来。终于向挑战音乐中最激烈烦噪的金属乐走出了第一步。目前对歌特、维京、死亡金属这几个金属乐中的分支流派有了长足的认识。这次推荐的是芬兰维京金属三巨头之一的Ensiferum乐队。(歌曲有一些北欧风格，旋律不错，有一分多钟很好听的前奏)&lt;/p&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;＜LAI LAI HEI＞&lt;br /&gt;&lt;embed src=&quot;http://www.blogcastone.net/audio/player.swf?soundFile=http%3A%2F%2Fmp3.yafox.com%2FUploadFile%2F2008-2%2F200822222263147427.mp3&amp;amp;playerID=10&amp;amp;bg=0xf8f8f8&amp;amp;leftbg=0xeeeeee&amp;amp;lefticon=0x666666&amp;amp;rightbg=0xcccccc&amp;amp;rightbghover=0x999999&amp;amp;righticon=0x666666&amp;amp;righticonhover=0xffffff&amp;amp;text=0x666666&amp;amp;slider=0x666666&amp;amp;track=0xFFFFFF&amp;amp;border=0x666666&amp;amp;loader=0x9FFFB8&amp;amp;loop=no&amp;amp;autostart=no&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot; width=&quot;290&quot; height=&quot;40&quot;&gt;&lt;/embed&gt;&lt;/p&gt;
&lt;p&gt;Hän katsoi maan reunalta tähteä putoavaa&lt;br /&gt;Nyt kauniit kasvot neitosen peittää karu maa&lt;br /&gt;Jokaisen täytyy katsoa silmiin totuuden&lt;br /&gt;Sillä aika ompi voittoisa, mut&amp;#8217; tämä maa on ikuinen&lt;br /&gt;他站在世界的边缘，凝望着划过的流星&lt;br /&gt;仿佛少女美丽的脸旁映照在贫瘠的土地上&lt;br /&gt;残酷的真实留在了每个人的眼中&lt;br /&gt;虽然时间是那么的永恒，但贫瘠的土地依然真实&lt;br /&gt;　　&lt;br /&gt;There&amp;#8217;s a place in the North, far far away&lt;br /&gt;Home for the wandering man&lt;br /&gt;Dreaming fields with skies so pale&lt;br /&gt;Calm is the glorious land&lt;br /&gt;Flames will send the sign to the sky&lt;br /&gt;That we have come to feast tonight&lt;br /&gt;The lakes are echoing with our song&lt;br /&gt;Shadows are dancing on the forrest wall&lt;br /&gt;Shadows are dancing on the forrest wall!&lt;br /&gt;在遥远的北方有一片土地&lt;br /&gt;那是游子们将要归来的家乡&lt;br /&gt;梦想使天空变的如此苍白&lt;br /&gt;荣耀的土地上也将重归沉寂&lt;br /&gt;纷飞的火焰将在天空中指明方向&lt;br /&gt;今晚的盛宴属于我们&lt;br /&gt;湖水会与我们的战歌遥相呼应&lt;br /&gt;战斗的身影舞动在这片茂密的森林中&lt;br /&gt;战斗的身影舞动在这片茂密的森林中&lt;br /&gt;　　&lt;br /&gt;Enchantment of the fire and moon&lt;br /&gt;Lost in the whispering night&lt;br /&gt;The raven&amp;#8217;s magic enthralls the woods&lt;br /&gt;Crawling in the sweet starlight&lt;br /&gt;We have gathered in this distant land&lt;br /&gt;Full of wisdom, secrets and tales&lt;br /&gt;The morning will never rise again&lt;br /&gt;Roaming wolves are howling for the dead&lt;br /&gt;Roaming wolves are howling for the dead!&lt;br /&gt;Oh yea!&lt;br /&gt;来自火焰与月光的祝福&lt;br /&gt;消失在沉静的夜晚&lt;br /&gt;黑乌鸦的诅咒迷惑了森林的防备&lt;br /&gt;在醉人的星光下聚散&lt;br /&gt;我们曾聚集在这片充满智慧，秘密和传说的&lt;br /&gt;遥远的大地上&lt;br /&gt;黎明时将不再醒来&lt;br /&gt;只有狼群在为死去的人们哀号&lt;br /&gt;只有狼群在为死去的人们哀号&lt;/div&gt;</content:encoded><wfw:commentRss>http://me.airhunter.com/2008/12/30/%e5%a4%a7%e5%ae%b6%e6%96%b0%e5%b9%b4%e5%bf%ab%e4%b9%90/feed/</wfw:commentRss><slash:comments>2</slash:comments><description>　　最近又开始懒散起来了。不过逛一下BLOG后竟然发现我这里也能有两位数的订阅，真是太难得了。本人聊得都是一些私事，也能有这点订阅数，也算是知足了。只是不知道这些订阅是不是有些水份。但不管如何，能有人看，那我就还是不能太懒。　　12月算是喜忧参半，好事方面：今年的圣诞节偶终于不是一个人过了。和美女进展不错，还算谈得来。看来果然和小超姐所言，和对自己有好感的人交往果然轻松不少。坏事方面么，可能是RP最近耗尽，记得上次我在BLOG里写到公司大大小小的坏事都与我沾不上边。但到了这个月，这项纪录终于还是结束了。本人很不幸运的成了公司最近项目近展不利的替罪羊。凭着我在公司良好的人缘，最终应该是没受什么处罚，但我还是很BS那个拉我下水的人。不过到年底的结局还不错，我的那个项目最终还是在过年前达到了公司的最低要求。同时公司原来进展不错的其它两个项目现在出了更大的问题，所以公司应该也没心情来搭理我的这个小项目。算是能安心过个元旦了。　　元旦和美女一起回家。上学那会儿想过和哪个美女同学一起结伴回家的情景，虽然现在好像离计划落后了十几年。但有总比没有好。同时也祝大家都能过个美好的新年。　　最后推荐歌曲时间，12月份本人终于在音乐欣赏方面有了巨大的进展。从轻音乐&amp;#8211;&gt;古典&amp;#8211;&gt;流行&amp;#8211;&gt;new Age&amp;#8211;&gt;摇滚……一路走过来。终于向挑战音乐中最激烈烦噪的金属乐走出了第一步。目前对歌特、维京、死亡金属这几个金属乐中的分支流派有了长足的认识。这次推荐的是芬兰维京金属三巨头之一的Ensiferum乐队。(歌曲有一些北欧风格，旋律不错，有一分多钟很好听的前奏) ＜LAI LAI HEI＞ Hän katsoi maan reunalta tähteä putoavaaNyt kauniit kasvot neitosen peittää karu maaJokaisen täytyy katsoa silmiin totuudenSillä aika ompi voittoisa, mut&amp;#8217; tämä maa on ikuinen他站在世界的边缘，凝望着划过的流星仿佛少女美丽的脸旁映照在贫瘠的土地上残酷的真实留在了每个人的眼中虽然时间是那么的永恒，但贫瘠的土地依然真实　　There&amp;#8217;s a place in the North, far far awayHome for the wandering manDreaming fields with skies so paleCalm is the glorious landFlames will send the sign to [...]</description><category>日志</category><pubDate>Tue, 30 Dec 2008 15:32:00 +0800</pubDate><author>airhunter</author><comments>http://me.airhunter.com/2008/12/30/%e5%a4%a7%e5%ae%b6%e6%96%b0%e5%b9%b4%e5%bf%ab%e4%b9%90/#comments</comments><guid isPermaLink="false">http://wordpress.airhunter.com/?p=96</guid><dc:creator>airhunter</dc:creator><fs:srclink>http://me.airhunter.com/2008/12/30/%e5%a4%a7%e5%ae%b6%e6%96%b0%e5%b9%b4%e5%bf%ab%e4%b9%90/</fs:srclink><fs:srcfeed>http://me.airhunter.com/feed/</fs:srcfeed><fs:itemid>feedsky/airhunter/~8618382/589668953/6141597</fs:itemid></item></channel></rss>
