<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-1346473674484214752</id><updated>2012-02-16T19:05:13.370-08:00</updated><category term='公司'/><title type='text'>google www.google.com 谷歌 康熙来了</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://chenruitiger.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1346473674484214752/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://chenruitiger.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>chenrui</name><uri>http://www.blogger.com/profile/13188836662597773306</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>31</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-1346473674484214752.post-2628936385904520053</id><published>2009-03-27T06:54:00.000-07:00</published><updated>2009-03-27T06:55:09.063-07:00</updated><title type='text'>关于CTreeCtrl</title><content type='html'>关于CTreeCtrl一些操作2007-06-01 16:20树形控件可以用于树形的结构，其中有一个根接点(Root)然后下面有许多子结点，而每个子结点上有允许有一个或多个或没有子结点。MFC中使用CTreeCtrl类来封装树形控件的各种操作。通过调用&lt;br /&gt;BOOL Create( DWORD dwStyle, const RECT&amp; rect, CWnd* pParentWnd, UINT nID );创建一个窗口，dwStyle中可以使用以下一些树形控件的专用风格： &lt;br /&gt;&lt;br /&gt;TVS_HASLINES 在父/子结点之间绘制连线 &lt;br /&gt;TVS_LINESATROOT 在根/子结点之间绘制连线 &lt;br /&gt;TVS_HASBUTTONS 在每一个结点前添加一个按钮，用于表示当前结点是否已被展开 &lt;br /&gt;TVS_EDITLABELS 结点的显示字符可以被编辑 &lt;br /&gt;TVS_SHOWSELALWAYS 在失去焦点时也显示当前选中的结点 &lt;br /&gt;TVS_DISABLEDRAGDROP 不允许Drag/Drop &lt;br /&gt;TVS_NOTOOLTIPS 不使用ToolTip显示结点的显示字符 &lt;br /&gt;在树形控件中每一个结点都有一个句柄（HTREEITEM），同时添加结点时必须提供的参数是该结点的父结点句柄，（其中根Root结点只有一个，既不可以添加也不可以删除）利用&lt;br /&gt;HTREEITEM InsertItem( LPCTSTR lpszItem, HTREEITEM hParent = TVI_ROOT, HTREEITEM hInsertAfter = TVI_LAST );可以添加一个结点，pszItem为显示的字符，hParent代表父结点的句柄，当前添加的结点会排在hInsertAfter表示的结点的后面，返回值为当前创建的结点的句柄。下面的代码会建立一个如下形式的树形结构： &lt;br /&gt;+--- Parent1&lt;br /&gt;      +--- Child1_1&lt;br /&gt;      +--- Child1_2&lt;br /&gt;      +--- Child1_3&lt;br /&gt;+--- Parent2&lt;br /&gt;+--- Parent3&lt;br /&gt;&lt;br /&gt;/*假设m_tree为一个CTreeCtrl对象，而且该窗口已经创建*/&lt;br /&gt;HTREEITEM hItem,hSubItem;&lt;br /&gt;hItem = m_tree.InsertItem("Parent1",TVI_ROOT);&lt;br /&gt;在根结点上添加Parent1&lt;br /&gt;hSubItem = m_tree.InsertItem("Child1_1",hItem);&lt;br /&gt;//在Parent1上添加一个子结点&lt;br /&gt;hSubItem = m_tree.InsertItem("Child1_2",hItem,hSubItem);&lt;br /&gt;//在Parent1上添加一个子结点，排在Child1_1后面&lt;br /&gt;hSubItem = m_tree.InsertItem("Child1_3",hItem,hSubItem);&lt;br /&gt;&lt;br /&gt;hItem = m_tree.InsertItem("Parent2",TVI_ROOT,hItem);    &lt;br /&gt;hItem = m_tree.InsertItem("Parent3",TVI_ROOT,hItem);    &lt;br /&gt;&lt;br /&gt;如果你希望在每个结点前添加一个小图标，就必需先调用CImageList* SetImageList( CImageList * pImageList, int nImageListType );指明当前所使用的ImageList，nImageListType为TVSIL_NORMAL。在调用完成后控件中使用图片以设置的ImageList中图片为准。然后调用&lt;br /&gt;HTREEITEM InsertItem( LPCTSTR lpszItem, int nImage, int nSelectedImage, HTREEITEM hParent = TVI_ROOT, HTREEITEM hInsertAfter = TVI_LAST);添加结点，nImage为结点没被选中时所使用图片序号，nSelectedImage为结点被选中时所使用图片序号。下面的代码演示了ImageList的设置。 &lt;br /&gt;/*m_list 为CImageList对象&lt;br /&gt;IDB_TREE 为16*(16*4)的位图，每个图片为16*16共4个图标*/&lt;br /&gt;m_list.Create(IDB_TREE,16,4,RGB(0,0,0));&lt;br /&gt;m_tree.SetImageList(&amp;m_list,TVSIL_NORMAL);&lt;br /&gt;m_tree.InsertItem("Parent1",0,1);&lt;br /&gt;//添加，选中时显示图标1，未选中时显示图标0&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;此外CTreeCtrl还提供了一些函数用于得到/修改控件的状态。 &lt;br /&gt;HTREEITEM GetSelectedItem( );将返回当前选中的结点的句柄。BOOL SelectItem( HTREEITEM hItem );将选中指明结点。 &lt;br /&gt;BOOL GetItemImage( HTREEITEM hItem, int&amp; nImage, int&amp; nSelectedImage ) / BOOL SetItemImage( HTREEITEM hItem, int nImage, int nSelectedImage )用于得到/修改某结点所使用图标索引。 &lt;br /&gt;CString GetItemText( HTREEITEM hItem ) /BOOL SetItemText( HTREEITEM hItem, LPCTSTR lpszItem );用于得到/修改某一结点的显示字符。 &lt;br /&gt;BOOL DeleteItem( HTREEITEM hItem );用于删除某一结点，BOOL DeleteAllItems( );将删除所有结点。 &lt;br /&gt;&lt;br /&gt;此外如果想遍历树可以使用下面的函数： &lt;br /&gt;HTREEITEM GetRootItem( );得到根结点。 &lt;br /&gt;HTREEITEM GetChildItem( HTREEITEM hItem );得到子结点。 &lt;br /&gt;HTREEITEM GetPrevSiblingItem/GetNextSiblingItem( HTREEITEM hItem );得到指明结点的上/下一个兄弟结点。 &lt;br /&gt;HTREEITEM GetParentItem( HTREEITEM hItem );得到父结点。 &lt;br /&gt;&lt;br /&gt;树形控件的消息映射使用ON_NOTIFY宏，形式如同：ON_NOTIFY( wNotifyCode, id, memberFxn )，wNotifyCode为通知代码，id为产生该消息的窗口ID，memberFxn为处理函数，函数的原型如同void OnXXXTree(NMHDR* pNMHDR, LRESULT* pResult)，其中pNMHDR为一数据结构，在具体使用时需要转换成其他类型的结构。对于树形控件可能取值和对应的数据结构为： &lt;br /&gt;&lt;br /&gt;TVN_SELCHANGED 在所选中的结点发生改变后发送，所用结构：NMTREEVIEW &lt;br /&gt;TVN_ITEMEXPANDED 在某结点被展开后发送，所用结构：NMTREEVIEW &lt;br /&gt;TVN_BEGINLABELEDIT 在开始编辑结点字符时发送，所用结构：NMTVDISPINFO &lt;br /&gt;TVN_ENDLABELEDIT 在结束编辑结点字符时发送，所用结构：NMTVDISPINFO &lt;br /&gt;TVN_GETDISPINFO 在需要得到某结点信息时发送，（如得到结点的显示字符）所用结构：NMTVDISPINFO &lt;br /&gt;关于ON_NOTIFY有很多内容，将在以后的内容中进行详细讲解。 &lt;br /&gt;&lt;br /&gt;关于动态提供结点所显示的字符：首先你在添加结点时需要指明lpszItem参数为：LPSTR_TEXTCALLBACK。在控件显示该结点时会通过发送TVN_GETDISPINFO来取得所需要的字符，在处理该消息时先将参数pNMHDR转换为LPNMTVDISPINFO，然后填充其中item.pszText。但是我们通过什么来知道该结点所对应的信息呢，我的做法是在添加结点后设置其lParam参数，然后在提供信息时利用该参数来查找所对应的信息。下面的代码说明了这种方法： &lt;br /&gt;&lt;br /&gt;char szOut[8][3]={"No.1","No.2","No.3"};&lt;br /&gt;&lt;br /&gt;//添加结点&lt;br /&gt;HTREEITEM hItem = m_tree.InsertItem(LPSTR_TEXTCALLBACK,...)&lt;br /&gt;m_tree.SetItemData(hItem, 0 );&lt;br /&gt;hItem = m_tree.InsertItem(LPSTR_TEXTCALLBACK,...)&lt;br /&gt;m_tree.SetItemData(hItem, 1 );&lt;br /&gt;//处理消息&lt;br /&gt;void CParentWnd::OnGetDispInfoTree(NMHDR* pNMHDR, LRESULT* pResult)&lt;br /&gt;{&lt;br /&gt;TV_DISPINFO* pTVDI = (TV_DISPINFO*)pNMHDR;&lt;br /&gt;pTVDI-&gt;item.pszText=szOut[pTVDI-&gt;item.lParam];&lt;br /&gt;//通过lParam得到需要显示的字符在数组中的位置&lt;br /&gt;*pResult = 0;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;关于编辑结点的显示字符：首先需要设置树形控件的TVS_EDITLABELS风格，在开始编辑时该控件将会发送TVN_BEGINLABELEDIT，你可以通过在处理函数中返回TRUE来取消接下来的编辑，在编辑完成后会发送TVN_ENDLABELEDIT，在处理该消息时需要将参数pNMHDR转换为LPNMTVDISPINFO，然后通过其中的item.pszText得到编辑后的字符，并重置显示字符。如果编辑在中途中取消该变量为NULL。下面的代码说明如何处理这些消息： &lt;br /&gt;&lt;br /&gt;//处理消息 TVN_BEGINLABELEDIT&lt;br /&gt;void CParentWnd::OnBeginEditTree(NMHDR* pNMHDR, LRESULT* pResult)&lt;br /&gt;{&lt;br /&gt;TV_DISPINFO* pTVDI = (TV_DISPINFO*)pNMHDR;&lt;br /&gt;if(pTVDI-&gt;item.lParam==0);//判断是否取消该操作&lt;br /&gt;    *pResult = 1;&lt;br /&gt;else&lt;br /&gt;    *pResult = 0;&lt;br /&gt;}&lt;br /&gt;//处理消息 TVN_BEGINLABELEDIT&lt;br /&gt;void CParentWnd::OnBeginEditTree(NMHDR* pNMHDR, LRESULT* pResult)&lt;br /&gt;{&lt;br /&gt;TV_DISPINFO* pTVDI = (TV_DISPINFO*)pNMHDR;&lt;br /&gt;if(pTVDI-&gt;item.pszText==NULL);//判断是否已经取消取消编辑&lt;br /&gt;    m_tree.SetItemText(pTVDI-&gt;item.hItem,pTVDI-&gt;pszText);&lt;br /&gt;//重置显示字符&lt;br /&gt;*pResult = 0;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;上面讲述的方法所进行的消息映射必须在父窗口中进行（同样WM_NOTIFY的所有消息都需要在父窗口中处理）。&lt;br /&gt;&lt;br /&gt;/************************示例代码*************************/&lt;br /&gt;&lt;br /&gt;image.Create(IDB_BITMAP,16,10,RGB(255,0,255));//CImageList image;&lt;br /&gt;m_Tree.SetImageList(&amp;image,TVSIL_NORMAL);&lt;br /&gt;&lt;br /&gt;//CTreeCtrl m_Tree;&lt;br /&gt;HTREEITEM hItem=m_Tree.InsertItem(_TEXT("中国"),0,1,TVI_ROOT);&lt;br /&gt;HTREEITEM hSub=m_Tree.InsertItem(_TEXT("河北"),0,2,hItem);&lt;br /&gt;m_Tree.InsertItem(_TEXT("石家庄"),2,3,hSub);&lt;br /&gt;m_Tree.InsertItem(_TEXT("唐山"),2,4,hSub);&lt;br /&gt;m_Tree.InsertItem(_TEXT("邢台"),2,5,hSub);&lt;br /&gt;hSub=m_Tree.InsertItem(_TEXT("河南"),0,3,hItem);&lt;br /&gt;m_Tree.InsertItem(_TEXT("少林寺"),3,4,hSub);&lt;br /&gt;m_Tree.InsertItem(_TEXT("嵩山"),3,5,hSub);&lt;br /&gt;hSub=m_Tree.InsertItem(_TEXT("湖北"),0,4,hItem);&lt;br /&gt;m_Tree.InsertItem(_TEXT("武汉"),4,6,hSub);&lt;br /&gt;hSub=m_Tree.InsertItem(_TEXT("湖南"),0,5,hItem);&lt;br /&gt;m_Tree.InsertItem(_TEXT("经济改革"),5,6,hSub);&lt;br /&gt;hSub=m_Tree.InsertItem(_TEXT("山西"),0,6,hItem);&lt;br /&gt;m_Tree.InsertItem(_TEXT("板面"),6,7,hSub);&lt;br /&gt;&lt;br /&gt;/*********************************程序界面图见个人相册***********************************/&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1346473674484214752-2628936385904520053?l=chenruitiger.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chenruitiger.blogspot.com/feeds/2628936385904520053/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1346473674484214752&amp;postID=2628936385904520053' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1346473674484214752/posts/default/2628936385904520053'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1346473674484214752/posts/default/2628936385904520053'/><link rel='alternate' type='text/html' href='http://chenruitiger.blogspot.com/2009/03/ctreectrl.html' title='关于CTreeCtrl'/><author><name>chenrui</name><uri>http://www.blogger.com/profile/13188836662597773306</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1346473674484214752.post-1883556645761206966</id><published>2009-03-27T06:27:00.000-07:00</published><updated>2009-03-27T06:29:41.850-07:00</updated><title type='text'>非模态对话框</title><content type='html'>Poco.cn MyPoco 手机也能登陆空间 m.poco.cn  随机搜友 | 发表 | 注册 - 登录  &lt;br /&gt;&lt;br /&gt;   &lt;br /&gt; 首 页&lt;br /&gt; 我的相册&lt;br /&gt; 所有作品&lt;br /&gt; 我的好友&lt;br /&gt; 我的资料&lt;br /&gt; 最近30位访客&lt;br /&gt;   POCO号码：35970307  加为好友&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;   &lt;br /&gt; &lt;br /&gt;♂ fccc (浙江 杭州) &lt;br /&gt;不在线 &lt;br /&gt;  &lt;br /&gt;个人空间网址：&lt;br /&gt;http://up2you.poco.cn [复制]  &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;&lt;br /&gt;&lt;br /&gt;本空间最新文章  &lt;br /&gt;4再次看了中国远征军 感慨万... 4温习非模式对话框[转载] 4袁岳 36条人情世故[转载] 4吉他音乐[转载] 4读陈先生文章有感！ 4365行 行行出状元！启发一... 4阅读下面代码，程序列举了... 4CComboBox控件详解[转载] 4（10CD珍藏版）黄金古典珍... 4实拍穷人孩子的真实生活(图...  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;本空间浏览最多的文章  &lt;br /&gt;4 网上最全的matlab下载链接... 4 C语言问题资料大全[转载] 4 OnDraw与OnPaint的区别 4 pdf文件如何转换为word文件 4 define用法归类收藏 4 注册咨询工程师考试报考指... 4 BP神经网络学习！！[转载] 4 new和malloc的区别[转载] 4 pdf转换为doc 4 Google earth坐标收集大全  &lt;br /&gt;   温习非模式对话框[转载]   &lt;br /&gt; &lt;br /&gt;心情：   天气：   类别：随便写写   查看:11   评论:0    &lt;br /&gt;&lt;br /&gt;发表于：2009-02-12 &lt;br /&gt; 5.4 非模态对话框&lt;br /&gt;&lt;br /&gt;5.4.1 非模态对话框的特点&lt;br /&gt;&lt;br /&gt;与模态对话框不同，非模态对话框不垄断用户的输入，用户打开非模态对话框后，仍然可以与其它界面进行交互。&lt;br /&gt;&lt;br /&gt;非模态对话框的设计与模态对话框基本类似，也包括设计对话框模板和设计CDialog类的派生类两部分。但是，在对话框的创建和删除过程中，非模态对话框与模态对话框相比有下列不同之处：&lt;br /&gt;&lt;br /&gt;非模态对话框的模板必须具有Visible风格，否则对话框将不可见，而模态对话框则无需设置该项风格。更保险的办法是调用CWnd::ShowWindow(SW_SHOW)来显示对话框，而不管对话框是否具有Visible风格。&lt;br /&gt;&lt;br /&gt;非模态对话框对象是用new操作符在堆中动态创建的，而不是以成员变量的形式嵌入到别的对象中或以局部变量的形式构建在堆栈上。通常应在对话框的拥有者窗口类内声明一个指向对话框类的指针成员变量，通过该指针可访问对话框对象。&lt;br /&gt;&lt;br /&gt;通过调用CDialog::Create函数来启动对话框，而不是CDialog::DoModal，这是模态对话框的关键所在。由于Create函数不会启动新的消息循环，对话框与应用程序共用同一个消息循环，这样对话框就不会垄断用户的输入。Create在显示了对话框后就立即返回，而DoModal是在对话框被关闭后才返回的。众所周知，在MFC程序中，窗口对象的生存期应长于对应的窗口，也就是说，不能在未关闭屏幕上窗口的情况下先把对应的窗口对象删除掉。由于在Create返回后，不能确定对话框是否已关闭，这样也就无法确定对话框对象的生存期，因此只好在堆中构建对话框对象，而不能以局部变量的形式来构建之。&lt;br /&gt;&lt;br /&gt;必须调用CWnd::DestroyWindow而不是CDialog::EndDialog来关闭非模态对话框。调用CWnd::DestroyWindow是直接删除窗口的一般方法。由于缺省的CDialog::OnOK和CDialog::OnCancel函数均调用EndDialog，故程序员必须编写自己的OnOK和OnCancel函数并且在函数中调用DestroyWindow来关闭对话框。&lt;br /&gt;&lt;br /&gt;因为是用new操作符构建非模态对话框对象，因此必须在对话框关闭后，用delete操作符删除对话框对象。在屏幕上一个窗口被删除后，框架会调用CWnd::PostNcDestroy，这是一个虚拟函数，程序可以在该函数中完成删除窗口对象的工作，具体代码如下&lt;br /&gt;void CModelessDialog::PostNcDestroy&lt;br /&gt;{&lt;br /&gt;delete this; //删除对象本身&lt;br /&gt;}&lt;br /&gt;这样，在删除屏幕上的对话框后，对话框对象将被自动删除。拥有者对象就不必显式的调用delete来删除对话框对象了。&lt;br /&gt;&lt;br /&gt;必须有一个标志表明非模态对话框是否是打开的。这样做的原因是用户有可能在打开一个模态对话框的情况下，又一次选择打开命令。程序根据标志来决定是打开一个新的对话框，还是仅仅把原来打开的对话框激活。通常可以用拥有者窗口中的指向对话框对象的指针作为这种标志，当对话框关闭时，给该指针赋NULL值，以表明对话框对象已不存在了。&lt;br /&gt;&lt;br /&gt;提示：在C++编程中，判断一个位于堆中的对象是否存在的常用方法是判断指向该对象的指针是否为空。这种机制要求程序员将指向该对象的指针初始化为NULL值，在创建对象时将返回的地址赋给该指针，而在删除对象时将该指针置成NULL值。 &lt;br /&gt;&lt;br /&gt;根据上面的分析，我们很容易把Register程序中的登录数据对话框改成非模态对话框。这样做的好处在于如果用户在输入数据时发现编辑视图中有错误的数据，那么不必关闭对话框，就可以在编辑视图中进行修改。&lt;br /&gt;&lt;br /&gt;请读者按下面几步操作：&lt;br /&gt;&lt;br /&gt;在登录数据对话框模板的属性对话框的More Styles页中选择Visible项。&lt;br /&gt;&lt;br /&gt;在RegisterView.h头文件的CRegisterView类的定义中加入&lt;br /&gt;public:&lt;br /&gt;CRegisterDialog* m_pRegisterDlg;&lt;br /&gt;&lt;br /&gt;在RegisterView.h头文件的头部加入对CRegisterDialog类的声明&lt;br /&gt;class CRegisterDialog;&lt;br /&gt;加入该行的原因是在CRegisterView类中有一个CRegisterDialog类型的指针，因此必须保证CRegisterDialog类的声明出现在CRegisterView之前，否则编译时将会出错。解决这个问题有两种办法，一种办法是保证在#include “RegisterView.h”语句之前有#include “RegisterDialog.h”语句，这种办法造成了一种依赖关系，增加了编译负担，不是很好；另一种办法是在CRegisterView类的声明之前加上一个对CRegisterDialog的声明来暂时“蒙蔽”编译器，这样在有#include “RegisterView.h”语句的模块中，除非要用到CRegisterDialog类，否则不用加入#include “RegisterDialog.h”语句。&lt;br /&gt;&lt;br /&gt;在RegisterDialog.cpp文件的头部的#include语句区的末尾添加下面两行&lt;br /&gt;#include 'RegisterDoc.h'&lt;br /&gt;#include 'RegisterView.h'&lt;br /&gt;&lt;br /&gt;利用ClassWizard为CRegisterDialog类加入OnCancel和PostNcDestroy成员函数。加入的方法是进入ClassWizard后选择Message Maps页，并在Class name栏中选择CRegisterDialog。然后，在Object IDs栏中选择IDCANCEL后，在Messages栏中双击BN_CLICKED，这就创建了OnCancel。要创建PostNcDestroy，先在Object IDs栏中选择CRegisterDialog，再在Messages栏中双击PostNcDestroy即可。&lt;br /&gt;&lt;br /&gt;分别按清单5.10和5.11，对CRegisterView类和CRegisterDialog类进行修改。&lt;br /&gt;&lt;br /&gt;　&lt;br /&gt;&lt;br /&gt;清单5.10 CRegisterView类的部分代码&lt;br /&gt;&lt;br /&gt;CRegisterView::CRegisterView()&lt;br /&gt;&lt;br /&gt;{&lt;br /&gt;&lt;br /&gt;// TODO: add construction code here&lt;br /&gt;&lt;br /&gt;　&lt;br /&gt;&lt;br /&gt;m_pRegisterDlg=NULL; //指针初始化为NULL&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;　&lt;br /&gt;&lt;br /&gt;void CRegisterView::OnEditRegister() &lt;br /&gt;&lt;br /&gt;{&lt;br /&gt;&lt;br /&gt;// TODO: Add your command handler code here&lt;br /&gt;&lt;br /&gt;　&lt;br /&gt;&lt;br /&gt;　&lt;br /&gt;&lt;br /&gt;if(m_pRegisterDlg)&lt;br /&gt;&lt;br /&gt;m_pRegisterDlg-&gt;SetActiveWindow(); //激活对话框&lt;br /&gt;&lt;br /&gt;else&lt;br /&gt;&lt;br /&gt;{&lt;br /&gt;&lt;br /&gt;//创建非模态对话框&lt;br /&gt;&lt;br /&gt;m_pRegisterDlg=new CRegisterDialog(this);&lt;br /&gt;&lt;br /&gt;m_pRegisterDlg-&gt;Create(IDD_REGISTER,this);&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;清单5.11 CRegisterDialog的部分代码&lt;br /&gt;&lt;br /&gt;void CRegisterDialog::PostNcDestroy() &lt;br /&gt;&lt;br /&gt;{&lt;br /&gt;&lt;br /&gt;// TODO: Add your specialized code here and/or call the base class&lt;br /&gt;&lt;br /&gt;　&lt;br /&gt;&lt;br /&gt;delete this; //删除对话框对象&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;　&lt;br /&gt;&lt;br /&gt;void CRegisterDialog::OnCancel() &lt;br /&gt;&lt;br /&gt;{&lt;br /&gt;&lt;br /&gt;// TODO: Add extra cleanup here&lt;br /&gt;&lt;br /&gt;　&lt;br /&gt;&lt;br /&gt;((CRegisterView*)m_pParent)-&gt;m_pRegisterDlg=NULL;&lt;br /&gt;&lt;br /&gt;DestroyWindow(); //删除对话框 &lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;CRegisterView::OnEditRegister函数判断登录数据对话框是否已打开，若是，就激活对话框，否则，就创建该对话框。该函数中主要调用了下列函数：&lt;br /&gt;&lt;br /&gt;调用CWnd::SetActiveWindow激活对话框，该函数的声明为&lt;br /&gt;CWnd* SetActiveWindow( );&lt;br /&gt;该函数使本窗口成为活动窗口，并返回原来活动的窗口。&lt;br /&gt;&lt;br /&gt;调用CDialog::Create来显示对话框，该函数的声明为&lt;br /&gt;BOOL Create( UINT nIDTemplate, CWnd* pParentWnd = NULL );&lt;br /&gt;参数nIDTemplate是对话框模板的ID。pParentWnd指定了对话框的父窗口或拥有者。&lt;br /&gt;&lt;br /&gt;　&lt;br /&gt;&lt;br /&gt;当用户在登录数据对话框中点击“取消”按钮后，CRegisterDialog::OnCancel将被调用，在该函数中调用CWnd::DestroyWindow来关闭对话框，并且将CRegisterView的成员m_pRegisterDlg置为NULL以表明对话框被关闭了。调用DestroyWindow导致了对CRegisterDialog::PostNcDestroy的调用，在该函数中用delete操作符删除了CRegisterDialog对象本身。&lt;br /&gt;&lt;br /&gt;编译并运行Register，现在登录数据对话框已经变成一个非模态对话框了。&lt;br /&gt;&lt;br /&gt;5.4.2 窗口对象的自动清除&lt;br /&gt;&lt;br /&gt;一个MFC窗口对象包括两方面的内容：一是窗口对象封装的窗口，即存放在m_hWnd成员中的HWND（窗口句柄），二是窗口对象本身是一个C++对象。要删除一个MFC窗口对象，应该先删除窗口对象封装的窗口，然后删除窗口对象本身。&lt;br /&gt;&lt;br /&gt;删除窗口最直接方法是调用CWnd::DestroyWindow或::DestroyWindow，前者封装了后者的功能。前者不仅会调用后者，而且会使成员m_hWnd保存的HWND无效(NULL)。如果DestroyWindow删除的是一个父窗口或拥有者窗口，则该函数会先自动删除所有的子窗口或被拥有者，然后再删除父窗口或拥有者。在一般情况下，在程序中不必直接调用DestroyWindow来删除窗口，因为MFC会自动调用DestroyWindow来删除窗口。例如，当用户退出应用程序时，会产生WM_CLOSE消息，该消息会导致MFC自动调用CWnd::DestroyWindow来删除主框架窗口，当用户在对话框内按了OK或Cancel按钮时，MFC会自动调用CWnd::DestroyWindow来删除对话框及其控件。&lt;br /&gt;&lt;br /&gt;窗口对象本身的删除则根据对象创建方式的不同，分为两种情况。在MFC编程中，会使用大量的窗口对象，有些窗口对象以变量的形式嵌入在别的对象内或以局部变量的形式创建在堆栈上，有些则用new操作符创建在堆中。对于一个以变量形式创建的窗口对象，程序员不必关心它的删除问题，因为该对象的生命期总是有限的，若该对象是某个对象的成员变量，它会随着父对象的消失而消失，若该对象是一个局部变量，那么它会在函数返回时被清除。&lt;br /&gt;&lt;br /&gt;对于一个在堆中动态创建的窗口对象，其生命期却是任意长的。初学者在学习C++编程时，对new操作符的使用往往不太踏实，因为用new在堆中创建对象，就不能忘记用delete删除对象。读者在学习MFC的例程时，可能会产生这样的疑问，为什么有些程序用new创建了一个窗口对象，却未显式的用delete来删除它呢？问题的答案就是有些MFC窗口对象具有自动清除的功能。&lt;br /&gt;&lt;br /&gt;如前面讲述非模态对话框时所提到的，当调用CWnd::DestroyWindow或::DestroyWindow删除一个窗口时，被删除窗口的PostNcDestroy成员函数会被调用。缺省的PostNcDestroy什么也不干，但有些MFC窗口类会覆盖该函数并在新版本的PostNcDestroy中调用delete this来删除对象，从而具有了自动清除的功能。此类窗口对象通常是用new操作符创建在堆中的，但程序员不必操心用delete操作符去删除它们，因为一旦调用DestroyWindow删除窗口，对应的窗口对象也会紧接着被删除。&lt;br /&gt;&lt;br /&gt;不具有自动清除功能的窗口类如下所示。这些窗口对象通常是以变量的形式创建的，无需自动清除功能。&lt;br /&gt;&lt;br /&gt;所有标准的Windows控件类。&lt;br /&gt;&lt;br /&gt;从CWnd类直接派生出来的子窗口对象（如用户定制的控件）。&lt;br /&gt;&lt;br /&gt;切分窗口类CSplitterWnd。&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;主框架窗口类（直接或间接从CFrameWnd类派生）。&lt;br /&gt;&lt;br /&gt;视图类（直接或间接从CView类派生）。&lt;br /&gt;&lt;br /&gt;　&lt;br /&gt;&lt;br /&gt;读者在设计自己的派生窗口类时，可根据窗口对象的创建方法来决定是否将窗口类设计成可以自动清除的。例如，对于一个非模态对话框来说，其对象是创建在堆中的，因此应该具有自动清除功能。&lt;br /&gt;&lt;br /&gt;综上所述，对于MFC窗口类及其派生类来说，在程序中一般不必显式删除窗口对象。也就是说，既不必调用DestroyWindow来删除窗口对象封装的窗口，也不必显式地用delete操作符来删除窗口对象本身。只要保证非自动清除的窗口对象是以变量的形式创建的，自动清除的窗口对象是在堆中创建的，MFC的运行机制就可以保证窗口对象的彻底删除。&lt;br /&gt;&lt;br /&gt;如果需要手工删除窗口对象，则应该先调用相应的函数（如CWnd::DestroyWindow）删除窗口，然后再删除窗口对象．对于以变量形式创建的窗口对象，窗口对象的删除是框架自动完成的．对于在堆中动态创建了的非自动清除的窗口对象，必须在窗口被删除后，显式地调用delete来删除对象（一般在拥有者或父窗口的析构函数中进行）．对于具有自动清除功能的窗口对象，只需调用CWnd::DestroyWindow即可删除窗口和窗口对象。注意，对于在堆中创建的窗口对象，不要在窗口还未关闭的情况下就用delete操作符来删除窗口对象．&lt;br /&gt;&lt;br /&gt;提示：在非模态对话框的OnCancel函数中可以不调用CWnd::DestroyWindow，取而代之的是调用CWnd::ShowWindow(SW_HIDE)来隐藏对话框．在下次打开对话框时就不必调用Create了，只需调用CWnd::ShowWindow(SW_SHOW)来显示对话框．这样做的好处在于对话框中的数据可以保存下来，供以后使用．由于拥有者窗口在被关闭时会调用DestroyWindow删除每一个所属窗口，故只要非模态对话框是自动清除的，程序员就不必担心对话框对象的删除问题． &lt;br /&gt;&lt;br /&gt;　&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1346473674484214752-1883556645761206966?l=chenruitiger.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chenruitiger.blogspot.com/feeds/1883556645761206966/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1346473674484214752&amp;postID=1883556645761206966' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1346473674484214752/posts/default/1883556645761206966'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1346473674484214752/posts/default/1883556645761206966'/><link rel='alternate' type='text/html' href='http://chenruitiger.blogspot.com/2009/03/blog-post.html' title='非模态对话框'/><author><name>chenrui</name><uri>http://www.blogger.com/profile/13188836662597773306</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1346473674484214752.post-5897566776100783707</id><published>2009-02-21T03:01:00.000-08:00</published><updated>2009-02-21T03:02:16.028-08:00</updated><title type='text'>Mesothelioma(间皮瘤)</title><content type='html'>30&lt;br /&gt;Jan怎样提高你的Google Adsense收入？&lt;br /&gt;shunz 于 2005-1-30,11:27 &lt;br /&gt;归类于：学习笔记, 搜索引擎 Tags：adsense , adsense优化 , adsense优化技巧 , google , 优化 , 优化技巧 , 原创 , 广告.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;版权声明：可以在网上任意转载，转载时请务必以超链接形式标明文章原始出处、作者信息及本声明文字。&lt;br /&gt;作者：shunz，出处：http://shunz.net/2005/01/adsense.html &lt;br /&gt;How to make more money from Google Adsense?&lt;br /&gt;转载请保留本页面的作者信息以及本页面的链接&lt;br /&gt;作者：shunz&lt;br /&gt;链接：http://www.shunz.net/2005/01/adsense.html&lt;br /&gt;1. 首先，也是最重要的一点是，不要进行欺骗性点击(don’t fraudulent click)，不要试图作弊(don’t cheat)，Google永远比你聪明(Google is always a lot smarter than you)，已经有太多的账号Account被封的例子了，不要心存侥幸，因为adsense系统能记录每一次点击(adsense can log every click），而你只要有一次作弊，就会前功尽弃，以前所得的所有收入就都被没收了(Your money will be gone)。&lt;br /&gt;2. 提高你的网站的内容质量，只有质量上去了，才能吸引人来浏览，才能提高Adsense的展示次数，只有展示次数多了，在同样有效点击率(CTR)的情况下，你的总有效点击次数才能上升。而且浏览量的加大也能提高Google对你的网站的广告投放力度，不知道你是否发现了你网站上的浏览量大的页面上的广告也多一些呢？&lt;br /&gt;3. 在做到前面两点的前提下，挑选一些比较贵的关键词(select some higher cost keywords)。相信你已经发现你的网站的adsense每次点击收入并不是千篇一律的，而是有的高有的低，原因是什么呢？相信你已经猜出来了，关键在于不同的关键词的每次点击费用是不一样的，这样，在你的页面里如果含有比较昂贵的关键词的话，所出现的广告的点击费用也是比较高的，这样同样的点击次数，所得的收入就更多了。下面列出一些国外某网站上所讨论的一些比较贵的关键词，注意关键词后面的数字并不是每次点击收入，而是Adwords的价格，当然竞价的价格越高，按比例付给你的钱就越多了：&lt;br /&gt;Bush $0.84&lt;br /&gt;Cheney $0.80&lt;br /&gt;Health $3.90Kerry $2.15&lt;br /&gt;Medicine $1.92&lt;br /&gt;Point of sale software $10.40&lt;br /&gt;President $0.54&lt;br /&gt;SEO $4.61&lt;br /&gt;Satellite TV $3.93&lt;br /&gt;University Degrees Online $8.74&lt;br /&gt;Yoga $1.58&lt;br /&gt;degrees $5.80&lt;br /&gt;entertainment $1.28&lt;br /&gt;hosting $8.77&lt;br /&gt;jessica simpson $0.41&lt;br /&gt;satellite $3.11&lt;br /&gt;university $1.36&lt;br /&gt;university degrees $4.48&lt;br /&gt;webmaster $1.60&lt;br /&gt;web hosting $10.95&lt;br /&gt;有一位仁兄提到了一个关键词Mesothelioma(间皮瘤)，这个词价值$52.81，可以说是天价了。这位仁兄甚至专门做了一个放有Google Adsense的网页来介绍这一医学疾病，而且这个页面已经被人只字未改地抄袭。为什么会有人出这么高的价格来利用这个关键词做广告呢？当然是利益的驱使，因为在美国有很多律师愿意出高价寻找得了间皮瘤(mesothelioma)或者石棉癌(asbestos cancer)等类似疾病的客户，因为代理这些人进行索赔诉讼所得的律师费将会非常之高。这就给我们一个启发，我们也可以找到一个途径去寻找一些价格比较高的关键词，这些关键词应该是分布在一些暴利行业。怎么找到适合你自己的关键词，这主要就靠你自己了。注意，这里我要给出一个忠告：请不要堆砌关键词（don’t put a bunch of keywords in your site），不要仅仅为了adsense而将一些价格高的关键词堆砌在一起，Google最终会惩罚这种行为的，而且中国人在互联网上的欺诈性行为已经臭名昭著了，我不希望再增添新的记录。&lt;br /&gt;4. 尽量不要用已经有很多人用到的关键词，因为某个关键词只有在展示的人越少的时候才越贵。你最好找一个有很多人竞价，但是能展示的人又很少的关键词。&lt;br /&gt;5. 尽量提高你的页面的pr值，有证据表明你的页面的pr值越高，每次点击的收入也会越高。而且pr值越高，越有利于浏览者通过搜索引擎搜索到你的页面，这样你的页面浏览量也会越大。&lt;br /&gt;6. 争取你的浏览者在北京时间的每天下午，也就是美国东部时间每天凌晨的时候点击你的Adsense广告，因为广告商会设定每天的最大广告费用，达到这个费用之后的点击都不会有收入了。所以尽量让你的广告在别人之前被点击。&lt;br /&gt;7. 调整你的广告放置的位置，颜色，大小，使之与你的网站相协调，并且比较醒目。&lt;br /&gt;以上提到7条改善你的Google Adsense广告表现的方法，希望能对你有所启发，谢谢阅读！&lt;br /&gt;作者shunz (http://shunz.net)，原文地址： http://shunz.net/2005/01/adsense.html&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1346473674484214752-5897566776100783707?l=chenruitiger.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chenruitiger.blogspot.com/feeds/5897566776100783707/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1346473674484214752&amp;postID=5897566776100783707' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1346473674484214752/posts/default/5897566776100783707'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1346473674484214752/posts/default/5897566776100783707'/><link rel='alternate' type='text/html' href='http://chenruitiger.blogspot.com/2009/02/mesothelioma.html' title='Mesothelioma(间皮瘤)'/><author><name>chenrui</name><uri>http://www.blogger.com/profile/13188836662597773306</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1346473674484214752.post-7882893555757915395</id><published>2009-02-09T02:49:00.000-08:00</published><updated>2009-02-09T02:54:13.301-08:00</updated><title type='text'>刘谦神秘日本女友</title><content type='html'>chenrui6321278助理 二级(450) |我的贡献||我的空间|百度首页|退出新闻网页贴吧知道MP3图片视频百科刘谦帮助进入词条搜索词条添加到搜藏返回百度百科首页编辑词条刘谦目录1.魔术师2.卫生部党组成员兼卫生部副部长3.在厦门市路桥艺术工程公司美术师4.八一电影制片厂故事片室美术设计师5.历史人物(唐)6.历史人物(宋)7.历史人物(宋)8.中国新经济研究中心研究员9.清朝官吏10.西安工程学院外语系副教授11.北京师范大学文学院副教授12.广东电力发展公司第五届董事会董事[编辑本段]1.魔术师　　姓名：刘谦　　英文名：LOUIS LIU　　国际名：LU CHEN　　性别：男　　婚否：否　　出生日期：1976年6月25日　　出生地：台湾高雄　　星座：巨蟹座　　身高：173cm　　体重：65公斤　　血型：O　　学历：大学　　职业：魔术师　　兴趣：魔术，电影，音乐　　学历：东吴大学日文系毕业　　最喜欢的地方：乔香阁　　2009年正月十五湖南电视台元宵喜乐会刘谦表演　　刘谦，荣获无数国际奖项肯定的魔术表演者。表演足迹遍布世界各地，并多次受邀至国际性魔术大会担任嘉宾演出。其前卫的风格及惊人的创意，俱获海内外同行之赞赏。是在全世界的同业间，最具知名度的台湾魔术师。　　非凡的国际观及不断的自我充实是他的独特之处，为了充实专业领域及格局，同时还涉猎音乐，舞台美术，剧场，工业设计，电视，广告，摄影等等的艺术相关知识。在业界有「魔术活字典」的称号。　　唯一曾受邀至拉斯维加斯及好莱坞魔术城堡演出的台湾魔术师，是魔术界的最高人。目前在台湾地区、日本及欧美各地活跃当中，并多次受邀至世界各地的国际性魔术师大会担任演出嘉宾及专题讲座的讲师。　　2005年其著作「啊！败给魔术」及「啊！败给魔术Part 2」位居金石堂，博客莱，与诚品等各大书店畅销排行榜连续半年，创下魔术教学书籍的销售新记录。　　获奖记录：　　1988年获大卫·科波菲尔(David Copperfield) 颁发全台湾少儿魔术比赛冠军　　1998年"Formosa International Magic Convention" 世界魔术大会最佳创意奖　　1998年获美国魔术师协会日本分会 「SAM JAPAN」颁发特别奖及招聘状　　　2000年大阪"International Magic Convention In Naniwa" 国际魔术大赛冠军。　　　2000年日本近距离魔术协会JCMA特别赏　　　2001年世界魔术研讨会 "World Magic Seminar Asia" 国际魔术大赛银牌　　2001年中国吴桥国际艺术节铜狮奖　　2001年上海国际魔术艺术节银牌奖　　2003年日本魔术协会世界魔术大赛FISM选考会优秀赏　　2003年世界魔术研讨会 "World Magic Seminar Asia" GRAND PRIX大奖　　2003 年世界魔术研讨会年度最佳手法奖观众票选奖　　　2005年美国CHAVEZ魔术学院颁发 尼尔‧佛斯特奖 - 2005年度杰出手法　　2005年美国”Abbott`s Magic Get-together”魔术大会　观众票选最佳演出嘉宾奖　　2008年日本近距离魔术协会年度最佳近距离魔术师〔THE BEST CLOSE-UP MAGICIAN OF THE YEAR〕奖　　国际演出经历　　魔术大会嘉宾　　亚洲国际魔术研讨会 – 日本名古屋　　世界魔术师协会(IBM)年度大会 – 美国迈阿密　　世界魔术研讨会 – 美国拉斯维加斯　　世界魔术师协会英国分部大会 – 英国伊斯特本　　阿巴诺世界魔术大会 –意大利威尼斯　　泰国国际魔术大会 – 泰国曼谷　　浪花国际魔术大会 – 日本鸟羽　　韩国国际魔术节, - 韩国首尔　　吴侨国际魔术节 – 中国河北　　Abbott国际魔术季 – 美国密西根　　ICM国际魔术大会–日本鸟羽　　美国魔术师协会日本分会(SAM JAPAN)年度大会 – 日本崎玉　　中部联合国际魔术大会 – 日本鸟羽　　BIMF釜山国际魔术节– 韩国釜山　　中国魔术金菊奖 – 中国南京　　日本职业魔术师协会年会 – 日本东京　　鎌仓魔术会年度公演 – 日本鎌仓　　新加坡魔术协会 – 新加坡　　商业演出　　魔术城堡 – 美国好莱坞　　札榥王子饭店 – 日本札榥　　Grand Plaza饭店 – 日本名古屋　　上海电影节 – 中国上海　　北区大会堂- 香港　　西湾河文娱中心 – 香港　　欢乐谷国际魔术节 – 中国深圳　　国立剧场 – 日本名古屋]　　http://www.027dxs.com/　　名古屋观光饭店 – 日本名古屋　　奥林匹亚歌剧院 – 美国迈阿密　　莱佛士酒店 – 新加坡　　博品馆剧场 – 日本银座　　Marriott饭店 – 美国关岛　　电视节目　　东方电视台 – 中国　　湖南卫视 - 中国　　中央电视台 - 中国　　安徽卫视 - 中国 -《周日我最大》　　凤凰卫视 - 中国　　SBS - 韩国　　东京电视台 - 日本　　NHK - 日本　　中央电视台2009年春节联欢晚会 - 中国　　星空卫视-中国-《魔星高照》　　著作　　《啊！败给魔术！》（台湾版），高宝国际有限公司2005年1月26日第1版，ISBN 9867323181。该书简体中文版（大陆版）书名《魔法诱惑》，北京出版社2006年1月1日初版，ISBN 7200063339。　　《啊！败给魔术！Part 2》，高宝国际有限公司2005年8月10日初版，ISBN 9867323629 。简体中文版（大陆版）书名《魔法诱惑2》　　《刘谦的魔法签证》，高宝国际有限公司2006年9月13日初版，ISBN 9867088875　　《男人必学的魔术：30个魔术，让你宅男变型男》，高宝国际有限公司2008年7月2日初版，ISBN 9789861851983　　经历　　刘谦是台湾第一位、也是获得过最多国际奖项肯定的魔术师，其中包括了亚洲世界魔术研讨会（World Magic Seminar Asia）魔术比赛冠军，以及魔术界最高荣誉之一的美国魔术学院颁发的「年度最佳手法奖」（Neil Foster - Bill Baird Award for Excellenct in Manipulation）等等。刘谦曾经与人共同制作卫视中文台魔术表演节目《魔星高照》，并亲自担任该节目主持人，而家喻户晓。除此之外，2003年12月，刘谦获得财团法人日本职业魔术协会全体会员票选为「年度最佳外国魔术师」（Magician of the Year）。　　2007年年中起，刘谦在中国电视公司综艺节目《综艺大哥大》中，固定担任魔术竞技单元〈大魔竞〉（Magic）评审之一，并担任魔术表演单元〈刘谦 Magic Show〉主持人，在〈刘谦 Magic Show〉中以固定台词「见证奇迹的时刻」一语成名。　　2009年在央视春节联欢晚会表演近景魔术《魔手神彩》，其中包含近距离魔术「橡皮筋」、「硬币进入玻璃杯」及「戒指进鸡蛋」三个部分。　　从没正式拜师，全靠自学　　很少有人知道，这位已经名闻天下的魔术师，从没有正式拜师学魔术，而且一直“不务正业”：中学时他好玩电脑，上大学时则报了日语专业，毕业出来后却又爱上了唱歌，但绕了十几年，刘谦终于还是当上了职业魔术师、星空卫视《魔星高照》的节目主持人。　　刘谦说：“我真的就因为喜欢，才自己慢慢摸索慢慢练习的。其实我的手很笨，有时候为了练好一个动作，重复几千遍都不算多。”刘谦说，自己是高度近视，所以表演的时候一定会戴上那副“哈利·波特”型眼镜，“一旦摘下来，我就成了刘谦，一个平凡的年轻人，一个渴望远离魔术的人。”　　刘谦作品集　　1、刘谦精典舞台魔术表演：http://v.ku6.com/show/eXW3AzgKQ6WaPm02.html　　2、刘谦见证奇迹1：http://v.youku.com/v_playlist/f2809221o1p4.html　　3、刘谦见证奇迹2：http://v.youku.com/v_playlist/f2934995o1p15.html　　4、刘谦见证奇迹3：http://v.youku.com/v_playlist/f2934995o1p16.html　　5、刘谦见证奇迹4：http://v.youku.com/v_playlist/f2934995o1p12.html　　6、刘谦日本特辑（第一季上）：http://v.youku.com/v_show/id_XNjg2MDA2NTY=.html　　7、刘谦日本特辑（第一季下）：http://v.youku.com/v_show/id_XNjg2MDAwNDA=.html　　8、刘谦日本特辑（第二季上）：http://v.youku.com/v_playlist/f2934995o1p17.html　　9、刘谦日本特辑（第二季下）：http://v.youku.com/v_playlist/f2677114o1p0.html　　10、刘谦神奇的橡皮筋：http://v.youku.com/v_playlist/f2934995o1p13.html　　11、刘谦日本特辑（第三季）：http://v.youku.com/v_playlist/f2934995o1p19.html　　12、天涯共此时海峡两岸中秋晚会-刘谦魔术部分：http://www.tudou.com/programs/view/us1vXFsU8S8/　　刘谦在2009年央视的春节联欢晚会上表演魔术，艺惊四座。　　[编辑本段]2.卫生部党组成员兼卫生部副部长　　男，汉族，云南昆明人，研究员。1974年1月参加工作，1981年4月加入中国共产党。1974年1至1976 年7月山西临汾农科所农场二队插队知青；1976年7至1978年8月山西临汾拖拉机厂工人；1978年8月至1983年8月山西医学院医学系学习。毕业后曾任卫生部科技教育司计划处干部、副处长、处长（其间：1993年2月至1993年5月赴美国波士顿大学医学院国际卫生管理课程班学习，1993年5月至1994年3月任美国麻省理工学院生物工程中心访问学者）；1995年9月至2001年7月任国家科委（后改为科技部）中国生物工程开发中心主任助理、副主任、主任，研究员（其间曾兼任中国-欧盟生物技术中心中方主任，国家863计划生物领域办公室主任等职）；2001年7月任中国医学科学院、中国协和医科大学党委书记，常务副院长、副校长，北京协和医院院长,2007年10月任卫生部党组成员兼卫生部副部长。[编辑本段]3.在厦门市路桥艺术工程公司美术师　　(1959.9—)台湾人。擅长油画。1982年毕业于东北师范大学美术系油画专业。任吉林话剧团舞美设计，1986年毕业于天津美术学院油画研究生班，获硕士学位，后留校任教。1991年厦门大学艺术学院美术系任教，现在厦门市路桥艺术工程公司。作品多次参加全国性美展，有作品获奖。[编辑本段]4.八一电影制片厂故事片室美术设计师　　1930年11月生，湖北省襄樊市人。1948年参加中国人民解放军，历任文工团团员、文工队队员等职。1956年8月调八一电影制片厂先后任美术助理、美术设计师。曾参加近三十部影片的美术设计工作。主要作品有：《雷锋》（1964年）、《怒潮》（1963年）、《青春红似火——歌颂王杰剧组》（1966年）、《红灯记》（1970年）、《红色娘子军》（1972年）、《平原作战》（1974年）、《沂蒙颂》（1975年）、《雷雨之前》（1975年）、《红云岗》（1976年）、《胜利号角》（1978年）、《鹏程万里》（1978年）及科教片《在西双版纳的密林中》（与苏合拍该片并获国际科学教育片协会和科学普及电影联欢节第十三次会议奖状）等。现为中国电影家协会会员、中国电影美术学会会员。[编辑本段]5.历史人物(唐)　　又名刘知谦，字德光，河南上蔡人。初任广州牙将，职位虽然卑微，但器貌殊常，素有才识。约于公元880年，唐丞相韦宙出镇南海。一日，见帐前一小将生得气宇非凡，问之，名唤刘谦。韦宙不顾夫人反对，把侄女嫁给他。还说：“此人非常流也，他日吾子孙或可依之”。当时黄巢率部转战南方，遇到瘟疫。刘谦因袭击黄巢军为朝廷初过死力，被任命为封州刺史兼贺水镇遏使，成为朝廷委以一方重任的边陲要吏，镇守形势险要的封州。　　封州居两广之要冲，扼郁、漓、贺三江与西江汇合之口，是兵家所争的咽喉要地。刘谦在封州狠抓武装力量，史称他“抚纳流亡，爱啬用度，养士卒，未几，得精兵万人，多具战舰，境内肃然”。他的“抚纳流亡”的招兵方法很高明，特别值得我们注意。当时黄巢转战湖南、湖北，难民沿湘江、潇水、贺江涌入封州。他们离乡别井，衣食无着，有人铤而走险。刘谦把这些人收容起来，编人军队训练，反过来维持社会治安，使境内肃然安定。刘谦这一手的确厉害，此人可谓深通统治的谋略。他紧缩开支，把钱用在养兵和武器装备上，小小封州(唐封州只领封川、开建两县，与今封开县辖境同)居然拥有精兵万人，在岭南各州可算得首屈一指。　　刘谦经营封州十二年；公元894年冬12月，刘谦病重，把儿子刘隐、刘岩叫到身边吩咐后事：“今五岭盗贼方兴，吾有精甲犀械，尔勉建功，时不可失也”。嘱罢溘然长逝。[编辑本段]6.历史人物(宋)　　宋朝博州堂邑人。据《宋史·列传第三十四》记载：“谦少感概，不拘小节。初诣岭表省父，仁罕资以金帛，令北归行商。还堂邑旧墅，尝为乡里恶少所辱，谦不胜怒，殴杀之。亡命京师，遂应募从军，补卫士，稍迁内殿直都知。至道初，真宗升储邸，增补宫卫，太宗御便坐，亲选诸校，授谦西头供奉官、东宫亲卫都知，赐袍笏、靴带、器币。真宗即位，擢授洛苑使。谦起行伍，不乐禁职，求换秩，改殿前左班指挥使，给诸司使奉料。咸平初，迁御前忠佐马步军都军头，领勤州刺史，加殿前右班都虞候。上幸大名，至北苑，属谦有疾，遣归将护，谦恳请从行。既俾其二子随侍，仍挟尚医以从，御厨调膳以给之。疾瘳，毁所服鞍勒以遗中使，上闻，赐白金二百两。驾还，改捧日左厢都指挥使，领本州团练使。四年，迁捧日、天武四厢都指挥使，领本州防御使，权殿前都虞候。时高翰为天武左厢都校，有卒负债杀人，瘗尸翰营中，累日，发土得之。上怒翰失检察，执见于便殿。谦即前奏：“翰职在巡逻及阅教诸军，不时在营，本营事宜责之军头。”上为释翰罪。景德初，加侍卫马军都虞候，改领浔州防御使，俄权步军都指挥使。明年冬，制授殿前副都指挥使、振武军节度。先是，谦久权殿前都虞候，俄擢曹璨正授，谦颇形慨叹。至是，璨副马军，而升谦领禁卫焉。河北屯兵，常以八月给冬衣。谦上言边城早寒，请给以六月，后以为例。无何，以足疾求典郡，上召见，敦勉之。大中祥符初，从东封，上升泰山，诏都总山下马步诸军，与西京左藏库副使赵守伦阅视山门，设施有法，著籍者乃得上焉。礼成，进授都指挥使，移领保静军节度。明年八月卒，年六十，赠侍中。初，谦将应募，与同军王仁德讯于日者。日者指谦谓仁德曰：“尔当为此人厩吏。”及谦帅殿前，仁德果隶役厩中。子怀懿，后为东染院副使。怀诠，内殿崇班、阁门祗候。”[编辑本段]7.历史人物(宋)　　字汉宗，宋朝开封人。据《宋史·列传第八十二》记载：“少补卫士，数迁至捧日右厢都指挥使，领嘉州团练使兼京城巡检。元昊反，改博州团练使、环庆路马步军总管兼知邠州。谦不读书，然斗讼曲直，皆区处当理。前守者多强市民物以饰厨传，谦独无所挠，邠人颇爱之。夏竦奏为泾原路总管，徙知泾州，未行，会贼寇镇戎军，谦引兵深入贼境，破其聚落而还。以功擢龙神卫四厢都指挥使、象州防御使。暴疾卒，赠永清军节度观察留后。”[编辑本段]8.中国新经济研究中心研究员　　江苏南通人，现代、当代文学博士。中国新经济研究中心研究员、中国中瑞投资集团董事长、中国国际文化传媒集团总裁、南京大学中西文化交流中心客座教授、《中华观察》杂志社社长、中国生产力学会首席顾问、中国工艺美术家协会会员、中国楹联学会会员、中国诗词学会会员、中国收藏学术研究会会员、中国书画家联谊会会员。通过国家ISQ9000A艺术体系资质认证，被授予中国著名国画家、著名书法家。　　自幼耳濡目染祖辈作画，痴迷于绘事，倾注于笔墨。于人物、山水、花鸟鱼虫无不工妙。匠心独运，擅长画鹤，线条遒劲独到，造型优美、别致，笔墨淋漓，水墨腾发，于诸家画鹤风格迥异；处处显露动感与美润，有“鹤王”之美誉。书画专著《鹤王刘谦书画集》、《醉客聊天》、《对联三随》、《心韵》、《明清小说改变社会意识形态》、《文学赏鉴论丛》等若干集。[编辑本段]9.清朝官吏　　刘谦(1649年？1733年)，字益侯，号思庵，武强县刘南召什村人。性聪颖沉静，13岁游乡校，为名诸生，已悟科举业与理学。清康熙十五年(1676年)中进士，授内阁中书，后历任礼部主事、员外郎、郎中、鸿胪寺少卿、正卿、右通政光禄、通政使、左都御史等职。　　刘谦从授官礼部就任，总是晨人暮归、随身携卷。曾前后三次出使蜀中，并制定了剑南学约十八则”，使蜀中文教为之一振。此前蜀中乡试者不足千人，谦到后增至五六千人，因其选拔有方，所拔之人皆为名士。　　在工部亦尽职尽责，考校度支出入疏通钱法。在台省任职时平反冤案，整理制定国家盐法，颇得民心。其视人才为国家元气，重视选拔和使用，大学士朱轼、尚书励廷义、大里寺卿汪隆等名臣皆系其推荐选拔。对失职或违法官吏，刘则不畏权势，严加惩办。其博笋多闻，康熙帝多次召其共商国事，听其讲河图洛书、道学及自然之理，或诵《太极图兑》、《西铭》等名著，并令他修撰《尚书传》。常赞其“有阁老之才”，亲书“廉平堂”匾颉赠他，同时赏赐对联：　　青云白石聊同趋，　　霁月光风更别传。　　刘谦精于书法。据传，他奉旨书写“太和殿”匾，“太”字未点点，即悬挂殿门，当观者愕然之际，刘谦掷笔补点于大字之下，且遒劲有力，浑然一体，观者无不叹服，“飞笔刘谦”之誉随之传开。　　刘谦在朝为官40年，后因谈论道学失当被弹劾辞职。辞官后在家15年，衣着俭朴，闭户著述，教授生徒，始终讲，学不倦，人称“碧峰先生”。其著述有《四书朱传纲目》、《周礼瀹义》、《廉平堂文集》、《制艺》等。[编辑本段]10.西安工程学院外语系副教授　　男，1944午11月16日生，汉族，陕西省凤翔县人，1967年毕业于西安外国语学院英语系。西安工程学院外语系副教授、系主任、院学术委员会委员，陕西省译协理事、社科翻译委员会副主任，《译苑》副主编。从事语种：英语。在英语教学与英汉对译工作战线上辛勤工作了33年。主要译著：《英汉对照涉外合同手册》（西北大学出版社，1997）《美国风情史话》（陕西旅游出版社，1997）、《四级考试新题型一英译汉与阅读简答》（西北大学出版社，1997）、《大学英语动词用语详解》（西安电子科技大学出版社，2000）。另外有编著、译著5本出版。在《宝鸡文理学院学报》、《西安外语师专学报》、《唐都学刊》、《西北大学学报》等刊物上发表论文20多篇，其中三篇获奖。[编辑本段]11.北京师范大学文学院副教授　　山西省大同市人，汉族， 1946 年；中共党员，北京师范大学文学院副教授。 1965 年入北京师范大学中文系， 1970 年毕业留校至今。长期从事文学基本理论的教学与研究，。 1994 —— 1997 年任中文系副主任， 1998 —— 1999 年在菲律宾马尼拉任华文教学督导。　　参加编纂的著作：　　《文学理论学习参考资料》 （春风文艺出版社 1982 年版）　　《马克思主义文艺理论大辞典》 （河南人民出版社 1994 年版）　　《中西比较诗学》 （人民文学出版社 1992 年版）　　《文学概论》 （武汉大学出版社 1989 年 11 月 7 ）　　《论邓小平的文艺思想》 （北京出版社 1995 年版）　　《文艺学当代形态论》 （北京大学出版社 1998 年版）　　《马克思主义文艺论著选读》 （高等教育出版社 1991 年版）[编辑本段]12.广东电力发展公司第五届董事会董事　　男，1954年出生，工商管理硕士，高级工程师。曾任黄埔发电厂生技科副科长、汽机分部主管、电气分部主管、运行部生产调度主管、发电一分部主管（正科级）、运行部经理助理（副处级），华能广东发电公司副总经理兼经营部经理，广东电力发展股份有限公司董事、总经理，广东电力发展股份有限公司第三届董事会董事，广东电力发展股份有限公司第四届董事会董事。现任广东省粤电集团有限公司董事、副总经理，广东电力发展股份有限公司副董事长，广东电力发展股份有限公司第五届董事会董事。百度百科中的词条内容仅供参考，如果您需要解决具体问题（尤其在法律、医学等领域），建议您咨询相关领域专业人士。本词条对我有帮助1822[我来完善]相关词条：刘隐莫宣卿佘靖开放分类：历史人物，艺术，画家，官员，魔术师更多合作编辑者：zhangrunxing、gwt007_sk、wanggong3、杰哥123、尹氚、ai你吧、工藤未然、qingliu8885、esr2587758、lzcgzxyjh如果您认为本词条还需进一步完善，百科欢迎您也来参与编辑词条在开始编辑前，您还可以先学习如何编辑词条词条统计浏览次数：约431447次编辑次数：85 次历史版本最近更新：今天创建者：lanceryond最新动态问卷调查：让百科更懂你©2009 Baidu权利声明新视界首页时事财经社会娱乐体育科教生活搜一下新闻选择搜一下登录注册新闻背景刘谦红了，所以关于他的一切都被统统地被八了出来。关于他曾经教过哪些明星魔术，关于他的身世，还有一个大众比较关心的就是关于他的日本女友。虽然他之前曾在某次访谈中的模糊透露其女友，可是经历了这次央视春晚，刘谦的日本女友再次被大众摆上了台面！而关于刘谦的日本女友古山光的容貌也是颇有争议，有人说她太丑配不上刘谦，有人说她比较丰腴够女儿味！被誉为芭蕾魔女日本金牌魔术师的古山光，自大学开始从事魔术表演，她在其魔法表演中引入芭蕾舞元素，她的《美丽时刻》演出完全突破常规舞台表演，深深吸引着观众。她曾获邀参加许多国际性魔术比赛，并获得多项大奖，她的极具娱乐性的魔术表演在魔术界享有盛誉。时间：2009-2-5 11:28:20浏览：791评论：19频道：娱乐标签：刘谦女友古山光魔术转帖我来说两句新视界 新商机 新财富新视界灯箱,摒弃传统投资店铺金货物积压之忧,好生意就要好招牌做工精细的芭蕾舞蹈练功服..舞缘文化艺术服饰中心产品质量好,材质优,做工精细.主营业务:跆拳道表演服-石家庄市源..石家庄市源发服装厂是一家专业生产跆拳道服装的公司. 产品包括网友评论：（显示最新20条）新视界网友我说你活着还有什么意思！2009-02-07 13:19引用回复新视界网友嗯嗯2009-02-07 12:30引用回复祖、人家就算丑也是同行、总会有共同吸引对方的地方、还有就是、那些女的别花痴了，人家没事在家养个花瓶干叼阿.?就你一个好看阿.?人家情人眼里是西施又怎样.?那么会说去挖6000墙脚阿…2009-02-07 09:15引用回复新视界网友没照片爆光什么也不知道2009-02-07 09:08引用回复甚麼s.真噯不一定是女友呢、。。2009-02-07 07:14引用回复新视界网友只要他能为我们创造奇迹，见证奇迹，管他女友有多丑！2009-02-07 05:20引用回复新视界网友情人眼里出西施，你们管得着吗2009-02-07 03:24引用回复新视界网友再丑也是他人自己喜欢‘;别人也不好多管吧.2009-02-06 19:51引用回复新视界网友那有啥关系2009-02-06 14:13引用回复新视界网友刘谦好棒…2009-02-06 12:30引用回复新视界网友怎么可以这样说的呢！你们会变魔术咩 刘谦，你是最棒的2009-02-06 11:48引用回复回忆不管这样别人喜欢对方就是了2009-02-05 22:33引用回复新视界网友我好喜欢刘谦2009-02-05 17:27引用回复新视界网友我好喜欢刘谦2009-02-05 17:27引用回复新视界网友刘谦，我爱你，你太帅了，不能让我不心动，要不咱们结婚吧。2009-02-05 15:44引用回复新视界网友古山光和刘谦太不般配了，人家都是帅哥配美女，这怎么是帅哥配丑女呀。唉，真是苦了刘谦这个帅哥了，找了一个丑鬼似的女友。2009-02-05 15:42引用回复新视界网友古山光和刘谦太不般配了，人家都是帅哥配美女，这怎么是帅哥配丑女呀。唉，真是苦了刘谦这个帅哥了，找了一个丑鬼似的女友。2009-02-05 15:42引用回复新视界网友不大相信。。。。。。。。。2009-02-05 15:22引用回复新视界网友谁知道是真是假啊随便弄一个什么就说是别人nu朋友2009-02-05 13:11引用回复查看全部共19条评论我来说两句昵称：新视界网友验证码：发表评论记者信息上传记者：李婧头衔等级：拍客最近登录：3小时前查看该记者更多新闻最新新闻郑伊健林嘉欣四度合作 没能开花结果纵贯线香港开唱遇难题 选歌比结婚还难杨钰莹早年青涩照曝光北京电影学院：4500多人竞考表演专业饭岛爱死因出结论 警方鉴定为肺炎大小S代父偿百万债务 母亲称最后一次新闻色彩榜桃色刘谦神秘女友奇丑无比丫蛋嫁赵本山徒弟王金龙小沈阳身世大揭秘 哭着拜赵本山为师汪涵搞婚外情与杨乐乐离婚《不差钱》成龙被删戏份章子怡海滩野战艳照全套黑色紫色关于我们|合作媒体|广告服务|友情链接|使用协议|版权声明|在线客服|诚聘英才Copyright © 2008 新视界 dvod.com.cn 版权所有　　　京ICP证：040263号　　　信息网络传播视听节目许可证0105081号&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1346473674484214752-7882893555757915395?l=chenruitiger.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chenruitiger.blogspot.com/feeds/7882893555757915395/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1346473674484214752&amp;postID=7882893555757915395' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1346473674484214752/posts/default/7882893555757915395'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1346473674484214752/posts/default/7882893555757915395'/><link rel='alternate' type='text/html' href='http://chenruitiger.blogspot.com/2009/02/blog-post.html' title='刘谦神秘日本女友'/><author><name>chenrui</name><uri>http://www.blogger.com/profile/13188836662597773306</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1346473674484214752.post-7631484500996198088</id><published>2009-01-24T06:01:00.000-08:00</published><updated>2009-01-24T06:03:17.174-08:00</updated><title type='text'>怎么在百度空间里加入Google Adsense广告</title><content type='html'>QQ空间和百度空间的展出率都比较高,但是如何才可以把谷歌google adesence 的广告代码加入到里面呢,希望有同样的想法的好友 指点一下&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1346473674484214752-7631484500996198088?l=chenruitiger.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chenruitiger.blogspot.com/feeds/7631484500996198088/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1346473674484214752&amp;postID=7631484500996198088' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1346473674484214752/posts/default/7631484500996198088'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1346473674484214752/posts/default/7631484500996198088'/><link rel='alternate' type='text/html' href='http://chenruitiger.blogspot.com/2009/01/google-adsense.html' title='怎么在百度空间里加入Google Adsense广告'/><author><name>chenrui</name><uri>http://www.blogger.com/profile/13188836662597773306</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1346473674484214752.post-4337230160660711018</id><published>2008-10-09T19:54:00.001-07:00</published><updated>2008-10-09T19:54:30.230-07:00</updated><title type='text'>Three U.S.-based scientists share Nobel chemistry prize</title><content type='html'>Three U.S.-based scientists share Nobel chemistry prize&lt;br /&gt;&lt;br /&gt;Email Picture&lt;br /&gt;Photos by Associated Press&lt;br /&gt;Martin Chalfie of Columbia University, Osamu Shimomura of the Marine Biological Laboratory in Woods Hole, Mass., and Roger Y. Tsien of UC San Diego will share the 2008 Nobel Prize for chemistry.&lt;br /&gt;Roger Y. Tsien of UC San Diego, Martin Chalfie of Columbia University and researcher Osamu Shimomura developed a fluorescent protein from jellyfish that allows researchers to trace cell molecules.&lt;br /&gt;By Thomas H. Maugh II, Los Angeles Times Staff Writer &lt;br /&gt;October 9, 2008 &lt;br /&gt;A UC San Diego pharmacologist and two other U.S.-based scientists won the 2008 Nobel Prize in Chemistry on Wednesday for their development of a green fluorescent protein from jellyfish that has provided researchers their first new window into the workings of the cell since the development of the microscope.&lt;br /&gt;&lt;br /&gt;Roger Y. Tsien, 56, of UC San Diego; Martin Chalfie, 61, of Columbia University; and Osamu Shimomura, 80, a Japanese-born researcher who works at the Marine Biological Laboratory in Woods Hole, Mass., will share the $1.4-million prize for developing the protein that the Nobel committee called "a guiding star for biochemists, biologists, medical scientists and other researchers."&lt;br /&gt;&lt;br /&gt;&lt;br /&gt; &lt;br /&gt; Photos: Nobel Prize winners for...OPINION: The litttle protein that glowed&lt;br /&gt;Video: Americans win Nobel&lt;br /&gt;U.S. scientist, two in Japan share Nobel Prize in Physics&lt;br /&gt;The protein can be attached to any of the 10,000 individual molecules within a living cell, allowing researchers for the first time to trace their paths as they wind through the complex pathways of life.&lt;br /&gt;&lt;br /&gt;It is "an essential piece of the scientific toolbox," said Jeremy M. Berg, director of the National Institute of General Medical Sciences, which has funded work by all three scientists. "It is impossible to overstate the impact of these investigators' work on scientific progress."&lt;br /&gt;&lt;br /&gt;In a hastily arranged news conference Wednesday morning, Chalfie said he had slept through early morning phone calls from Sweden and did not know about the prize until he woke up and checked his laptop.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;"It's not something out of the blue, but you never know when it's going to come or if it's going to come, so it's always a big surprise when it actually happens," he said.&lt;br /&gt;&lt;br /&gt;Shimomura told the Japanese broadcaster NHK that he was surprised to receive the chemistry Nobel "because I was rumored as a potential candidate for the Nobel Prize in Physiology or Medicine."&lt;br /&gt;&lt;br /&gt;In a telephone news conference, Tsien said he felt "a bit like a deer caught in the headlights. . . . Fundamentally, I'm no smarter today than I was yesterday."&lt;br /&gt;&lt;br /&gt;The story of the fluorescent protein starts with Shimomura. In 1953, he was hired as an assistant in the Nagoya University laboratory of biologist Yoshimasa Hirata, who assigned him to discover what made the remains of a crushed mollusk glow when it was moistened with sea water.&lt;br /&gt;&lt;br /&gt;Hirata had considered the project so difficult that he would not assign it to a graduate student for fear that its failure would prevent him from receiving his degree. But within three years, Shimomura had isolated the protein.&lt;br /&gt;&lt;br /&gt;When Shimomura was later recruited to join Frank Johnson at Princeton University, Hirata arranged for Nagoya to award him his doctorate, even though Shimomura was not enrolled as a student.&lt;br /&gt;&lt;br /&gt;In the summer of 1961, Shimomura and Johnson began collecting bioluminescent jellyfish in Friday Harbor in the San Juan Islands of Washington state, returning to Princeton with extracts from 10,000 of them.&lt;br /&gt;&lt;br /&gt;From this material, they isolated a blue luminescent protein called aequorin and a green fluorescent protein, commonly called GFP. In subsequent studies, Shimomura found that GFP absorbed ultraviolet light and emitted a green glow. What was revolutionary about the protein was that -- unlike, for example, the light-emitting chemicals in the firefly -- it did not require the addition of any chemical additives.&lt;br /&gt;&lt;br /&gt;In 1988, Chalfie heard about GFP and thought it would be useful for tracing the fate of proteins in the roundworm, Caenorhabditis elegans, which is widely used in biological studies because it is transparent, allowing researchers to study its organs under a microscope.&lt;br /&gt;&lt;br /&gt;When Douglas Prasher of the Woods Hole Oceanographic Institution isolated the gene for GFP, Chalfie assigned graduate student Ghia Euskirchen to insert the gene into the bacterium Escherichia coli. Within a month, she had produced a bacterium that glowed green.&lt;br /&gt;&lt;br /&gt;Next, Chalfie attached the gene to receptors in C. elegans that are involved in the sensation of touch. The cover of the journal Science in February 1994 showed a picture of the organism with the touch neurons glowing bright green.&lt;br /&gt;&lt;br /&gt;Tsien, who at age 16 won the prestigious Westinghouse Science Talent Search for a project that examined how metals bind to organic compounds, also received a copy of the gene from Prasher. He intended to use it as a marker as well, he said, but Chalfie beat him into print.&lt;br /&gt;&lt;br /&gt;Tsien's work with his colleague Susan Taylor required markers with two different colors, so he studied the color-producing part of GFP and devised ways to alter its gene to produce variants that glowed cyan, blue and yellow. Eventually, he and other researchers produced a family of proteins that glowed in a whole spectrum of colors, allowing researchers to follow the path of several different proteins simultaneously.&lt;br /&gt;&lt;br /&gt;Tsien is careful to note that he did not discover GFP or use it to make any groundbreaking biological discoveries. "I'm the guy who makes the tools," he said.&lt;br /&gt;&lt;br /&gt;One memorable experiment with the new technology tagged mouse brain proteins yellow, cyan and red, producing a mouse whose brain glowed in the colors of a rainbow -- a "brainbow," as it was tagged.&lt;br /&gt;&lt;br /&gt;Researchers have subsequently adapted the technology so that microorganisms will glow in the presence of heavy metals, explosives such as TNT and other chemicals, allowing the microorganisms to be used as sensors to find the materials in the environment.&lt;br /&gt;&lt;br /&gt;GFP is now used in some toys and even in art. In 2000, Chicago artist Eduardo Kac commissioned the creation of a green-glowing bunny named Alba.&lt;br /&gt;&lt;br /&gt;All the researchers thanked their colleagues, but Tsien went one step further and thanked the jellyfish as well. "None of this would have happened without the jellyfish," he said.&lt;br /&gt;&lt;br /&gt;But there still remains one major mystery, according to the Nobel committee: No one yet knows the purpose of the jellyfish's glow.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1346473674484214752-4337230160660711018?l=chenruitiger.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chenruitiger.blogspot.com/feeds/4337230160660711018/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1346473674484214752&amp;postID=4337230160660711018' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1346473674484214752/posts/default/4337230160660711018'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1346473674484214752/posts/default/4337230160660711018'/><link rel='alternate' type='text/html' href='http://chenruitiger.blogspot.com/2008/10/three-us-based-scientists-share-nobel.html' title='Three U.S.-based scientists share Nobel chemistry prize'/><author><name>chenrui</name><uri>http://www.blogger.com/profile/13188836662597773306</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1346473674484214752.post-6401863731042169641</id><published>2008-10-09T19:49:00.000-07:00</published><updated>2008-10-09T19:50:48.747-07:00</updated><title type='text'>Dow plunges 679 to fall to lowest level in 5 years</title><content type='html'>Dow plunges 679 to fall to lowest level in 5 years&lt;br /&gt;By TIM PARADIS – 2 hours ago &lt;br /&gt;&lt;br /&gt;NEW YORK (AP) — Stocks plunged Thursday, sending the Dow Jones industrial average down 679 points — more than 7 percent — to its lowest level in five years. Stocks took a nosedive after a major credit-rating agency said it might cut its rating on General Motors and Ford, further rattling investors already fretting over the impact of tight credit on the economy.&lt;br /&gt;&lt;br /&gt;The Standard &amp; Poor's 500 index also fell more than 7 percent.&lt;br /&gt;&lt;br /&gt;The declines came on the one-year anniversary of the closing highs of the Dow and the S&amp;P. The Dow has lost 5,585 points, or 39.4 percent, since closing at 14,164.53 on Oct. 9, 2007. It's the worst run for the Dow since the nearly two-year bear market that ended in December 1974 when the Dow lost 45 percent. The S&amp;P 500, meanwhile, is off 655 points, or 41.9 percent, since recording its high of 1,565.15.&lt;br /&gt;&lt;br /&gt;U.S. stock market paper losses totaled $872 billion Thursday and the value of shares over all has tumbled a stunning $8.33 trillion since last year's high. That's based on figures measured by the Dow Jones Wilshire 5000 Composite Index, which tracks 5,000 U.S.-based companies' stocks and represents almost all stocks traded in America.&lt;br /&gt;&lt;br /&gt;Thursday's sell-off came as Standard &amp; Poor's Ratings Services put General Motors Corp. and its finance affiliate GMAC LLC under review to see if its rating should be cut. The action means there is a 50 percent chance that S&amp;P will lower GM's and GMAC's ratings in the next three months. GM has been struggling with weak car sales in North America.&lt;br /&gt;&lt;br /&gt;S&amp;P also put Ford Motor Co. on credit watch negative. The ratings agency said that GM and Ford have adequate liquidity now, but that could change in 2009.&lt;br /&gt;&lt;br /&gt;GM, one of the 30 stocks that make up the Dow industrials, fell $2.15, or 31 percent, to $4.76, while Ford fell 58 cents, or 22 percent, to $2.08.&lt;br /&gt;&lt;br /&gt;"The story is getting to be like that movie 'Groundhog Day,'" said Arthur Hogan, chief market analyst at Jefferies &amp; Co. He pointed to the still-frozen credit markets, and Libor, the bank-to-bank lending rate that remains stubbornly high despite interest rate cuts this week by the Federal Reserve and other major central banks.&lt;br /&gt;&lt;br /&gt;"Until that starts coming down, you'll be hard-pressed to find anyone getting excited about stocks," Hogan said. "Everything we're seeing is historic. The problem is historic, the solutions are historic, and unfortunately, the sell-off is historic. It's not the kind of history you want to be making."&lt;br /&gt;&lt;br /&gt;The Dow ended the day at its lows, finishing down 678.91, or 7.3 percent, at 8,579.19. The blue chips hadn't closed below 9,000 since June 30, 2003, and haven't closed at this level since May 21, 2003.&lt;br /&gt;&lt;br /&gt;The Dow's 2,271-point tumble over the last seven sessions is its steepest seven-day point drop ever. Its seven-day percentage decline of 20.9 percent is the largest since the seven-day plunge ending Oct. 26, 1987, when the Dow lost 23.8 percent. That sell-off included Black Monday, the Oct. 19, 1987 market crash that saw the Dow fall nearly 23 percent in a single day.&lt;br /&gt;&lt;br /&gt;Broader stock indicators also tumbled Thursday. The S&amp;P 500 fell 75.02, or 7.6 percent, to 909.92, while the Nasdaq composite index fell 95.21, or 5.5 percent, to 1,645.12.&lt;br /&gt;&lt;br /&gt;The Russell 2000 index of smaller companies fell 47.37, or 8.7 percent, to 499.20.&lt;br /&gt;&lt;br /&gt;A wave of fear about the economy sent stocks lower in the final two hours of trading after a volatile morning in which major indicators like the Dow and the S&amp;P 500 index bobbed up and down. The Nasdaq, with a bevy of tech stocks, spent much of the session higher but eventually declined as the sell-off intensified. Still, its losses were less severe because of the relatively modest drops in names like Intel Corp. and Microsoft Corp.&lt;br /&gt;&lt;br /&gt;On the New York Stock Exchange, declining issues came to nearly 3,000, while fewer than 250 advanced.&lt;br /&gt;&lt;br /&gt;The sluggishness in the credit markets that triggered much of the heavy selling in markets around the world since mid-September appeared little changed Thursday following days of efforts by the Federal Reserve and other central banks to resuscitate lending.&lt;br /&gt;&lt;br /&gt;Libor, the bank lending benchmark, for three-month dollar loans rose to 4.75 percent from 4.52 percent on Wednesday. That signals that banks remain hesitant to make loans for fear they won't be paid back.&lt;br /&gt;&lt;br /&gt;The Fed and other leading central banks this week lowered key interest rates to help unclog the credit markets and promote lending to help the global economy. While a rate cut can take up to a year to work its way through the economy, the move was aimed as a boost to investor sentiment.&lt;br /&gt;&lt;br /&gt;"We're stuck in a morass and I think it's going to take quite some time to come out of it," said Stephen Carl, principal and head of equity trading at The Williams Capital Group.&lt;br /&gt;&lt;br /&gt;Demand remained high for short-term Treasurys, a refuge for investors willing to trade modest returns to protect their money. The yield on the three-month Treasury bill, which moves opposite its price, fell to 0.58 percent from 0.63 percent late Wednesday. Longer-term debt prices fell, with the yield on the 10-year note rising to 3.79 percent from 3.65 percent late Wednesday.&lt;br /&gt;&lt;br /&gt;Investors across markets were mulling a plan being considered by the Bush administration to invest in hobbled U.S. banks as a way to stabilize the financial sector. The $700 billion rescue package signed into law last week allows the Treasury Department to inject fresh capital into financial institutions and obtain ownership shares in return.&lt;br /&gt;&lt;br /&gt;Britain rolled out a similar plan, though no U.K. bank has received any investments. In Iceland, the government now has control of the country's three major banks as it struggles to contain the troubles there.&lt;br /&gt;&lt;br /&gt;Wall Street is also looking for any effects of short selling now that a three-week ban imposed by regulators has expired. Short selling is a technique in which investors borrow shares in a company from a broker and sell them, hoping to buy them back later at a lower price. Essentially, it's a bet that a stock's price will fall. Short sellers can lose money if they have to repurchase the stock after it has risen.&lt;br /&gt;&lt;br /&gt;Some analysts believe the unprecedented ban on short selling — an effort to bolster investor confidence — did more harm than good at a time of historic market volatility. They contend that short sellers help the market rally by covering their bets and creating demand for stocks.&lt;br /&gt;&lt;br /&gt;"I think the market's way oversold. But I can't stand in the way of this falling knife — I'd get sliced open," said Phil Orlando, chief equity market strategist at Federated Investors. "Investors are just saying, get me out at any price."&lt;br /&gt;&lt;br /&gt;He also said that with the short-selling rule back in play, hedge funds might be shorting again to make up for their forced liquidations.&lt;br /&gt;&lt;br /&gt;Energy names were among the biggest decliners as the price of oil fell and investors worried about a slowing economy. Exxon Mobil Corp. fell $9, or 12 percent, to $68, while Chevron Corp. fell $9.10, or 12 percent, to $64.&lt;br /&gt;&lt;br /&gt;Light, sweet crude fell $1.81 to settle at $86.62 a barrel on the New York Mercantile Exchange, the lowest closing price since October last year.&lt;br /&gt;&lt;br /&gt;Health insurer WellPoint Inc. fell $3.94, or 9.7 percent, to $36.50, while insurer and investment manager Lincoln National Corp. fell $9.66, or 35 percent, to $18.31.&lt;br /&gt;&lt;br /&gt;The tech sector saw less selling than other parts of the market after IBM Corp. affirmed its forecast.&lt;br /&gt;&lt;br /&gt;IBM fell $1.55, or 1.7 percent, to $89. Meanwhile, Intel fell 65 cents, or 4 percent, to $15.60 and Microsoft fell 71 cents, or 3.1 percent, to $22.30.&lt;br /&gt;&lt;br /&gt;Consolidated trading volume on the NYSE came to 8.14 billion consolidated shares compared with 8.54 billion traded Wednesday.&lt;br /&gt;&lt;br /&gt;In Asia, Japan's Nikkei 225 closed down 0.50 percent while the Hang Seng added 3.31 percent. In Europe, Britain's FTSE-100 fell 1.21 percent, Germany's DAX fell 2.53 percent, and France's CAC-40 declined 1.55 percent.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1346473674484214752-6401863731042169641?l=chenruitiger.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chenruitiger.blogspot.com/feeds/6401863731042169641/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1346473674484214752&amp;postID=6401863731042169641' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1346473674484214752/posts/default/6401863731042169641'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1346473674484214752/posts/default/6401863731042169641'/><link rel='alternate' type='text/html' href='http://chenruitiger.blogspot.com/2008/10/dow-plunges-679-to-fall-to-lowest-level.html' title='Dow plunges 679 to fall to lowest level in 5 years'/><author><name>chenrui</name><uri>http://www.blogger.com/profile/13188836662597773306</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1346473674484214752.post-1475289927145055774</id><published>2008-08-26T07:31:00.000-07:00</published><updated>2008-08-26T07:32:12.042-07:00</updated><title type='text'></title><content type='html'>&lt;a href="http://1.bp.blogspot.com/_RZrvjeNSwPI/SLQT40X79cI/AAAAAAAAAI4/uVdgu2Oo-vc/s1600-h/87400b0f7d84c1ffaa6457e5.gif"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://1.bp.blogspot.com/_RZrvjeNSwPI/SLQT40X79cI/AAAAAAAAAI4/uVdgu2Oo-vc/s200/87400b0f7d84c1ffaa6457e5.gif" border="0" alt=""id="BLOGGER_PHOTO_ID_5238834133391373762" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1346473674484214752-1475289927145055774?l=chenruitiger.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chenruitiger.blogspot.com/feeds/1475289927145055774/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1346473674484214752&amp;postID=1475289927145055774' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1346473674484214752/posts/default/1475289927145055774'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1346473674484214752/posts/default/1475289927145055774'/><link rel='alternate' type='text/html' href='http://chenruitiger.blogspot.com/2008/08/blog-post_9282.html' title=''/><author><name>chenrui</name><uri>http://www.blogger.com/profile/13188836662597773306</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_RZrvjeNSwPI/SLQT40X79cI/AAAAAAAAAI4/uVdgu2Oo-vc/s72-c/87400b0f7d84c1ffaa6457e5.gif' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1346473674484214752.post-7455119460572766249</id><published>2008-08-26T06:51:00.000-07:00</published><updated>2008-08-26T06:53:21.923-07:00</updated><title type='text'></title><content type='html'>&lt;a href="http://1.bp.blogspot.com/_RZrvjeNSwPI/SLQKfZ-NFdI/AAAAAAAAAIo/hjEFLg40QEA/s1600-h/stadium-sunset.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://1.bp.blogspot.com/_RZrvjeNSwPI/SLQKfZ-NFdI/AAAAAAAAAIo/hjEFLg40QEA/s200/stadium-sunset.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5238823801202742738" /&gt;&lt;/a&gt;&lt;br /&gt;The building of the Olympic Park is one of the largest construction and engineering projects in Europe.&lt;br /&gt;&lt;br /&gt;We have to deliver a project twice the size of Heathrow Terminal Five in half the time.&lt;br /&gt; &lt;br /&gt;We are on track to deliver and have been planning the Games venues and their long-term legacy use hand-in-hand. &lt;br /&gt;&lt;br /&gt;Stage one – the planning and set up for the Olympic Park –&lt;br /&gt;included agreeing the site plan and our timetable for delivery, and submitting one of the largest planning applications in European history.&lt;br /&gt;&lt;br /&gt;We have now completed stage two – what we are calling ‘demolish, dig, design’.&lt;br /&gt;&lt;br /&gt;This means we have been getting the site ready for construction work. The 2.5 square kilometre site is contaminated land, so we will be undertaking significant work to clean it up. We also have to demolish more than 220 buildings. &lt;br /&gt;&lt;br /&gt;The first construction project – the underground tunnels for the powerlines – has been completed on time and to budget.&lt;br /&gt;&lt;br /&gt;At the same time we have been preparing the designs for the sporting venues that, alongside the Olympic Village, will be the centrepiece of the new Olympic Park. &lt;br /&gt;&lt;br /&gt;Stage three - the 'big build' - was due to start in summer 2008. In fact it began three months early, when construction started on the Olympic Stadium in May 2008. &lt;br /&gt;&lt;br /&gt;Building work has also begun on the Aquatics Centre and Olympic Village. Construction will continue to accelerate over the next year when building work begins on the last of the 'big five' venues: the VeloPark and International Broadcast Centre/Main Press Centre.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1346473674484214752-7455119460572766249?l=chenruitiger.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chenruitiger.blogspot.com/feeds/7455119460572766249/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1346473674484214752&amp;postID=7455119460572766249' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1346473674484214752/posts/default/7455119460572766249'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1346473674484214752/posts/default/7455119460572766249'/><link rel='alternate' type='text/html' href='http://chenruitiger.blogspot.com/2008/08/blog-post_5619.html' title=''/><author><name>chenrui</name><uri>http://www.blogger.com/profile/13188836662597773306</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_RZrvjeNSwPI/SLQKfZ-NFdI/AAAAAAAAAIo/hjEFLg40QEA/s72-c/stadium-sunset.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1346473674484214752.post-2495658060240349401</id><published>2008-08-26T04:01:00.000-07:00</published><updated>2008-08-26T04:02:12.970-07:00</updated><title type='text'>外国看中国</title><content type='html'>美国媒体评中国(2008年8月25日) &lt;br /&gt;&lt;br /&gt;《芝加哥太阳时报》8月24号发表社论，题目是“美国帮助中国发展成一个可怕的对手”。社论说，布什是第一位在外国出席奥运会的美国在任总统。尽管美国国务院认为中国政府是一个人权记录不佳的专制政权，但是布什总统还是亲赴北京观看了四天的奥运会比赛。这是因为布什非常明白美国的经济离不开中国。 &lt;br /&gt;美国媒体评中国(2008年8月22日) &lt;br /&gt;&lt;br /&gt;加州《圣荷塞信使报》8月22号发表社论，题目是“不要同中国人进行奥运‘军备竞赛’”。社论说，美国民众在北京奥运期间有许多值得欢呼的理由，不过，中国正在成为一颗闪亮的新星。 社论说，不同中国进行奥运竞争的重要原因是，对美国来说，按照“中国模式”去准备2012年伦敦奥运会将是一个错误，尽管中国模式是获得金牌的“成功方法”。中国体育运动项目引人关注的问题，应该促使我们对体育进行“新的改革”，即不应该在培养明星上过分投资，而应让更多的孩子参与体育运动。 &lt;br /&gt;美国媒体评中国(2008年8月21日) &lt;br /&gt;&lt;br /&gt;纽约时报8月21号发表专栏作家尼古拉.克里斯托夫的评论文章，题为《中国的崛起并不仅仅是金牌》。 文章说，中国现在正在努力向美国证明他们今年将取得金牌总数第一，大家要逐渐接受这个事实。奥运会上，中国运动员的出色成绩令人眩目，不过，中国在艺术、商业、科学、教育等方面都和体育一样让人刮目相看。原来由美国和欧洲国家占主导地位的世界已经成为过去了，一个强大的中国和亚洲正在崛起，美国人应该学着去适应这个新趋势...... &lt;br /&gt;美国媒体评中国(2008年8月18日) &lt;br /&gt;&lt;br /&gt;《纽约时报》8月14号发表社论，题为“关于金牌的想法”。社论说，北京奥运会赛程刚刚过半，中国运动员摘取的金牌总数已经远超美国。自体育机器国前苏联和前东德政权垮台后，美国一直在历届奥运会上占据统治地位。但是从 2000年悉尼奥运会后，中国在各项体育项目上投入了巨额资金，就是为了培养更多的运动员在范围更广的体育比赛中夺取更多的金牌。    文章表示，中国采取了一些让人无法接受的方式来训练运动员，比如把很小的孩子从父母身边带走，去进行非常严厉的训练，不让夺得奖牌的运动员退役...... &lt;br /&gt;美国媒体评中国(2008年8月15日) &lt;br /&gt;&lt;br /&gt;《达拉斯晨报》8月14号发表社论，题目是“中国的通货膨胀如何打击我们”。社论说，密切观察通货膨胀的美联储委员费舍尔，对奥运圣火熄灭后的情况略有担心。费舍尔说，中国可能将面临因奥运会而暂时得到抑制的通胀威胁。为了能够在国际社会面前最体面地展示中国的面貌，中国控制了工资的上涨，并且对能源进行补贴。不过，中国的需求压力并没有减缓。因此，中国这个以廉价成本为特征的巨人，很可能面临国内严重的通货膨胀，而且其中一部分通胀影响将波及到海外。 &lt;br /&gt;美国媒体评中国(2008年8月14日) &lt;br /&gt;&lt;br /&gt;纽约时报8月14号发表专栏作家盖尔.科林斯题为《我在北京歌唱》的文章。文章说，现在全世界都知道在奥运开幕式上演唱《歌唱祖国》的小女孩林妙可并没有真的在唱，真正的声音来自7岁的杨沛宜，这个有着美妙声音的小女孩由于牙齿不好看而没能站到台前。 文章说，这是每个人都可以感同身受的一个奥运危机。当我们对没能获胜的运动员扼腕叹息的时候，很少有人能够真正体会到运动员内心的震荡。一个人只有真正站到了平衡木上时才能够理解从上面掉下来的痛苦心情。现在，对一个7岁的小女孩来说...... &lt;br /&gt;美国媒体评中国(2008年8月13日) &lt;br /&gt;&lt;br /&gt;《华盛顿邮报》8月12号在社论版上发表哈洛德·梅尔森的署名文章，题为“变革的战鼓”。文章说，上个星期将要结束之际，世界发生两大事件：2008年奥运会在北京开幕，以及俄罗斯进攻格鲁吉亚。中国和俄罗斯共同向世界宣告：昔日的权力关系格局如今已彻底改变，令人生畏的新生大国，正在向传统的秩序发起挑战。 &lt;br /&gt;美国媒体评中国(2008年8月12日) &lt;br /&gt;&lt;br /&gt;《芝加哥论坛报》8月12号发表评论，题目是“奥林匹克的言论检查”。文章说，美国冰上速滑运动员乔伊.奇克2006年在都灵举行的冬奥运上赢得一金一银，并被国际奥委会命名为当年的最佳运动员。奇克堪称名副其实的奥林匹克人，但是中国在奇克上星期准备前往北京参加奥运会时拒绝向他发放签证。国际奥委会非但不为奇克据理力争，反而抛弃了他。文章说，奇克同达尔富尔问题有关。他在夺得奖牌后，不仅将国际奥委会授予的4万美元奖金捐给了慈善机构...... &lt;br /&gt;美国媒体评中国(2008年8月11日) &lt;br /&gt;&lt;br /&gt;芝加哥太阳时报8月11号社论的题目是“奥林匹克运动会不能掩盖布什缺少对自由的支持；中国的人权记录依然令人感到压抑”。社论说，2008年北京奥运会期间，北京地区方圆百里之内的政治异议人士不是受到政府的恫吓，就是被关押了起来，要不就是被流放到中国国内其他地方；与此同时，中国公民要求平反，投诉的司法途径也受到共产党的阻挠；除此之外，奥运期间，自由集会依然受到禁止，饭店内使用的电脑等设备还被监测。    社论说，本星期前布什对中国一直采取的是“平静外交”策略。 &lt;br /&gt;美国媒体评中国(2008年8月7日) &lt;br /&gt;&lt;br /&gt;华尔街日报8月7号刊登了一篇题为《不要忘记中国异议人士》的评论。文章说，自从1989年天安门广场大屠杀以来，中国出现的任何被认为有组织的反对行动都会遭到当局迅速和无情的镇压。法轮功遭镇压就是一个典型例证。尽管中国吹嘘它对法治的承诺，但是，胆敢为政治或宗教迫害的受害者进行辩护的律师们却越来越多地成为当局打击的目标。 这篇评论指出，北京奥运及其准备工作不会导致中国的自由化。事实正相反。在奥运期间，中国的异议人士受到隔离、拘押或者被送往小城镇。奥运场馆的建造导致上百万人被迫搬家。 &lt;br /&gt;美国媒体评中国(2008年8月6日) &lt;br /&gt;&lt;br /&gt;《纽约太阳报》8月6号发表了一篇题为“让他们承担责任”的社论。文章说，星期五开始的北京奥运会将是自1936年希特勒强行利用柏林奥运会宣扬其纳粹世界新秩序以来带有最明显的政治色彩的一届奥运。中国共产党领导人几乎毫不掩饰国际奥委会赠送给他们的这份宣传礼品。他们希望，到奥运会闭幕式时，由共产党管理资本主义经济这种中国的混合模式将会得到国际社会的认可。 &lt;br /&gt;美国媒体评中国(2008年8月5日) &lt;br /&gt;&lt;br /&gt;华尔街日报8月5号发表了一篇题为“中国经济减速”的评论。文章称，中国国家发展和改革委员会上个月报告说，中国国内未售出新车的库存是17万辆，创下4年来库存新高。尽管库存的膨胀并未受到中国金融媒体的多大注意，但它却代表看上去一直持续强劲增长的中国经济有可能开始减速。这篇评论指出，今年这么多数量的汽车未能售出是一种迹象，它反映出消费者越来越不愿意增加他们的开支了...... &lt;br /&gt;美国媒体评中国(2008年8月4日) &lt;br /&gt;&lt;br /&gt;最新一期新闻周刊发表了一篇题为《对中国的抨击》的评论。文章说，在本周末北京奥运即将开始之际，你或许认为，这将是对中国进行认真分析和深思的时候了，也就是说，如何理解这个国家和怎样与这个政权打交道。 这篇评论说，然而，我们听到的却是一些熟悉的套话。保守派批评这个“正在崛起的专制政权”，说它夸大中国的军事实力。对中国的抨击不只是一个右翼的现象。中偏左的杂志新共和上个月刊登的封面故事的大标题是《与新中国会面》，标题旁边的括号里加的注解却是“与旧中国一样”。 &lt;br /&gt;美国媒体评中国(2008年7月31日) &lt;br /&gt;&lt;br /&gt;华盛顿邮报7月30号发表了题为《多哈的失败》的社论，这篇社论的副标题为《中国对全球自由贸易投了一张令人失望的否决票》。社论说，被称为多哈回合的全球贸易谈判昨天未能达成协议而破裂。世界贸易组织的成员没有制定一项新的削减关税的国际计划，这证明在可预见到的未来是不会达成这项协议的，这一结果为世贸组织的未来作用投下阴影，并且增加了全球贸易分裂为相互竞争的地区性集团的可能性。 社论说，随着上周末进入最后时刻的谈判，美国与欧盟在农业补贴问题上做出了一些让步。 &lt;br /&gt;美国媒体评中国(2008年7月30日) &lt;br /&gt;&lt;br /&gt;《华盛顿邮报》7月30号发表了题为“多哈的失败”的社论，这篇社论的副标题为“中国对全球自由贸易投了一张令人失望的否决票”。社论说，被称为多哈回合的全球贸易谈判昨天未能达成协议而破裂。世界贸易组织的成员没有制定一项新的削减关税的国际计划，这证明在可预见的未来是不会达成这项协议的。这一结果为世贸组织的未来作用投下阴影，并且增加了全球贸易分裂为相互竞争的地区性集团的可能性。社论说，随着上周末进入最后时刻的谈判，美国与欧盟在农业补贴问题上做出了一些让步...... &lt;br /&gt;美国媒体评中国(2008年7月29日) &lt;br /&gt;&lt;br /&gt;佛罗里达州的那不勒斯每日新闻报7月28号刊登了一篇社论，题目是“在烟雾中争夺金牌”。社论说，这并不是在奥运会前中国想看到的情景。在举行一次奥运村开放的仪式时，烟雾之浓使人们从附近的奥林匹克公园都看不清奥运村。这篇社论指出，尽管一些奥运官员曾威胁说，如果这样的烟雾持续下去，一些与耐力有关的竞赛项目就将被推迟。可是，国际奥委会医疗事务的负责人却说，尽管烟雾并不好看，但它并不影响健康...... &lt;br /&gt;美国媒体评中国(2008年7月25日) &lt;br /&gt;&lt;br /&gt;纽约太阳报7月25号发表了一篇题为“雄心勃勃”的评论。文章认为，随着北京奥运开幕式的临近，全世界将把注意力集中在体育比赛而不是奥运政治上。人们的注意力从中国人权记录失败转移开来无疑会受到北京政府的欢迎。 可是，这篇评论指出，中国共产党领导人欢呼奥运体育赛事的降临还有另一个原因：中国运动员肯定会在赛跑、跳水、划船和其它奥运项目中有突出的表现。除了举办一次前所未有的盛大奥运会之外，中国将能夸口它已经崛起为世界上的超级体育大国之一。 纽约太阳报的文章说...... &lt;br /&gt;美国媒体评中国(2008年7月24日) &lt;br /&gt;&lt;br /&gt;基督教科学箴言报7月24号发表了一篇题为《打开中国的防火墙长城》的社论，对中国政府限制网络言论自由以及一些西方大公司为盈利的目的而屈服于中国压力的行为提出尖锐批评。社论说，中国的网民人数超过世界上任何其它国家，然而，中国的统治者也是世界级的限制网络者。当习惯于网络自由的外国人在奥运期间访问北京时，中国限制网络自由的做法肯定将会受到国际社会的审视。 这篇社论说，奥运期间中国如何对待外国媒体，特别是如何对待帮助外国媒体的中国人将是一回事...... &lt;br /&gt;美国媒体评中国(2008年7月22日) &lt;br /&gt;&lt;br /&gt;纽约时报7月22号发表了一篇题为“中国不真实的电视”的社论。文章称，在下个月的奥运会举行之前，中国已经花了很长时间美化其形像。具体举措包括：关闭工厂以减少空气污染、清理水中的海藻、骚扰批评人士以及威胁记者等。社论指出，为了赢得奥运主办权，北京保证对外国记者扩大新闻自由，并且暗示让中国向世界开放将有助于更广泛的扩大人权。我们并不知道中国领导人是否打算兑现其诺言。我们知道的是，国际奥委会、奥运赞助商和世界各国政府应当要求中国信守承诺。然而，他们并未做到这一点，中国也把他们的沉默视为纵容。 &lt;br /&gt;美国媒体评中国(2008年7月21日) &lt;br /&gt;&lt;br /&gt;华尔街日报7月19号刊登了一篇题为“布什应当在台湾问题上信守诺言”的评论。文章说，2001年，布什总统做出一项大胆和有原则性的决定，为台湾的安全而向其出售一系列军事装备。2008年，当他准备离任之际，这位总统看来违背了自己的诺言。星期三，美国太平洋司令部司令基廷上将证实，由于北京的不满，布什政府冻结了对台军售。 这篇评论说，然而，冻结对台军售的决定是错误的和危险的。不冒犯中国的政策并不符合美国在台湾海峡的利益。首先，它损害了马英九以一位强势总统与北京打交道的能力。 &lt;br /&gt;美国媒体评中国(2008年7月18日) &lt;br /&gt;&lt;br /&gt;基督教科学箴言报7月18号发表了一篇题为《中国的奥运会一片混乱》的社论，副标题为“这场即将上演的盛会已经受到正在恶化的人权记录的玷污”。社论说，除了体育比赛之外，国际社会和东道国还在政治上对本届奥运会有两种期待，而这两个方面都离获得奖牌有很大距离。 首先是国际社会对通过奥运改善中国人权的期待。可是，这篇社论指出，中国的人权记录已经恶化，人们可以从今年春天中国当局对西藏的喇嘛进行的镇压清楚地看到这一点。去年，中国以“危及国家安全”为名逮捕的人数达到2000年以来的最高点。 &lt;br /&gt;美国媒体评中国(2008年7月15日) &lt;br /&gt;&lt;br /&gt;《洛杉矶时报》7月13号发表署名文章，题目是“为什么布什不应前往北京”。文章说，布什宣布将出席北京奥运开幕式，这一决定是在西藏残酷镇压事件以后作出的，是在七名维和人员在苏丹的达尔富尔惨遭杀害后宣布的，而中国目前继续在苏丹支持那里的杀戮行动。   文章说，就在布什宣布前往北京之际，越来越多的美国及其他国家的政治人士，毅然采取抵制奥运有关仪式的行动。英国首相布朗、德国总理默克尔、加拿大总理以及欧洲议会主席等人，决定不出席北京奥运开幕式。另外，奥巴马和麦凯恩也表示，假如他们是美国总统...... &lt;br /&gt;美国媒体评中国(2008年7月14日) &lt;br /&gt;&lt;br /&gt;科珀斯克-里斯蒂号角时报7月14号发表社论，题目是《中国将允许在天安门广场进行有限制的报导》。社论说，北京政府赢得2008年奥运主办权时曾经承诺，将尊重以往奥运新闻自由的原则。不过，在兑现这个承诺方面，北京政府从来没有令新闻工作者有很大的信心，但是就在距奥运开幕还有一个月的时候，一系列积极的迹象出现了。   &lt;br /&gt;美国媒体评中国(2008年7月11日) &lt;br /&gt;&lt;br /&gt;《基督教科学箴言报》7月10日发表了一篇评论文章，题目是“中国在减排方面的内部预演”。文章说，世界上的富有国家星期二就有关在42年之内把二氧化碳排放量削减一半的看法达成一致。不过，全世界不必等候那么久才能看到净化环境的看法所能带来的显著变化。这个星期已经出现了一个例证。 这篇文章说，中国正在关闭北京周围70英里之内的几百家制造厂，以便暂时清洁空气，确保世界顶尖运动员可以在呼吸顺畅的环境下参赛。 &lt;br /&gt;美国媒体评中国(2008年7月8日) &lt;br /&gt;&lt;br /&gt;克利夫兰实话报7月8号社论的题目是《布什明智地避免了其他国家领导人部分抵制奥运会的行动》。社论说，布什决定出席8月8号北京奥运开幕式的决定引起一些西方国家的关注。不过，布什星期天在日本八国峰会上表示，奥运会是体育赛事，不参加开幕式将毫无疑问地“冒犯”中国人民，也放弃了同中国领导人坦诚对话的机会。布什的决定同英国首相布朗和德国总理默克尔的做法不同，尽管他们没有表明，不出席奥运开幕式是抵制行动。 &lt;br /&gt;美国媒体评中国(2008年7月7日) &lt;br /&gt;&lt;br /&gt;7月7日的华尔街日报刊登了一篇题为《报导奥运会》的文章，对迄今为止中国仍未兑现放宽外国记者采访限制的承诺提出批评。文章说，2001年，中国共产党领导人向国际奥委会保证，允许外国记者2008年在北京奥运会以至全中国可以自由采访。可是，种种迹象并未显示出北京信守其承诺。 这篇文章说，香港苹果日报资深记者蔡元贵7月1号在北京机场被拒绝入境就是一个例证，移民官员以违反国家安全法为由，不但没收了蔡元贵的回乡证，而且把他送上飞往香港的航班。&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1346473674484214752-2495658060240349401?l=chenruitiger.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chenruitiger.blogspot.com/feeds/2495658060240349401/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1346473674484214752&amp;postID=2495658060240349401' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1346473674484214752/posts/default/2495658060240349401'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1346473674484214752/posts/default/2495658060240349401'/><link rel='alternate' type='text/html' href='http://chenruitiger.blogspot.com/2008/08/blog-post_26.html' title='外国看中国'/><author><name>chenrui</name><uri>http://www.blogger.com/profile/13188836662597773306</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1346473674484214752.post-8162648903283625706</id><published>2008-08-25T06:42:00.000-07:00</published><updated>2008-08-25T06:47:48.442-07:00</updated><title type='text'>时间飞逝，又要面临着学习</title><content type='html'>&lt;a href="http://3.bp.blogspot.com/_RZrvjeNSwPI/SLK3-xR3iXI/AAAAAAAAAIg/BrpFBX1_JnE/s1600-h/U2148P2T1D2412541F13DT20080825164522.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://3.bp.blogspot.com/_RZrvjeNSwPI/SLK3-xR3iXI/AAAAAAAAAIg/BrpFBX1_JnE/s200/U2148P2T1D2412541F13DT20080825164522.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5238451605593360754" /&gt;&lt;/a&gt;&lt;br /&gt;无论如何要学习，学习是一辈子的事情，所以，对于一个学习的软件编程的人来说，可能谷歌的工作才是我们所希望的，现在谷歌员工透露，该公司大幅削减了员工餐饮预算，取消了免费的晚餐以及下午的茶点和小吃。但在谷歌总部，仍将继续提供免费的早餐与午餐。&lt;br /&gt;&lt;br /&gt;　　长期以来，谷歌为员工长期提供免费自助餐厅人尽皆知。该公司高管也曾鼓吹，在经济衰退环境下仍履行了关爱员工的职责。谷歌创始人拉里·佩奇(Larry Page)和谢尔盖·布林(Sergey Brin)甚至向股东承诺，将增加员工餐饮方面的预算，而不是削减开支。2004年，他们在致股东的信中表示：“我们为员工提供多种非比寻常的福利，包括免费的餐饮，我们认真考虑了这些福利的长期价值，预计以后将增加更多的福利，而不是随时间而减少……这些福利可以节省员工的大量时间，并改善员工健康状况，提高工作效率。”&lt;br /&gt;&lt;br /&gt;　　但后来，谷歌将自助餐厅外包给管理多家硅谷公司自助餐厅的“魔幻厨房(Bon Appetit)”公司管理后，双方的冲突不断，甚至员工是否可以在餐厅使用谷歌的桌上足球游戏桌都难以达成一致。谷歌行政总厨内特·凯勒(Nate Keller)和约瑟夫·德西蒙尼(Josef Desimone)都相继离开。德西蒙尼更是带领许多厨师转投Facebook。&lt;br /&gt;&lt;br /&gt;　　这些厨师的离开使厨房人手不足，魔幻厨房根本就没有提供晚餐的人手，而谷歌也不愿意出钱招收更多的厨师。另外，也有传言认为这是谷歌创始人改变想法的一个表现。据说布林曾对谷歌员工自夸“免费瓶装水和M&amp;M巧克力”颇有怨言，但后来谷歌对此坚决予以否认。不管怎样，布林重新考虑对员工的慷慨投入也不无道理。布林已拥有数十亿美元身价，再像创业公司那样给员工激励和刺激将得不偿失。&lt;br /&gt;&lt;br /&gt;　　谷歌每年为总部员工提供免费食物的总支出达7000多万美元，所以，对于每个人来说，学习的最重要的是坚持自己的鉴定，一直坚持学习，不断努力。&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1346473674484214752-8162648903283625706?l=chenruitiger.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chenruitiger.blogspot.com/feeds/8162648903283625706/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1346473674484214752&amp;postID=8162648903283625706' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1346473674484214752/posts/default/8162648903283625706'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1346473674484214752/posts/default/8162648903283625706'/><link rel='alternate' type='text/html' href='http://chenruitiger.blogspot.com/2008/08/blog-post.html' title='时间飞逝，又要面临着学习'/><author><name>chenrui</name><uri>http://www.blogger.com/profile/13188836662597773306</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_RZrvjeNSwPI/SLK3-xR3iXI/AAAAAAAAAIg/BrpFBX1_JnE/s72-c/U2148P2T1D2412541F13DT20080825164522.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1346473674484214752.post-4258407120858113534</id><published>2007-12-21T20:45:00.000-08:00</published><updated>2007-12-21T20:55:00.199-08:00</updated><title type='text'>走进社会,感受颇多</title><content type='html'>今天和几个同学通了电话,大家都有很多想要报怨的但是即然年龄在长,那么我们就要勇敢面对,生命就是这样加油&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1346473674484214752-4258407120858113534?l=chenruitiger.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chenruitiger.blogspot.com/feeds/4258407120858113534/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1346473674484214752&amp;postID=4258407120858113534' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1346473674484214752/posts/default/4258407120858113534'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1346473674484214752/posts/default/4258407120858113534'/><link rel='alternate' type='text/html' href='http://chenruitiger.blogspot.com/2007/12/blog-post_123.html' title='走进社会,感受颇多'/><author><name>chenrui</name><uri>http://www.blogger.com/profile/13188836662597773306</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1346473674484214752.post-5170778325866315744</id><published>2007-12-21T05:53:00.000-08:00</published><updated>2007-12-21T06:00:52.087-08:00</updated><title type='text'>心情不好</title><content type='html'>我的生活就是这样永远在变化,或许生命就是这样自己在变与不变中,有的东西就是这样没有什么可谓之结束,没有什么谓之开始&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1346473674484214752-5170778325866315744?l=chenruitiger.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chenruitiger.blogspot.com/feeds/5170778325866315744/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1346473674484214752&amp;postID=5170778325866315744' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1346473674484214752/posts/default/5170778325866315744'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1346473674484214752/posts/default/5170778325866315744'/><link rel='alternate' type='text/html' href='http://chenruitiger.blogspot.com/2007/12/blog-post_21.html' title='心情不好'/><author><name>chenrui</name><uri>http://www.blogger.com/profile/13188836662597773306</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1346473674484214752.post-5175543692808787709</id><published>2007-12-20T22:41:00.000-08:00</published><updated>2007-12-20T22:45:54.872-08:00</updated><title type='text'>最近在学 asp.net2.0挺有趣的,可惜时间不够像csdn上的入门经典都很不错建议多看看,不要让费了自己</title><content type='html'>&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1346473674484214752-5175543692808787709?l=chenruitiger.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chenruitiger.blogspot.com/feeds/5175543692808787709/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1346473674484214752&amp;postID=5175543692808787709' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1346473674484214752/posts/default/5175543692808787709'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1346473674484214752/posts/default/5175543692808787709'/><link rel='alternate' type='text/html' href='http://chenruitiger.blogspot.com/2007/12/aspnet20csdn.html' title='最近在学 asp.net2.0挺有趣的,可惜时间不够像csdn上的入门经典都很不错建议多看看,不要让费了自己'/><author><name>chenrui</name><uri>http://www.blogger.com/profile/13188836662597773306</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1346473674484214752.post-4711581515889143515</id><published>2007-12-20T22:28:00.000-08:00</published><updated>2007-12-20T22:35:07.072-08:00</updated><title type='text'>工作的滋味</title><content type='html'>没有什么不可以,只有你不愿意,在工作的我,在忍受着,也在享受着,可以通过手机写博客也是一种享受,如果不是因为工作所迫我可以永远不会用手机写博客,但是一切就是这样现实,只有自己知道.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1346473674484214752-4711581515889143515?l=chenruitiger.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chenruitiger.blogspot.com/feeds/4711581515889143515/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1346473674484214752&amp;postID=4711581515889143515' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1346473674484214752/posts/default/4711581515889143515'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1346473674484214752/posts/default/4711581515889143515'/><link rel='alternate' type='text/html' href='http://chenruitiger.blogspot.com/2007/12/blog-post.html' title='工作的滋味'/><author><name>chenrui</name><uri>http://www.blogger.com/profile/13188836662597773306</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1346473674484214752.post-7959121761257333212</id><published>2007-04-30T21:38:00.000-07:00</published><updated>2007-04-30T21:47:39.983-07:00</updated><title type='text'>我正在经历一场大的变革</title><content type='html'>从复试的结束，似乎意味着我的学业生涯的结束，我要为自己找个位置，为自己的未来规划，我越来越不服输了，我不会随意的复合他人，我就是我&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1346473674484214752-7959121761257333212?l=chenruitiger.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chenruitiger.blogspot.com/feeds/7959121761257333212/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1346473674484214752&amp;postID=7959121761257333212' title='1 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1346473674484214752/posts/default/7959121761257333212'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1346473674484214752/posts/default/7959121761257333212'/><link rel='alternate' type='text/html' href='http://chenruitiger.blogspot.com/2007/04/blog-post.html' title='我正在经历一场大的变革'/><author><name>chenrui</name><uri>http://www.blogger.com/profile/13188836662597773306</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1346473674484214752.post-3404554452611168559</id><published>2007-02-28T05:57:00.000-08:00</published><updated>2007-02-28T06:00:46.337-08:00</updated><title type='text'>对不起，发布出了点问题，以下是我的相关报道（补充）</title><content type='html'>&lt;table bgcolor="#ffffff" cellspacing="15" width="100%"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;table style="width: 651px; height: 135px;" cellspacing="0"&gt;&lt;tbody&gt;&lt;tr height="20"&gt;&lt;td&gt;&lt;br /&gt;&lt;/td&gt;    &lt;td class="linkDarkBlue f14 bold" height="30" width="470"&gt;&lt;a href="http://news.sina.com.cn/s/2007-02-26/020012367465.shtml" target="_blank"&gt;网友：陈晓旭已剃度出家&lt;/a&gt;&lt;/td&gt;    &lt;/tr&gt;    &lt;tr&gt;&lt;td colspan="2" background="http://image2.sina.com.cn/dy/deco/2006/0426/bb_line_01.gif" height="5"&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;    &lt;tr style="font-weight: bold;"&gt;      &lt;td colspan="2" class="linkGray l18" style="padding-top: 4px;"&gt;     &lt;span style="color: rgb(255, 0, 0);"&gt;25日，一网友在网上以《林黛玉扮演者抛却亿万身家携夫出家》为题发帖子称，“因为我本人与陈晓旭相识，今天上午在通话的时候，我得知了一个重要 信息，但是我答应她在这件事发生前不给任何人说……陈晓旭已经正式完成了出家仪式，地点不能告诉大家。她的丈夫，也将于未来几日在深圳一个佛教道场出 家。”&lt;/span&gt;&lt;span class="linkDarkBlues"&gt;&lt;/span&gt;&lt;/td&gt;    &lt;/tr&gt;    &lt;/tbody&gt;&lt;/table&gt;    &lt;/td&gt;   &lt;/tr&gt;&lt;tr&gt;&lt;td&gt;    &lt;table cellspacing="0" width="100%"&gt;    &lt;tbody&gt;&lt;tr height="20"&gt;    &lt;td&gt;&lt;img src="http://image2.sina.com.cn/dy/deco/2006/0426/bb_li_02.gif" height="13" width="13" /&gt;&lt;/td&gt;    &lt;td class="linkDarkBlue f14 bold" height="30" width="470"&gt;&lt;a href="http://news.sina.com.cn/s/2007-02-26/010812367032.shtml" target="_blank"&gt;丈夫：陈晓旭出家“属实”&lt;/a&gt;&lt;/td&gt;    &lt;/tr&gt;    &lt;tr&gt;&lt;td colspan="2" background="http://image2.sina.com.cn/dy/deco/2006/0426/bb_line_01.gif" height="5"&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;    &lt;tr style="color: rgb(255, 204, 102); font-weight: bold; font-style: italic;"&gt;      &lt;td colspan="2" class="linkGray l18" style="padding-top: 4px;"&gt;     &lt;table border="0" width="100%"&gt;   &lt;tbody&gt;&lt;tr&gt;     &lt;td colspan="2" class="linkGray l18" style="padding-top: 4px;"&gt;     &lt;span style="color: rgb(255, 0, 0); font-weight: bold;"&gt;25日晚上，记者联系到陈晓旭的爱人郝彤。电话那头的他声音听起来很平静，当记者问及陈晓旭是否真的出家时，他只是简短地回答记者：“属实。”他还告诉记者，陈晓旭是在长春剃度出家的，而他自己也将在近日举行剃度仪式。&lt;/span&gt;&lt;span class="linkDarkBlues"&gt;&lt;/span&gt;&lt;/td&gt;     &lt;/tr&gt; &lt;/tbody&gt;&lt;/table&gt;&lt;/td&gt;    &lt;/tr&gt;    &lt;/tbody&gt;&lt;/table&gt;    &lt;/td&gt;   &lt;/tr&gt;&lt;tr&gt;&lt;td&gt;    &lt;table cellspacing="0" width="100%"&gt;    &lt;tbody&gt;&lt;tr height="20"&gt;    &lt;td&gt;&lt;img src="http://image2.sina.com.cn/dy/deco/2006/0426/bb_li_02.gif" height="13" width="13" /&gt;&lt;/td&gt;    &lt;td class="linkDarkBlue f14 bold" height="30" width="470"&gt;&lt;a href="http://ent.sina.com.cn/s/m/2007-02-26/08151458593.html" target="_blank"&gt;公司：她早有此计划但很低调&lt;/a&gt;&lt;/td&gt;    &lt;/tr&gt;    &lt;tr&gt;&lt;td colspan="2" background="http://image2.sina.com.cn/dy/deco/2006/0426/bb_line_01.gif" height="5"&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;    &lt;tr&gt;      &lt;td colspan="2" class="linkGray l18" style="padding-top: 4px;"&gt;     &lt;table border="0" width="100%"&gt;   &lt;tbody&gt;&lt;tr&gt;     &lt;td colspan="2" class="linkGray l18" style="padding-top: 4px;"&gt;     &lt;span style="font-weight: bold; color: rgb(255, 0, 0);"&gt;陈晓旭创立的公司北京世邦广告公司行政部负责人证实了陈晓旭出家的消息，并称陈晓旭、郝彤剃度出家后将不再参与公司的事务，“剃度出家早就在她的计划中，她早有此想法。所以，公司的事情已经作了安排，陈晓旭在剃度之前已经召集高层开过会，公司会正常经营发展。&lt;/span&gt;”&lt;span class="linkDarkBlues"&gt;&lt;/span&gt;&lt;/td&gt;     &lt;/tr&gt; &lt;/tbody&gt;&lt;/table&gt;&lt;/td&gt;    &lt;/tr&gt;    &lt;/tbody&gt;&lt;/table&gt;    &lt;/td&gt;   &lt;/tr&gt;&lt;tr&gt;&lt;td&gt;    &lt;table cellspacing="0" width="100%"&gt;    &lt;tbody&gt;&lt;tr height="20"&gt;    &lt;td&gt;&lt;img src="http://image2.sina.com.cn/dy/deco/2006/0426/bb_li_02.gif" height="13" width="13" /&gt;&lt;/td&gt;    &lt;td class="linkDarkBlue f14 bold" height="30" width="470"&gt;&lt;a href="http://news.sina.com.cn/s/2007-02-26/091112371429.shtml" target="_blank"&gt;原因：知情人称其身患重症&lt;/a&gt;&lt;/td&gt;    &lt;/tr&gt;    &lt;tr&gt;&lt;td colspan="2" background="http://image2.sina.com.cn/dy/deco/2006/0426/bb_line_01.gif" height="5"&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;    &lt;tr&gt;      &lt;td colspan="2" class="linkGray l18" style="padding-top: 4px;"&gt;     &lt;table border="0" width="100%"&gt;   &lt;tbody&gt;&lt;tr&gt;     &lt;td colspan="2" class="linkGray l18" style="padding-top: 4px;"&gt;     &lt;span style="font-style: italic; font-weight: bold; color: rgb(255, 0, 0);"&gt;至于出家原因，记者也从知情居士口中得知，陈晓旭身患重症，自从到百国兴隆寺潜心修行后病症大有改观，这一直接因素促使了已经信奉佛法多年的陈晓旭做出出家的惊人决定。&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1346473674484214752-3404554452611168559?l=chenruitiger.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chenruitiger.blogspot.com/feeds/3404554452611168559/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1346473674484214752&amp;postID=3404554452611168559' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1346473674484214752/posts/default/3404554452611168559'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1346473674484214752/posts/default/3404554452611168559'/><link rel='alternate' type='text/html' href='http://chenruitiger.blogspot.com/2007/02/blog-post_1784.html' title='对不起，发布出了点问题，以下是我的相关报道（补充）'/><author><name>hsz</name><uri>http://www.blogger.com/profile/06930525412196064468</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1346473674484214752.post-5756553710702144959</id><published>2007-02-28T05:44:00.000-08:00</published><updated>2007-02-28T05:56:21.291-08:00</updated><title type='text'>在电视剧《红楼梦》中扮演林黛玉的演员陈晓旭抛弃亿万家产，剃度出家</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_1PJ-aE9-W7E/ReWIv0GgmNI/AAAAAAAAAA8/cyV_9TU1Hc0/s1600-h/U1847P1T63D3014F1261DT20070226160602.jpg"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer;" src="http://3.bp.blogspot.com/_1PJ-aE9-W7E/ReWIv0GgmNI/AAAAAAAAAA8/cyV_9TU1Hc0/s320/U1847P1T63D3014F1261DT20070226160602.jpg" alt="" id="BLOGGER_PHOTO_ID_5036582113304942802" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_1PJ-aE9-W7E/ReWIIkGgmMI/AAAAAAAAAA0/PqAtWkdOADs/s1600-h/U1847P1T63D3014F1250DT20070226100127.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://2.bp.blogspot.com/_1PJ-aE9-W7E/ReWIIkGgmMI/AAAAAAAAAA0/PqAtWkdOADs/s320/U1847P1T63D3014F1250DT20070226100127.jpg" alt="" id="BLOGGER_PHOTO_ID_5036581438995077314" border="0" /&gt;&lt;/a&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;table bgcolor="#ffffff" cellspacing="15" width="100%"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;table style="width: 718px; height: 86px;" cellspacing="0"&gt;&lt;tbody&gt;&lt;tr height="20"&gt;&lt;td&gt;&lt;br /&gt;&lt;/td&gt;    &lt;td class="linkDarkBlue f14 bold" height="30" width="470"&gt;&lt;a href="http://news.sina.com.cn/s/2007-02-26/020012367465.shtml" target="_blank"&gt;网友：陈晓旭已剃度出家&lt;/a&gt;&lt;/td&gt;    &lt;/tr&gt;    &lt;tr&gt;&lt;td colspan="2" background="http://image2.sina.com.cn/dy/deco/2006/0426/bb_line_01.gif" height="5"&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;    &lt;tr&gt;      &lt;td colspan="2" class="linkGray l18" style="padding-top: 4px;"&gt;     25日，一网友在网上以《林黛玉扮演者抛却亿万身家携夫出家》为题发帖子称，“因为我本人与陈晓旭相识，今天上午在通话的时候，我得知了一个重要 信息，但是我答应她在这件事发生前不给任何人说……陈晓旭已经正式完成了出家仪式，地点不能告诉大家。她的丈夫，也将于未来几日在深圳一个佛教道场出 家。”&lt;span class="linkDarkBlues"&gt;&lt;/span&gt;&lt;/td&gt;    &lt;/tr&gt;    &lt;/tbody&gt;&lt;/table&gt;    &lt;/td&gt;   &lt;/tr&gt;&lt;tr&gt;&lt;td&gt;    &lt;table cellspacing="0" width="100%"&gt;    &lt;tbody&gt;&lt;tr height="20"&gt;    &lt;td&gt;&lt;img src="http://image2.sina.com.cn/dy/deco/2006/0426/bb_li_02.gif" height="13" width="13" /&gt;&lt;/td&gt;    &lt;td class="linkDarkBlue f14 bold" height="30" width="470"&gt;&lt;a href="http://news.sina.com.cn/s/2007-02-26/010812367032.shtml" target="_blank"&gt;丈夫：陈晓旭出家“属实”&lt;/a&gt;&lt;/td&gt;    &lt;/tr&gt;    &lt;tr&gt;&lt;td colspan="2" background="http://image2.sina.com.cn/dy/deco/2006/0426/bb_line_01.gif" height="5"&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;    &lt;tr&gt;      &lt;td colspan="2" class="linkGray l18" style="padding-top: 4px;"&gt;     &lt;table border="0" width="100%"&gt;   &lt;tbody&gt;&lt;tr&gt;     &lt;td colspan="2" class="linkGray l18" style="padding-top: 4px;"&gt;     25日晚上，记者联系到陈晓旭的爱人郝彤。电话那头的他声音听起来很平静，当记者问及陈晓旭是否真的出家时，他只是简短地回答记者：“属实。”他还告诉记者，陈晓旭是在长春剃度出家的，而他自己也将在近日举行剃度仪式。&lt;span class="linkDarkBlues"&gt;&lt;/span&gt;&lt;/td&gt;     &lt;/tr&gt; &lt;/tbody&gt;&lt;/table&gt;&lt;/td&gt;    &lt;/tr&gt;    &lt;/tbody&gt;&lt;/table&gt;    &lt;/td&gt;   &lt;/tr&gt;&lt;tr&gt;&lt;td&gt;    &lt;table cellspacing="0" width="100%"&gt;    &lt;tbody&gt;&lt;tr height="20"&gt;    &lt;td&gt;&lt;img src="http://image2.sina.com.cn/dy/deco/2006/0426/bb_li_02.gif" height="13" width="13" /&gt;&lt;/td&gt;    &lt;td class="linkDarkBlue f14 bold" height="30" width="470"&gt;&lt;a href="http://ent.sina.com.cn/s/m/2007-02-26/08151458593.html" target="_blank"&gt;公司：她早有此计划但很低调&lt;/a&gt;&lt;/td&gt;    &lt;/tr&gt;    &lt;tr&gt;&lt;td colspan="2" background="http://image2.sina.com.cn/dy/deco/2006/0426/bb_line_01.gif" height="5"&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;    &lt;tr&gt;      &lt;td colspan="2" class="linkGray l18" style="padding-top: 4px;"&gt;     &lt;table border="0" width="100%"&gt;   &lt;tbody&gt;&lt;tr&gt;     &lt;td colspan="2" class="linkGray l18" style="padding-top: 4px;"&gt;     陈晓旭创立的公司北京世邦广告公司行政部负责人证实了陈晓旭出家的消息，并称陈晓旭、郝彤剃度出家后将不再参与公司的事务，“剃度出家早就在她的计划中，她早有此想法。所以，公司的事情已经作了安排，陈晓旭在剃度之前已经召集高层开过会，公司会正常经营发展。” &lt;span class="linkDarkBlues"&gt;&lt;/span&gt;&lt;/td&gt;     &lt;/tr&gt; &lt;/tbody&gt;&lt;/table&gt;&lt;/td&gt;    &lt;/tr&gt;    &lt;/tbody&gt;&lt;/table&gt;    &lt;/td&gt;   &lt;/tr&gt;&lt;tr&gt;&lt;td&gt;    &lt;table cellspacing="0" width="100%"&gt;    &lt;tbody&gt;&lt;tr height="20"&gt;    &lt;td&gt;&lt;img src="http://image2.sina.com.cn/dy/deco/2006/0426/bb_li_02.gif" height="13" width="13" /&gt;&lt;/td&gt;    &lt;td class="linkDarkBlue f14 bold" height="30" width="470"&gt;&lt;a href="http://news.sina.com.cn/s/2007-02-26/091112371429.shtml" target="_blank"&gt;原因：知情人称其身患重症&lt;/a&gt;&lt;/td&gt;    &lt;/tr&gt;    &lt;tr&gt;&lt;td colspan="2" background="http://image2.sina.com.cn/dy/deco/2006/0426/bb_line_01.gif" height="5"&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;    &lt;tr&gt;      &lt;td colspan="2" class="linkGray l18" style="padding-top: 4px;"&gt;     &lt;table border="0" width="100%"&gt;   &lt;tbody&gt;&lt;tr&gt;     &lt;td colspan="2" class="linkGray l18" style="padding-top: 4px;"&gt;     至于出家原因，记者也从知情居士口中得知，陈晓旭身患重症，自从到百国兴隆寺潜心修行后病症大有改观，这一直接因素促使了已经信奉佛法多年的陈晓旭做出出家的惊人决定。&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1346473674484214752-5756553710702144959?l=chenruitiger.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chenruitiger.blogspot.com/feeds/5756553710702144959/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1346473674484214752&amp;postID=5756553710702144959' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1346473674484214752/posts/default/5756553710702144959'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1346473674484214752/posts/default/5756553710702144959'/><link rel='alternate' type='text/html' href='http://chenruitiger.blogspot.com/2007/02/blog-post_28.html' title='在电视剧《红楼梦》中扮演林黛玉的演员陈晓旭抛弃亿万家产，剃度出家'/><author><name>hsz</name><uri>http://www.blogger.com/profile/06930525412196064468</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_1PJ-aE9-W7E/ReWIv0GgmNI/AAAAAAAAAA8/cyV_9TU1Hc0/s72-c/U1847P1T63D3014F1261DT20070226160602.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1346473674484214752.post-4420136929130910622</id><published>2007-02-28T05:08:00.000-08:00</published><updated>2007-02-28T05:22:03.146-08:00</updated><title type='text'>我也来评GOOGLE ADSENSE</title><content type='html'>在这我也要说我是一个新人，所以，我不应该多说，但是，我看到太多的评论了以下是我的小抄&lt;br /&gt;&lt;br /&gt;支持着：&lt;br /&gt;&lt;span class="bold"&gt;谷歌的失败正好证明Google的成功&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;　　在偏执狂才能生存的世界，放弃偏执放弃理想，就放弃了你与众不同的那一点，也就失去了存在的价值。&lt;br /&gt;&lt;br /&gt;　　谷歌这个名字&lt;br /&gt;&lt;br /&gt;　　谷歌这个名字的诞生，就意味着自信的Google文化并没有跟李开复先生一起抵达中国。谁规定说在中国的产品就必须有一个中文名字？IBM的中文名字是什么？国际商用机器公司，有几个人知道？&lt;br /&gt;&lt;br /&gt;　　退一万步说，如果中文名字是真的必须的，那么你在地址栏是不是还要输英文字母。谷歌这个名字诞生了这么久，开复先生能不能给我一个统计数字，告诉我中 国的用户更喜欢输入guge.cn和guge.com着两个域名呢？如果，他们真的喜欢这两个名字，那为什么还要把这两个地址转向到google.com 或者google.cn上去？&lt;br /&gt;&lt;br /&gt;　　Google.cn这个域名&lt;br /&gt;&lt;br /&gt;　　除了IT圈子的老鸟，我想知道，有多少人知道Google.cn这个域名，有多少人知道它和Google.com的区别。Google.cn的搜索结果和伟大的Baidu.com一样纯洁，绝对不会引起屏蔽。但是为什么大家抛弃Google投到Baidu门下，&lt;a href="http://blog.donews.com/aigaogao/archive/2006/12/12/1095170.aspx" target="_blank"&gt;&lt;span style="color:#336699;"&gt;首要的理由都是无法访问&lt;/span&gt;&lt;/a&gt;呢？&lt;br /&gt;&lt;br /&gt;　　&lt;a href="http://www.googlechinablog.com/" target="_blank"&gt;&lt;span style="color:#336699;"&gt;Google黑板报&lt;/span&gt;&lt;/a&gt;写了这么多篇了，有一篇告诉用户如果你的Google.com访问不了的时候，你可以用Google.cn来代替么？&lt;br /&gt;&lt;br /&gt;　　当GFans都承认在全中文的搜索情况下，Google的结果确实可能比Baidu更差（虽然没有出售的排名带来的不公平，但更多的SEO，更多排名本地化问题）。Google.cn除了去掉一些可以导致危险的结果以外，还做了什么？&lt;br /&gt;&lt;br /&gt;　　Power By MapABC的ditu.google.cn&lt;br /&gt;&lt;br /&gt;　　对这个产品，我不想多说，只能说新版虽然样子跟maps.google.com越来越接近，但是它彻头彻尾是一个OEM产品，技术和数据都不来自 Google或谷歌。数据很好理解，由于政策因素，购买或者租用国内地理信息服务公司的数据顺理成章。但是技术就完全说不过去了， Maps.Google.com是目前同类产品中最好的（Yahoo和微软还在追赶）。有人可能觉得我太技术倾向了，但是我最关心的其实是用户体验， ditu.google.cn中的分词，地址查找等等都垃圾得一塌糊涂。&lt;br /&gt;&lt;br /&gt;　　在国内有go2map和百度地图这样的对手前提下，OEM这么一个产品，对市场分额没好处，用户满意度没好处，唯一的好处是，你看，我们谷歌也在努力工作呢，但是唯一的结果是给&lt;a href="http://blog.devep.net/virushuo/2006/12/11/post_45.html" target="_blank"&gt;&lt;span style="color:#336699;"&gt;谷歌其实不懂中文&lt;/span&gt;&lt;/a&gt;这一论点提供了论据。&lt;br /&gt;&lt;br /&gt;　　谷歌不是Google&lt;br /&gt;&lt;br /&gt;　　这段时间，谷歌努力地向我们证明，一个公司的基因，不是它的资本构成，不是它漂亮的办公大楼，不是员工的双屏电脑（我倒宁愿是，现在我也是双屏了，我比他们还强，我有一台PC和一台MacBook一起用。So酷，&lt;a href="http://www.flickr.com/photos/chinapodcast/319506132/" target="_blank"&gt;&lt;span style="color:#336699;"&gt;http://www.flickr.com/photos/chinapodcast/319506132/&lt;/span&gt;&lt;/a&gt;)，不是随便取用的饮料和食品，不是高薪的大厨，不是20％的创新时间，甚至不是公司总部任命的全球副总裁。&lt;br /&gt;&lt;br /&gt;　　所以，在Google全球业务蒸蒸日上的时候，我们迎来了一个&lt;a href="http://www.donews.com/Content/200612/07ab28546619461fa2a9c80edfd11869.shtm" target="_blank"&gt;&lt;span style="color:#336699;"&gt;新的年度搜索报告&lt;/span&gt;&lt;/a&gt;，&lt;br /&gt;&lt;br /&gt;　　在以新标准公布的数据中，谷歌（Google）的网页搜索市场份额首次跌破20%，仅为14.9%，而根据稍早前CNNIC和正望咨询从其他角度分析 的数据，谷歌2006年在中国搜索引擎市场上的份额分别为25.3%和20.6%，都不同程度表明了其市场份额萎缩的趋势。如果这个报告准确的话，那么 Google通过建立一个叫做谷歌的公司来退出中国市场的伟大计划，又得到了进一步的成果。&lt;br /&gt;&lt;br /&gt;　　如果对比，谷歌进入之前的市场份额，那么我的题目就不算离谱了“谷歌的失败正好证明Google的成功”。&lt;br /&gt;   反对者：&lt;b&gt;我们能否对Google说不？&lt;/b&gt;                                               我没有统计有多少站长在与Google 进行Adsense广告合作，我也不知道有多少人曾经收到来自“Google AdSense”，题为“Google                  AdSense 帐户已被停用”的信。但我知道当站长们收到这种信件，满怀不解的问Google为什么这样做的时候，他会告诉你"由于我们监控系统的专有性，我们不能透露这些点击的任何具体细节。”                 &lt;br /&gt;               &lt;br /&gt;我们大多数站长会选择沉默，因为我们的任何申述都可能不会有结果，除了得到一些自动回复的关于条条款款的邮件。在我现在看来，一开始便选择沉默是明智的， 否则他们可能像我一样遭受到更多的欺诈（在没有得到Google的明确解释前，请允许我感性的使用“欺诈”这个词）。&lt;br /&gt;               &lt;br /&gt;                我已经无法第三次说服自己自私地忍受这一切，因为他涉及到的不是我一个人的权益，更是是千千万万中国站长的权益。 这次我还是想选择用对话的方式来解决这一切，但我希望这次我们能够通过法律来与之对话，希望法律能维护所有站长们的权益。                 &lt;br /&gt;               &lt;br /&gt;在这个世界级网络巨头面前，作为普通的站长，我们显得如此弱小，如此无助。我们希望能够通过这个维权专题(http: //rights.iteer.net )，唤起更多正义的呼声。因为在维护我们权益的同时，我们也在维护着中国站长的尊严。&lt;br /&gt;               &lt;br /&gt;                我们的手拉得越紧，我们就离我们的权利越近！&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;我不想说太多，希望大家自己判断&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1346473674484214752-4420136929130910622?l=chenruitiger.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chenruitiger.blogspot.com/feeds/4420136929130910622/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1346473674484214752&amp;postID=4420136929130910622' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1346473674484214752/posts/default/4420136929130910622'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1346473674484214752/posts/default/4420136929130910622'/><link rel='alternate' type='text/html' href='http://chenruitiger.blogspot.com/2007/02/google-adsense.html' title='我也来评GOOGLE ADSENSE'/><author><name>hsz</name><uri>http://www.blogger.com/profile/06930525412196064468</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1346473674484214752.post-6570974936539762574</id><published>2007-02-28T04:38:00.000-08:00</published><updated>2007-02-28T05:03:19.607-08:00</updated><title type='text'>OSCAR我再看（I DONNOT KNOW WHY MAYBE JUST BECAUSE IT IS OSCAR：ACADEMY AWARD）</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_1PJ-aE9-W7E/ReV7TUGgmLI/AAAAAAAAAAo/-Vv_4mUl6T0/s1600-h/U1825P28T55D13200F922DT20070226170452.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://1.bp.blogspot.com/_1PJ-aE9-W7E/ReV7TUGgmLI/AAAAAAAAAAo/-Vv_4mUl6T0/s320/U1825P28T55D13200F922DT20070226170452.jpg" alt="" id="BLOGGER_PHOTO_ID_5036567330027509938" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;今天，我不知道为什么，又把OSCAR看了一遍，感觉非常的好，特别是当最佳男主角，出现的时候，他的感言，感动了我，一个黑人能够走到那一不是多么，的不容易，以下是他（&lt;span style="font-size:-1;"&gt;&lt;b&gt;Forest Whitaker&lt;/b&gt; &lt;/span&gt;）所说的&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;&lt;strong&gt;“Thank you. Thank you. Just a second, just a second. OK. Take it. OK. I wrote something down, because I thought if it would happen that I would be a little overwhelmed and I am. So, OK.&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;&lt;strong&gt;When I was a kid, the only way that I saw movies was from the backseat of my family's car. At the drive-in. And, it wasn't my reality to think I would be acting in movies, so receiving this honor tonight tells me that it's possible. It is possible for a kid from east Texas, raised in South Central L.A. in Carson, who believes in his dreams, commits himself to them with his heart, to touch them, and to have them happen.&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;&lt;strong&gt;Because when I first started acting, it was because of my desire to connect to everyone. To that thing inside each of us. That light that I believe exists in all of us. Because acting for me is about believing in that connection and it's a connection so strong, it's a connection so deep, that we feel it. And through our combined belief, we can create a new reality.&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;&lt;strong&gt;So I want to thank my fellow believers in &lt;em&gt;The Last King of Scotland&lt;/em&gt;. I want to thank Peter, Jeremy, Andrea, Lisa, Charles, Kevin, James McAvoy, Kerry, Stephen, Fox, DNA, Channel Four. I want to thank the people of Uganda, who helped this film have a spirit. And finally, I want to thank my mom and my dad. I want to thank my wife Keisha, my children, my ancestors, who continue to guide my steps. And God, God who believes in us all. And who's given me this moment, in this lifetime, that I will hopefully carry to the end of my lifetime into the next lifetime. Thank you.” &lt;br /&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;很立志吧！&lt;br /&gt;&lt;/strong&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1346473674484214752-6570974936539762574?l=chenruitiger.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chenruitiger.blogspot.com/feeds/6570974936539762574/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1346473674484214752&amp;postID=6570974936539762574' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1346473674484214752/posts/default/6570974936539762574'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1346473674484214752/posts/default/6570974936539762574'/><link rel='alternate' type='text/html' href='http://chenruitiger.blogspot.com/2007/02/oscari-donnot-know-why-maybe-just.html' title='OSCAR我再看（I DONNOT KNOW WHY MAYBE JUST BECAUSE IT IS OSCAR：ACADEMY AWARD）'/><author><name>hsz</name><uri>http://www.blogger.com/profile/06930525412196064468</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_1PJ-aE9-W7E/ReV7TUGgmLI/AAAAAAAAAAo/-Vv_4mUl6T0/s72-c/U1825P28T55D13200F922DT20070226170452.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1346473674484214752.post-8064637640324121294</id><published>2007-02-28T04:16:00.000-08:00</published><updated>2007-02-28T04:36:37.871-08:00</updated><title type='text'>我依然是那个情感丰富的我  A ZA FIGHTING</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_1PJ-aE9-W7E/ReV3HEGgmKI/AAAAAAAAAAc/0S2RmhwRLcY/s1600-h/2006110203473913659.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://4.bp.blogspot.com/_1PJ-aE9-W7E/ReV3HEGgmKI/AAAAAAAAAAc/0S2RmhwRLcY/s320/2006110203473913659.jpg" alt="" id="BLOGGER_PHOTO_ID_5036562721527601314" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 255, 51); font-weight: bold;"&gt;今天在家看到几个很感人的事情，一个使韩国的一个家里只有姐弟和奶奶的故事，她们家住在一个地下室，她弟弟很辛苦的在加油站工作，只为了姐姐完成学业，她也很努力，她的父母当她三岁的时候就去世了，她也非常努力的学习，在学校里排名第六，但是，她有一个非常美丽的梦，希望成为，一个服装设计师，我这人没有什么口才可能，也或许，很多事情，就是只有莫名的感动，也或许，就是这样，一切都是很难用语言表达，最后，在韩国明星神话组合的帮助下她见到韩国很著名的设计师，据说，他也是自学成材的，oh ,yes ,shinewa,我也不知成了橙色军团中的一名了，&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1346473674484214752-8064637640324121294?l=chenruitiger.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chenruitiger.blogspot.com/feeds/8064637640324121294/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1346473674484214752&amp;postID=8064637640324121294' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1346473674484214752/posts/default/8064637640324121294'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1346473674484214752/posts/default/8064637640324121294'/><link rel='alternate' type='text/html' href='http://chenruitiger.blogspot.com/2007/02/za-fighting.html' title='我依然是那个情感丰富的我  A ZA FIGHTING'/><author><name>hsz</name><uri>http://www.blogger.com/profile/06930525412196064468</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_1PJ-aE9-W7E/ReV3HEGgmKI/AAAAAAAAAAc/0S2RmhwRLcY/s72-c/2006110203473913659.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1346473674484214752.post-1686395177604158470</id><published>2007-02-27T06:33:00.000-08:00</published><updated>2007-02-27T06:41:10.137-08:00</updated><title type='text'>google给我带来收益，加油</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_RZrvjeNSwPI/ReRCNRH2_gI/AAAAAAAAAD8/kH1yrKY8KwE/s1600-h/shichigosan.gif"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer;" src="http://2.bp.blogspot.com/_RZrvjeNSwPI/ReRCNRH2_gI/AAAAAAAAAD8/kH1yrKY8KwE/s200/shichigosan.gif" alt="" id="BLOGGER_PHOTO_ID_5036223079009156610" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_RZrvjeNSwPI/ReRCFRH2_fI/AAAAAAAAAD0/V-Cur2h6vOI/s1600-h/mothers_day04.gif"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer;" src="http://2.bp.blogspot.com/_RZrvjeNSwPI/ReRCFRH2_fI/AAAAAAAAAD0/V-Cur2h6vOI/s200/mothers_day04.gif" alt="" id="BLOGGER_PHOTO_ID_5036222941570203122" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_RZrvjeNSwPI/ReRB-BH2_eI/AAAAAAAAADs/2V4grmrtxtI/s1600-h/valentine05.gif"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://1.bp.blogspot.com/_RZrvjeNSwPI/ReRB-BH2_eI/AAAAAAAAADs/2V4grmrtxtI/s200/valentine05.gif" alt="" id="BLOGGER_PHOTO_ID_5036222817016151522" border="0" /&gt;&lt;/a&gt;我的GOOGLE ADSENSE  今天给我带来了收益，我感到很高兴，但是，我要丰富我的BLOG让更多的人来关注，加油，FIGHTING&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_RZrvjeNSwPI/ReRBcBH2_dI/AAAAAAAAADk/FYPWL1WAojU/s1600-h/newyear07.gif"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://1.bp.blogspot.com/_RZrvjeNSwPI/ReRBcBH2_dI/AAAAAAAAADk/FYPWL1WAojU/s200/newyear07.gif" alt="" id="BLOGGER_PHOTO_ID_5036222232900599250" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1346473674484214752-1686395177604158470?l=chenruitiger.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chenruitiger.blogspot.com/feeds/1686395177604158470/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1346473674484214752&amp;postID=1686395177604158470' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1346473674484214752/posts/default/1686395177604158470'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1346473674484214752/posts/default/1686395177604158470'/><link rel='alternate' type='text/html' href='http://chenruitiger.blogspot.com/2007/02/google.html' title='google给我带来收益，加油'/><author><name>chenrui</name><uri>http://www.blogger.com/profile/13188836662597773306</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_RZrvjeNSwPI/ReRCNRH2_gI/AAAAAAAAAD8/kH1yrKY8KwE/s72-c/shichigosan.gif' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1346473674484214752.post-837400851338782163</id><published>2007-02-26T22:42:00.000-08:00</published><updated>2007-02-26T23:08:19.069-08:00</updated><title type='text'>三大浏览器（BROWSER）比较：internet explorer,mozilla firefox,netscape browser</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://netscape.com"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://2.bp.blogspot.com/_RZrvjeNSwPI/RePVbhH2_bI/AAAAAAAAADI/m8P6vtmRBNA/s320/images1.jpg" alt="" id="BLOGGER_PHOTO_ID_5036103477054864818" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.mozilla.com"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://4.bp.blogspot.com/_RZrvjeNSwPI/RePVVBH2_aI/AAAAAAAAADA/aczaOv9_Ahk/s320/images2.jpg" alt="" id="BLOGGER_PHOTO_ID_5036103365385715106" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.microsoft.com/windows/ie"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer;" src="http://1.bp.blogspot.com/_RZrvjeNSwPI/RePVKRH2_ZI/AAAAAAAAAC4/1rovzJeWnbc/s320/images.jpg" alt="" id="BLOGGER_PHOTO_ID_5036103180702121362" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(255, 153, 255);"&gt;在我电脑上三种浏览器都有安装，比较发现还是FIREFOX比较好，不仅快，而且，很多有用的附件可以安装，界面干净是我力求的，所以，现在大家都比较喜欢用FIREFOX，而且，安全，而，IE7。0或许是因为MICROSOFT的缘故，用的久了，习惯，但是，安全是大问题，而最后的NETSCAPE竟然没有中文版的，还要，我用美国的ZIP CODE太无耻了，现在地球人都知道要生存忽略，中国必将招淘汰，所以NETSCAPE，快出中文版吧，还有，号称速度快，也不过如此，学习人家FIREFOX吧，要加油了，不要被彻底打败，所以，我的&lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(255, 153, 255);"&gt;浏览器排名&lt;br /&gt;                      1。&lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(255, 153, 255);"&gt;FIREFOX&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(255, 153, 255);"&gt;                      2。internet explorer&lt;br /&gt;                      3。&lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(255, 153, 255);"&gt;NETSCAPE&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(255, 153, 255);"&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1346473674484214752-837400851338782163?l=chenruitiger.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chenruitiger.blogspot.com/feeds/837400851338782163/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1346473674484214752&amp;postID=837400851338782163' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1346473674484214752/posts/default/837400851338782163'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1346473674484214752/posts/default/837400851338782163'/><link rel='alternate' type='text/html' href='http://chenruitiger.blogspot.com/2007/02/browserinternet-explorermozilla.html' title='三大浏览器（BROWSER）比较：internet explorer,mozilla firefox,netscape browser'/><author><name>chenrui</name><uri>http://www.blogger.com/profile/13188836662597773306</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_RZrvjeNSwPI/RePVbhH2_bI/AAAAAAAAADI/m8P6vtmRBNA/s72-c/images1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1346473674484214752.post-5446366354629741949</id><published>2007-02-26T22:15:00.000-08:00</published><updated>2007-02-26T22:40:49.979-08:00</updated><title type='text'>chenrui看第79届奥斯卡（OSCAR）好烂</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_RZrvjeNSwPI/RePR_RH2_YI/AAAAAAAAACo/8QsZtHxf7Rg/s1600-h/310x150_ellensvideodiaries.jpg"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer;" src="http://1.bp.blogspot.com/_RZrvjeNSwPI/RePR_RH2_YI/AAAAAAAAACo/8QsZtHxf7Rg/s320/310x150_ellensvideodiaries.jpg" alt="" id="BLOGGER_PHOTO_ID_5036099693188676994" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_RZrvjeNSwPI/RePOoBH2_XI/AAAAAAAAACg/2PEgLVB9rSs/s1600-h/%E6%96%B0%E5%BB%BA+BMP+%E5%9B%BE%E5%83%8F.bmp"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://4.bp.blogspot.com/_RZrvjeNSwPI/RePOoBH2_XI/AAAAAAAAACg/2PEgLVB9rSs/s320/%E6%96%B0%E5%BB%BA+BMP+%E5%9B%BE%E5%83%8F.bmp" alt="" id="BLOGGER_PHOTO_ID_5036095995221835122" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 255, 153); font-weight: bold;"&gt;看了79届奥斯卡颁奖后，有些遗憾，美国人很偏见，除了英国人似乎，他们都是高高在上，或许，这也可以看作是霸权主义的一面吧，但是，人们应该这样看，毕竟，这是美国人自己的颁奖典礼，以别人别人没有什么，更是可笑的就是那个主持人，据说是个同性恋，长的又丑，又让人难受，OSCAR，的人都是吃素的吗？而且，把一个那么正式的晚会，变的让人摸不着头脑，难道，大家是为了高兴才打扮成那样吗，笑死人了，不懂的场合，还有，某些明星的暗讽，有点过分了，美国人该反省了，看看他们在很多方面被超越，不是因为别的，是因为，傲慢，&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1346473674484214752-5446366354629741949?l=chenruitiger.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chenruitiger.blogspot.com/feeds/5446366354629741949/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1346473674484214752&amp;postID=5446366354629741949' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1346473674484214752/posts/default/5446366354629741949'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1346473674484214752/posts/default/5446366354629741949'/><link rel='alternate' type='text/html' href='http://chenruitiger.blogspot.com/2007/02/chenrui79oscar.html' title='chenrui看第79届奥斯卡（OSCAR）好烂'/><author><name>chenrui</name><uri>http://www.blogger.com/profile/13188836662597773306</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_RZrvjeNSwPI/RePR_RH2_YI/AAAAAAAAACo/8QsZtHxf7Rg/s72-c/310x150_ellensvideodiaries.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1346473674484214752.post-5675609680405809304</id><published>2007-02-23T23:22:00.000-08:00</published><updated>2007-02-23T23:22:52.857-08:00</updated><title type='text'>Blogger Spaces: 捐助BloggerSpaces</title><content type='html'>&lt;a href="http://www.bloggerspaces.com/2006/07/bloggerspaces_13.php"&gt;Blogger Spaces: 捐助BloggerSpaces&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1346473674484214752-5675609680405809304?l=chenruitiger.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.bloggerspaces.com/2006/07/bloggerspaces_13.php' title='Blogger Spaces: 捐助BloggerSpaces'/><link rel='replies' type='application/atom+xml' href='http://chenruitiger.blogspot.com/feeds/5675609680405809304/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1346473674484214752&amp;postID=5675609680405809304' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1346473674484214752/posts/default/5675609680405809304'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1346473674484214752/posts/default/5675609680405809304'/><link rel='alternate' type='text/html' href='http://chenruitiger.blogspot.com/2007/02/blogger-spaces-bloggerspaces.html' title='Blogger Spaces: 捐助BloggerSpaces'/><author><name>chenrui</name><uri>http://www.blogger.com/profile/13188836662597773306</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1346473674484214752.post-3574855505039440558</id><published>2007-02-23T22:39:00.000-08:00</published><updated>2007-02-23T22:56:37.982-08:00</updated><title type='text'>在家里养株植物吧!</title><content type='html'>&lt;a href="http://2.bp.blogspot.com/_RZrvjeNSwPI/Rd_fB8YZyFI/AAAAAAAAACU/xFGt-ObAQgw/s1600-h/SP_A0074.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5034988132904847442" style="FLOAT: right; MARGIN: 0px 0px 10px 10px; CURSOR: hand" alt="" src="http://2.bp.blogspot.com/_RZrvjeNSwPI/Rd_fB8YZyFI/AAAAAAAAACU/xFGt-ObAQgw/s200/SP_A0074.jpg" border="0" /&gt;&lt;/a&gt;&lt;strong&gt;  &lt;span style="color:#ff9900;"&gt; 12元买了株植物,好象很小似的,但是没想是株金琥,希望可以放在家里面养的,没想果然用途很多,希望可以把他养好,但是用手机拍出的效果不怎么样,好丑!但是,听说会开花希望能够看到那一天,以下是一些小知识希望有用!(&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;&lt;span style="color:#ff9900;"&gt;&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;&lt;span style="color:#ff6600;"&gt;金琥：又名象牙球，属仙人掌科，原产墨西哥中部。　　适合范围：刚装修过的居室、书房或40平方米-150平方米客厅内。　　主要功能：吸收甲醛、乙醚等装修产生的有毒有害气体，吸收电脑辐射。　　形态特征：多年生肉质植物，茎圆球形，大型，高30-120cm，径可达l00cm，单生。茎球有棱整齐排列，刺座较大，具放射状硬刺长约3cm，金黄色。　　养护方法：金琥喜欢光照充足和高温的环境，不耐夏季烈日直射，不耐寒。要求含有石灰质的沙质土壤。越冬温度15℃以上，定期向球体喷洒水雾。养护数十年能育成巨大的茎球，非常壮观。在40～50℃的高温下，如没有烈日直射，仍生长良好。　　由于仙人掌科类植物可以吸收甲醛、乙醚等装修产生的有害气体，因此最适合室内养植。它可以24小时放氧，吸收电脑辐射。)&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/strong&gt;&lt;strong&gt;&lt;span style="color:#ff6600;"&gt;&lt;/span&gt;&lt;/strong&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1346473674484214752-3574855505039440558?l=chenruitiger.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chenruitiger.blogspot.com/feeds/3574855505039440558/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1346473674484214752&amp;postID=3574855505039440558' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1346473674484214752/posts/default/3574855505039440558'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1346473674484214752/posts/default/3574855505039440558'/><link rel='alternate' type='text/html' href='http://chenruitiger.blogspot.com/2007/02/blog-post_997.html' title='在家里养株植物吧!'/><author><name>chenrui</name><uri>http://www.blogger.com/profile/13188836662597773306</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_RZrvjeNSwPI/Rd_fB8YZyFI/AAAAAAAAACU/xFGt-ObAQgw/s72-c/SP_A0074.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1346473674484214752.post-7947666674250884050</id><published>2007-02-23T06:40:00.000-08:00</published><updated>2007-02-23T06:50:35.281-08:00</updated><title type='text'>中国新年拜年讲究多</title><content type='html'>&lt;a href="http://3.bp.blogspot.com/_RZrvjeNSwPI/Rd79VcYZyEI/AAAAAAAAACI/AZB4k1Q9Gyc/s1600-h/1a988e79245368a94efb5.gif"&gt;&lt;img id="BLOGGER_PHOTO_ID_5034739978284419138" style="FLOAT: right; MARGIN: 0px 0px 10px 10px; CURSOR: hand" alt="" src="http://3.bp.blogspot.com/_RZrvjeNSwPI/Rd79VcYZyEI/AAAAAAAAACI/AZB4k1Q9Gyc/s320/1a988e79245368a94efb5.gif" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div&gt;&lt;a href="http://3.bp.blogspot.com/_RZrvjeNSwPI/Rd79VcYZyEI/AAAAAAAAACI/AZB4k1Q9Gyc/s1600-h/1a988e79245368a94efb5.gif"&gt;&lt;img id="BLOGGER_PHOTO_ID_5034739978284419138" style="FLOAT: right; MARGIN: 0px 0px 10px 10px; CURSOR: hand" alt="" src="http://3.bp.blogspot.com/_RZrvjeNSwPI/Rd79VcYZyEI/AAAAAAAAACI/AZB4k1Q9Gyc/s320/1a988e79245368a94efb5.gif" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;a href="http://3.bp.blogspot.com/_RZrvjeNSwPI/Rd79VcYZyEI/AAAAAAAAACI/AZB4k1Q9Gyc/s1600-h/1a988e79245368a94efb5.gif"&gt;&lt;img id="BLOGGER_PHOTO_ID_5034739978284419138" style="FLOAT: right; MARGIN: 0px 0px 10px 10px; CURSOR: hand" alt="" src="http://3.bp.blogspot.com/_RZrvjeNSwPI/Rd79VcYZyEI/AAAAAAAAACI/AZB4k1Q9Gyc/s320/1a988e79245368a94efb5.gif" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;a href="http://3.bp.blogspot.com/_RZrvjeNSwPI/Rd79VcYZyEI/AAAAAAAAACI/AZB4k1Q9Gyc/s1600-h/1a988e79245368a94efb5.gif"&gt;&lt;img id="BLOGGER_PHOTO_ID_5034739978284419138" style="FLOAT: right; MARGIN: 0px 0px 10px 10px; CURSOR: hand" alt="" src="http://3.bp.blogspot.com/_RZrvjeNSwPI/Rd79VcYZyEI/AAAAAAAAACI/AZB4k1Q9Gyc/s320/1a988e79245368a94efb5.gif" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;a href="http://3.bp.blogspot.com/_RZrvjeNSwPI/Rd79VcYZyEI/AAAAAAAAACI/AZB4k1Q9Gyc/s1600-h/1a988e79245368a94efb5.gif"&gt;&lt;strong&gt;&lt;span style="color:#ffcc66;"&gt;&lt;img id="BLOGGER_PHOTO_ID_5034739978284419138" style="FLOAT: right; MARGIN: 0px 0px 10px 10px; CURSOR: hand" alt="" src="http://3.bp.blogspot.com/_RZrvjeNSwPI/Rd79VcYZyEI/AAAAAAAAACI/AZB4k1Q9Gyc/s320/1a988e79245368a94efb5.gif" border="0" /&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/a&gt;&lt;strong&gt;&lt;span style="color:#ffcc66;"&gt;&lt;br /&gt;大年初一到初十五我大概都没时间干别的就是天天到别人那吃饭要么就是请别人吃饭,天天把自己吃的很事难受,最受不了的是还要见很多陌生的人,象我这种风格的人大概会受不了,但是,我还是希望大家玩的开心&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;a href="http://3.bp.blogspot.com/_RZrvjeNSwPI/Rd79VcYZyEI/AAAAAAAAACI/AZB4k1Q9Gyc/s1600-h/1a988e79245368a94efb5.gif"&gt;&lt;img id="BLOGGER_PHOTO_ID_5034739978284419138" style="FLOAT: right; MARGIN: 0px 0px 10px 10px; CURSOR: hand" alt="" src="http://3.bp.blogspot.com/_RZrvjeNSwPI/Rd79VcYZyEI/AAAAAAAAACI/AZB4k1Q9Gyc/s320/1a988e79245368a94efb5.gif" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1346473674484214752-7947666674250884050?l=chenruitiger.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chenruitiger.blogspot.com/feeds/7947666674250884050/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1346473674484214752&amp;postID=7947666674250884050' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1346473674484214752/posts/default/7947666674250884050'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1346473674484214752/posts/default/7947666674250884050'/><link rel='alternate' type='text/html' href='http://chenruitiger.blogspot.com/2007/02/blog-post_23.html' title='中国新年拜年讲究多'/><author><name>chenrui</name><uri>http://www.blogger.com/profile/13188836662597773306</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_RZrvjeNSwPI/Rd79VcYZyEI/AAAAAAAAACI/AZB4k1Q9Gyc/s72-c/1a988e79245368a94efb5.gif' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1346473674484214752.post-8684913935476650885</id><published>2007-02-21T08:03:00.000-08:00</published><updated>2007-02-21T08:22:24.681-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='公司'/><title type='text'>youtobe 被google收购是又一个时代的到来,微软该如何应对</title><content type='html'>&lt;a href="http://2.bp.blogspot.com/_RZrvjeNSwPI/RdxuPsYZyDI/AAAAAAAAAB4/jj-BK1YRrFI/s1600-h/logo_cn.gif"&gt;&lt;img id="BLOGGER_PHOTO_ID_5034019699383978034" style="FLOAT: right; MARGIN: 0px 0px 10px 10px; CURSOR: hand" alt="" src="http://2.bp.blogspot.com/_RZrvjeNSwPI/RdxuPsYZyDI/AAAAAAAAAB4/jj-BK1YRrFI/s320/logo_cn.gif" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div&gt;&lt;a href="http://1.bp.blogspot.com/_RZrvjeNSwPI/RdxuKcYZyCI/AAAAAAAAABw/Rhw2Pc5k32Y/s1600-h/pic_youtubelogo_123x63.gif"&gt;&lt;img id="BLOGGER_PHOTO_ID_5034019609189664802" style="FLOAT: left; MARGIN: 0px 10px 10px 0px; CURSOR: hand" alt="" src="http://1.bp.blogspot.com/_RZrvjeNSwPI/RdxuKcYZyCI/AAAAAAAAABw/Rhw2Pc5k32Y/s320/pic_youtubelogo_123x63.gif" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;strong&gt;&lt;span style="color:#ff0000;"&gt;在这个网络到处蔓延的年代,谁能够占据头把交椅,自从GOOGLE从搜索开始好象一发不可收拾,不断的给人惊喜,本以为,YOUTOBE会成为又一个GOOGLE却被后者收购,我不得不佩服GOOGLE的魄力,对于YOUTUBE的创立者太没有眼光感到悲哀,但是,反观我们的大老MICRSOFT却没有什么反应,它似乎一直都是模仿,不论是在操作系统还是在网络服务提供方面,都是这样,或许是因为机构太庞大,官僚主义盛行导致的吧,一个总是走在他人后面的公司,即使再有才力,也综将被时代淘汰,微软快改变自己吧,或许,这就是为什么我们开复为什么要跳槽的缘故吧,什么事情都有其两面性,微软,找找自己的原因吧,加油,GOOGLE,希望有一天可以看到你的市值超过微软&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1346473674484214752-8684913935476650885?l=chenruitiger.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chenruitiger.blogspot.com/feeds/8684913935476650885/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1346473674484214752&amp;postID=8684913935476650885' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1346473674484214752/posts/default/8684913935476650885'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1346473674484214752/posts/default/8684913935476650885'/><link rel='alternate' type='text/html' href='http://chenruitiger.blogspot.com/2007/02/youtobe-google.html' title='youtobe 被google收购是又一个时代的到来,微软该如何应对'/><author><name>chenrui</name><uri>http://www.blogger.com/profile/13188836662597773306</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_RZrvjeNSwPI/RdxuPsYZyDI/AAAAAAAAAB4/jj-BK1YRrFI/s72-c/logo_cn.gif' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1346473674484214752.post-7003964975132292052</id><published>2007-02-17T04:57:00.000-08:00</published><updated>2007-02-17T05:00:34.108-08:00</updated><title type='text'>happy spring festival</title><content type='html'>&lt;a href="http://1.bp.blogspot.com/_RZrvjeNSwPI/Rdb7w8YZx8I/AAAAAAAAAAw/hv8v6tdR2Rc/s1600-h/Happy_preview.gif"&gt;&lt;img id="BLOGGER_PHOTO_ID_5032486451893880770" style="FLOAT: right; MARGIN: 0px 0px 10px 10px; CURSOR: hand" alt="" src="http://1.bp.blogspot.com/_RZrvjeNSwPI/Rdb7w8YZx8I/AAAAAAAAAAw/hv8v6tdR2Rc/s320/Happy_preview.gif" border="0" /&gt;&lt;/a&gt; &lt;span style="color:#ff0000;"&gt;Chinese New Year starts with the New Moon on the first day of the new year and ends on the full moon 15 days later. The 15th day of the new year is called the Lantern Festival, which is celebrated at night with lantern displays and children carrying lanterns in a parade.&lt;br /&gt;The Chinese calendar is based on a combination of lunar and solar movements. The lunar cycle is about 29.5 days. In order to "catch up" with the solar calendar the Chinese insert an extra month once every few years (seven years out of a 19-yearcycle). This is the same as adding an extra day on leap year. This is why, according to the solar calendar, the Chinese New Year falls on a different date each year.&lt;br /&gt;New Year's Eve and New Year's Day are celebrated as a family affair, a time of reunion and thanksgiving. The celebration was traditionally highlighted with a religious ceremony given in honor of Heaven and Earth, the gods of the household and the family ancestors.&lt;br /&gt;The sacrifice to the ancestors, the most vital of all the rituals, united the living members with those who had passed away. Departed relatives are remembered with great respect because they were responsible for laying the foundations for the fortune and glory of the family.&lt;br /&gt;The presence of the ancestors is acknowledged on New Year's Eve with a dinner arranged for them at the family banquet table. The spirits of the ancestors, together with the living, celebrate the onset of the New Year as one great community. The communal feast called "surrounding the stove" or weilu. It symbolizes family unity and honors the past and present generations.&lt;br /&gt;&lt;/span&gt;&lt;div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1346473674484214752-7003964975132292052?l=chenruitiger.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chenruitiger.blogspot.com/feeds/7003964975132292052/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1346473674484214752&amp;postID=7003964975132292052' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1346473674484214752/posts/default/7003964975132292052'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1346473674484214752/posts/default/7003964975132292052'/><link rel='alternate' type='text/html' href='http://chenruitiger.blogspot.com/2007/02/happy-spring-festival.html' title='happy spring festival'/><author><name>chenrui</name><uri>http://www.blogger.com/profile/13188836662597773306</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_RZrvjeNSwPI/Rdb7w8YZx8I/AAAAAAAAAAw/hv8v6tdR2Rc/s72-c/Happy_preview.gif' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1346473674484214752.post-9219004517679870890</id><published>2007-02-17T04:25:00.000-08:00</published><updated>2007-02-17T04:50:21.275-08:00</updated><title type='text'>2007新年.,在这我向所以查看我博客的朋友问好</title><content type='html'>&lt;a href="http://3.bp.blogspot.com/_RZrvjeNSwPI/Rdb5-cYZx7I/AAAAAAAAAAk/_D6UqvbG9pM/s1600-h/wallpaper-kiss-800.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5032484484798859186" style="FLOAT: left; MARGIN: 0px 10px 10px 0px; CURSOR: hand" alt="" src="http://3.bp.blogspot.com/_RZrvjeNSwPI/Rdb5-cYZx7I/AAAAAAAAAAk/_D6UqvbG9pM/s320/wallpaper-kiss-800.jpg" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div&gt;&lt;strong&gt;&lt;span style="color:#ff9966;"&gt;爆竹声中辞旧岁迎新:辞去烦恼和忧愁,迎来欢乐和喜气.我们都又长大了一岁,在这里祝大家在新的一年里新想事成&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1346473674484214752-9219004517679870890?l=chenruitiger.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chenruitiger.blogspot.com/feeds/9219004517679870890/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1346473674484214752&amp;postID=9219004517679870890' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1346473674484214752/posts/default/9219004517679870890'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1346473674484214752/posts/default/9219004517679870890'/><link rel='alternate' type='text/html' href='http://chenruitiger.blogspot.com/2007/02/2007.html' title='2007新年.,在这我向所以查看我博客的朋友问好'/><author><name>chenrui</name><uri>http://www.blogger.com/profile/13188836662597773306</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_RZrvjeNSwPI/Rdb5-cYZx7I/AAAAAAAAAAk/_D6UqvbG9pM/s72-c/wallpaper-kiss-800.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1346473674484214752.post-5212065067948547173</id><published>2007-02-16T18:32:00.000-08:00</published><updated>2007-02-16T18:33:11.934-08:00</updated><title type='text'>大家可以给我留言,一个寂寞的人</title><content type='html'>&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1346473674484214752-5212065067948547173?l=chenruitiger.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chenruitiger.blogspot.com/feeds/5212065067948547173/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1346473674484214752&amp;postID=5212065067948547173' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1346473674484214752/posts/default/5212065067948547173'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1346473674484214752/posts/default/5212065067948547173'/><link rel='alternate' type='text/html' href='http://chenruitiger.blogspot.com/2007/02/blog-post.html' title='大家可以给我留言,一个寂寞的人'/><author><name>chenrui</name><uri>http://www.blogger.com/profile/13188836662597773306</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
