Author: Xuan Hu

  • 离别,习惯的,不习惯的……

    又是离别时,无法抑制的兴奋。人家都说,刚到异地才会兴奋,然而,我已经习惯兴奋的赶赴异地。
    不知道该怎么表达自己的内心,总是显得那样无情,却又分明被情感牵系着,挣不脱也逃不掉。
    拒绝了所有家人的所有好意,我甚至只想一个人悄悄的离开,消失的毫无踪迹。
    习惯了全家人的关爱,又再那样不习惯那样被呵护……
    细细想来,“人之初,性本贱。”是对的。
    人总是摆脱不了愚蠢的兽性,总是习惯了拥有,又不习惯珍惜。
    这也许正是人类文明史以来社会发展的真正不竭动力吧!

    离别了,或许只是一个新的开始,因为从未有过相逢,一切都只是过眼云烟……

    这个寒假,这个春节,除了那些伤痛,再也不会再留下任何印记了吧?
    那苦苦挣扎中,站起来的是铮铮铁骨,可是那究竟是骨,还是铁?
    突然觉得自己不属于周遭,不属于社会,不属于世界……
    突然开始怀疑生活,怀疑生命,怀疑人生……
    好可怕的感觉,像一个刚出生的孤儿,艰难爬行,不知何时能站起……

    一旦试着留下一些文字,总免不了忧伤,然而回到生活,依然要继续苦行。
    文字再一次沦为了泄欲的工具,倾倒完所有的喜怒哀乐,然后继续苦行。
    除了生命的终结,真不知何时才是尽头……

    算了,一切都会离别的,那些习惯的,那些不习惯的……

  • A recommended kind of RSS solution

    Today I want to recommend a kind of RSS solution and  it’s just what I use for my blog.

    In this way, we will have a permanent and unique rss url. As for me, it’s http://feeds.huxuan.org/huxuan

    1)Sign up as the same name for your feed in FeedSky & FeedBurner.

    e.g. I have
    http://feed.feedsky.com/huxuan for FeedSky &
    http://feeds.feedburner.com/huxuan for FeedBurner
    (I just have it for example, Please don’t subscribe my blog through this two address)

    2) Use the Domain Binding Service which Feedburner & Feedsky both provide to host the feed by your own domain name

    You should choose only one of the two & Feedburner is recommended absolutely
    You need to create a CNAME entry in the DNS records here
    More information are provided by Feedburner & Feedsky when you configure the Domain Binding Service

    3) Change the feed source you didn’t choose in step 2

    e.g. I choose Feedburner to create the feed, so I change the feed source of Feedsky just into http://feeds.huxuan.org/huxuan.

    4)Change the default rss url of wordpress

    In the header.php of theme we use, similar code can be found like this:
    [xml]<link rel=”alternate” type=”application/rss+xml” title=”<?php bloginfo(‘name’); ?> RSS Feed” href=”http://blog.huxuan.org/feed” />[/xml]
    Change the url with underline into the feed you have created.

    5)Change all possible default feed url on the site

    There may be many default feed url list on the site most presenting as a link of an image or some else.
    Just search for it and change it!

    Attention: Some Errors happen in Step 6. Ignore it now.

    6)Redirect the default feed url to the new one just in case

    Insert the code below to .htacess which located in the main directory

    [python]# redirect default feed url to the permanent one
    Redirect /feed http://feeds.huxuan.org/huxuan[/python]

    7)Now all steps is done, just share your unique & permanet feed url to your friends

    if one of the two feed service providers don’t work, just change to the other one via repeating Step 2 & 3

    P.S. If there’s any error or problem, please feel free to inform me of that.

  • Recovering Ubuntu 9.10 After Installing Windows 7

    【Foreword】

    前些日子win 7离奇中毒,开机巨慢,几乎所有应用程序无法打开,只好重装。如此一来Ubuntu 9.10的Grub启动没了,由于win 7和ubuntu 9.10都是比较新的东东,网上的解决方案不多或者不是很完美(个人意见),不是需要Ubuntu live CD,就是把grub装到了mbr当中,鄙人用了一个一般笨的方法,还算比较完美的解决了……

    【Procedure】

    1)Download the file here and extract them to the directory you installed windows 7 for example ‘c:/’.

    I pick it from here

    2)Reboot the computer & choose Ubuntu 9 when it comes to mbr selection.

    3)Open the terminal and reinstall the grub2 with the following commands.

    [bash]sudo apt-get remove grub-pc
    sudo apt-get install grub-pc[/bash]
    [bash]#这里附上yuki大牛推荐的更正宗的方法:
    #把grub安装到sda的mbr
    sudo grub-install /dev/sda
    #检测其他操作系统,XP Win7等
    sudo os-prober
    #更新grub的各个启动项
    sudo update-grub
    #REBOOT
    sudo reboot[/bash]

    4)Reboot the computer & choose to enter win 7.

    5)Delete the files you established in Step 1.

    6)Now everything is the same as before.

    P.S. if there still exists some problems, please feel free to contact me.