<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>My Blog</title>
	<atom:link href="http://danielwang.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://danielwang.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Sun, 15 Nov 2009 06:48:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='danielwang.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>My Blog</title>
		<link>http://danielwang.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://danielwang.wordpress.com/osd.xml" title="My Blog" />
	<atom:link rel='hub' href='http://danielwang.wordpress.com/?pushpress=hub'/>
		<item>
		<title>How to use HTML dl, dt, dd tags</title>
		<link>http://danielwang.wordpress.com/2009/11/13/how-to-use-html-dl-dt-dd-tags/</link>
		<comments>http://danielwang.wordpress.com/2009/11/13/how-to-use-html-dl-dt-dd-tags/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 01:06:00 +0000</pubDate>
		<dc:creator>wangdayu</dc:creator>
				<category><![CDATA[html]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://danielwang.wordpress.com/2009/11/13/how-to-use-html-dl-dt-dd-tags</guid>
		<description><![CDATA[Many web developers would love to create web design using table tags. In fact, by using HTML dl, dt, dd tags, you will save on writing more codes and add more semantic value to the content. Whereas table are best use for tabular data, and should not be use in listing data, web form or [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielwang.wordpress.com&amp;blog=5544536&amp;post=311&amp;subd=danielwang&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Many web developers would love to create web design using table tags. In fact, by using HTML dl, dt, dd tags, you will save on writing more codes and add more semantic value to the content. Whereas table are best use for tabular data, and should not be use in listing data, web form or web layout.</p>
<p>If you are still creating list data using table, look below and compare on how to make your life easier with HTML dl, dt, dd tags.</p>
<div class="separator" style="clear:both;text-align:center;"><a href="http://danielwang.files.wordpress.com/2009/11/dl-vs-table.jpg" style="margin-left:1em;margin-right:1em;"><img border="0" src="http://danielwang.files.wordpress.com/2009/11/dl-vs-table.jpg?w=300" /></a></div>
<p>It may both look identical, but look closely behind the codes.</p>
<h4>Table List Data</h4>
<p>A typical listing data using table can be as follow. First we have a <code>tr</code> table row to hold the title and the data <code>td</code> table cell. Then when we need to style the <strong>title</strong> element, we will need to give a class to that <code>td</code> table cell.
<pre class="brush: xml;">&lt;table&gt; &lt;tr&gt;  &lt;td class="title"&gt;Name: &lt;/td&gt;  &lt;td class="text"&gt;John Don&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt;  &lt;td class="title"&gt;Age: &lt;/td&gt;  &lt;td class="text"&gt;23&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt;  &lt;td class="title"&gt;Gender: &lt;/td&gt;  &lt;td class="text"&gt;Male&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt;  &lt;td class="title"&gt;Day of Birth:&lt;/td&gt;  &lt;td class="text"&gt;12th May 1986&lt;/td&gt; &lt;/tr&gt;&lt;/table&gt;</pre>
<p>So over here in the CSS, we style the title class that we had declare in the HTML.
<pre class="brush: css">/*TABLE LIST DATA*/table { margin-bottom:50px;}

table tr .title { background:#5f9be3; color:#fff; font-weight:bold; padding:5px; width:100px;}

table tr .text { padding-left:10px;}</pre>
<p>From here you can see that if you want to change the design or format for the title in the CSS, you will need to give each <code>td</code> for the title a class. If you want to style the data as well, you will need to give a class to it as well, so you are actually writing a lot of codes. More codes mean larger file size to download, more chances for bugs and harder for you to maintain.<br />
<h4>DL, DT, DD List Data</h4>
<p>Now, let&#8217;s look at using HTML <code>dl, dt, dd</code> tags for listing the data. First we have the  <code>dl</code> (definition list) tag to hold the whole set of data, next we have <code>dt</code> (defines the item in the list) tag and <code>dd</code> (describes the item in the list) tag to hold the title and the data.
<pre class="brush: xml;">&lt;dl&gt; &lt;dt&gt;Name: &lt;/dt&gt; &lt;dd&gt;John Don&lt;/dd&gt;

 &lt;dt&gt;Age: &lt;/dt&gt; &lt;dd&gt;23&lt;/dd&gt;

 &lt;dt&gt;Gender: &lt;/dt&gt; &lt;dd&gt;Male&lt;/dd&gt;

 &lt;dt&gt;Day of Birth:&lt;/dt&gt; &lt;dd&gt;12th May 1986&lt;/dd&gt;&lt;/dl&gt;</pre>
<p>Over at CSS, we will need to float the <code>dt</code> tag, so that the title for the list data will align to the left. The rest of the styling is up to you.
<pre class="brush: css; smart-tabs: true; tab-size: 4;">/*DL, DT, DD TAGS LIST DATA*/dl { margin-bottom:50px;}

dl dt { background:#5f9be3; color:#fff; float:left; font-weight:bold; margin-right:10px; padding:5px; width:100px;}

dl dd { margin:2px 0; padding:5px 0;}</pre>
<p>From <code>dl, dt, dd</code> tags example, you can see that the codes are lesser, sleeker and much more semantic. </p>
<p>So if you are still using table to consolidate or list your data on the web form and web layout, it&#8217;s really time now to make the switch. It&#8217;s definitely going to make your life a lot more easier.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/danielwang.wordpress.com/311/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/danielwang.wordpress.com/311/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/danielwang.wordpress.com/311/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/danielwang.wordpress.com/311/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/danielwang.wordpress.com/311/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/danielwang.wordpress.com/311/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/danielwang.wordpress.com/311/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/danielwang.wordpress.com/311/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/danielwang.wordpress.com/311/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/danielwang.wordpress.com/311/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/danielwang.wordpress.com/311/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/danielwang.wordpress.com/311/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/danielwang.wordpress.com/311/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/danielwang.wordpress.com/311/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielwang.wordpress.com&amp;blog=5544536&amp;post=311&amp;subd=danielwang&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://danielwang.wordpress.com/2009/11/13/how-to-use-html-dl-dt-dd-tags/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a8bfea26cfba24f56532160bf66f6690?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">wangdayu</media:title>
		</media:content>

		<media:content url="http://danielwang.files.wordpress.com/2009/11/dl-vs-table.jpg?w=300" medium="image" />
	</item>
		<item>
		<title>李开复博士《给创新工场求职者的一封信》</title>
		<link>http://danielwang.wordpress.com/2009/11/11/%e6%9d%8e%e5%bc%80%e5%a4%8d%e5%8d%9a%e5%a3%ab%e3%80%8a%e7%bb%99%e5%88%9b%e6%96%b0%e5%b7%a5%e5%9c%ba%e6%b1%82%e8%81%8c%e8%80%85%e7%9a%84%e4%b8%80%e5%b0%81%e4%bf%a1%e3%80%8b/</link>
		<comments>http://danielwang.wordpress.com/2009/11/11/%e6%9d%8e%e5%bc%80%e5%a4%8d%e5%8d%9a%e5%a3%ab%e3%80%8a%e7%bb%99%e5%88%9b%e6%96%b0%e5%b7%a5%e5%9c%ba%e6%b1%82%e8%81%8c%e8%80%85%e7%9a%84%e4%b8%80%e5%b0%81%e4%bf%a1%e3%80%8b/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 22:34:00 +0000</pubDate>
		<dc:creator>wangdayu</dc:creator>
				<category><![CDATA[Kai Fu Lee]]></category>

		<guid isPermaLink="false">http://danielwang.wordpress.com/2009/11/11/%e6%9d%8e%e5%bc%80%e5%a4%8d%e5%8d%9a%e5%a3%ab%e3%80%8a%e7%bb%99%e5%88%9b%e6%96%b0%e5%b7%a5%e5%9c%ba%e6%b1%82%e8%81%8c%e8%80%85%e7%9a%84%e4%b8%80%e5%b0%81%e4%bf%a1%e3%80%8b</guid>
		<description><![CDATA[李开复博士的新一篇博文《给创新工场求职者的一封信》 看了文章，很受启发，同时也对自己的选择更加做出了坚定的信念。高薪并不一定等于合适，选择工作的时候更应该选择一份合适自己能力和性格发展的工作。我从中摘取两句话，值得回味一下： 你的第一份工作还是能给你带来很多震撼教育：它会潜移默化影响你究竟想过上怎样的一种人生。毕竟，我们每个人都没有聪明到可以计算到未来的每一步起伏变化，那么，你未来在面对那些重大而艰难的决策时，帮你做出决定的除了你个人的才智、经验，还有你的世界观。 我希望活得深刻，并汲取生命中所有的精华。然后从中学习，以免让我在生命终结时，却发现自己从来没有活过。 下面是文章全文转载： 创办创新工场的两个月里，我每天都在不同场合感受到国内创业者及有志于创业的大学生的热情与朝气。我们发出了大约三十封邀请，大多数也决定加入创新工场。这多多少少证明了我当初的想法：中国有着足够多的和我们志同道合的、人品好、有创业精神、扎实的计算机基础和团队合作精神的青年人。 不过，在我和很多青年朋友交谈时，我也看到很多人的疑惑——特别是那些尚未毕业但怀揣梦想的大学生。一些非常聪明的学生朋友也会有一些极为朴素的好奇：如果我可以加入一家已经成功的公司，直接过上很舒适的生活，为什么要创业？大学毕业后，是不是只有大公司才能帮助我成为一个卓越的技术人员？如果创业失败了，而我在这几年里又做出了很大的个人收入及私人时间的牺牲，是不是很亏？ 其实，我一直这样告诉青年朋友们：毕业后第一份工作最重要的是你是否能够学习到最多，而不是其他。虽然很多人在学校里已经非常优秀，但你的第一份工作还是能给你带来很多震撼教育：它会潜移默化影响你究竟想过上怎样的一种人生。毕竟，我们每个人都没有聪明到可以计算到未来的每一步起伏变化，那么，你未来在面对那些重大而艰难的决策时，帮你做出决定的除了你个人的才智、经验，还有你的世界观。这些观念除了从小养成的部分，还有很大部分来自于你刚刚进入社会那几年受到的身边人的影响、遇到的工作挑战。那么，如果你希望成为一个优秀、健康的人，你应该让自己在毕业时就能置身于一个由正直而聪明的人组成的、有挑战的环境中去。这正是我在创新工场所希望营造的。 很多年轻人愿意加入一些成熟的公司。无论中国过去三十年成长起来的优秀公司，还是外国那些财富500强，都很有吸引力：不错的薪酬、良好的福利、健全的体系，以及大众熟悉的品牌……我当然知道这些东西都很好，但它并非适用于每一个人。有一些人，他们是天生的“创业者”，天生的“特殊的人”。 看看你自己是否属于这些“特殊的人”：你相信可以通过自己的努力来让这个世界变得更好；遇到各种现实生活中的问题与困难时，你更多思考的是解决问题的方法、积极地去让现状变好，而不是抱怨与忍耐；你更愿意将工作视为一次激动人心的旅途，而非日复一日的庸常无聊的糊口方式；你愿意用自己的方式去尝试、探索这个世界，而不是人云亦云，遵循常规…… 如果你认为自己符合以上这些标准，那么进入一家成熟公司对于你很可能将成为漫长的消磨。毕竟，无论多么伟大的公司，当它的体系已经形成，初出茅庐的年轻人是不可能参与到最核心的创新工作中的，也更难突破既有的规范。就像你不能想象比尔·盖茨在IBM里开发出Windows，如果拉里和谢尔盖从斯坦福毕业之后加入了雅虎，他们也就不可能创造出Google。 还有一些人可能会问，开复你自己也曾经在苹果、微软、Google这些大公司工作，为什么今天反过来说它们并不适合一些人？我非常乐于承认，我在这些了不起的公司学到了很多东西，但就像我加盟微软是开创其中国研究院，加盟Google是为了创建Google中国，这种经历已经很像创业，可并非每个人都能获得类似的机会。而且，我以前的太多同事已经证明：创业者就是创业者。我在每一家公司都有很多极为优秀的同事最终告别了令人羡慕的生活，去从零开始创建属于自己的天地。比如我在苹果的同事Andy Rubin后来去创办了Danger手机公司最后成为Android，我在SGI的同事Mike Ramsay创立了Tivo，我在微软的同事Rob Glaser创立了RealNetworks，而今年热门的创业公司FourSquare和RedBeacon都是前Google员工创建的，还有谷歌中国的员工也创立了Babytree、Light-in-the-box、浪淘金、欧酷、Papaya Mobile等公司。那些不安于室的人总会去接受使命的召唤，只是早晚问题。 有些人认为，大公司能让他们专心于技术开发，能够获得更多的培训机会。但他们没有意识到，工作并非读书，毕业后最好的学习不是来自课堂式的“培训”，而是来自“learning by doing”的实践。工科的同学，毕业后最好的学习就是投入一个有用户价值，有商业模式的产品的研发。在这样的环境中所学的技术是真本领，不是纸上谈兵，解决的是真问题，而不是toy problems。那些真正有意义的产品是能最大程度上影响最多人的生活的，它们绝不仅仅因为技术先进，还因为它们是人们最需要、最在意的。想想那些真正的“颠覆式创新”，个人电脑刚刚诞生时，效率远远不如大型机，而YouTube的视频效果也大大不如电视，但它们契合了大众所需，并彻底的改变了世界。如果你想创造最好的技术，你一定要被推到用户面前，理解他们所想所需，尽你所能满足他们。 对于那些感叹“为什么创业公司为什么没有五星大厨和龙虾鲍鱼？”，我希望你们看得更远一点。创业公司拿着得代表投资者信任的资本，花每一块钱时必须问问自己：“如果是我自己的钱，我会这么花？”，因为作为公司股东和主人翁，这个公司确实是自己的。在创新工场，我们没有五星大厨和美食，但是我能够承诺的是我会和你们一起住二星酒店，吃十元的饭盒。我也会把你们当我的家人，带来公司我回台湾买的美食，或者我自己做的烧饼或牛肉面。 对那些感叹“为什么创业公司薪水不如最高的跨国企业？”，我也希望你们看得更远一点。选择创新工场，你走的是盖茨、拉里和谢尔盖的路，而他们是这世界最富有的人。我从来不建议人们为发财而创业，但不妨反过来想，钱本身就是一个由市场机制做出的评判：你创造的价值越大越稀缺，人们就越愿意为之付费。因此，我们只给员工合理的薪水，却相当慷慨的给他们相当多的干股和股权，这才是未来价值最大的部分。虽然这种回报并不确定，但我真心相信每名工程师都可能成为创业者和企业的主人，也可能为自己创造巨大的财富。 当然，商业世界并非充斥着光辉灿烂的成功者，还有很多失败者。即使最乐观的说法，就算创新工场帮助你提升成功概率，缩短产品周期，失败的概率依然远远大于成功。真的应该用自己人生最宝贵的几年时光参与到一次前途未卜的创业旅途中吗？ 这是一个你必须自己回答的问题。有些人只用几秒钟就可以得出答案，有的人则会思索一生也无法说服自己。但当你确信自己真的愿意走上这样的旅程，并以正确的、正规的方式创业，无论你最终取得了何种程度的商业成功，相信你一定能够学到非常多的东西。当你全心投入创业，每天你都要解决大大小小的种种问题，这会帮助一个富有才智的年轻人迅速成长。 退一万步说，即使失败了，会怎么样呢？别忘了，即使今天被全球商界视为偶像的乔布斯，在他30岁到45岁期间，也有过被苹果驱逐、创建NeXT失败，经营Pixar动画公司被好莱坞无情打击的连续的挫败经历，但他扪心自问，自己依然热爱科技业，依然愿意以创建公司的方式改变这个世界，并坚持前行，他才成为日后那个创造iPod和iPhone的乔布斯。 乔布斯的一生，就和梭罗说的一样：“我希望活得深刻，并汲取生命中所有的精华。然后从中学习，以免让我在生命终结时，却发现自己从来没有活过。” 也可以反过来说，如果你希望过上一个安稳的生活，如果你每天考虑的都是如何还上房贷和车贷，如果你安于现状，如果你畏惧失败，那即使你既聪明又有商业头脑，可能你也不应该接受那些创业公司的邀请。这样你可以得到安稳的一生，但是也放弃了让自己人生更丰富多彩的一种可能性。 最近的两个月，我自己也在寻找走上一条与以往不同的道路的方法。我和我的同事们每星期工作70个小时，去优化创业公司的每一个环节（比如和很多一般创业公司只能仰视的大公司谈成合作），致力于减少影响创业者的外力（比如招聘、工商注册、税务、法务甚至房屋租赁……），去挖掘每一个人才（数次我写信给毕业生的父母），从而让创业者可以最大程度的专注。而我由此获得的，是和许许多多拥有一流想法的人进行深入而有趣的探讨，一起探索让这个世界与以往不同的可能性。所以，如果你符合我在前面说的标准，又愿意得到和我一样的头脑上与精神上的丰富收获，那么，你应该重新做一道算术题：“知名大公司+优厚的薪水+安稳的工作+舒适的生活”，和“属于你的公司+丰厚的股票+快乐的打拼+改变世界的机会”，究竟孰轻孰重？<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielwang.wordpress.com&amp;blog=5544536&amp;post=310&amp;subd=danielwang&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>李开复博士的新一篇博文<a href="http://blog.sina.com.cn/s/blog_475b3d560100fsft.html">《给创新工场求职者的一封信》</a> 看了文章，很受启发，同时也对自己的选择更加做出了坚定的信念。高薪并不一定等于合适，<span style="color:red;">选择工作的时候更应该选择一份合适自己能力和性格发展的工作</span>。我从中摘取两句话，值得回味一下：</p>
<blockquote><p><span><br />你的第一份工作还是能给你带来很多震撼教育：它会潜移默化影响你究竟想过上怎样的一种人生。毕竟，我们每个人都没有聪明到可以计算到未来的每一步起伏变化，那么，你未来在面对那些重大而艰难的决策时，帮你做出决定的除了你个人的才智、经验，还有你的世界观。</span></p></blockquote>
<p>
<blockquote><span><br />我希望活得深刻，并汲取生命中所有的精华。然后从中学习，以免让我在生命终结时，却发现自己从来没有活过。</span></p></blockquote>
<p>下面是文章全文转载：</p>
<p><span style="color:#3d85c6;">创办创新工场的两个月里，我每天都在不同场合感受到国内创业者及有志于创业的大学生的热情与朝气。我们发出了大约三十封邀请，大多数也决定加入创新工场。这多多少少证明了我当初的想法：中国有着足够多的和我们志同道合的、人品好、有创业精神、扎实的计算机基础和团队合作精神的青年人。</span><br /><span style="color:#3d85c6;"><br /></span> <br /><span style="color:#3d85c6;">不过，在我和很多青年朋友交谈时，我也看到很多人的疑惑——特别是那些尚未毕业但怀揣梦想的大学生。一些非常聪明的学生朋友也会有一些极为朴素的好奇：如果我可以加入一家已经成功的公司，直接过上很舒适的生活，为什么要创业？大学毕业后，是不是只有大公司才能帮助我成为一个卓越的技术人员？如果创业失败了，而我在这几年里又做出了很大的个人收入及私人时间的牺牲，是不是很亏？</span><br /><span style="color:#3d85c6;"><br /></span> <br /><span style="color:#3d85c6;">其实，我一直这样告诉青年朋友们：毕业后第一份工作最重要的是你是否能够学习到最多，而不是其他。虽然很多人在学校里已经非常优秀，但你的第一份工作还是能给你带来很多震撼教育：它会潜移默化影响你究竟想过上怎样的一种人生。毕竟，我们每个人都没有聪明到可以计算到未来的每一步起伏变化，那么，你未来在面对那些重大而艰难的决策时，帮你做出决定的除了你个人的才智、经验，还有你的世界观。这些观念除了从小养成的部分，还有很大部分来自于你刚刚进入社会那几年受到的身边人的影响、遇到的工作挑战。那么，如果你希望成为一个优秀、健康的人，你应该让自己在毕业时就能置身于一个由正直而聪明的人组成的、有挑战的环境中去。这正是我在创新工场所希望营造的。</span><br /><span style="color:#3d85c6;"><br /></span> <br /><span style="color:#3d85c6;">很多年轻人愿意加入一些成熟的公司。无论中国过去三十年成长起来的优秀公司，还是外国那些财富500强，都很有吸引力：不错的薪酬、良好的福利、健全的体系，以及大众熟悉的品牌……我当然知道这些东西都很好，但它并非适用于每一个人。有一些人，他们是天生的“创业者”，天生的“特殊的人”。</span><br /><span style="color:#3d85c6;"><br /></span> <br /><span style="color:#3d85c6;">看看你自己是否属于这些“特殊的人”：你相信可以通过自己的努力来让这个世界变得更好；遇到各种现实生活中的问题与困难时，你更多思考的是解决问题的方法、积极地去让现状变好，而不是抱怨与忍耐；你更愿意将工作视为一次激动人心的旅途，而非日复一日的庸常无聊的糊口方式；你愿意用自己的方式去尝试、探索这个世界，而不是人云亦云，遵循常规……</span><br /><span style="color:#3d85c6;"><br /></span> <br /><span style="color:#3d85c6;">如果你认为自己符合以上这些标准，那么进入一家成熟公司对于你很可能将成为漫长的消磨。毕竟，无论多么伟大的公司，当它的体系已经形成，初出茅庐的年轻人是不可能参与到最核心的创新工作中的，也更难突破既有的规范。就像你不能想象比尔·盖茨在IBM里开发出Windows，如果拉里和谢尔盖从斯坦福毕业之后加入了雅虎，他们也就不可能创造出Google。</span><br /><span style="color:#3d85c6;"><br /></span> <br /><span style="color:#3d85c6;">还有一些人可能会问，开复你自己也曾经在苹果、微软、Google这些大公司工作，为什么今天反过来说它们并不适合一些人？我非常乐于承认，我在这些了不起的公司学到了很多东西，但就像我加盟微软是开创其中国研究院，加盟Google是为了创建Google中国，这种经历已经很像创业，可并非每个人都能获得类似的机会。而且，我以前的太多同事已经证明：创业者就是创业者。我在每一家公司都有很多极为优秀的同事最终告别了令人羡慕的生活，去从零开始创建属于自己的天地。比如我在苹果的同事Andy Rubin后来去创办了Danger手机公司最后成为Android，我在SGI的同事Mike Ramsay创立了Tivo，我在微软的同事Rob Glaser创立了RealNetworks，而今年热门的创业公司FourSquare和RedBeacon都是前Google员工创建的，还有谷歌中国的员工也创立了Babytree、Light-in-the-box、浪淘金、欧酷、Papaya Mobile等公司。那些不安于室的人总会去接受使命的召唤，只是早晚问题。</span><br /><span style="color:#3d85c6;"><br /></span> <br /><span style="color:#3d85c6;">有些人认为，大公司能让他们专心于技术开发，能够获得更多的培训机会。但他们没有意识到，工作并非读书，毕业后最好的学习不是来自课堂式的“培训”，而是来自“learning by doing”的实践。工科的同学，毕业后最好的学习就是投入一个有用户价值，有商业模式的产品的研发。在这样的环境中所学的技术是真本领，不是纸上谈兵，解决的是真问题，而不是toy problems。那些真正有意义的产品是能最大程度上影响最多人的生活的，它们绝不仅仅因为技术先进，还因为它们是人们最需要、最在意的。想想那些真正的“颠覆式创新”，个人电脑刚刚诞生时，效率远远不如大型机，而YouTube的视频效果也大大不如电视，但它们契合了大众所需，并彻底的改变了世界。如果你想创造最好的技术，你一定要被推到用户面前，理解他们所想所需，尽你所能满足他们。</span><br /><span style="color:#3d85c6;"><br /></span> <br /><span style="color:#3d85c6;">对于那些感叹“为什么创业公司为什么没有五星大厨和龙虾鲍鱼？”，我希望你们看得更远一点。创业公司拿着得代表投资者信任的资本，花每一块钱时必须问问自己：“如果是我自己的钱，我会这么花？”，因为作为公司股东和主人翁，这个公司确实是自己的。在创新工场，我们没有五星大厨和美食，但是我能够承诺的是我会和你们一起住二星酒店，吃十元的饭盒。我也会把你们当我的家人，带来公司我回台湾买的美食，或者我自己做的烧饼或牛肉面。</span><br /><span style="color:#3d85c6;"><br /></span> <br /><span style="color:#3d85c6;">对那些感叹“为什么创业公司薪水不如最高的跨国企业？”，我也希望你们看得更远一点。选择创新工场，你走的是盖茨、拉里和谢尔盖的路，而他们是这世界最富有的人。我从来不建议人们为发财而创业，但不妨反过来想，钱本身就是一个由市场机制做出的评判：你创造的价值越大越稀缺，人们就越愿意为之付费。因此，我们只给员工合理的薪水，却相当慷慨的给他们相当多的干股和股权，这才是未来价值最大的部分。虽然这种回报并不确定，但我真心相信每名工程师都可能成为创业者和企业的主人，也可能为自己创造巨大的财富。</span><br /><span style="color:#3d85c6;"><br /></span> <br /><span style="color:#3d85c6;">当然，商业世界并非充斥着光辉灿烂的成功者，还有很多失败者。即使最乐观的说法，就算创新工场帮助你提升成功概率，缩短产品周期，失败的概率依然远远大于成功。真的应该用自己人生最宝贵的几年时光参与到一次前途未卜的创业旅途中吗？</span><br /><span style="color:#3d85c6;"><br /></span> <br /><span style="color:#3d85c6;">这是一个你必须自己回答的问题。有些人只用几秒钟就可以得出答案，有的人则会思索一生也无法说服自己。但当你确信自己真的愿意走上这样的旅程，并以正确的、正规的方式创业，无论你最终取得了何种程度的商业成功，相信你一定能够学到非常多的东西。当你全心投入创业，每天你都要解决大大小小的种种问题，这会帮助一个富有才智的年轻人迅速成长。</span><br /><span style="color:#3d85c6;"><br /></span> <br /><span style="color:#3d85c6;">退一万步说，即使失败了，会怎么样呢？别忘了，即使今天被全球商界视为偶像的乔布斯，在他30岁到45岁期间，也有过被苹果驱逐、创建NeXT失败，经营Pixar动画公司被好莱坞无情打击的连续的挫败经历，但他扪心自问，自己依然热爱科技业，依然愿意以创建公司的方式改变这个世界，并坚持前行，他才成为日后那个创造iPod和iPhone的乔布斯。</span><br /><span style="color:#3d85c6;"><br /></span> <br /><span style="color:#3d85c6;">乔布斯的一生，就和梭罗说的一样：“我希望活得深刻，并汲取生命中所有的精华。然后从中学习，以免让我在生命终结时，却发现自己从来没有活过。”</span><br /><span style="color:#3d85c6;"><br /></span> <br /><span style="color:#3d85c6;">也可以反过来说，如果你希望过上一个安稳的生活，如果你每天考虑的都是如何还上房贷和车贷，如果你安于现状，如果你畏惧失败，那即使你既聪明又有商业头脑，可能你也不应该接受那些创业公司的邀请。这样你可以得到安稳的一生，但是也放弃了让自己人生更丰富多彩的一种可能性。</span><br /><span style="color:#3d85c6;"><br /></span> <br /><span style="color:#3d85c6;">最近的两个月，我自己也在寻找走上一条与以往不同的道路的方法。我和我的同事们每星期工作70个小时，去优化创业公司的每一个环节（比如和很多一般创业公司只能仰视的大公司谈成合作），致力于减少影响创业者的外力（比如招聘、工商注册、税务、法务甚至房屋租赁……），去挖掘每一个人才（数次我写信给毕业生的父母），从而让创业者可以最大程度的专注。而我由此获得的，是和许许多多拥有一流想法的人进行深入而有趣的探讨，一起探索让这个世界与以往不同的可能性。所以，如果你符合我在前面说的标准，又愿意得到和我一样的头脑上与精神上的丰富收获，那么，你应该重新做一道算术题：“知名大公司+优厚的薪水+安稳的工作+舒适的生活”，和“属于你的公司+丰厚的股票+快乐的打拼+改变世界的机会”，究竟孰轻孰重？</span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/danielwang.wordpress.com/310/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/danielwang.wordpress.com/310/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/danielwang.wordpress.com/310/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/danielwang.wordpress.com/310/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/danielwang.wordpress.com/310/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/danielwang.wordpress.com/310/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/danielwang.wordpress.com/310/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/danielwang.wordpress.com/310/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/danielwang.wordpress.com/310/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/danielwang.wordpress.com/310/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/danielwang.wordpress.com/310/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/danielwang.wordpress.com/310/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/danielwang.wordpress.com/310/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/danielwang.wordpress.com/310/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielwang.wordpress.com&amp;blog=5544536&amp;post=310&amp;subd=danielwang&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://danielwang.wordpress.com/2009/11/11/%e6%9d%8e%e5%bc%80%e5%a4%8d%e5%8d%9a%e5%a3%ab%e3%80%8a%e7%bb%99%e5%88%9b%e6%96%b0%e5%b7%a5%e5%9c%ba%e6%b1%82%e8%81%8c%e8%80%85%e7%9a%84%e4%b8%80%e5%b0%81%e4%bf%a1%e3%80%8b/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a8bfea26cfba24f56532160bf66f6690?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">wangdayu</media:title>
		</media:content>
	</item>
		<item>
		<title>YUI CSS Framework Tutorial</title>
		<link>http://danielwang.wordpress.com/2009/11/06/yui-css-framework-tutorial/</link>
		<comments>http://danielwang.wordpress.com/2009/11/06/yui-css-framework-tutorial/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 02:50:00 +0000</pubDate>
		<dc:creator>wangdayu</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[framework]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[YUI]]></category>

		<guid isPermaLink="false">http://danielwang.wordpress.com/2009/11/06/yui-css-framework-tutorial</guid>
		<description><![CDATA[Accidentally, &#160;I discovered iGoogle is using&#160;YUI CSS framework, being&#160;curiosity&#160;I&#8217;ve been digging around it, found that YUI CSS framework is very powerful, It&#8217;s a very useful because has a lot of possibilities of grids and it also has a online grid generator to help fast start. The CSS Frameworks are not for CSS starters (newbies)! They [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielwang.wordpress.com&amp;blog=5544536&amp;post=309&amp;subd=danielwang&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://noupe.com/img/css-framework-5.jpg" style="clear:right;float:right;margin-bottom:1em;margin-left:1em;"><img alt="Css-framework-5 in 5 Popular CSS Frameworks + Tutorials &amp; Tools for Getting Started" border="0" src="http://noupe.com/img/css-framework-5.jpg" /></a>Accidentally, &nbsp;I discovered iGoogle is using&nbsp;YUI CSS framework, being&nbsp;curiosity&nbsp;I&#8217;ve been digging around it, found that YUI CSS framework is very powerful, It&#8217;s a very useful because has a lot of possibilities of grids and it also has a online grid generator to help fast start.</p>
<p>The CSS Frameworks are not for CSS starters (newbies)! They are for people who know CSS but want more organized approach.</p>
<p>Positive/negative aspects of the CSS frameworks<br /><b>Positive:</b>
<ol>
<li>- They usually have multi &#8211; browser support.</li>
<li>- If the CSS Frameworks are public and have community support a lot of bugs and problems are fixed. Also you have a lot of code examples.</li>
<li>- They usually have 80% of all the CSS code that you will ever need.</li>
<li>- You can learn a lot from the CSS Frameworks .</li>
</ol>
<p><b>Negative:</b>
<ol>
<li>- There will be some CSS code from the framework that you will never use.</li>
<li>- You need time to learn how the CSS framework works.</li>
<li>- Bug fixing is not always simple (first you have to learn how the framework works)</li>
<li>- It’s not so “semantic” (class=”menu-left” – semantic v.s class=”div-xyz” not so semantic)</li>
</ol>
<p>Here I&#8217;d like to introduce this tutorial to you. Done by&nbsp;<a href="http://www.overthemike.com/2009/10/yui-css-framework-tutorial/">Mike Sweeney</a>, who is a web developer from Las Vegas, in the following tutorial, Mike shows us how to utilize the YUI CSS Framework to cut down on the time and stress it takes to produce a good layout.<br />
<h4>What is YUI?</h4>
<div style="line-height:18px;margin:.4em 0 1em;padding:0;">The Yahoo User Interface library is comprised mostly of Javascript utilities and controls to help front-end developers create a rich user interface. It also comes with a great CSS framework to make developing websites a lot faster. This CSS framework is what we’ll be focusing on today. It’s lightweight (less than 6KB when minified), easy to use, and most importantly, it works with all major A-grade browsers.</div>
<h4>Why use it?</h4>
<p><span style="font-weight:normal;line-height:18px;">Any good UX designer will tell you that one of the keys to making your website easy to use is consistency. Your goal should be to not make users use more than the necessary brain power it takes to understand the point you’re trying to get across. People are used to seeing sites designed in certain ways and the YUI CSS Framework covers these basic design patterns without having to make&nbsp;<em>you</em>&nbsp;think too hard as well. Everybody wins.</span>
<div style="line-height:18px;margin:.4em 0 1em;padding:0;">This doesn’t mean that Yahoo is trying to make everyone design the way they say, however. They leave plenty of room for customization for the “wild at heart” amongst us that want to dish out the newest interesting custom design pattern. More on this in a bit.</div>
<h4>Getting Started.</h4>
<div style="line-height:18px;margin:.4em 0 1em;padding:0;">The first step is to get the&nbsp;<a href="http://yui.yahooapis.com/2.8.0r4/build/reset-fonts-grids/reset-fonts-grids.css" style="color:#2d83d5;text-decoration:underline;margin:0;padding:0;">YUI CSS Framework</a>. I gave you the direct link for it here, but I would also recommend taking a look at the&nbsp;<a href="http://developer.yahoo.com/yui/" style="color:#2d83d5;text-decoration:underline;margin:0;padding:0;">YUI Developer Site</a>. If you head to that page, on the left menu there’s a navigation header labeled “YUI Components”. Most of those are the YUI JS utilities but if you scroll down, you’ll see that the last four sub links are for CSS. There’s a lot of great information there for you to check out including a 42 minute video that explains probably more than you’ll want to know about how the CSS Framework works (well maybe not more).</div>
<div style="line-height:18px;margin:.4em 0 1em;padding:0;">You may have noticed when you clicked the link that the name of the file is “reset-fonts-grids.css”. This is actually a combination of the three main components that make this all work all combined into one minified CSS file for your convenience. If you find yourself asking whether or not you can download them separately, the answer is yes…however they are a bit dependent upon each other, so use caution. If you’re using another reset file such as the famous Eric Meyer’s&nbsp;<a href="http://meyerweb.com/eric/tools/css/reset/" style="color:#2d83d5;text-decoration:underline;margin:0;padding:0;">Reset CSS</a>, you can (most likely) safely use that instead of Yahoo’s version, but why try and fix what isn’t broken? Now when it comes to the other two components, fonts and grids, grids relies on the fonts css to declare the proper width for an “em”, which grids uses for just about everything.</div>
<h4>Reset</h4>
<div style="line-height:18px;margin:.4em 0 1em;padding:0;">If you’re not already using a reset css file, I definitely recommend you seriously look into using one – even if you don’t want to use YUI. Each browser has it own set of defaults when it comes to margins, line-heights, padding, etc. that can make life tough when trying to code out your layout. What reset does is simple, yet extremely useful. It takes away all of the browser defaults and sets them to all use the same stuff. The days of using “*{margin: 0; padding: 0;}” are over. It’s time to get with the program.</div>
<h4>Fonts</h4>
<div style="line-height:18px;margin:.4em 0 1em;padding:0;">As described above, the fonts portion defines the width of the “em” for which everything is based on. It also, however, takes away all of the browser font defaults and sets every relevant html tag to use a font size of 13px, a line-height of 16px, and all but the pre and code tags to use the Arial font (pre and code use the monospace font family). What does this mean for you? It means you’re going to need to define the font sizes and/or families you’re going to want on your website yourself. Don’t look at that as a bad thing though, you’re most likely doing this already (or you should be). This, like reset, takes away the differences in the default styling of the browsers for a consistent look and feel. Yahoo provides a recommended way to define your font sizes using the percentages defined on their&nbsp;<a href="http://developer.yahoo.com/yui/fonts/" style="color:#2d83d5;text-decoration:underline;margin:0;padding:0;">fonts page</a>.</div>
<h4>Grids</h4>
<div style="line-height:18px;margin:.4em 0 1em;padding:0;">Now this is where things start to get fun. YUI makes it very easy to layout everything on your site without having to use those cumbersome tables. Let’s take a look.</div>
<h4>Setting up the page.</h4>
<div style="line-height:18px;margin:.4em 0 1em;padding:0;">YUI breaks up a page in a very familiar way to most designers. You’ve got your wrapper div, which also determines the width of your site. And within that you’ve got your header, body and footer. Pretty easy right? Here’s how it looks.</div>
<div style="line-height:18px;margin:.4em 0 1em;padding:0;"><span style="line-height:normal;"></span></div>
<pre class="brush:html">&lt;!DOCTYPE html&gt;&lt;html&gt; &lt;head&gt;  &lt;title&gt;My first YUI Layout&lt;/title&gt;  &lt;link rel="stylesheet" type="text/css" href="css/reset-fonts-grids.css" /&gt; &lt;/head&gt; &lt;body&gt;  &lt;div id="doc2"&gt;&lt;!--Wrapper div -&gt; doc, doc2, doc3, doc4, or doc-custom--&gt;   &lt;!--These three are not required to use if you prefer something else, but they're pre-defined for you--&gt;   &lt;div id="hd"&gt;&lt;/div&gt;   &lt;div id="bd"&gt;&lt;/div&gt;   &lt;div id="ft"&gt;&lt;/div&gt;  &lt;/div&gt; &lt;/body&gt;&lt;/html&gt;</pre>
<p>
<div style="line-height:18px;margin:.4em 0 1em;padding:0;"><span style="font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, Sans, FreeSans, Jamrul, Garuda, Kalimati;font-size:13px;line-height:normal;"></span>
<div style="line-height:18px;margin:.4em 0 1em;padding:0;">We’ll start by focusing on the wrapper div. YUI offers you four different standard widths:</div>
<div style="line-height:18px;margin:.4em 0 1em;padding:0;">doc – 750px<br />doc2 – 950px<br />doc3 – Fluid<br />doc4 – 974px</div>
<div style="line-height:18px;margin:.4em 0 1em;padding:0;">And for all you “rebels” out there, you can create a custom width in your own stylesheet using the doc-custom wrapper. It’s a good thing to keep these widths in mind when designing your site. It will make your life much easier. The rest of the document is pretty self-explanatory.</div>
<h4>Templates.</h4>
<div style="line-height:18px;margin:.4em 0 1em;padding:0;">Now that we’ve got the basic layout of the page, we’re going to add content using yahoo’s predefined template classes. The concept behind the templates is extremely easy. You’ve got two main blocks of content that you want to position within your body (bd). You’re going to put all of your content within one of these two blocks. You define a block simply by giving the div a class of “yui-b”. Once you’ve done that, you need to tell YUI which block is the main block for content (i.e. the wider block) by wrapping it in a div with an id of “yui-main”. The reason you need to do this is some browsers don’t support the pseudo class of “:first-child”. And by some, of course, I mean IE.</div>
<p><span style="line-height:normal;"></span>
<pre class="brush:html">...&lt;div id="bd"&gt; &lt;div id="yui-main"&gt;  &lt;div class="yui-b"&gt;   ...some content here...  &lt;/div&gt; &lt;/div&gt; &lt;div class="yui-b"&gt;  ...some content here... &lt;/div&gt;&lt;/div&gt;...</pre>
<p><span style="font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, Sans, FreeSans, Jamrul, Garuda, Kalimati;font-size:13px;line-height:normal;"></span>
<div style="line-height:18px;margin:.4em 0 1em;padding:0;">This tells YUI which block of content is the main focus of the site. Regardless of whether the main content block is to the left or to the right of the sidebar, you can always put it above the less important code (the sidebar). This way you can keep your best content at the top of the source (helps with SEO).</div>
<div style="line-height:18px;margin:.4em 0 1em;padding:0;">Now that we have defined the blocks of content, we need to tell YUI where to display it. That’s as simple as adding a template class to the wrapper div (the doc). Yahoo has provided six different pre-defined layouts for use:</div>
<div style="line-height:18px;margin:.4em 0 1em;padding:0;">.yui-t1 – Two columns, narrow on left, 160px<br />.yui-t2 – Two columns, narrow on left, 180px<br />.yui-t3 – Two columns, narrow on left, 300px<br />.yui-t4 – Two columns, narrow on right, 180px<br />.yui-t5 – Two columns, narrow on right, 240px<br />.yui-t6 – Two columns, narrow on right, 300px</div>
<div style="line-height:18px;margin:.4em 0 1em;padding:0;">Yahoo has chosen these layouts as one of the most common things found in sidebars are ads and most ad networks have a consistent set of sizes for the ads they serve. Wouldn’t you know it? Most of the them match up to the template sizes YUI provides.</div>
<div style="line-height:18px;margin:.4em 0 1em;padding:0;">Let’s continue by adding the template class of “yui-t6″ to our document wrapper as it’s a fairly common layout.</div>
</div>
<pre class="brush:html">&lt;div id="doc2" class="yui-t6"&gt;</pre>
<p><span style="font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, Sans, FreeSans, Jamrul, Garuda, Kalimati;font-size:13px;"></span>
<div style="line-height:18px;margin:.4em 0 1em;padding:0;">Now add some dummy text in there and look for yourself. Voila! You have a layout.</div>
<h4>Special Grids.</h4>
<div style="line-height:18px;margin:.4em 0 1em;padding:0;">Now what if you don’t want to use any of the pre-made templates? Say your design calls for 3 columns instead of two. Or maybe you want to add something with the template you created that needs to be broken up into sections? Not a problem. YUI has a grid layout system that pretty much covers any custom block layout you want without the need to use tables.</div>
<div style="line-height:18px;margin:.4em 0 1em;padding:0;">The Grid system works very similar to the templates shown above. You have your outer div (the grid), and your inner divs (called units) which work very much the same as blocks (remember .yui-b?). Let’s take a look at how to set one up.</div>
<p>
<pre class="brush:html">&lt;div class="yui-g"&gt; &lt;div class="yui-u first"&gt;  ...some content here... &lt;/div&gt; &lt;div class="yui-u"&gt;  ...some content here... &lt;/div&gt;&lt;/div&gt;</pre>
<p><span style="font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, Sans, FreeSans, Jamrul, Garuda, Kalimati;font-size:13px;"></span>
<div style="line-height:18px;margin:.4em 0 1em;padding:0;">This will create a grid with two equal width blocks that will fill whatever container they are inside. The only real thing to take note of here is that whichever div you want to appear first (on the left), make sure to give that div a class of “first” along with the unit class.</div>
<div style="line-height:18px;margin:.4em 0 1em;padding:0;">Similar to templates, there are six different types of grids you can use:</div>
<div style="line-height:18px;margin:.4em 0 1em;padding:0;">.yui-g – Standard grid, 1/2 – 1/2<br />.yui-gb – Special grid, 1/3 – 1/3 – 1/3<br />.yui-gc – Special grid, 2/3 – 1/3<br />.yui-gd – Special grid, 1/3 – 2/3<br />.yui-ge – Special grid, 3/4 – 1/4<br />.yui-gf – Special grid, 1/4 – 3/4</div>
<div style="line-height:18px;margin:.4em 0 1em;padding:0;">Now the thing that makes this great is that you can also nest grids as much as you’d like. Want a grid that displays in quarters as opposed to halfs? Let’s check out how to do that.</div>
<div style="line-height:18px;margin:.4em 0 1em;padding:0;"><span style="line-height:normal;"></span>
<pre class="brush:html">&lt;div class="yui-g"&gt; &lt;div class="yui-g first"&gt;  &lt;div class="yui-u first"&gt;   ...some content here...  &lt;/div&gt;  &lt;div class="yui-u"&gt;   ...some content here...  &lt;/div&gt; &lt;/div&gt; &lt;div class="yui-g"&gt;  &lt;div class="yui-u first"&gt;   ...some content here...  &lt;/div&gt;  &lt;div class="yui-u"&gt;   ...some content here...  &lt;/div&gt; &lt;/div&gt;&lt;/div&gt;</pre>
<p></div>
<p><span style="font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, Sans, FreeSans, Jamrul, Garuda, Kalimati;font-size:13px;"></span>
<div style="line-height:18px;margin:.4em 0 1em;padding:0;">The thing to keep in mind here is that when you nest a grid within another grid, that grid also acts as a unit for it’s parent grid. There’s no need to nest it within a div with a unit class attached to it.</div>
<h4>Conclusion</h4>
<div style="line-height:18px;margin:.4em 0 1em;padding:0;">This framework really helps with cutting down on development time and making sure that the more important content is displayed before the rest within the source (great for SEO). If you keep this in mind the next time you design a website, you’ll notice a huge gain on time and quite possibly a relief of the stress of making your website look the way you want without hacking away at it.</div>
<div style="line-height:18px;margin:.4em 0 1em;padding:0;">Once again I’d like to stress taking a look at&nbsp;<a href="http://developer.yahoo.com/yui/grids" style="color:#2d83d5;text-decoration:underline;margin:0;padding:0;">Yahoo’s site for YUI CSS</a>, as it’s got great references on how to use this including videos, examples and a nice little cheat sheet so you don’t have to remember everything off the top of your head.</div>
<div style="line-height:18px;margin:.4em 0 1em;padding:0;"><a href="http://www.thewebsqueeze.com/samples/yui-css-tutorial" style="color:#2d83d5;text-decoration:underline;margin:0;padding:0;">Demo Site</a><br /><a href="http://www.thewebsqueeze.com/samples/yui-css-tutorial/yui-css-tutorial.zip" style="color:#2d83d5;text-decoration:underline;margin:0;padding:0;">Demo Download</a></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/danielwang.wordpress.com/309/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/danielwang.wordpress.com/309/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/danielwang.wordpress.com/309/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/danielwang.wordpress.com/309/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/danielwang.wordpress.com/309/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/danielwang.wordpress.com/309/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/danielwang.wordpress.com/309/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/danielwang.wordpress.com/309/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/danielwang.wordpress.com/309/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/danielwang.wordpress.com/309/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/danielwang.wordpress.com/309/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/danielwang.wordpress.com/309/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/danielwang.wordpress.com/309/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/danielwang.wordpress.com/309/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielwang.wordpress.com&amp;blog=5544536&amp;post=309&amp;subd=danielwang&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://danielwang.wordpress.com/2009/11/06/yui-css-framework-tutorial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a8bfea26cfba24f56532160bf66f6690?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">wangdayu</media:title>
		</media:content>

		<media:content url="http://noupe.com/img/css-framework-5.jpg" medium="image">
			<media:title type="html">Css-framework-5 in 5 Popular CSS Frameworks + Tutorials &#38; Tools for Getting Started</media:title>
		</media:content>
	</item>
		<item>
		<title>CSS Font Size Conversion Chart</title>
		<link>http://danielwang.wordpress.com/2009/11/03/css-font-size-conversion-chart/</link>
		<comments>http://danielwang.wordpress.com/2009/11/03/css-font-size-conversion-chart/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 22:24:00 +0000</pubDate>
		<dc:creator>wangdayu</dc:creator>
				<category><![CDATA[font]]></category>
		<category><![CDATA[font size]]></category>
		<category><![CDATA[typography]]></category>

		<guid isPermaLink="false">http://danielwang.wordpress.com/2009/11/03/css-font-size-conversion-chart</guid>
		<description><![CDATA[“Ems” (em): The “em” is a scalable unit that is used in web document media. An em is equal to the current font-size, for instance, if the font-size of the document is 12pt, 1em is equal to 12pt. Ems are scalable in nature, so 2em would equal 24pt, .5em would equal 6pt, etc. Ems are [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielwang.wordpress.com&amp;blog=5544536&amp;post=308&amp;subd=danielwang&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<ul>
<li><b>“Ems” (em)</b>: The “em” is a scalable unit that is used in web document media. An em is equal to the current font-size, for instance, if the font-size of the document is 12pt, 1em is equal to 12pt. Ems are scalable in nature, so 2em would equal 24pt, .5em would equal 6pt, etc. Ems are becoming increasingly popular in web documents due to scalability and their mobile-device-friendly nature.</p>
</li>
<li><b>Pixels (px):</b> Pixels are fixed-size units that are used in screen media (i.e. to be read on the computer screen). One pixel is equal to one dot on the computer screen (the smallest division of your screen’s resolution). Many web designers use pixel units in web documents in order to produce a pixel-perfect representation of their site as it is rendered in the browser. One problem with the pixel unit is that it does not scale upward for visually-impaired readers or downward to fit mobile devices.
</li>
<li><b>Points (pt)</b>: Points are traditionally used in print media (anything that is to be printed on paper, etc.). One point is equal to 1/72 of an inch. Points are much like pixels, in that they are fixed-size units and cannot scale in size.
</li>
<li><b>Percent (%):</b> The percent unit is much like the “em” unit, save for a few fundamental differences. First and foremost, the current font-size is equal to 100% (i.e. 12pt = 100%). While using the percent unit, your text remains fully scalable for mobile devices and for accessibility.</li>
</ul>
<p>Here is a chart that will help you find the conversion of pt,px,ems and %. The chart is good for an approximation, font size can change based on font, and operating system.</p>
<table border="1" cellpadding="2" cellspacing="0">
<tbody>
<tr class="even">
<th>Points</th>
<th>Pixels</th>
<th>Ems</th>
<th>Percent</th>
</tr>
<tr>
<td>6pt</td>
<td>8px</td>
<td>0.5em</td>
<td>50%</td>
</tr>
<tr class="even">
<td>7pt</td>
<td>9px</td>
<td>0.55em</td>
<td>55%</td>
</tr>
<tr>
<td>7.5pt</td>
<td>10px</td>
<td>0.625em</td>
<td>62.5%</td>
</tr>
<tr class="even">
<td>8pt</td>
<td>11px</td>
<td>0.7em</td>
<td>70%</td>
</tr>
<tr>
<td>9pt</td>
<td>12px</td>
<td>0.75em</td>
<td>75%</td>
</tr>
<tr class="even">
<td>10pt</td>
<td>13px</td>
<td>0.8em</td>
<td>80%</td>
</tr>
<tr>
<td>10.5pt</td>
<td>14px</td>
<td>0.875em</td>
<td>87.5%</td>
</tr>
<tr class="even">
<td>11pt</td>
<td>15px</td>
<td>0.95em</td>
<td>95%</td>
</tr>
<tr>
<td>12pt</td>
<td>16px</td>
<td>1em</td>
<td>100%</td>
</tr>
<tr class="even">
<td>13pt</td>
<td>17px</td>
<td>1.05em</td>
<td>105%</td>
</tr>
<tr>
<td>13.5pt</td>
<td>18px</td>
<td>1.125em</td>
<td>112.5%</td>
</tr>
<tr class="even">
<td>14pt</td>
<td>19px</td>
<td>1.2em</td>
<td>120%</td>
</tr>
<tr>
<td>14.5pt</td>
<td>20px</td>
<td>1.25em</td>
<td>125%</td>
</tr>
<tr class="even">
<td>15pt</td>
<td>21px</td>
<td>1.3em</td>
<td>130%</td>
</tr>
<tr>
<td>16pt</td>
<td>22px</td>
<td>1.4em</td>
<td>140%</td>
</tr>
<tr class="even">
<td>17pt</td>
<td>23px</td>
<td>1.45em</td>
<td>145%</td>
</tr>
<tr>
<td>18pt</td>
<td>24px</td>
<td>1.5em</td>
<td>150%</td>
</tr>
<tr class="even">
<td>20pt</td>
<td>26px</td>
<td>1.6em</td>
<td>160%</td>
</tr>
<tr>
<td>22pt</td>
<td>29px</td>
<td>1.8em</td>
<td>180%</td>
</tr>
<tr class="even">
<td>24pt</td>
<td>32px</td>
<td>2em</td>
<td>200%</td>
</tr>
<tr>
<td>26pt</td>
<td>35px</td>
<td>2.2em</td>
<td>220%</td>
</tr>
<tr class="even">
<td>27pt</td>
<td>36px</td>
<td>2.25em</td>
<td>225%</td>
</tr>
<tr class="even">
<td>28pt</td>
<td>37px</td>
<td>2.3em</td>
<td>230%</td>
</tr>
<tr>
<td>29pt</td>
<td>38px</td>
<td>2.35em</td>
<td>235%</td>
</tr>
<tr class="even">
<td>30pt</td>
<td>40px</td>
<td>2.45em</td>
<td>245%</td>
</tr>
<tr>
<td>32pt</td>
<td>42px</td>
<td>2.55em</td>
<td>255%</td>
</tr>
<tr class="even">
<td>34pt</td>
<td>45px</td>
<td>2.75em</td>
<td>275%</td>
</tr>
<tr>
<td>36pt</td>
<td>48px</td>
<td>3em</td>
<td>300%</td>
</tr>
</tbody>
</table>
<p>For those of you who are still using pixels, it’s about time you made the switch to ems or points. <b>Why should you use em for font sizing?</b></p>
<p>The simple answer is scalability. If you have a have a site that you want accessible to multiple audiences then use em’s. By multiple audiences, I mean those using mobile devices, like a Blackberry or iPhone. Also, this means that those users of the later generation….alright, older people, with bad vision…can see your website in the exact proportions you intend. What I mean by this is, if you hold CTRL and use your mouse wheel, or go to “view &gt; text size” in Internet Explorer, your font size will be fully controlled by the user and not by you, ruining your design!&nbsp;Using ems will make all your sizes become proportional to the original settings! This will help retain your font-sizes despite what a browse or user decides to do to it!</p>
<p>Here is a little trick that will help you so you don’t have to remember the chart above.</p>
<pre class="brush:css">body { font-size: 62.5% }</pre>
<p>This will make 1.0 em the same as 10px.&nbsp; So if you wanted 12 px. would be 1.2em, nice and easy.&nbsp; Hopefully this will help you out.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/danielwang.wordpress.com/308/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/danielwang.wordpress.com/308/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/danielwang.wordpress.com/308/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/danielwang.wordpress.com/308/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/danielwang.wordpress.com/308/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/danielwang.wordpress.com/308/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/danielwang.wordpress.com/308/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/danielwang.wordpress.com/308/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/danielwang.wordpress.com/308/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/danielwang.wordpress.com/308/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/danielwang.wordpress.com/308/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/danielwang.wordpress.com/308/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/danielwang.wordpress.com/308/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/danielwang.wordpress.com/308/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielwang.wordpress.com&amp;blog=5544536&amp;post=308&amp;subd=danielwang&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://danielwang.wordpress.com/2009/11/03/css-font-size-conversion-chart/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a8bfea26cfba24f56532160bf66f6690?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">wangdayu</media:title>
		</media:content>
	</item>
		<item>
		<title>CSS Nuggets</title>
		<link>http://danielwang.wordpress.com/2009/10/29/css-nuggets/</link>
		<comments>http://danielwang.wordpress.com/2009/10/29/css-nuggets/#comments</comments>
		<pubDate>Thu, 29 Oct 2009 02:55:00 +0000</pubDate>
		<dc:creator>wangdayu</dc:creator>
				<category><![CDATA[css3]]></category>

		<guid isPermaLink="false">http://danielwang.wordpress.com/2009/10/29/css-nuggets</guid>
		<description><![CDATA[一个PPT文档，由Anna Debenham上传至slideshare。幻灯片的标题叫做《CSS nuggets》，嗯，很好的名字。 但是对于网站前端开发人员来说，这个幻灯片绝对值得一看，它主要讲解了一些CSS3的新属性，包括伪类/伪元素和一些新增的属性，比如transform，shadow 等。实例和配图很棒，相信对CSS3还有些疑惑的朋友，看了这个之后会很好的理解CSS3的吧。 我曾经post过一篇文章 9 CSS3 Properties You Can Use Now, 其中提到了几种用法没有囊括在下面的slide里，有兴趣的话可以去看看，也不妨试试。 CSS Nuggets View more presentations from Anna Debenham. 功能强大的CSS3，的确有时候让前端开发的工程师流口水，但是用时却望而却步，就是因为该死的IE<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielwang.wordpress.com&amp;blog=5544536&amp;post=307&amp;subd=danielwang&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>一个PPT文档，由Anna Debenham上传至slideshare。幻灯片的标题叫做《CSS nuggets》，嗯，很好的名字。</p>
<p>但是对于网站前端开发人员来说，这个幻灯片绝对值得一看，它主要讲解了一些<a href="http://www.danielwang.cn/2009/09/9-css3-properties-you-can-use-now.html">CSS3的新属性</a>，包括伪类/伪元素和一些新增的属性，比如<a href="http://www.danielwang.cn/2009/08/text-rotation-with-css.html">transform</a>，<a href="http://www.danielwang.cn/2009/08/css3-box-shadows.html">shadow</a> 等。实例和配图很棒，相信对CSS3还有些疑惑的朋友，看了这个之后会很好的理解CSS3的吧。</p>
<p>我曾经post过一篇文章 <a href="http://www.danielwang.cn/2009/09/9-css3-properties-you-can-use-now.html">9 CSS3 Properties You Can Use Now</a>, 其中提到了几种用法没有囊括在下面的slide里，有兴趣的话可以去看看，也不妨试试。</p>
<div id="__ss_2347968" style="text-align:left;width:425px;"><a href="http://www.slideshare.net/maban/css-nuggets" style="display:block;font:14px Helvetica,Arial,Sans-serif;text-decoration:underline;margin:12px 0 3px;" title="CSS Nuggets">CSS Nuggets</a>
<div style="font-family:tahoma,arial;font-size:11px;height:26px;padding-top:2px;">View more <a href="http://www.slideshare.net/" style="text-decoration:underline;">presentations</a> from <a href="http://www.slideshare.net/maban" style="text-decoration:underline;">Anna Debenham</a>.</div>
</div>
<p>功能强大的CSS3，的确有时候让前端开发的工程师流口水，但是用时却望而却步，就是因为该死的IE</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/danielwang.wordpress.com/307/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/danielwang.wordpress.com/307/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/danielwang.wordpress.com/307/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/danielwang.wordpress.com/307/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/danielwang.wordpress.com/307/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/danielwang.wordpress.com/307/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/danielwang.wordpress.com/307/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/danielwang.wordpress.com/307/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/danielwang.wordpress.com/307/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/danielwang.wordpress.com/307/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/danielwang.wordpress.com/307/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/danielwang.wordpress.com/307/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/danielwang.wordpress.com/307/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/danielwang.wordpress.com/307/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielwang.wordpress.com&amp;blog=5544536&amp;post=307&amp;subd=danielwang&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://danielwang.wordpress.com/2009/10/29/css-nuggets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a8bfea26cfba24f56532160bf66f6690?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">wangdayu</media:title>
		</media:content>
	</item>
		<item>
		<title>西安小吃， 口水都流出来了</title>
		<link>http://danielwang.wordpress.com/2009/10/29/%e8%a5%bf%e5%ae%89%e5%b0%8f%e5%90%83%ef%bc%8c-%e5%8f%a3%e6%b0%b4%e9%83%bd%e6%b5%81%e5%87%ba%e6%9d%a5%e4%ba%86/</link>
		<comments>http://danielwang.wordpress.com/2009/10/29/%e8%a5%bf%e5%ae%89%e5%b0%8f%e5%90%83%ef%bc%8c-%e5%8f%a3%e6%b0%b4%e9%83%bd%e6%b5%81%e5%87%ba%e6%9d%a5%e4%ba%86/#comments</comments>
		<pubDate>Thu, 29 Oct 2009 02:36:00 +0000</pubDate>
		<dc:creator>wangdayu</dc:creator>
				<category><![CDATA[西安]]></category>
		<category><![CDATA[food]]></category>

		<guid isPermaLink="false">http://danielwang.wordpress.com/2009/10/29/%e8%a5%bf%e5%ae%89%e5%b0%8f%e5%90%83%ef%bc%8c-%e5%8f%a3%e6%b0%b4%e9%83%bd%e6%b5%81%e5%87%ba%e6%9d%a5%e4%ba%86</guid>
		<description><![CDATA[一般关于互联网之外的内容都不会上我的博客，但今天就破个例吧。看到有个西安乡党在网上贴的西安小吃大全，看着看着谗地口水就不由自主的出来。有食欲！ 转贴给朋友们也饱饱眼福。 荷叶饼夹笼笼肉~ 蜂蜜凉粽子 牵人麻辣粉 卤汁凉粉~ 炸酱面 洋芋擦擦 杨凌蘸水面 羊血冒饸饹 羊肉烧卖 羊肉泡馍经典套餐 酸汤水饺 酸菜鱼鱼 水盆羊肉 涮牛肚 石子馍 砂锅米线 肉丸胡辣汤 肉夹馍 秦镇米皮 乾县锅盔 乾州豆腐脑 岐山哨子面 泡泡油糕 玫瑰镜糕 金线油塔 搅团 贾三灌汤包 黄桂柿子饼 葫芦头 锅贴 八宝粥 八宝饭<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielwang.wordpress.com&amp;blog=5544536&amp;post=306&amp;subd=danielwang&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>一般关于互联网之外的内容都不会上我的博客，但今天就破个例吧。看到有个西安乡党在网上贴的<a href="http://images.google.cn/images?hl=zh-CN&amp;source=hp&amp;q=%E8%A5%BF%E5%AE%89%E5%B0%8F%E5%90%83&amp;um=1&amp;ie=UTF-8&amp;sa=N&amp;tab=wi">西安小吃</a>大全，看着看着谗地口水就不由自主的出来。有食欲！</p>
<p>转贴给朋友们也饱饱眼福。</p>
<p><span style="font-family:'lucida grande',tahoma,helvetica,arial,'bitstream vera sans',sans-serif;font-size:14px;line-height:19px;"></span>
<div style="font-size:14px;line-height:21px;list-style-type:none;text-indent:2em;margin:20px 0 20px 15px;padding:0;">荷叶饼夹笼笼肉~</div>
<div style="font-size:14px;line-height:21px;list-style-type:none;text-indent:2em;margin:20px 0 20px 15px;padding:0;"><img src="http://pic1.kaixin001.com/pic/app/41/33/2_54413319_diary.jpeg" /></div>
<div style="font-size:14px;line-height:21px;list-style-type:none;text-indent:2em;margin:20px 0 20px 15px;padding:0;">蜂蜜凉粽子</div>
<div style="font-size:14px;line-height:21px;list-style-type:none;text-indent:2em;margin:20px 0 20px 15px;padding:0;"><img src="http://pic.kaixin001.com/pic/app/41/33/2_54413320_diary.jpeg" /></div>
<div style="font-size:14px;line-height:21px;list-style-type:none;text-indent:2em;margin:20px 0 20px 15px;padding:0;"><img src="http://pic1.kaixin001.com/pic/app/41/33/2_54413321_diary.jpeg" /></div>
<div style="font-size:14px;line-height:21px;list-style-type:none;text-indent:2em;margin:20px 0 20px 15px;padding:0;">牵人麻辣粉</div>
<div style="font-size:14px;line-height:21px;list-style-type:none;text-indent:2em;margin:20px 0 20px 15px;padding:0;"><img height="328" src="http://pic.kaixin001.com/pic/app/41/37/2_54413714_diary.jpeg" width="500" /></div>
<div style="font-size:14px;line-height:21px;list-style-type:none;text-indent:2em;margin:20px 0 20px 15px;padding:0;">卤汁凉粉~</div>
<div style="font-size:14px;line-height:21px;list-style-type:none;text-indent:2em;margin:20px 0 20px 15px;padding:0;"><img src="http://pic.kaixin001.com/pic/app/41/40/2_54414074_diary.jpeg" /></div>
<div style="font-size:14px;line-height:21px;list-style-type:none;text-indent:2em;margin:20px 0 20px 15px;padding:0;">炸酱面</div>
<div style="font-size:14px;line-height:21px;list-style-type:none;text-indent:2em;margin:20px 0 20px 15px;padding:0;"><img height="374" src="http://pic1.kaixin001.com/pic/app/41/40/2_54414075_diary.jpeg" width="500" /></div>
<div style="font-size:14px;line-height:21px;list-style-type:none;text-indent:2em;margin:20px 0 20px 15px;padding:0;">洋芋擦擦</div>
<div style="font-size:14px;line-height:21px;list-style-type:none;text-indent:2em;margin:20px 0 20px 15px;padding:0;"><img height="374" src="http://pic.kaixin001.com/pic/app/41/40/2_54414076_diary.jpeg" width="500" /></div>
<div style="font-size:14px;line-height:21px;list-style-type:none;text-indent:2em;margin:20px 0 20px 15px;padding:0;">杨凌蘸水面</div>
<div style="font-size:14px;line-height:21px;list-style-type:none;text-indent:2em;margin:20px 0 20px 15px;padding:0;"><img height="374" src="http://pic1.kaixin001.com/pic/app/41/40/2_54414077_diary.jpeg" width="500" /></div>
<div style="font-size:14px;line-height:21px;list-style-type:none;text-indent:2em;margin:20px 0 20px 15px;padding:0;">羊血冒饸饹</div>
<div style="font-size:14px;line-height:21px;list-style-type:none;text-indent:2em;margin:20px 0 20px 15px;padding:0;"><img height="317" src="http://pic.kaixin001.com/pic/app/41/44/2_54414490_diary.jpeg" width="500" /></div>
<div style="font-size:14px;line-height:21px;list-style-type:none;text-indent:2em;margin:20px 0 20px 15px;padding:0;">羊肉烧卖</div>
<div style="font-size:14px;line-height:21px;list-style-type:none;text-indent:2em;margin:20px 0 20px 15px;padding:0;"><img src="http://pic1.kaixin001.com/pic/app/41/44/2_54414491_diary.jpeg" /></div>
<div style="font-size:14px;line-height:21px;list-style-type:none;text-indent:2em;margin:20px 0 20px 15px;padding:0;">羊肉泡馍经典套餐</div>
<div style="font-size:14px;line-height:21px;list-style-type:none;text-indent:2em;margin:20px 0 20px 15px;padding:0;"><img height="338" src="http://pic.kaixin001.com/pic/app/41/44/2_54414492_diary.jpeg" width="500" /></div>
<div style="font-size:14px;line-height:21px;list-style-type:none;text-indent:2em;margin:20px 0 20px 15px;padding:0;"><img height="374" src="http://pic1.kaixin001.com/pic/app/41/44/2_54414493_diary.jpeg" width="500" /></div>
<div style="font-size:14px;line-height:21px;list-style-type:none;text-indent:2em;margin:20px 0 20px 15px;padding:0;">酸汤水饺</div>
<div style="font-size:14px;line-height:21px;list-style-type:none;text-indent:2em;margin:20px 0 20px 15px;padding:0;"><img src="http://pic.kaixin001.com/pic/app/41/44/2_54414494_diary.jpeg" /></div>
<div style="font-size:14px;line-height:21px;list-style-type:none;text-indent:2em;margin:20px 0 20px 15px;padding:0;">酸菜鱼鱼</div>
<div style="font-size:14px;line-height:21px;list-style-type:none;text-indent:2em;margin:20px 0 20px 15px;padding:0;"><img height="374" src="http://pic1.kaixin001.com/pic/app/41/44/2_54414495_diary.jpeg" width="500" /></div>
<div style="font-size:14px;line-height:21px;list-style-type:none;text-indent:2em;margin:20px 0 20px 15px;padding:0;">水盆羊肉</div>
<div style="font-size:14px;line-height:21px;list-style-type:none;text-indent:2em;margin:20px 0 20px 15px;padding:0;"><img src="http://pic1.kaixin001.com/pic/app/41/48/2_54414877_diary.jpeg" /></div>
<div style="font-size:14px;line-height:21px;list-style-type:none;text-indent:2em;margin:20px 0 20px 15px;padding:0;">涮牛肚</div>
<div style="font-size:14px;line-height:21px;list-style-type:none;text-indent:2em;margin:20px 0 20px 15px;padding:0;"><img height="374" src="http://pic.kaixin001.com/pic/app/41/48/2_54414878_diary.jpeg" width="500" /></div>
<div style="font-size:14px;line-height:21px;list-style-type:none;text-indent:2em;margin:20px 0 20px 15px;padding:0;">石子馍</div>
<div style="font-size:14px;line-height:21px;list-style-type:none;text-indent:2em;margin:20px 0 20px 15px;padding:0;"><img height="374" src="http://pic1.kaixin001.com/pic/app/41/48/2_54414879_diary.jpeg" width="500" /></div>
<div style="font-size:14px;line-height:21px;list-style-type:none;text-indent:2em;margin:20px 0 20px 15px;padding:0;">砂锅米线</div>
<div style="font-size:14px;line-height:21px;list-style-type:none;text-indent:2em;margin:20px 0 20px 15px;padding:0;"><img height="374" src="http://pic.kaixin001.com/pic/app/41/48/2_54414880_diary.jpeg" width="500" /></div>
<div style="font-size:14px;line-height:21px;list-style-type:none;text-indent:2em;margin:20px 0 20px 15px;padding:0;">肉丸胡辣汤</div>
<div style="font-size:14px;line-height:21px;list-style-type:none;text-indent:2em;margin:20px 0 20px 15px;padding:0;"><img height="426" src="http://pic1.kaixin001.com/pic/app/41/48/2_54414881_diary.jpeg" width="500" /></div>
<div style="font-size:14px;line-height:21px;list-style-type:none;text-indent:2em;margin:20px 0 20px 15px;padding:0;">肉夹馍</div>
<div style="font-size:14px;line-height:21px;list-style-type:none;text-indent:2em;margin:20px 0 20px 15px;padding:0;"><img height="374" src="http://pic.kaixin001.com/pic/app/41/48/2_54414882_diary.jpeg" width="500" /></div>
<div style="font-size:14px;line-height:21px;list-style-type:none;text-indent:2em;margin:20px 0 20px 15px;padding:0;">秦镇米皮</div>
<div style="font-size:14px;line-height:21px;list-style-type:none;text-indent:2em;margin:20px 0 20px 15px;padding:0;"><img src="http://pic1.kaixin001.com/pic/app/41/52/2_54415271_diary.jpeg" /></div>
<div style="font-size:14px;line-height:21px;list-style-type:none;text-indent:2em;margin:20px 0 20px 15px;padding:0;">乾县锅盔</div>
<div style="font-size:14px;line-height:21px;list-style-type:none;text-indent:2em;margin:20px 0 20px 15px;padding:0;"><img height="375" src="http://pic1.kaixin001.com/pic/app/41/52/2_54415273_diary.jpeg" width="500" /></div>
<div style="font-size:14px;line-height:21px;list-style-type:none;text-indent:2em;margin:20px 0 20px 15px;padding:0;">乾州豆腐脑</div>
<div style="font-size:14px;line-height:21px;list-style-type:none;text-indent:2em;margin:20px 0 20px 15px;padding:0;"><img height="374" src="http://pic.kaixin001.com/pic/app/41/52/2_54415274_diary.jpeg" width="500" /></div>
<div style="font-size:14px;line-height:21px;list-style-type:none;text-indent:2em;margin:20px 0 20px 15px;padding:0;">岐山哨子面</div>
<div style="font-size:14px;line-height:21px;list-style-type:none;text-indent:2em;margin:20px 0 20px 15px;padding:0;"><img height="374" src="http://pic1.kaixin001.com/pic/app/41/52/2_54415275_diary.jpeg" width="500" /></div>
<div style="font-size:14px;line-height:21px;list-style-type:none;text-indent:2em;margin:20px 0 20px 15px;padding:0;">泡泡油糕</div>
<div style="font-size:14px;line-height:21px;list-style-type:none;text-indent:2em;margin:20px 0 20px 15px;padding:0;"><img height="374" src="http://pic.kaixin001.com/pic/app/41/52/2_54415276_diary.jpeg" width="500" /></div>
<div style="font-size:14px;line-height:21px;list-style-type:none;text-indent:2em;margin:20px 0 20px 15px;padding:0;">玫瑰镜糕</div>
<div style="font-size:14px;line-height:21px;list-style-type:none;text-indent:2em;margin:20px 0 20px 15px;padding:0;"><img src="http://pic1.kaixin001.com/pic/app/41/52/2_54415277_diary.jpeg" /></div>
<div style="font-size:14px;line-height:21px;list-style-type:none;text-indent:2em;margin:20px 0 20px 15px;padding:0;">金线油塔</div>
<div style="font-size:14px;line-height:21px;list-style-type:none;text-indent:2em;margin:20px 0 20px 15px;padding:0;"><img height="374" src="http://pic1.kaixin001.com/pic/app/41/57/2_54415733_diary.jpeg" width="500" /></div>
<div style="font-size:14px;line-height:21px;list-style-type:none;text-indent:2em;margin:20px 0 20px 15px;padding:0;">搅团</div>
<div style="font-size:14px;line-height:21px;list-style-type:none;text-indent:2em;margin:20px 0 20px 15px;padding:0;"><img height="532" src="http://pic.kaixin001.com/pic/app/41/57/2_54415734_diary.jpeg" width="500" /></div>
<div style="font-size:14px;line-height:21px;list-style-type:none;text-indent:2em;margin:20px 0 20px 15px;padding:0;">贾三灌汤包</div>
<div style="font-size:14px;line-height:21px;list-style-type:none;text-indent:2em;margin:20px 0 20px 15px;padding:0;"><img height="377" src="http://pic.kaixin001.com/pic/app/41/57/2_54415736_diary.jpeg" width="500" /></div>
<div style="font-size:14px;line-height:21px;list-style-type:none;text-indent:2em;margin:20px 0 20px 15px;padding:0;">黄桂柿子饼</div>
<div style="font-size:14px;line-height:21px;list-style-type:none;text-indent:2em;margin:20px 0 20px 15px;padding:0;"><img src="http://pic1.kaixin001.com/pic/app/41/57/2_54415737_diary.jpeg" /></div>
<div style="font-size:14px;line-height:21px;list-style-type:none;text-indent:2em;margin:20px 0 20px 15px;padding:0;">葫芦头</div>
<div style="font-size:14px;line-height:21px;list-style-type:none;text-indent:2em;margin:20px 0 20px 15px;padding:0;"><img height="374" src="http://pic.kaixin001.com/pic/app/41/57/2_54415738_diary.jpeg" width="500" /></div>
<div style="font-size:14px;line-height:21px;list-style-type:none;text-indent:2em;margin:20px 0 20px 15px;padding:0;">锅贴</div>
<div style="font-size:14px;line-height:21px;list-style-type:none;text-indent:2em;margin:20px 0 20px 15px;padding:0;"><img src="http://pic.kaixin001.com/pic/app/41/59/2_54415990_diary.jpeg" /></div>
<div style="font-size:14px;line-height:21px;list-style-type:none;text-indent:2em;margin:20px 0 20px 15px;padding:0;">八宝粥</div>
<div style="font-size:14px;line-height:21px;list-style-type:none;text-indent:2em;margin:20px 0 20px 15px;padding:0;"><img src="http://pic1.kaixin001.com/pic/app/41/59/2_54415991_diary.jpeg" /></div>
<div style="font-size:14px;line-height:21px;list-style-type:none;text-indent:2em;margin:20px 0 20px 15px;padding:0;">八宝饭</div>
<div style="font-size:14px;line-height:21px;list-style-type:none;text-indent:2em;margin:20px 0 20px 15px;padding:0;"><img src="http://pic.kaixin001.com/pic/app/41/59/2_54415992_diary.jpeg" /></div>
<div style="font-size:14px;line-height:21px;list-style-type:none;text-indent:2em;margin:20px 0 20px 15px;padding:0;"></div>
<div style="font-size:14px;line-height:21px;list-style-type:none;text-indent:2em;margin:20px 0 20px 15px;padding:0;"></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/danielwang.wordpress.com/306/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/danielwang.wordpress.com/306/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/danielwang.wordpress.com/306/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/danielwang.wordpress.com/306/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/danielwang.wordpress.com/306/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/danielwang.wordpress.com/306/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/danielwang.wordpress.com/306/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/danielwang.wordpress.com/306/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/danielwang.wordpress.com/306/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/danielwang.wordpress.com/306/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/danielwang.wordpress.com/306/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/danielwang.wordpress.com/306/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/danielwang.wordpress.com/306/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/danielwang.wordpress.com/306/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielwang.wordpress.com&amp;blog=5544536&amp;post=306&amp;subd=danielwang&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://danielwang.wordpress.com/2009/10/29/%e8%a5%bf%e5%ae%89%e5%b0%8f%e5%90%83%ef%bc%8c-%e5%8f%a3%e6%b0%b4%e9%83%bd%e6%b5%81%e5%87%ba%e6%9d%a5%e4%ba%86/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a8bfea26cfba24f56532160bf66f6690?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">wangdayu</media:title>
		</media:content>

		<media:content url="http://pic1.kaixin001.com/pic/app/41/33/2_54413319_diary.jpeg" medium="image" />

		<media:content url="http://pic.kaixin001.com/pic/app/41/33/2_54413320_diary.jpeg" medium="image" />

		<media:content url="http://pic1.kaixin001.com/pic/app/41/33/2_54413321_diary.jpeg" medium="image" />

		<media:content url="http://pic.kaixin001.com/pic/app/41/37/2_54413714_diary.jpeg" medium="image" />

		<media:content url="http://pic.kaixin001.com/pic/app/41/40/2_54414074_diary.jpeg" medium="image" />

		<media:content url="http://pic1.kaixin001.com/pic/app/41/40/2_54414075_diary.jpeg" medium="image" />

		<media:content url="http://pic.kaixin001.com/pic/app/41/40/2_54414076_diary.jpeg" medium="image" />

		<media:content url="http://pic1.kaixin001.com/pic/app/41/40/2_54414077_diary.jpeg" medium="image" />

		<media:content url="http://pic.kaixin001.com/pic/app/41/44/2_54414490_diary.jpeg" medium="image" />

		<media:content url="http://pic1.kaixin001.com/pic/app/41/44/2_54414491_diary.jpeg" medium="image" />

		<media:content url="http://pic.kaixin001.com/pic/app/41/44/2_54414492_diary.jpeg" medium="image" />

		<media:content url="http://pic1.kaixin001.com/pic/app/41/44/2_54414493_diary.jpeg" medium="image" />

		<media:content url="http://pic.kaixin001.com/pic/app/41/44/2_54414494_diary.jpeg" medium="image" />

		<media:content url="http://pic1.kaixin001.com/pic/app/41/44/2_54414495_diary.jpeg" medium="image" />

		<media:content url="http://pic1.kaixin001.com/pic/app/41/48/2_54414877_diary.jpeg" medium="image" />

		<media:content url="http://pic.kaixin001.com/pic/app/41/48/2_54414878_diary.jpeg" medium="image" />

		<media:content url="http://pic1.kaixin001.com/pic/app/41/48/2_54414879_diary.jpeg" medium="image" />

		<media:content url="http://pic.kaixin001.com/pic/app/41/48/2_54414880_diary.jpeg" medium="image" />

		<media:content url="http://pic1.kaixin001.com/pic/app/41/48/2_54414881_diary.jpeg" medium="image" />

		<media:content url="http://pic.kaixin001.com/pic/app/41/48/2_54414882_diary.jpeg" medium="image" />

		<media:content url="http://pic1.kaixin001.com/pic/app/41/52/2_54415271_diary.jpeg" medium="image" />

		<media:content url="http://pic1.kaixin001.com/pic/app/41/52/2_54415273_diary.jpeg" medium="image" />

		<media:content url="http://pic.kaixin001.com/pic/app/41/52/2_54415274_diary.jpeg" medium="image" />

		<media:content url="http://pic1.kaixin001.com/pic/app/41/52/2_54415275_diary.jpeg" medium="image" />

		<media:content url="http://pic.kaixin001.com/pic/app/41/52/2_54415276_diary.jpeg" medium="image" />

		<media:content url="http://pic1.kaixin001.com/pic/app/41/52/2_54415277_diary.jpeg" medium="image" />

		<media:content url="http://pic1.kaixin001.com/pic/app/41/57/2_54415733_diary.jpeg" medium="image" />

		<media:content url="http://pic.kaixin001.com/pic/app/41/57/2_54415734_diary.jpeg" medium="image" />

		<media:content url="http://pic.kaixin001.com/pic/app/41/57/2_54415736_diary.jpeg" medium="image" />

		<media:content url="http://pic1.kaixin001.com/pic/app/41/57/2_54415737_diary.jpeg" medium="image" />

		<media:content url="http://pic.kaixin001.com/pic/app/41/57/2_54415738_diary.jpeg" medium="image" />

		<media:content url="http://pic.kaixin001.com/pic/app/41/59/2_54415990_diary.jpeg" medium="image" />

		<media:content url="http://pic1.kaixin001.com/pic/app/41/59/2_54415991_diary.jpeg" medium="image" />

		<media:content url="http://pic.kaixin001.com/pic/app/41/59/2_54415992_diary.jpeg" medium="image" />
	</item>
		<item>
		<title>重阳节百度老年搜索推出web手写输入汉字功能</title>
		<link>http://danielwang.wordpress.com/2009/10/26/%e9%87%8d%e9%98%b3%e8%8a%82%e7%99%be%e5%ba%a6%e8%80%81%e5%b9%b4%e6%90%9c%e7%b4%a2%e6%8e%a8%e5%87%baweb%e6%89%8b%e5%86%99%e8%be%93%e5%85%a5%e6%b1%89%e5%ad%97%e5%8a%9f%e8%83%bd/</link>
		<comments>http://danielwang.wordpress.com/2009/10/26/%e9%87%8d%e9%98%b3%e8%8a%82%e7%99%be%e5%ba%a6%e8%80%81%e5%b9%b4%e6%90%9c%e7%b4%a2%e6%8e%a8%e5%87%baweb%e6%89%8b%e5%86%99%e8%be%93%e5%85%a5%e6%b1%89%e5%ad%97%e5%8a%9f%e8%83%bd/#comments</comments>
		<pubDate>Mon, 26 Oct 2009 07:28:00 +0000</pubDate>
		<dc:creator>wangdayu</dc:creator>
				<category><![CDATA[baidu]]></category>

		<guid isPermaLink="false">http://danielwang.wordpress.com/2009/10/26/%e9%87%8d%e9%98%b3%e8%8a%82%e7%99%be%e5%ba%a6%e8%80%81%e5%b9%b4%e6%90%9c%e7%b4%a2%e6%8e%a8%e5%87%baweb%e6%89%8b%e5%86%99%e8%be%93%e5%85%a5%e6%b1%89%e5%ad%97%e5%8a%9f%e8%83%bd</guid>
		<description><![CDATA[今天是中国传统节日重阳节，百度携手汉王为全国中老年用户送去一份最温馨的节日祝福 -web手写输入功能，用户可以直接通过鼠标移动来输入汉字，这将为不习惯键盘打字的用户使用搜索引擎带来更大便利。我不得不说，这产品对老年人来说真不错！ 百度老年搜索的核心要旨是：让中老年用户最便捷地获取信息，找到所求。它主要为中老年用户提供以下三大类的服务：1、提供字体更加符合中老年用户体验的主页界面以及搜索结果；2、整理和开发出了让中老年用户能够需要和使用的实用性网站；3、在数百万网站中遴选出适合中老年用户的常用网站，并进行了分类收录和及时更新。 在“老年搜索”的首页，我们看到了类似百度盲道的排版方式：搜索+导航，在字体的大小上由普通版百度的16号字体变为24号字体，便于老年人看清，并且通 过老年搜索得到的搜索结果页面的字体也是24号，在字体的选择上有大中小三种选择。在“老年搜索”的帮助页面我们看到，为了帮助老年人上网，还增加了电脑 常识、网络常识、常见问题等等，满足老年人的信息需求，非常人性化。 百度这一点做的没话说，我个人很认可，百度想到了，Google和taobao就没有。这就是创意。很多事情谁都可以做到，但就看谁是第一个想到的，谁又能第一个做到。<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielwang.wordpress.com&amp;blog=5544536&amp;post=305&amp;subd=danielwang&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>今天是中国传统节日重阳节，<a href="http://123.baidu.com/">百度</a>携手汉王为全国中老年用户送去一份最温馨的节日祝福 -web手写输入功能，用户可以直接通过鼠标移动来输入汉字，这将为不习惯键盘打字的用户使用搜索引擎带来更大便利。我不得不说，这产品对老年人来说真不错！</p>
<div class="separator" style="clear:both;text-align:center;"><a href="http://www.baidu.com/search/laonian/4901.jpg" style="margin-left:1em;margin-right:1em;"><img border="0" src="http://www.baidu.com/search/laonian/4901.jpg" /></a></div>
<p>
<div class="separator" style="clear:both;text-align:center;"></div>
<div class="separator" style="clear:both;text-align:center;"><a href="http://www.baidu.com/search/laonian/4901.jpg" style="margin-left:1em;margin-right:1em;"></a><a href="http://www.baidu.com/search/laonian/4902.jpg" style="margin-left:1em;margin-right:1em;"><img border="0" src="http://www.baidu.com/search/laonian/4902.jpg" /></a></div>
<div class="separator" style="clear:both;text-align:center;"></div>
<div class="separator" style="clear:both;text-align:center;"></div>
<div class="separator" style="clear:both;text-align:center;"><a href="http://www.baidu.com/search/laonian/4903.jpg" style="margin-left:1em;margin-right:1em;"><img border="0" src="http://www.baidu.com/search/laonian/4903.jpg" /></a></div>
<p>
<div class="separator" style="clear:both;text-align:center;"></div>
<p><a href="http://123.baidu.com/">百度老年搜索</a>的核心要旨是：让中老年用户最便捷地获取信息，找到所求。它主要为中老年用户提供以下三大类的服务：<br />1、提供字体更加符合中老年用户体验的主页界面以及搜索结果；<br />2、整理和开发出了让中老年用户能够需要和使用的实用性网站；<br />3、在数百万网站中遴选出适合中老年用户的常用网站，并进行了分类收录和及时更新。</p>
<p>在“老年搜索”的首页，我们看到了类似百度盲道的排版方式：搜索+导航，在字体的大小上由普通版百度的16号字体变为24号字体，便于老年人看清，并且通 过老年搜索得到的搜索结果页面的字体也是24号，在字体的选择上有大中小三种选择。在“老年搜索”的帮助页面我们看到，为了帮助老年人上网，还增加了电脑 常识、网络常识、常见问题等等，满足老年人的信息需求，非常人性化。</p>
<p>百度这一点做的没话说，我个人很认可，百度想到了，Google和taobao就没有。这就是创意。很多事情谁都可以做到，但就看谁是第一个想到的，谁又能第一个做到。</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/danielwang.wordpress.com/305/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/danielwang.wordpress.com/305/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/danielwang.wordpress.com/305/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/danielwang.wordpress.com/305/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/danielwang.wordpress.com/305/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/danielwang.wordpress.com/305/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/danielwang.wordpress.com/305/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/danielwang.wordpress.com/305/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/danielwang.wordpress.com/305/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/danielwang.wordpress.com/305/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/danielwang.wordpress.com/305/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/danielwang.wordpress.com/305/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/danielwang.wordpress.com/305/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/danielwang.wordpress.com/305/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielwang.wordpress.com&amp;blog=5544536&amp;post=305&amp;subd=danielwang&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://danielwang.wordpress.com/2009/10/26/%e9%87%8d%e9%98%b3%e8%8a%82%e7%99%be%e5%ba%a6%e8%80%81%e5%b9%b4%e6%90%9c%e7%b4%a2%e6%8e%a8%e5%87%baweb%e6%89%8b%e5%86%99%e8%be%93%e5%85%a5%e6%b1%89%e5%ad%97%e5%8a%9f%e8%83%bd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a8bfea26cfba24f56532160bf66f6690?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">wangdayu</media:title>
		</media:content>

		<media:content url="http://www.baidu.com/search/laonian/4901.jpg" medium="image" />

		<media:content url="http://www.baidu.com/search/laonian/4902.jpg" medium="image" />

		<media:content url="http://www.baidu.com/search/laonian/4903.jpg" medium="image" />
	</item>
		<item>
		<title>A letter from Google Adsense</title>
		<link>http://danielwang.wordpress.com/2009/10/23/a-letter-from-google-adsense/</link>
		<comments>http://danielwang.wordpress.com/2009/10/23/a-letter-from-google-adsense/#comments</comments>
		<pubDate>Fri, 23 Oct 2009 09:43:00 +0000</pubDate>
		<dc:creator>wangdayu</dc:creator>
				<category><![CDATA[google adsense]]></category>

		<guid isPermaLink="false">http://danielwang.wordpress.com/2009/10/23/a-letter-from-google-adsense</guid>
		<description><![CDATA[想必很多个人站长都对Google AdSense美元付款的政策有些不爽，设定限额100美元不说，来回的手续繁琐和漫长等待也是让人难熬。 想想为了获得100美元的付款，苦苦等待了好久，再加上漫长的账单，确实是折腾得苦不堪言。对于个人用户，谷歌将从付款中预先扣除税金，企业帐户则需要在收款前提交发票 其实个人站长玩玩AdSense，蛮有乐趣的。今天收到了Google Adsense的信件，是发自Google总部 Mountain View。 原以为 New Zealand 应该属于 Google Australia 管辖范围，应该从Sydney发给我的。看来各个国家分布只管研发和技术， 财政方面还是由 Google 总部直接处理。 下面是信件的封皮， 给朋友们看看：<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielwang.wordpress.com&amp;blog=5544536&amp;post=304&amp;subd=danielwang&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>想必很多个人站长都对Google AdSense美元付款的政策有些不爽，设定限额100美元不说，来回的手续繁琐和漫长等待也是让人难熬。 想想为了获得100美元的付款，苦苦等待了好久，再加上漫长的账单，确实是折腾得苦不堪言。对于个人用户，谷歌将从付款中预先扣除税金，企业帐户则需要在收款前提交发票</p>
<p>其实个人站长玩玩AdSense，蛮有乐趣的。今天收到了Google Adsense的信件，是发自Google总部 Mountain View。 原以为 New Zealand 应该属于 Google Australia 管辖范围，应该从Sydney发给我的。看来各个国家分布只管研发和技术， 财政方面还是由 Google 总部直接处理。</p>
<p>下面是信件的封皮， 给朋友们看看：</p>
<div class="separator" style="clear:both;text-align:center;"><a href="http://danielwang.files.wordpress.com/2009/10/cimg3141.jpg" style="margin-left:1em;margin-right:1em;"><img border="0" src="http://danielwang.files.wordpress.com/2009/10/cimg3141.jpg?w=300" /></a></div>
<div class="separator" style="clear:both;text-align:center;"></div>
<p><a href="http://danielwang.files.wordpress.com/2009/10/cimg3142.jpg" style="margin-left:1em;margin-right:1em;"><img border="0" src="http://danielwang.files.wordpress.com/2009/10/cimg3142.jpg?w=300" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/danielwang.wordpress.com/304/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/danielwang.wordpress.com/304/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/danielwang.wordpress.com/304/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/danielwang.wordpress.com/304/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/danielwang.wordpress.com/304/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/danielwang.wordpress.com/304/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/danielwang.wordpress.com/304/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/danielwang.wordpress.com/304/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/danielwang.wordpress.com/304/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/danielwang.wordpress.com/304/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/danielwang.wordpress.com/304/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/danielwang.wordpress.com/304/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/danielwang.wordpress.com/304/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/danielwang.wordpress.com/304/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielwang.wordpress.com&amp;blog=5544536&amp;post=304&amp;subd=danielwang&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://danielwang.wordpress.com/2009/10/23/a-letter-from-google-adsense/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a8bfea26cfba24f56532160bf66f6690?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">wangdayu</media:title>
		</media:content>

		<media:content url="http://danielwang.files.wordpress.com/2009/10/cimg3141.jpg?w=300" medium="image" />

		<media:content url="http://danielwang.files.wordpress.com/2009/10/cimg3142.jpg?w=300" medium="image" />
	</item>
		<item>
		<title>Wave是什么Google的新玩意儿</title>
		<link>http://danielwang.wordpress.com/2009/10/21/wave%e6%98%af%e4%bb%80%e4%b9%88google%e7%9a%84%e6%96%b0%e7%8e%a9%e6%84%8f%e5%84%bf/</link>
		<comments>http://danielwang.wordpress.com/2009/10/21/wave%e6%98%af%e4%bb%80%e4%b9%88google%e7%9a%84%e6%96%b0%e7%8e%a9%e6%84%8f%e5%84%bf/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 22:36:00 +0000</pubDate>
		<dc:creator>wangdayu</dc:creator>
				<category><![CDATA[Google Wave]]></category>

		<guid isPermaLink="false">http://danielwang.wordpress.com/2009/10/21/wave%e6%98%af%e4%bb%80%e4%b9%88google%e7%9a%84%e6%96%b0%e7%8e%a9%e6%84%8f%e5%84%bf</guid>
		<description><![CDATA[花了一早上的时间研究到底Google Wave 能做什么。也找到了不少相关的文章还有视频，筛选了一下，推荐给Google Wave fans 下面这段视频和这篇文章。视频有些长（1小时20分），但是很值得一看，很多小细节的描述它的功能。其中还有很多功能在我的preview版本还暂且不能应用。期待它早日完善和大家见面。 文章转载来源：第一财经周刊 每过一段时间，这家以创新和不羁著称的公司都要捣腾些新玩意儿，好让技术尝鲜者们兴奋，让普通人困惑，让媒体们追捧。Wave显然也是这样一个新玩意儿—在今年5月29日Google的I/O开发者大会上，Google Wave 的演示做了足足有80分钟之久，演示结束后，台下的掌声和尖叫不断。 9月30日，Google放出了10万个测试邀请来让开发者们尝鲜，结果其中一些被好事者放到eBay上拍卖，拍出了上千美元的高价。需要80分钟演示的产品实在无法三言两语解释清楚。Wave被称为是如果电子邮件现在才发明出来它将呈现的样子(第一份电子邮件出现在1971年)，它整合了邮件、即时通讯(IM)、在线合作、社交、维基等功能。 它看上去像一个邮件系统，界面分为三栏。左侧和中间一栏像极了带上头像标识的Gmail邮箱。右侧的一栏是邮件显示的空间，正是这个部分让这个“现代邮件系统”有了更多新意—当你沟通对象在线时，你们可以直接聊天；你还可以随时随地将第三者或更多的人加到对话中来，像是群聊；聊天过程中你可以随时回到上面的对话中挑出你要回复的任何一句进行回复，看起来就像是在Word文章中加了一个标签，只不过人家可以针对你的“标签”再次回复。 “Jens(Rasmussen)对Email很不满，毕竟Email出现得比互联网还早。我们希望能够体现出Mail的重点，并且配合上现在流行的电脑和网络的工作方式。” Lars Rasmussen说。他和Jens是一对来自丹麦的兄弟，是Google Wave的开发者。2003年他们创建了Where 2，2004年这一产品被Google收购之后演变为Google Maps，两兄弟也成为了Google中的一员。之后两兄弟把对Email的改造作为自己的下一步工作重点。 Jens和Lars最开始准备解决的问题是如何将IM直接整合到网页邮件的界面中。事实上这一点Google已经做到了：Google talk和Gmail已经很好地结合在了一起。但兄弟俩觉得这仍然不够。他们搭建起一个平台，让邮件的内容和即时通讯的内容看起来连接得更加无缝，也更容易在线协作。不论对话者是否在线，对话和邮件内容都可以在同一栏中显示。在需要共同协作的时候，在线者可以对同一内容进行同时编辑，这一点很像Google Document的在线协作功能。 Google基于云计算的技术使得这种实时交流和协作非常顺畅。无论是同时在线修改还是共享文件，都不会太慢而显得有时滞。 作为平台的Wave也开放了免费API(Application Programming Interface，应用程序编程接口)，可以兼容许多扩展和插件。通过这个平台上的插件，对话双方可以共享图片或者地图；也可以通过一个Wave来接收Twitter上的所有tweets，并且通过Wave来回复tweets；可以直接通过Wave发布博客，并且在Wave中可以直接看到他人在你博客中的回复；一些插件还允许人们通过发起一个对话来直接在线玩游戏，现在Google提供的类似游戏有数独和国际象棋。这使得Wave具有了一些社交网站的性质。 这成为了吸引网络开发者的亮点之一，也使得Wave将不仅仅是个“邮件+IM”的系统，就像火狐浏览器开放API并且有许多扩展之后，它就不仅仅是个浏览器，还可以是个音乐播放器、FTP客户端、博客发布客户端……许多开发者已经跃跃欲试，试图在这个平台上开发出其他有用的插件系统。许多现在在iGoogle和Gmail中受人欢迎的插件也许也会出现在Wave中。 所有这些让Wave会在不同人手中变成不同的平台。在互联网简单使用者手中，它可能只是“邮件+IM”；在一些项目合作者手中，它会是个不错的在线协作平台，用于讨论以及方案共享及修改；在社交网站重度爱好者手中，它会是个社交网站的汇总平台，利用Wave收取来自Twitter、Facebook、博客等各种网站的最新动态。 “我们这是在尝试重新定义互联网上的沟通与交流。”Lars说。“现在最大的不确定是人们会如何用这个系统。” Google期待Wave能将那些黏在Facebook和Twitter上的人吸引到这上来。毕竟，如果有个平台能够收取所有社交网站的动态，同时也可以轻松向那些社交网站上发布新消息，那为什么还要去分别登录那些网站呢？ “我想Google会成为最主要的社交网站，并且成为能将人们宽松联系到一起的地方。” Dan Olds，加百利咨询集团(Gabriel Consulting Group)的分析师说。在此之前，Google效仿Facebook的社交网站Orkut只在巴西获得成功，它的另一个社交网站开放式平台OpenSocial也没有取得预想的成果。 另一种可能性是，Wave也许能帮助Google赢得更多的商业客户。因为在以往的办公软件中，不论是IBM的Lotus还是微软的Groove，都需要借助多个不同的工具才能实现实时在线协作，而且操作繁琐。现在这些商业客户很可能会转而尝试Wave，看看是否会带来效率的提高。在此之前，Google一直试图让中小企业客户能尝试Google Apps，而不是微软的Office软件。 预见到这一点，一些企业，而不仅仅是软件独立开发者，已经参与到Google Wave的App开发中来。例如全球最大的企业管理和协同商务解决方案供应商SAP，利用云计算提供客户关系管理的Salesforce.com，都已经尝试将Wave整合到自己的服务中去。Salesforce将Wave用于客服，它给出的演示视频显示它可以让一个机器人来负责接待用户在Wave中发出的询问，并且所有这些Wave中的交流都会记录下来，并发送到用户所在salesforce的账户中，以备将来查看。 Google在其官方博客上说，已经在考虑建立一个“Wave 扩展商店”，通过这个商店，这些第三方开发者所开发的Wave运用可以销售。Google和开发者会进行分？?成。Google对Wave的期望不止这些。Wave不仅仅是个开源的平台，而且Google准备将它设置一个开源的协议。就像多年前的电子邮件协议一样，虽然用户用的是没有提供商的服务，但是彼此之间依然可以投递邮？?件。 为了做到这一点，参与Wave的开发人员有50人之多，几乎Google在悉尼的所有开发人员都参与了进来。要知道Google的项目开发团队一般只有3到5人。 “我们希望以后有多家Wave提供商，有些也许会和我们一样提供基于云的Wave，数据都在他们的掌握中。我们也计划协助企业或学校提供他们自己的Wave服务。”Lars说。就像企业可以架设一个服务器来专门建立公司邮箱一样，Google会支持企业设立自己的Wave，使得基于其上的通讯数据可以得到加密。Google已经开始着手Wave协议草案的编写，并且还专门设立了一个网站，来让人们了解“Wave协议草案”和“Wave架构的白皮书”。如果一旦这一协议被广泛接受，可以预见Wave将会像Email那样流行。而Google是这一领域的规则制定？?者。 而当诸多参与者都加入到Wave生态圈中，Wave可能产生的影响会是我们现在无法尽数的。Google的开发者就没有想到Wave测试才不过几天，新闻从业者已经在考虑Wave是否会对新闻业界产生影响。《洛杉矶时报》的记者Mark Millan就写了一篇叫做《Google Wave会如何改变新闻业》(How Google Wave could transform journalism)的文章，并将之放到了公开的Google Wave上，好看看会发生些什么。结果很多有趣的讨论随之展开，而且这些讨论有些会穿插在正文之中，看上去就像WIKI那样创造出了更多新的内容。 但是否会有如此效果，这需要看用户是否能接受这种新的形式。微软首席软件架构师雷·奥兹(Ray Ozzie)在接受Techcrunch采访时提到，人们很可能因为需要学习新的使用方法而不愿意去使用。 这的确会成为Wave成功的潜在威胁之一。10月以来，许多得到试用邀请的技术爱好者们已经在博客中抱怨Wave的一些不足。他们中的一些人往往无法适应对话呈现不是“线性”的这一特点。由于可以针对之前回话中任何部分进行回复，因此当对话已经进行了很长时间之后，针对之前内容的回复往往会不被对话者所察觉。而对于之后参与到回话过程中来的人而言，要看这么多回复穿插的对话会很麻烦。抱怨者们认为这使得Wave甚至没有电子邮件来得有效率。 “这相当没有效率，会浪费大量时间，并且很难把我需要的内容组织起来。”Robert [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielwang.wordpress.com&amp;blog=5544536&amp;post=303&amp;subd=danielwang&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>花了一早上的时间研究到底Google Wave 能做什么。也找到了不少相关的文章还有视频，筛选了一下，推荐给Google Wave fans 下面这段视频和这篇文章。视频有些长（1小时20分），但是很值得一看，很多小细节的描述它的功能。其中还有很多功能在我的preview版本还暂且不能应用。期待它早日完善和大家见面。</p>
<span style="text-align:center; display: block;"><a href="http://danielwang.wordpress.com/2009/10/21/wave%e6%98%af%e4%bb%80%e4%b9%88google%e7%9a%84%e6%96%b0%e7%8e%a9%e6%84%8f%e5%84%bf/"><img src="http://img.youtube.com/vi/v_UyVmITiYQ/2.jpg" alt="" /></a></span>
<p><span style="font-size:small;">文章转载来源：</span><a href="http://www.china-cbn.com/"><span style="font-size:small;">第一财经周刊</span></a></p>
<p>每过一段时间，这家以创新和不羁著称的公司都要捣腾些新玩意儿，好让技术尝鲜者们兴奋，让普通人困惑，让媒体们追捧。Wave显然也是这样一个新玩意儿—在今年5月29日Google的I/O开发者大会上，Google Wave 的演示做了足足有80分钟之久，演示结束后，台下的掌声和尖叫不断。</p>
<p>9月30日，Google放出了10万个测试邀请来让开发者们尝鲜，结果其中一些被好事者放到eBay上拍卖，拍出了上千美元的高价。<br />需要80分钟演示的产品实在无法三言两语解释清楚。Wave被称为是如果电子邮件现在才发明出来它将呈现的样子(第一份电子邮件出现在1971年)，它整合了邮件、即时通讯(IM)、在线合作、社交、维基等功能。</p>
<p>它看上去像一个邮件系统，界面分为三栏。左侧和中间一栏像极了带上头像标识的Gmail邮箱。右侧的一栏是邮件显示的空间，正是这个部分让这个“现代邮件系统”有了更多新意—当你沟通对象在线时，你们可以直接聊天；你还可以随时随地将第三者或更多的人加到对话中来，像是群聊；聊天过程中你可以随时回到上面的对话中挑出你要回复的任何一句进行回复，看起来就像是在Word文章中加了一个标签，只不过人家可以针对你的“标签”再次回复。</p>
<p>“Jens(Rasmussen)对Email很不满，毕竟Email出现得比互联网还早。我们希望能够体现出Mail的重点，并且配合上现在流行的电脑和网络的工作方式。” Lars Rasmussen说。他和Jens是一对来自丹麦的兄弟，是Google Wave的开发者。2003年他们创建了Where 2，2004年这一产品被Google收购之后演变为Google Maps，两兄弟也成为了Google中的一员。之后两兄弟把对Email的改造作为自己的下一步工作重点。</p>
<p>Jens和Lars最开始准备解决的问题是如何将IM直接整合到网页邮件的界面中。事实上这一点Google已经做到了：Google talk和Gmail已经很好地结合在了一起。但兄弟俩觉得这仍然不够。他们搭建起一个平台，让邮件的内容和即时通讯的内容看起来连接得更加无缝，也更容易在线协作。不论对话者是否在线，对话和邮件内容都可以在同一栏中显示。在需要共同协作的时候，在线者可以对同一内容进行同时编辑，这一点很像Google Document的在线协作功能。</p>
<p>Google基于云计算的技术使得这种实时交流和协作非常顺畅。无论是同时在线修改还是共享文件，都不会太慢而显得有时滞。</p>
<p>作为平台的Wave也开放了免费API(Application Programming Interface，应用程序编程接口)，可以兼容许多扩展和插件。通过这个平台上的插件，对话双方可以共享图片或者地图；也可以通过一个Wave来接收Twitter上的所有tweets，并且通过Wave来回复tweets；可以直接通过Wave发布博客，并且在Wave中可以直接看到他人在你博客中的回复；一些插件还允许人们通过发起一个对话来直接在线玩游戏，现在Google提供的类似游戏有数独和国际象棋。这使得Wave具有了一些社交网站的性质。</p>
<p>这成为了吸引网络开发者的亮点之一，也使得Wave将不仅仅是个“邮件+IM”的系统，就像火狐浏览器开放API并且有许多扩展之后，它就不仅仅是个浏览器，还可以是个音乐播放器、FTP客户端、博客发布客户端……许多开发者已经跃跃欲试，试图在这个平台上开发出其他有用的插件系统。许多现在在iGoogle和Gmail中受人欢迎的插件也许也会出现在Wave中。</p>
<p>所有这些让Wave会在不同人手中变成不同的平台。在互联网简单使用者手中，它可能只是“邮件+IM”；在一些项目合作者手中，它会是个不错的在线协作平台，用于讨论以及方案共享及修改；在社交网站重度爱好者手中，它会是个社交网站的汇总平台，利用Wave收取来自Twitter、Facebook、博客等各种网站的最新动态。</p>
<p>“我们这是在尝试重新定义互联网上的沟通与交流。”Lars说。“现在最大的不确定是人们会如何用这个系统。”</p>
<p>Google期待Wave能将那些黏在Facebook和Twitter上的人吸引到这上来。毕竟，如果有个平台能够收取所有社交网站的动态，同时也可以轻松向那些社交网站上发布新消息，那为什么还要去分别登录那些网站呢？</p>
<p>“我想Google会成为最主要的社交网站，并且成为能将人们宽松联系到一起的地方。” Dan Olds，加百利咨询集团(Gabriel Consulting Group)的分析师说。在此之前，Google效仿Facebook的社交网站Orkut只在巴西获得成功，它的另一个社交网站开放式平台OpenSocial也没有取得预想的成果。</p>
<p>另一种可能性是，Wave也许能帮助Google赢得更多的商业客户。因为在以往的办公软件中，不论是IBM的Lotus还是微软的Groove，都需要借助多个不同的工具才能实现实时在线协作，而且操作繁琐。现在这些商业客户很可能会转而尝试Wave，看看是否会带来效率的提高。在此之前，Google一直试图让中小企业客户能尝试Google Apps，而不是微软的Office软件。</p>
<p>预见到这一点，一些企业，而不仅仅是软件独立开发者，已经参与到Google Wave的App开发中来。例如全球最大的企业管理和协同商务解决方案供应商SAP，利用云计算提供客户关系管理的Salesforce.com，都已经尝试将Wave整合到自己的服务中去。Salesforce将Wave用于客服，它给出的演示视频显示它可以让一个机器人来负责接待用户在Wave中发出的询问，并且所有这些Wave中的交流都会记录下来，并发送到用户所在salesforce的账户中，以备将来查看。</p>
<p>Google在其官方博客上说，已经在考虑建立一个“Wave 扩展商店”，通过这个商店，这些第三方开发者所开发的Wave运用可以销售。Google和开发者会进行分？?成。Google对Wave的期望不止这些。Wave不仅仅是个开源的平台，而且Google准备将它设置一个开源的协议。就像多年前的电子邮件协议一样，虽然用户用的是没有提供商的服务，但是彼此之间依然可以投递邮？?件。</p>
<p>为了做到这一点，参与Wave的开发人员有50人之多，几乎Google在悉尼的所有开发人员都参与了进来。要知道Google的项目开发团队一般只有3到5人。</p>
<p>“我们希望以后有多家Wave提供商，有些也许会和我们一样提供基于云的Wave，数据都在他们的掌握中。我们也计划协助企业或学校提供他们自己的Wave服务。”Lars说。就像企业可以架设一个服务器来专门建立公司邮箱一样，Google会支持企业设立自己的Wave，使得基于其上的通讯数据可以得到加密。Google已经开始着手Wave协议草案的编写，并且还专门设立了一个网站，来让人们了解“Wave协议草案”和“Wave架构的白皮书”。如果一旦这一协议被广泛接受，可以预见Wave将会像Email那样流行。而Google是这一领域的规则制定？?者。</p>
<p>而当诸多参与者都加入到Wave生态圈中，Wave可能产生的影响会是我们现在无法尽数的。Google的开发者就没有想到Wave测试才不过几天，新闻从业者已经在考虑Wave是否会对新闻业界产生影响。《洛杉矶时报》的记者Mark Millan就写了一篇叫做《Google Wave会如何改变新闻业》(How Google Wave could transform journalism)的文章，并将之放到了公开的Google Wave上，好看看会发生些什么。结果很多有趣的讨论随之展开，而且这些讨论有些会穿插在正文之中，看上去就像WIKI那样创造出了更多新的内容。</p>
<p>但是否会有如此效果，这需要看用户是否能接受这种新的形式。微软首席软件架构师雷·奥兹(Ray Ozzie)在接受Techcrunch采访时提到，人们很可能因为需要学习新的使用方法而不愿意去使用。</p>
<p>这的确会成为Wave成功的潜在威胁之一。10月以来，许多得到试用邀请的技术爱好者们已经在博客中抱怨Wave的一些不足。他们中的一些人往往无法适应对话呈现不是“线性”的这一特点。由于可以针对之前回话中任何部分进行回复，因此当对话已经进行了很长时间之后，针对之前内容的回复往往会不被对话者所察觉。而对于之后参与到回话过程中来的人而言，要看这么多回复穿插的对话会很麻烦。抱怨者们认为这使得Wave甚至没有电子邮件来得有效率。</p>
<p>“这相当没有效率，会浪费大量时间，并且很难把我需要的内容组织起来。”Robert Scoble在博客中说，他在微软这样的大公司工作过，也自己创办过小公司，在工作中他追求有效率的协作。</p>
<p>最新回复在正文的任何一个部分，这样的安排也挑战着人们的邮箱使用习惯。在往常的邮箱中，新邮件总在邮箱的最顶端，因此可以快速打开并且查看；但Wave允许人们针对任何一个部分进行回复，因此如果你离线之后再登录查收新消息，你也许会遗漏掉那些在非开头和结尾部分的回复。你当然可以用重放按钮，按照时间顺序依次查看回复，但是这就像要在一盘录像中找出你所需要的部分一样，所耗费的时间会让人不耐烦。</p>
<p>“我并不是说Wave没有价值，我只是觉得人们可能需要一些时间去让他们的大脑适应Google Wave，并且发现使用它的最好方式。”Adam Turner，一个澳大利亚的技术开发者在博客中这样说。如果是这样，Wave对企业的吸引力也会下降。</p>
<p>“对于独立开发者和企业而言，它的用途还需要进一步提高。”Redmonk的分析师Stephen O&#8217;Grady说，“Google需要和很多潜在的合作伙伴进行合作，把那些不必要的复杂的东西给去掉，开发更多那些必须具备的商业方面的功能。”</p>
<p>“现在Wave还没有完全完善。”Lars说，这个Wave的开发者期望能在今年年底之前将很多Wave的bug给修复。</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/danielwang.wordpress.com/303/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/danielwang.wordpress.com/303/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/danielwang.wordpress.com/303/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/danielwang.wordpress.com/303/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/danielwang.wordpress.com/303/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/danielwang.wordpress.com/303/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/danielwang.wordpress.com/303/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/danielwang.wordpress.com/303/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/danielwang.wordpress.com/303/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/danielwang.wordpress.com/303/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/danielwang.wordpress.com/303/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/danielwang.wordpress.com/303/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/danielwang.wordpress.com/303/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/danielwang.wordpress.com/303/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielwang.wordpress.com&amp;blog=5544536&amp;post=303&amp;subd=danielwang&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://danielwang.wordpress.com/2009/10/21/wave%e6%98%af%e4%bb%80%e4%b9%88google%e7%9a%84%e6%96%b0%e7%8e%a9%e6%84%8f%e5%84%bf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a8bfea26cfba24f56532160bf66f6690?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">wangdayu</media:title>
		</media:content>
	</item>
		<item>
		<title>How to tweet from Google Wave</title>
		<link>http://danielwang.wordpress.com/2009/10/21/how-to-tweet-from-google-wave/</link>
		<comments>http://danielwang.wordpress.com/2009/10/21/how-to-tweet-from-google-wave/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 07:57:00 +0000</pubDate>
		<dc:creator>wangdayu</dc:creator>
				<category><![CDATA[Google Wave]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://danielwang.wordpress.com/2009/10/21/how-to-tweet-from-google-wave</guid>
		<description><![CDATA[Finally, received Google Wave invitation today. I was testing around, but not many friends on Google Wave so far, so wondering if it is possible to tweet from it. OK, Let me show you how you can tweet from your shiny Google Wave account. Step 1:&#160;Add a new contact called&#160; tweety-wave@appspot.com &#160;as shown below.You will [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielwang.wordpress.com&amp;blog=5544536&amp;post=302&amp;subd=danielwang&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Finally, received Google Wave invitation today. I was testing around, but not many friends on Google Wave so far, so wondering if it is possible to tweet from it.</p>
<p>OK, Let me show you how you can tweet from your shiny Google Wave account.</p>
<p><b>Step 1:&nbsp;Add a new contact called&nbsp; tweety-wave@appspot.com</b> &nbsp;as shown below.You will see a new contact with display name&nbsp;Tweety the Twitbot.</p>
<p><img alt="tweety wave How to tweet from Google Wave" class="aligncenter size-full wp-image-1918" height="167" src="http://www.digimantra.com/blog/wp-content/uploads/2009/10/tweety-wave.gif" width="359" /></p>
<p><strong>Step 2:</strong>&nbsp;<b>Create a new wave with this new contact and It will ask for authentication using a popup window. </b>Make sure popups are not blocked or will have to allow them explicitly so that Twitter’s authentication window can authenticate your Google wave account to update your status on twitter. Here is how the popup and your new wave look like.</p>
<p><a href="http://www.digimantra.com/blog/wp-content/uploads/2009/10/tweety-authenticate.gif" style="border-bottom-color:rgb(0,0,0);border-bottom-style:dotted;border-bottom-width:1px;color:#393939;font-weight:bold;text-decoration:none;margin:0;padding:0;"><img alt="tweety authenticate 1024x462 How to tweet from Google Wave" class="aligncenter size-large wp-image-1919" height="248" src="http://www.digimantra.com/blog/wp-content/uploads/2009/10/tweety-authenticate-1024x462.gif" title="tweety-authenticate" width="551" /></a></p>
<p>After authenticating all your twitter updates are shown in that wave and you can even update your status from then &amp; there – Sweet ?</p>
<p>Hope you like this and enjoy tweeting from Googlewave.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/danielwang.wordpress.com/302/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/danielwang.wordpress.com/302/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/danielwang.wordpress.com/302/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/danielwang.wordpress.com/302/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/danielwang.wordpress.com/302/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/danielwang.wordpress.com/302/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/danielwang.wordpress.com/302/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/danielwang.wordpress.com/302/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/danielwang.wordpress.com/302/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/danielwang.wordpress.com/302/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/danielwang.wordpress.com/302/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/danielwang.wordpress.com/302/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/danielwang.wordpress.com/302/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/danielwang.wordpress.com/302/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielwang.wordpress.com&amp;blog=5544536&amp;post=302&amp;subd=danielwang&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://danielwang.wordpress.com/2009/10/21/how-to-tweet-from-google-wave/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a8bfea26cfba24f56532160bf66f6690?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">wangdayu</media:title>
		</media:content>

		<media:content url="http://www.digimantra.com/blog/wp-content/uploads/2009/10/tweety-wave.gif" medium="image">
			<media:title type="html">tweety wave How to tweet from Google Wave</media:title>
		</media:content>

		<media:content url="http://www.digimantra.com/blog/wp-content/uploads/2009/10/tweety-authenticate-1024x462.gif" medium="image">
			<media:title type="html">tweety-authenticate</media:title>
		</media:content>
	</item>
	</channel>
</rss>
