Mark's profile风起的日子PhotosBlogLists Tools Help

Blog


    2/8/2008

    New Year Kick Off Blog

    This blog has not been updated almost one year, and the reason is I can't access network from my company, and my apartment also doesn't have network. But so many things happened this year, and I can't record all of them.

    Anyway, I only want to say everything is fine, even my wife and I were tired through the whole year. I have many wishes in this year, but I don't want to announce here, and I hope I can archieve all targets after 2008. Believe me, and trust me.

    1/31/2007

    The "Wow" Starts Now

       When you see the title, maybe you think it is World Of Warcraft, the famours online game of Blizzard, but sorry, you are wrong, it is just a marketing show about the consumer release of Windows Vista. I don't understand what is meaning about Wow, so I search it on the internet, and at the end, I found an answer on a website,  it say "What is Wow? It's an instinctive reaction. When you experience the amazing, the incredible, the exhilarating. And when you do, there's only one way to express it: Wow". Oh, god, just the native meaning of the word.
       Sometimes, we always think about things in a complicated way, especially some words produced by some company, and always think it must be combined with some other words, but I forgot a very important thing that the company is Microsoft, and it aways use the common words to name its products, such as Windows, Office, Visual Studio, IIS and so on, not like other companies. It's all my fault! (but I must say every word presents a great product.) 
       I like Windows Vista, and also want to install it in my laptop, but the price of genuine is more expensive for me. The news said that the product is still much expensive in China, the cheaper one is $100, and the other one is $300, why is the currency US dollar, not RMB?

    1/24/2007

    The Most Important Day To Me

       Today is the most important day to me, because I get a marriage certificate.
       After going out of Marriage Registration Office, my feeling is complex with happiness, excitement, and responsibility. My wife and I have known each other for eight years, and after graduated, I came to Zhuhai alone, leaving her in her hometown, and it had been three years for us to connect only by telephone.
       "What can I do for her?" I ask myself, the answer is nothing, just giving her happiness of whole life for such a good girl.
       From now on, I know everything I do is not for myself, but for both of us. Last words, "Baby, I love you forever!"

    1/23/2007

    90m Chinese grow up as "only" children

       China Daily news said that China's one-child policy since the end of 1970s has created a generation of "only" children that now numbers 90 million.
       I'm one of them. I think the one-child policy is better for China, but not for single one of "only" children. Sometimes I hate Chairman Mao, it was him to encourage people to give more births, and made me become one of "only" children; on the other hand, I must appreciate Chairman Mao, because without his encourage, maybe my father would not exist in the world, and not even to say me. It's so ambivalent!

    PS: Today is my wife's birthday, so happy birthday to my baby. Maybe you'll ask me you are married, aren't you? Now the answer is no, but after tomorrow, the answer will be yes. :)

    1/16/2007

    Daily Tips

       Today is Jan. 16th, and is my birthday according to identity card, but I know the next day is the real birthday, so I'll celebrate to myself after midnight.
       And today, the wps online website - www.wps.cn - has been run, but it can't be used now. I think it's the first step for WPS's future, whether you like or not.
       I like sports, so I also want to write some sports news.
       Shevchenko, one of my favorite football figures, has still spent much of the season on the bench. Maybe he is a little old, or maybe the style of Chelsea club is not fit for him, while I think he is worse and worse in Britain.
       Beckham, also one of my favorite football players, will leave Real Madrid and join LA Galaxy from August this year. I can only say, "We can't see the gloden right foot and the amazing arc line of ball from now on, and God bless you!"
       Another news, W. Bush, American President, concedes he is not popular, not going to try to be popular and change his principles to do so. what he want to do is just to send more US troops to Iraq to win the war.
    1/4/2007

    Saddam Hussein died

       Saddam Hussein died at 11:00 am Dec 30th, 2006 (Beijing time). So what will happen after his death, we don't know, just wait and see...

    12/18/2006

    Ajax.net won't call a server method asynchronously if you don't add a function in its arguments

       If you use Ajax.net(AjaxPro.dll), you know you can call a server method by this way.
       //------C#------
       namespace Server
       {
           public  partical class Default : System.UI.Page
           {
               protected void Page_Load(object sender, EventArgs e)
               {
                   Utility.RegisterTypeForAjax(typeof(Default), this.Page);
               }
               ...
               [AjaxMethod]
               public void server_func()
               {
                  ...
               }
           }
       }
       //------js------
       function test() {
           Server.Default.server_func();    //call the AjaxPro method
       }
      
    We always call like upper code. But if we do this, we know it is synchronous. If the server method will continue for a long time, the client will be waiting for its ending. Thinking a case,  when you do something in client calling a server method to let server do something, and you don't want know the result, so if you do like that, what will happen? the client must wait for the ending of server method, then it will stop the user's interaction if the server method runs for a long time. So if you want call the server method asynchronously, you must call it by passing a callback function even you do nothing. For example,
       //------js------
       function test() {
           Server.Default.server_func(function() {}); //call the AjaxPro method asynchronously
       }
       
    Because in the Ajax.net javascript file, it will do like this
       AjaxPro.AjaxClass.prototype = {
           invoke: function(method, args, e) {
               if(e != null) {
                   if(e.length != 6) for(;e.length<6;) e.push(null);
                   if(e[0] != null && typeof e[0] == "function") {
                       return AjaxPro.queue.add(this.url, method, args, e);
                   }
               }
               var r = new AjaxPro.Request();
               r.url = this.url;
               return r.invoke(method, args);
           }
       };
       You will find Ajax.net will test the e[0], and if it isn't a 'function', it won't call XMLHttpRequest in asynchronous.
    I think it's unreasonable, in some cases, I don't need to know the result of server method, but I want to call it in asynchronous, and for the reason, I must pass an empty function and do nothing...
       I hope the Ajax.net team can improve it, or maybe it already has the function which I don't know, so if you know it, tell me, thanks!

    11/20/2006

    How to embed swf file in a web page which doesn't have to active it first in IE

       In my web project, the main page have two swf files, but when you browser it in IE, you'll find you should click it to active the interactive control first, then continue to interact.
       I searched the problem in Google, and found some approachs which could solve it. Among them, I downloaded a javascript file named 'swfobject', and used it in my web page. As a result, the problem disappeared.
       I didn't stop testing. Before being changed in the web page, the code was:

       <script type="text/javascript">
          var temp = '<div>... embed the swf file ...</div>';
          document.getElementById('flashDiv').innerHTML = temp;
       </script>

      
    If using the javascript file, the code would be:

       <script type="text/javascript">
          var so = new SWFObject(...);
          so.write('flashDiv');
       </script>

       I saw the 'write' method in the javascript file, and found the code was also like the above, just using,

       ...
       var n = (typeof elementId == 'string') ? document.getElementById(elementId) : elementId;
       n.innerHTML = this.getSWFHTML();
       ...


       It's the same. Just used 'getSWFHTML' replacing the 'temp' code to get the html code, but why it could be valid, and my code was wrong. Last time, I wrote the code to a function in a separate javascript file, and called it in HTML file, what happened? it was valid. So amazing!
       I searched the problem in Google, again. I found an article named 'Activating ActiveX Controls' in microsoft web site. After reading this article, I knew why it had difference between writing code in HTML file and writing code in an external file. The article told me if you write script elements inline which the main HTML page to load your control, the loaded control will behave as if it was loaded by the HTML document itself and will require activation. So to ensure a control is interactive when it loaded, you should load your control from an external file. 
       Some one said, 'Don't use IE, use FF'.
       Customs can say this, but developers can't. Because you don't know which browser the custom uses.

    PS: My English is poor, so if you find wrong expressions, just leave message to me, thanks!

    11/14/2006

    Good luck, Shevchenko

        Shevchenko is a football star, and a player I like best.
        After he joined Chelsea, he couldn't make goals for a long time. When he was a player of AC Milan, he was very successful throughout his football life. He won all champions he can win, and after World Cup, he changed club for his wife, his family, and money probably.
        Ever I thought it would be hard for him to play for Chelsea because there was more differences between AC Milan and Chelsea. AC Milan is more technical in Itialy Football League, but Chelsea depends more on body in English Premier League. Just as I said, Shevchenko can't find the feeling of goal. Every week, when I read the news about football and hear Drogba scored more, I'm very sad for Shevchenko. 
        Whatever, I have to say Shevchenko is the best forward even he is 30 years old. Last week, he scored a goal again. Maybe he has found the feeling. God bless you, Shevchenko!

    11/13/2006

    Listen and read the VOA Special English News - Without water there is no life

        url is http://www.chinadaily.com.cn/language_tips/2006-11... 
        When I saw the title, I thought it must describe the scarcity of water, but after listening, I knew I was wrong. The article below is the summary of it.


        The United States Development Report says human is facing a water crisis. Many diseases are caused by unclean water polluted by human waste, especially in developing nations.
        The lead writer and head of the Development Report office says that the water crisis is not because of a water scarcity. He says there is the same amount of water in world every year. The real problem is, the governance of water. Governments should think of water a limited, valuable resource.

        I live in a developing nation drinking water every day, and never notice whether the water is clean or not. I only know there is not enough water in our country. Maybe in the world, the water scarcity is not the problem, but for China, it's more important than the problem whether the water is clean or dirty. Recently, I always heard the news about rain scarcity everywhere, and the rivers dry up. So, what is the main problem for China? No clean water?

    8/25/2006

    别了,“九大行星”,别了,冥王星

         冥王星从今天开始在天文学上被降为“矮行星”,踢出了太阳系九大行星的行列,从今天开始,历史上的“九大行星”将变更为“八大行星”,教科书从此要全部改写。这样的历史时刻,怎能不用文字记录下来!

    7/20/2006

    又见星空

          星空,自从离开家乡,离开偏僻的小城,来到相对喧嚣的都市,就再也看不到深邃的星空了。
          记得踏入浙江大学的校门,每个夜晚城市的灯光都把天空映衬得五颜六色,唯独暗淡了深蓝色的星空,只能零星找到几颗眨着眼睛的星星。18岁后就很少回到那个北方的小城,那个站在阳台上仰望天空,漫天星斗的夜晚离我越来越远。
          小时候经常抱怨路灯暗淡,抱怨城市夜晚没有生气,虽然对各种星座都很有兴趣,都很想知道那密密麻麻的亮点对应着什么故事,但却从没有认真的了解过,只知道北斗七星,北极星,仙后座这寥寥几个;等到了夜晚依然明亮喧嚣的都市,再次仰望天空,再次充满好奇,却已经无从下手,不知所措了……
          直到昨夜,当我再次仰望星空,我才发现黑夜中并不算明亮的珠海,还算干净的天空可以清楚地看到明亮的星星,又一次勾起我儿时的思绪,还满怀骄傲的给lp指示我仅仅认识的那几个星座,让我充满了喜悦。
          已经走过的二十几年人生,从中国的北部到中国的东部,又来到了中国的南部,跨越了中国的南北线,仰头看到的是同一片天空,却有不一样的心情,真希望有时间能重拾儿时的梦想,看清楚美丽的星空。


    7/10/2006

    蓝色之舞,最后之舞

            当格罗索的点球入网,一切都归于历史。
            意大利成功的走上了最高领奖台,他们可以举起等待24年之久的世界杯了……
            说实话,本场比赛如果从客观上来说,是属于法国队的,但这就是足球。总之,本届世界杯以蓝色结束,这场舞蹈足可以载入世界杯历史的经典比赛。
            这场比赛相比于技战术,它的戏剧性更让人回味。
            开场仅6分钟,法国就获得了点球。齐达内,真是艺高人胆大,在这样的比赛中竟踢出“勺子”射门,而皮球也鬼使神差的打在门框上弹入网内,令人惊讶。
            第19分钟,马特拉奇就将功补过,一个头球将两队拉回到同一起跑线。
            比赛被法国队控制,被齐达内控制着,时间一分一秒的流逝,意大利人用他们最擅长的防守抵抗法国人一波又一波的进攻,直到加时赛下半场的那个红牌。
            这场比赛的戏剧性就是一个接一个,如天使般在场上舞蹈的齐达内,瞬间被魔鬼附身,一个不知所谓的头顶马特拉奇,招致一张红牌,在他最后一场比赛,在绿茵场上的最后之舞,在最高潮的时候插入了一个让人无法理解的闹剧。难道他觉得美丽不足以永恒,非要添加些魔鬼的色彩。
            “成也萧何,败也萧何”,这句中国古话就这样主宰着这场决赛。
            是马特拉奇,开场送给法国人一个点球,之后又是他把球送进了法国人的球门,而又是他,在最后时刻把齐达内送下了场。
            是齐达内,进入淘汰赛,凭借一己之力把法国队带入了决赛,凭借一己之力控制着决赛,又是他把法国队推向了另一个结局。
            不管怎样,我们送走了一届世界杯,送走了一代巨星齐达内。无论他最后的一幕原因如何,我还是要说,这届世界杯属于齐达内,属于这个绿茵场上的舞者,历史会记住他,球迷会记住他,以及属于他的那道独特风景!

    点击进入下一张世界杯精彩图片

     
    PS:最后还是要说一句,我钟爱的意大利队终于夺冠了,祝贺你们,我的意大利队,伟大的意大利队!大力神杯献给格罗索,献给皮尔洛,献给布冯,献给卡纳瓦罗,献给托蒂,更要献给马尔蒂尼,献给给我带来欢乐的意大利足球……
     
    7/2/2006

    世界杯让我们记住他们

            世界杯已经过去了大半,欧洲人再一次在本土阻挡了美洲人的梦想,全部阻挡在了四强之外。阿根廷倒在了东道主的脚下,巴西在高卢鸡的舞蹈下杂乱无章地奔跑,两大热门依然走不出魔咒。
            本届世界杯虽然没有当初94年第一次看世界杯时的激情,但依然要记住一些即将永远离开世界杯舞台的人群……
            齐达内,不得不为他欢呼。高龄下重现98年的巅峰状态,有些类似94年的巴乔,小组赛没有表现,甚至说是全队的累赘,但淘汰赛显出了他的价值,尤其是对阵巴西,整个巴西队的桑巴技术完全被他的魔幻舞步所掩盖,足球就如同粘在他脚上一样,节奏完全被他控制了,除了完美还能用什么来描述他的表现!

    图文-[西甲]皇马4-2塞维利亚齐达内上演帽子戏法

            舍甫琴科,他终于修成正果。多少足坛巨星,就是由于他们的国籍无法在世界杯这个舞台上看到他们的身影,乔治贝斯特,吉格斯,维阿……数不胜数。在这样一个年龄,即将走下足球这个舞台的时候,终于实现了梦想,踏上了世界杯的绿茵赛场,两个进球在世界杯的历史下留下了自己的痕迹,八强足以让他没有任何遗憾了。

    图文-[意甲]AC米兰4-3帕尔马舍甫琴科显队长威风

            贝克汉姆,很多人不喜欢他,足球与娱乐时尚的结合体,不过正是他创造了一个另类巨星。一招鲜吃遍天,一只右脚足以让他在绿茵场上占有一席之地。这应该是他最后一届世界杯了,在世界杯上英格兰队也许再也看不到那个完美的弧线,那个只要站在定位球点上就足以让任何球队感到他站在点球点上一样让人绝望的身影了。也许在其他的强队中不会有他的一席之地,但在英格兰,在这样一个风格和打法的球队中,缺少他就缺少了一道风景。看到他在场边呕吐,在席上哭泣,我看到了一个真正的男人,一个真正为足球而生的另类巨星,是的,在我心中他永远是一个巨星。

    资料图-英格兰代表队前卫大卫-贝克汉姆

            罗纳尔多,一个在世界杯上可以永远记住的名字。15粒入球足以让他名垂青史,虽然他已经没有1997年时的令人惊叹,没有2002年的一力擎天,肥硕的身躯更让人觉得真不应该出现在世界杯上,但上帝还是给了他这个机会,他也把握了这个机会,终于留下了光辉的一笔。想一想他巅峰时期留给我们的一幕幕经典场景,我们还能说什么。

    资料图-巴西国家队前锋罗纳尔多

            劳尔,悲情巨星,西班牙队这个扶不起的“阿斗”造就了一个个悲剧角色,这次轮到了劳尔。皇马金童,西班牙金童,真不知道还能怎么描述他,虽然世界杯之旅已经结束,虽然在这个赛场再也看不到他了,但依然祝他走好。

    图文-[冠军杯]皇马4-2罗马再见劳尔亲吻戒指

            当然还有很多人需要我们记住他,但世界杯就是这样,一个成就巨星的地方,也是造就悲剧的地方,就是因为这个原因,她才充满了魅力,是无法取代的……
    6/27/2006

    这一夜唤醒了我的足球情结

            意大利半场10打11,意大利最后10秒赢得了点球,意大利赢了!
            上帝最初眷顾的是澳大利亚,但澳大利亚没有把握这40分钟,也许上帝觉得给澳大利亚这样一个优势有些偏袒,而澳大利亚的表现又令上帝非常的失望,所以上帝决定给意大利一个更加容易的优势,最后10秒的点球,不给你任何翻盘的机会,意大利人把握住了,澳大利亚人回家了。
            这场比赛上半场还可以,意大利队打出了自己的风格。至今为止,我依然认为意大利的三条线是最整齐的,尽管0:0,但不乏精彩场面。不过,下半场的红牌改变了一切,意大利龟缩防守,重现94年与尼日利亚的情景,最终历史重演,只是不知意大利是否会像94年一样杀入决赛?
     
            乌克兰与瑞士的比赛我没看,原因有三:第一,时间太晚,熬不住;第二,两队水平较低,可以预想不会太精彩;第三,尽管有我最喜欢的舍甫琴科,不过他已经完成了所有的梦想,即使失败也没什么遗憾的了。
     
            和比赛同样令人嚼舌的就是黄健翔的解说了。当我听完最后几十秒钟的解说,我就知道要出事。果不其然,白天的网上到处都是评论黄健翔的解说是否适宜的讨论。从我个人来说,我喜欢黄健翔的解说,无论言辞是否得体,至少给我带来了激情。96年奥运会女足半决赛对阵巴西的那场是最为经典的,疯狂的解说让人激情澎湃。2001年米卢带领的中国队遭遇可能失败的时候,黄健翔也言辞激烈的批评过,后来还被“封杀”了一段时间。这次因为一句“意大利队万岁”,引来无数骂声。中国人喜欢扣帽子,你批评中国队,就是不爱国,你喊意大利队万岁就是不爱国,我不知道这是什么逻辑,体育评论员就不能参杂个人感情,我不同意,足球是一种充满激情的运动,只有有明确足球情结的人解说的足球才是球迷所需要的。足球是一个很纯粹的东西,我不会参杂任何与足球无关的因素,我喜欢意大利足球,所以黄健翔说出了我想说的东西,虽然意大利队赢得艰难,赢得侥幸,但我依然会喊,“意大利队万岁”,祝意大利队一路走好!

    6/13/2006

    意大利惊艳亮相

           世界杯开幕也有几天了,其中我也看了几场了,结果毫无兴奋可言,因为能称得上精彩的比赛看不到。虽然德国4:1战胜了哥斯达黎加,但这是实力上的差距,何况德国的两个丢球预示他不是这届世界杯的主宰。认为能给我带来精彩比赛的英格兰,荷兰等都无一不让人失望,直到意大利登场。
           今天的意大利已经不是传统的意大利,三条线太整齐了。尤其皮尔洛,意大利队的大脑,完全改变了意大利的风格,让人看到了拉丁派打法的优美,如果托蒂能够恢复到最佳状态,那这支意大利队完全可以成为历史上最好的意大利队。拥有世界上最佳的门将,最坚固的后防线,严密而又不失创意的中场,在加上前面两个力量和技术俱佳的前锋,真是不知道还需要补充什么。我很同意黄健翔的一句评语,如果非要给今天的意大利队找毛病的话,就是没有完全恢复的托蒂了。
           我认为这支意大利队的锋线足以让其他球队羡慕的了,包括巴西。像托尼和吉拉蒂诺,哪个队有一个就足以让他们庆幸了,而意大利却拥有两个。虽然他们两个没有进球,但在所有登场球队的前锋中,他们是最让我满意的两个。前面登场的高中锋也有很多,德国的克劳斯,虽说比四年前进步了,但依然是灵光闪现型的,称不上全面;英格兰的克劳奇,身高有了,体重不行,只能堪堪完成护球任务;荷兰的范尼,禁区之王已不复当年,球都停不稳。再看看托尼和吉拉蒂诺,传给谁都可以整体压上,完成进攻,身体,技术,意识俱佳,看他们进攻太爽了。
           意大利队终于给我带来了一场久违的精彩比赛,当然也有加纳队的功劳,非洲球员的个人能力太强,一个镜头就足以说明一切,欧洲的球员多以速度和身体过人,南美球员多玩技巧,只有非洲球员,他们仅靠身体的原地晃动就可以把意大利的防守球员晃倒在地,真是令人惊讶。
           接下来法国,巴西,西班牙以及我很关注的乌克兰就要等场了,希望他们能给我带来我想要的比赛,我期待着……
    德占卜大师预测意大利夺冠其预测准确率高达98%
    6/6/2006

    .net的技术备忘录

            在asp.net中调用remoting对象,无论是通过配置文件还是用代码实现,其初始化过程只能一次,否则会导致重复初始化的失败。也就是说以下的代码是不能调用多次的,例如:
            RemotingConfiguration.Configure("xxx.config");
    或者
            RemotingConfiguration.RegisterWellKnownServiceType(...);
          
            在网上查到两种方法避免重复初始化,特记录下来,以备将来查询。
            第一种:在Page_Load中作处理
            protected void Page_Load(object sender, EventArgs e)
            {
                 /*
                    判断该页是否是在响应一个客户端的postback装载过程中,
                    或者是否是第一次装载。
                 */
                 if (!IsPostBack)
                 {
                     //添加初始化代码
                 }
            }
            不过这种方法在调试时似乎还是存在一些问题,还需要进一步查询。
            第二种:在Global.asax中处理
            void Application_Start(object sender, EventArgs e)
            {
                //添加初始化代码
            }
     
            另一个需要记录下来的就是在asp.net中通过配置文件初始化remoting的代码需要添加路径信息,如下:
            RemotingConfiguration.Config(Server.MapPath(".") + "\\Web.Config");
     
            总之,需要记录的东西还很多,思考的方式在变,任重道远……
    5/27/2006

    不舍,舍瓦

          当听到舍瓦要离开AC米兰的新闻时,说不出的感觉。
          AC米兰是我的最爱,从我认识足球开始,之所以喜爱它是因为它所带给我的足球享受。毋庸置疑,这离不开其中队员的表现。当年的AC米兰然我痴迷的原因就是因为荷兰三剑客,当他们相继离开后,米兰就没有让我再寻到钟爱的焦点,直到舍瓦——乌克兰“核弹头”的到来,在还没有来到米兰的时候,他所在的基辅狄纳莫队就被当时的专业人士评为二十一世纪的打法,而其中的灵魂之一就是舍瓦,那时只闻其名,不见其人。当他真正站在圣西罗体育场时,我发现,我又找到了一个让我钟爱米兰的理由,那就是他,舍甫琴柯!
          七年的圣西罗情结,七年的辉煌,该拿的荣誉他都得到了,今年也完成了世界杯的梦想,他真的没有所求了。环顾当今足坛,确实没有人能够替代舍瓦,离他最接近的也只能算亨利了,这下米兰的麻烦大了。虽然米兰还有一个卡卡让我欣赏,但看看网上所指出的所有可能接替舍瓦的名单,都没有一个能让我觉得可以替代舍瓦的,米兰,你的红黑剑条衫到底能让我再找到一个守望你的理由吗,我盼望着,盼望着你能给我带来惊喜。
          最后,还是要祝福舍甫琴柯,感谢你在米兰给我开来的快乐,祝你在英格兰,在切尔西走完你辉煌的足球生涯,一路走好……
    追忆舍瓦米兰16个瞬间抹不掉那一缕红黑记忆(图)
    5/26/2006

    凑一篇

          很久没有写blog了。
          因为五一后工作内容换了,离开了C++阵营,转投.NET旗下,有很多东西需要熟悉……
          关注内容换了,视野也开始转变了……
          这个星期,又是杂乱的一周,http,remoting,webservice,异步编程,每一个都了解了些许皮毛,对.NET也有了些感觉,当然,过多过细节的东西就不便透露了……
          虽然角色转变了,但最终的想法并没有改变,依然在为Animation谋出路,也许有些狭隘,但我也不想说得过于宽泛,这就是近期的目标,尽管我的内心中清楚地知道从这个小目标中已经找到了我的方向。平时闲下来,总是希望能够找到令人兴奋的概念,但又总是未果,毕竟是一条长路……
          世界杯临近了,但这段时间个人的烦事还很多,不知道那个时候心情会怎样?
    3/28/2006

    欧洲冠军联赛

        明天凌晨,又一轮的欧冠联赛又要开始,真不知道最终我的米兰会怎样,总之是心情忐忑。
        今年的8强中,最被看好的就是最具观赏性的巴塞罗那,这个确实不是盖的,看小罗和梅西的表演绝对是一种享受,他们不是在比赛,而是在享受足球,再加上一个前面不断疯跑的“猎豹”埃托奥,不是热门才怪,不知道还有哪支球队的防线可以抵挡这样的进攻。不过事情可不是绝对的,想当年,欧冠决赛就是在当时最利的矛—巴塞罗那(拥有罗马里奥和斯托伊奇科夫)和最坚的盾—AC米兰间展开,最终却被米兰以4:0完胜,可谓出乎任何人的意料,所以说,足球就是足球呀!
        其他的球队都不是我所喜欢的,因此他们输赢无所谓,我还是最担心我的米兰。后天凌晨就要遭遇本年度状态最佳的里昂,可谓凶多吉少,我可不希望米兰就止步在8强,希望能像多数人期待的那样,在半决赛看到米兰与巴塞罗那的巅峰对决!
        lp早就和我达成协议,今年的世界杯会陪我看,不过自从她来到我身边,每周的足球直播我基本没看过,都被她否决掉了,再加上德国的时差,基本都在半夜左右开始,真不知道到时候lp会不会反悔,反正我现在也只有50%的把握能看到比赛,还是要在世界杯前多贿赂贿赂她,请她高抬贵手,放我一马,毕竟4年一次,不容易,而且有我的舍甫琴科登场,不能错过呀。