Hongwei's profile橙色的天空PhotosBlogListsMore Tools Help

Blog


    September 19

    困了 睡了

    还会醒来



    June 25

    The best day ~ ever

     

    Quote

    YouTube - Taylor Swift - The Best Day Lyrics Video
      

    June 12

    Ich Liebe dich immer noch so sehr

     

    Quote

    YouTube - Ich Liebe dich immer noch so sehr
       

     

    Infos:
    Extras: Video von Bedingungslos / Ich lieb dich immer noch so sehr
    Written by Alex Christensen,Lukas Hilbert,Ben & Kate Hall & Steffen Häfelinger
    Produced by Alex Christensen / Co-Produced Lukas Hilbert

    Lyric/Songtext zu Ich lieb dich immer noch so sehr:
     
    du schließt dich in mein herz ein
    schleichst dich immer tiefer rein
    ich weiß nich mehr was ich will
    du bestimmst mein gefühl
    hast dich mit mir verbündet
    mir versprochen nie zu gehn
    du hast mich angezündet
    jetzt lässt du mich in flammen stehn

    ich lieb dich immer noch so sehr
    lieb dich immer noch viel mehr
    deine blicke verführen mich, unsre seelen berühren sich
    ich lieb dich immer noch so sehr
    tränenschwer, mein kopf is leer
    weil kein sinn mehr ist, wo du nich bist

    ich renne 100 tausend meilen
    im kreis der sich um dich dreht
    der schmerz den wir nich teilen tut 2x so weh
    ich such dich auf allen wegen
    du wirst immer in mir sein
    du bist der große regen
    du bist das um was ich wein

    ich lieb dich immer noch so sehr
    lieb dich immer noch viel mehr
    deine blicke verführen mich, unsre seelen berühren sich
    ich lieb dich immer noch so sehr
    tränenschwer mein kopf is leer
    weil kein sinn mehr ist, wo du nich bist

    du bist der größte regen
    das, um was ich wein'

    ich lieb dich immer noch so sehr
    lieb dich immer noch viel mehr
    deine blicke verführen mich, unsre seelen berühren sich
    ich lieb dich immer noch so sehr
    tränenschwer mein kopf is leer
    weil kein sinn mehr ist, wo du nich bist

    jedes kleine teil von mir
    liebt jedes kleine teil von dir
    fällt es dir mich zu ersetzen auch so sehr

    May 06

    无奢望者有福,因其永不失望

    无奢望者有福,因其永不失望
    Blessed is he that expects nothing, for he shall never be disappointed.


    April 28

    转 陪你做一只蘑菇

    陪你做一只蘑菇

    陪你做一只蘑菇

    听过这样一个小故事。

      有一个精神病人,以为自己是一只蘑菇,于是他每天都撑着一把伞蹲在房间的墙角里,不吃也不喝,像一只真正的蘑菇一样。

      心理医生想了一个办法。有一天,心理医生也撑了一把伞,蹲坐在了病人的旁边。病人很奇怪地问:你是谁呀?医生回答:我也是一只蘑菇呀。病人点点头,继续做他的蘑菇。

      过了一会儿,医生站了起来,在房间里走来走去,病人就问他:你不是蘑菇么,怎么可以走来走去?医生回答说:蘑菇当然也可以走来走去啦!病人觉得有道理,就也站起来走走。

      又过了一会儿,医生拿出一个汉堡包开始吃,病人又问:咦,你不是蘑菇么,怎么可以吃东西?医生理直气壮地回答:蘑菇当然也可以吃东西呀!病人觉得很对,于是也开始吃东西。

      几个星期以后,这个精神病人就能像正常人一样生活了,虽然,他还觉得自己是一只蘑菇。

    两个道理

      第一,一个人可以带着过去的创伤继续生活,只要他把悲伤放在心里的一个圈圈里,不要让苦痛浸染了他的整个生命,他就可以像正常人一样快乐的生活。

      第二,当一个人悲伤得难以自持的时候,也许,他不需要太多的劝解和安慰,训诫和指明,他需要的,只是能有一个人在他身边蹲下来,陪他做一只蘑菇。




    March 11

    Latex

    Word越写到后面,发现很恶心。。。可能我用的太烂。发现Latex写报告,论文比较方便,到后面会自动排版、编号,不会像Word,到后面想改点什么,但是发怵。。。工程浩大。。。

    半年没用,发现都忘光了。。。不过基本常用到的命令很少

    安装:基本上安装两个东西就够了

    先装MikTex,是Latex的运行的核。

    然后装编译器,Windows下感觉TexnicCenterWinEdt比较好用,前者是免费的,后面的有破解版。

    常用的语句不多,从网上下一个模板,然后自己改改,就可以用了。

    \title{Title}                                          %百分号后面是注释

    \author{

            Author \\

                    Department

    }

    \date{\today}

    \documentclass[12pt]{article}

    \begin{document}

    \usepackage{graphics}                  %加载graphics

    \maketitle

    \begin{abstract}

    This is the paper's abstract \ldots

    \end{abstract}

    \section{Section 1. Title}

    \subsection{Subsection 1.1}

    Text here~\cite{book1.name }                  %这里是引用参考文献

    Parameters

    \begin{description}

      \item[Block length] $n=2^m-1$ symbols             %数学符号在正文中输入,要放在$$中间

      \item[Redundant symbols] n-k                                               %这里是枚举

      \item[Message size] k

    \end{description}

    \begin{equation}                             %插入公式

    f(X)=g_{0}+g_{1}X+g_{2}X^2+\ldots

    +g_{N}X^N.~\label{polynomial.definition}           %公式的Label,引用使用这个Label,就直接连接到该公式的编号

    \end{equation}

    Definition: Degree of the Polynomial, is defined to be the highest

    exponent value of X in f(X), which is N in the

    formula~\ref{polynomial.definition}.                     %引用上面的公式

    \bibliographystyle{abbrv}                                            %参考文献列表,通常的Reference List

    \bibliography{simple}

    \end{document}

    参考文献,建一个simple.bib文件然后在WinEdt在里面直接插入BibTex Item就可以了

    像,

    @BOOK{book.king.video,

      AUTHOR =       {King N.Ngan, Chi W.Yap, Keng T.Tan},

      TITLE =        {Video Coding for Wireless Communication Systems},

    }

    插入表格可以直接用LaTable,然后复制代码到WinEdt里就行了,不用自己编代码了。

    插入图片,安装graphics graphicx的包,从开始—程序MikTexBrowse Packages然后找到要安装的Package然后Install.

    \usepackage{graphics}

    命令加载package,然后在正文中,使用命令,

    \includegraphics加载图片。

    自己作图的话,加载一个eepic的包,可以画很多简单的图形。

    有一个WinFig,可以可视化的直接作出Latex兼容的矢量图,不过未注册的版本功能上有缩水。


    February 28

    英文系统, n73, 显示, 中文, Fonts, Enabling N73 (English version) to display and input Chinese characters

    It works fine. hope helpful.
    from:
    http://chwang.blogspot.com/2007/11/enabling-n73-english-version-to-display.html



    Enabling N73 (English version) to display and input Chinese characters
    Posted, Tuesday, November 06, 2007
     
    This is a downside point to buy a phone overseas. Although it was made in China, it doesn't have Chinese support (read/input or both) in most cases. And that happened to me when I bought a Nokia N73 phone in Australia.

    It is annoying sometimes as all the messages and file names in Chinese can not be displayed properly, especially when i used my phone in my home country China.

    So i persisted to look for a solution to this matter. And finally I got it.

    First, enabling the display of Chinese characters.
    Since the OS in Nokia N73 is symbian s60 3rd edition, which fully supports Unicode, I believe the cause of disability of display Chinese on my N73 is only the lack of proper fonts. After numerous searching and study, my belief turned out to be true, and I found the way to use additional fonts to display Chinese characters. Here's the trick:
    1. Get some TTF fonts that have Chinese character supports. Here's a link (in Chinese) that has some fonts for download.
    2. Rename the font files properly. The default font files in N73 (or maybe other s603rd) have the following names:
    nosnr60.ttf = Nokia Sans S60 Regular
    nssb60.ttf = Nokia Sans S60 SemiBold
    nstsb60.ttf = Nokia Sans S60 TitleSmBd S60
    S60ZDIGI.ttf = Series 60 ZDigi, just LCD digits 0-9 plus .:,;*?
    So just use the corresponding names for the new font files.
    3. Make sure folder "/resource/fonts" exists on the phone memory card (if not, just create it). put the font files in the folder.
    4. Maybe a restart of the phone is required.

    Then it's done. the phone can display Chinese in messages, media players, ....
    More detailed information on changing fonts can be found here.

    Some times you may still find messed characters in the phone media player when playing mp3 songs with Chinese titles. This is because the tags (ID3?) in mp3 files are not encoded in Unicode (UTF8), you can use tools like mp3tag to convert the tag info encoding (mostly from GBK or GB18030 to UTF8) before transferring mp3 files to the phone.

    Then, enabling the input of Chinese characters.
    This could be even simpler. Installing a Chinese input method would get it done. And fortunately, I found this A4 input method (in Chinese) works quite well on my N73, plus it has a free version for personal use. The drawback is that this method only works for composing messages. However, this is enough for me!

    The above methods work quire well for my N73 phone. I hope this helps you if you have the similar situations. I think they are safer than some ROM reflashing methods that break the warranty conditions. However, I am not responsible if the methods cause any damage to your phone:)
    Posted by Robin at 2:08 AM




    戏说乾隆片头曲,挺怀念。。。

    好像是看的第一部电视剧。。。还很小


       


    February 20

    The Curious Case of Benjamin Button

    The Curious Case of Benjamin Button
    很好的电影
    奥斯卡压这个片了~哈哈
    在听着 天空の城ラピュタ 天空之城 Laputa: Castle in the Sky
    还有星战的结尾曲~~


    ~~~~


    February 15

    开始学网球

    开始学网球~~~haha
    争取夏天去
    Roland-Garros看法网~~~又要抢票了~~~~



    February 08

    注册三年了。。。。。。~~~~都

    Registered since:  February 01, 2006  Anniversary icon  3 year anniversary! 注册三年了。。。。。。~~~~都


    连续雨夹雪完又是阴天。

    最后选定了37.5分的课,包括恶心的Distrib~utted Sy~stem,变态的Robi~n Shar~p。下午去教堂,明天10点去抢票。。。



    November 30

    no name

    人类已经进化到20世纪了

    鸡鸟猴

    在土里,谁能爬谁就nb

    出来了,谁能叫才nb

    能飞了,可以看看天 看看风景

    恩,天天看就烦了

    就想怎么能把人招来吃自己

    于是声嘶力竭的叫,希望有人看到,抓下来,放进油锅,炸成美味

    伴随咔嚓咔嚓的咀嚼声,结束短暂的一生

    冬天一来,全都死翘翘

    大家都一样

    挣扎作甚

    被人抓了,还可以在油锅里挣扎下,很酷的壮烈

    冬天来了,大家都默默死去

    叫完最后一声,全身僵硬,@@的一声,掉在干裂的地上

    谁也不知道

    这就是半年前充满希望,顽强的爬出地面的那个年轻的鸡鸟猴

    现在只是干瘪的一摊

    也许他活着时候,曾经站在了最高的树枝上

    也许和其他鸡鸟猴红轰轰烈烈的大战过几百回合

    但是甚至在另一棵相隔2米的树上,谁也不知道曾经发生了什么

    后死去的鸡鸟猴会看到先死的尸体

    也许会发出感慨

    也许会想到自己的明天

    也许会意识到自己会有同样的命运

    不论昨天是什么样

    也许有的傻得什么都意识不到

    也许那只鸡鸟猴,觉得打赢一仗以后会有无数荣耀

    但是其实什么也没有

    就像他爬出地面时,也许觉得是另一片美好的世界

    但是只是简简单单的另外一个世界

    重复着一样无意义的事情

    过程也许才是全部

    过程结束,也许就一切都结束了

    结果因为并不是鸡鸟猴想要的

    也许他从来就没有期待过任何结果

    只是本能的争斗

    他想赶快结束这痛苦的争斗,享受胜利的荣耀,和安逸

    但是,胜利后,他发现除了别人的尸体,别自己残杀的同类,什么也没有

    每课树上都重复着同样的事情,但是每只鸡鸟猴都认为自己是与众不同的

    有着传奇的经历

    但是死去时,人们看到地上一片的鸡鸟猴

    只知道,冬天冷,鸡鸟猴冻死了


    November 22

    不要忧虑

    “不要为明天忧虑,天上的飞鸟,不耕种也不收获,上天尚且要养活它,田野里的百合花,从不忧虑它能不能开花,是不是可以开得和其它一样美,但是它就自然的开花了,开得比所罗门皇冠上的珍珠还美。你呢,忧虑什么呢?人比飞鸟和百合花贵重多了,上帝会弃你不顾吗?”

    -----圣经 · 旧约

    October 21

    没事应该多看看寓言,挺好 转来的

    挺好,转来的》http://javafish.spaces.live.com/default.aspx?mkt=en-US&partner=Live.Spaces

    如果看不明白,还有心理点评版。。。汗》http://chenliangnos.blog.sohu.com/96257586.html

    没事应该多看看寓言~

    (一)成长的寓言:做一棵永远成长的苹果树

    一棵苹果树,终于结果了。
    第一年,它结了10个苹果,9个被拿走,自己得到1个。对此,苹果树愤愤不平,于是自断经脉,拒绝成长。第二年,它结了5个苹果,4个被拿走,自己得到1个。“哈哈,去年我得到了10%,今年得到20%!翻了一番。”这棵苹果树心理平衡了。
    但是,它还可以这样:继续成长。譬如,第二年,它结了100个果子,被拿走90个,自己得到10个。
    很可能,它被拿走99个,自己得到1个。但没关系,它还可以继续成长,第三年结1000个果子……
    其实,得到多少果子不是最重要的。最重要的是,苹果树在成长!等苹果树长成参天大树的时候,那些曾阻碍它成长的力量都会微弱到可以忽略。真的,不要太在乎果子,成长是最重要的。


    (二)动机的寓言:孩子在为谁而玩
    一群孩子在一位老人家门前嬉闹,叫声连天。几天过去,老人难以忍受。
    于是,他出来给了每个孩子25美分,对他们说:“你们让这儿变得很热闹,我觉得自己年轻了不少,这点钱表示谢意。”
    孩子们很高兴,第二天仍然来了,一如既往地嬉闹。老人再出来,给了每个孩子15美分。他解释说,自己没有收入,只能少给一些。15美分也还可以吧,孩子仍然兴高采烈地走了。
    第三天,老人只给了每个孩子5美分。
    孩子们勃然大怒,“一天才5美分,知不知道我们多辛苦!”他们向老人发誓,他们再也不会为他玩了!

    (三)规划的寓言:把一张纸折叠51次
    想象一下,你手里有一张足够大的白纸。现在,你的任务是,把它折叠51次。那么,它有多高?
    一个冰箱?一层楼?或者一栋摩天大厦那么高?不是,差太多了,这个厚度超过了地球和太阳之间的距离。


    (四)逃避的寓言:小猫逃开影子的招数
    “影子真讨厌!”小猫汤姆和托比都这样想,“我们一定要摆脱它。”
    然而,无论走到哪里,汤姆和托比发现,只要一出现阳光,它们就会看到令它们抓狂的自己的影子。
    不过,汤姆和托比最后终于都找到了各自的解决办法。汤姆的方法是,永远闭着眼睛。托比的办法则是,永远待在其他东西的阴影里。

    (五)行动的寓言———螃蟹、猫头鹰和蝙蝠

    螃蟹、猫头鹰和蝙蝠去上恶习补习班。数年过后,它们都顺利毕业并获得博士学位。不过,螃蟹仍横行,猫头鹰仍白天睡觉晚上活动,蝙蝠仍倒悬。

    (六)放弃的寓言:蜜蜂与鲜花
    玫瑰花枯萎了,蜜蜂仍拼命吮吸,因为它以前从这朵花上吮吸过甜蜜。但是,现在在这朵花上,蜜蜂吮吸的是毒汁。
    蜜蜂知道这一点,因为毒汁苦涩,与以前的味道是天壤之别。于是,蜜蜂愤不过,它吸一口就抬起头来向整个世界抱怨,为什么味道变了?!
    终于有一天,不知道是什么原因,蜜蜂振动翅膀,飞高了一点。这时,它发现,枯萎的玫瑰花周围,处处是鲜花。

    (七)亲密的寓言:独一无二的玫瑰
    小王子有一个小小的星球,星球上忽然绽放了一朵娇艳的玫瑰花。以前,这个星球上只有一些无名的小花,小王子从来没有见过这么美丽的花,他爱上这朵玫瑰,细心地呵护她。
    那一段日子,他以为,这是一朵人世间唯一的花,只有他的星球上才有,其他的地方都不存在。
    然而,等他来到地球上,发现仅仅一个花园里就有5000朵完全一样的这种花朵。这时,他才知道,他有的只是一朵普通的花。
    一开始,这个发现,让小王子非常伤心。但最后,小王子明白,尽管世界上有无数朵玫瑰花,但他的星球上那朵,仍然是独一无二的,因为那朵玫瑰花,他浇灌过,给她罩过花罩,用屏风保护过,除过她身上的毛虫,还倾听过她的怨艾和自诩,聆听过她的沉默……一句话,他驯服了她,她也驯服了他,她是他独一无二的玫瑰。
    “正因为你为你的玫瑰花费了时间,这才使你的玫瑰变得如此重要。”一只被小王子驯服的狐狸对他说。



    October 19

    some war3 moments of myself

    some war3 moments of myself

             
    October 12

    3 videos in CultureNight and Football

     

    Oct.11th,PARKEN outside.
       

    Oct.10th,Band in København prison


      

    Oct.10th,Pray

       


    October 10

    for test


    Your name: <% dim fname fname=Request.QueryString("fname") If fname<>"" Then Response.Write("Hello " & fname & "!
    ") Response.Write("How are you today?") End If %>
      
    October 06

    musics

                                                             
    ---------------------------------------------

    Enigma - Return to Innocence
    The Cranberries - Dreaming My Dreams
    The Cranberries - Dying in the Sun
    The Cranberries - Joe
    The Cranberries - Never Grow Old

    李寿全 - 张三的歌
    Taylor Swift - Teardrops On My Guitar



    September 24

    毕页论文以及可能的phd的方向:排队论

    http://www.dtu.dk/English/Service/Phonebook.aspx?lg=showcommon&id=977&type=publications&currentprojects=true

    准备找这个人了,比较牛的导师没时间管学生,还是找个轻闲一点的

    主要是做排队论(teletraffic,应该就是类似排队论吧),网络吞吐量,网络容量的计算等等
    偏理论,以后读博士也方便,也算是挺感兴趣的方向。

    回国以后似乎对于这个方向的需求似乎也是不小的,找工作也方便。

    本来打算交换去美国做毕设,不过觉得如果毕业以后想留在丹麦读博或者工作的话,去美国半年有点太冒险,说不准回去就没签证了。