<?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/"
	>

<channel>
	<title>含蓄的张扬 &#187; Kexin</title>
	<atom:link href="http://www.realstraw.com/blog/author/admin/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.realstraw.com/blog</link>
	<description>Coding the way...</description>
	<lastBuildDate>Sat, 24 Sep 2011 08:20:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>MKV file slow loading problem in Mac OSX</title>
		<link>http://www.realstraw.com/blog/2011/03/14/mkv-file-slow-loading-problem-in-mac-osx/</link>
		<comments>http://www.realstraw.com/blog/2011/03/14/mkv-file-slow-loading-problem-in-mac-osx/#comments</comments>
		<pubDate>Mon, 14 Mar 2011 06:13:10 +0000</pubDate>
		<dc:creator>Kexin</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[OSX]]></category>

		<guid isPermaLink="false">http://www.realstraw.com/blog/?p=198</guid>
		<description><![CDATA[When it comes to watching MKV files with embedded subtitles, it often takes a very long time to load the files no matter you use Quicktime or VLC. Here is a simple solution to fix it: 1. Open the Terminal. 2. Type &#8220;sudo chmod -R 771 /usr/X11/var/cache/fontconfig&#8221; I don&#8217;t actually know why the privilege need [...]]]></description>
			<content:encoded><![CDATA[<p>When it comes to watching MKV files with embedded subtitles, it often takes a very long time to load the files no matter you use Quicktime or VLC. Here is a simple solution to fix it:</p>
<p>1. Open the Terminal.<br />
2. Type &#8220;sudo chmod -R 771 /usr/X11/var/cache/fontconfig&#8221;</p>
<p>I don&#8217;t actually know why the privilege need to be changed in order to play MKV instantly, but it works like a charm.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.realstraw.com/blog/2011/03/14/mkv-file-slow-loading-problem-in-mac-osx/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Vim &#8211; plugin doc can&#8217;t be open</title>
		<link>http://www.realstraw.com/blog/2010/12/04/vim-plugin-doc-cant-be-open/</link>
		<comments>http://www.realstraw.com/blog/2010/12/04/vim-plugin-doc-cant-be-open/#comments</comments>
		<pubDate>Sun, 05 Dec 2010 04:58:17 +0000</pubDate>
		<dc:creator>Kexin</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[Vim]]></category>

		<guid isPermaLink="false">http://www.realstraw.com/blog/?p=194</guid>
		<description><![CDATA[As a novice vim user, I found that when I install a new plugin and installed the documentation into ~/.vim/doc folder, but when I try to read the documentation (e.g. &#8220;:help NERD_tree.txt&#8221; vim displays an error message &#8220;E149: Sorry, no help for NERD_tree.txt&#8221;. This can be easily fixed by the following: :helptags ~/.vim/doc]]></description>
			<content:encoded><![CDATA[<p>As a novice vim user, I found that when I install a new plugin and installed the documentation into ~/.vim/doc folder, but when I try to read the documentation (e.g. &#8220;:help NERD_tree.txt&#8221; vim displays an error message &#8220;E149: Sorry, no help for<br />
NERD_tree.txt&#8221;. This can be easily fixed by the following:</p>
<p>:helptags ~/.vim/doc</p>
]]></content:encoded>
			<wfw:commentRss>http://www.realstraw.com/blog/2010/12/04/vim-plugin-doc-cant-be-open/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Vim &#8211; commenting a block of code</title>
		<link>http://www.realstraw.com/blog/2010/12/01/vim-commenting-a-block-of-code/</link>
		<comments>http://www.realstraw.com/blog/2010/12/01/vim-commenting-a-block-of-code/#comments</comments>
		<pubDate>Wed, 01 Dec 2010 07:41:17 +0000</pubDate>
		<dc:creator>Kexin</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[Vim]]></category>

		<guid isPermaLink="false">http://www.realstraw.com/blog/?p=190</guid>
		<description><![CDATA[Recently, I have seriously started using Vim as my main text editor. It&#8217;s really cool stuff, because anything based on terminal is awesome From today I&#8217;ll probably start to post a few hints that I found during the learning of using Vim. The purpose is to share some useful tips, and also keep my own [...]]]></description>
			<content:encoded><![CDATA[<p>Recently, I have seriously started using Vim as my main text editor. It&#8217;s really cool stuff, because anything based on terminal is awesome <img src='http://www.realstraw.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>From today I&#8217;ll probably start to post a few hints that I found during the learning of using Vim. The purpose is to share some useful tips, and also keep my own references. </p>
<p>First tip I would like to share to day is to commenting a block of text using Vim.</p>
<ol>
<li>Highlight the block of text to be commented using the blockwise visual mode (<strong>ctrl-v</strong>), you don&#8217;t really have to highlight the entire code block, just the first character of the first line will do.</li>
<p>
<a href="http://d.pr/UD5I" title="On Safari"><img title="Block Visual" alt="On Safari" border="0" src="http://files.droplr.com/files/12024112/UD5I.block%20visual.png"/></a>
</p>
<li>Press the capital letter &#8216;<strong>I</strong>&#8216;, and write whatever the comment symbol for the situation (e.g. &#8216;//&#8217; for C, and &#8216;%&#8217; for LaTex)</li>
<p>
<a href="http://d.pr/hgFW" title="On Safari"><img title="Block Visual" alt="On Safari" border="0" src="http://files.droplr.com/files/12024112/hgFW.vim%20insert%20I.png"/></a>
</p>
<li>Press the <strong>ESC</strong> key. The comment symbol will be automatically inserted at the front of each line</li>
<p>
<a href="http://d.pr/r7QV" title="On Safari"><img title="Block Visual" alt="On Safari" border="0" src="http://files.droplr.com/files/12024112/r7QV.vim%20comment%20done.png"/></a>
</p>
</ol>
<p>To uncomment, you can use the similar idea by first block visual select all comment symbol you are using, and then press &#8216;<strong>d</strong>&#8216; to delete the selected. There is no need to press <strong>ESC</strong> this time.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.realstraw.com/blog/2010/12/01/vim-commenting-a-block-of-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Random Thoughts about Apple&#8217;s Back to the Mac Event</title>
		<link>http://www.realstraw.com/blog/2010/10/21/radom-thoughts-about-apples-back-to-the-mac-event/</link>
		<comments>http://www.realstraw.com/blog/2010/10/21/radom-thoughts-about-apples-back-to-the-mac-event/#comments</comments>
		<pubDate>Thu, 21 Oct 2010 07:50:50 +0000</pubDate>
		<dc:creator>Kexin</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Lion]]></category>
		<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://www.realstraw.com/blog/?p=182</guid>
		<description><![CDATA[Apple&#8217;s &#8220;Back to the Mac&#8221; special event has just finished, having watched the partial event video, here are some random thoughts about this event. About the Lion I think one of most important things I&#8217;m looking for is the sneaky peak of the next OSX release, the &#8220;Lion&#8221;. We do have a lot of expectations [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://images.apple.com/macosx/lion/images/lion_bg_hero20101020.jpg" title="On Safari"><img height="281" title="Screen shot 2010-10-03 at 2.32.49 PM" alt="On Safari" border="0" src="http://images.apple.com/macosx/lion/images/lion_bg_hero20101020.jpg" width="550"/></a></p>
<p>Apple&#8217;s &#8220;Back to the Mac&#8221; special event has just finished, having watched the partial event video, here are some random thoughts about this event.</p>
<p><strong>About the Lion</strong></p>
<p>I think one of most important things I&#8217;m looking for is the sneaky peak of the next OSX release, the <a href="http://www.apple.com/macosx/lion/">&#8220;Lion&#8221;</a>. We do have a lot of expectations about this release having to see the code name &#8212; the King of the jungle. Another thing that is worth looking at is that having the last major architectural improvement from 32bit to 64bit, apple could now concentrate on providing us with new features. The following is some of the new features introduced in this event: </p>
<ul>
<li>App Store</li>
<li>Mission Control</li>
<li>LaunchPad</li>
<li>Full Screen App</li>
</ul>
<p>Well, the concept of app store is good. Having one central location for finding and installing all software is really nice. The open source community (e.g. Ubuntu) has been doing this for years. However, since this is the Apple who is doing it. I do have the concern that I need to &#8216;jailbreak&#8217; a Macbook in order to install softwares. Do note that Steve Jobs said &#8220;it&#8217;s not the only way for installing apps&#8221;, &#8216;jailbreak&#8217; a Macbook probably won&#8217;t that necessary in the near future, but it is a possibility. The app home page and mission control are the very nice small things that Apple is really good at. Making small things really enjoyable to use. The overall feeling is that Lion does not have that much of improvement <img src='http://www.realstraw.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Maybe I&#8217;m asking too much.</p>
<p><strong>About FaceTime</strong></p>
<p>Video chat, Apple introduced this produce like it has never been done before, and they are the inventor of Video chatting. I think this just gets over blowed. I mean, what are the key difference between <a href="http://www.apple.com/mac/facetime/">FaceTime</a> and <a href="http://www.skype.com/intl/en/home">Skype</a>, and many other softwares that supports video chatting (e.g. gmail, msn, qq etc.)</p>
<p><strong>About TouchScreen</strong></p>
<p>Yes, I completely agrees, touch screen is a useless for note book computers. I mean who wants to have there fingers touching around their computer screen? It makes the screen dirty overtime, and it&#8217;s just not comfortable. </p>
<p><strong>Some Little Things</strong></p>
<p>I noticed that in order to watch the event video right after the event. The first browser that is able to do it is Safari. If you&#8217;re using other browsers, you just have to wait a bit longer. Here are some screenshots when I was trying to watch the video earlier:</p>
<p>Using Safari on Macbook Pro:</p>
<p><a href="http://d.pr/ll24" title="On Safari"><img height="379" title="Screen shot 2010-10-03 at 2.32.49 PM" alt="On Safari" border="0" src="http://files.droplr.com/files/12024112/ll24.Screen%20shot%202010-10-21%20at%2011.09.21%20AM.png" width="489"/></a></p>
<p>Using other browser (Google Chrome) on Macbook Pro:</p>
<p><a href="http://d.pr/SWUw" title="On Other Browser (Google Chrome)"><img height="379" title="On Other Browser (Google Chrome)" alt="On Safari" border="0" src="http://files.droplr.com/files/12024112/SWUw.Screen%20shot%202010-10-21%20at%2011%3A08%3A59.png" width="489"/></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.realstraw.com/blog/2010/10/21/radom-thoughts-about-apples-back-to-the-mac-event/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox 4.0b6 Macbook External Monitor Issue and Dirty Fix</title>
		<link>http://www.realstraw.com/blog/2010/10/07/firefox-4-0b6-macbook-external-monitor-issue-and-dirty-fix/</link>
		<comments>http://www.realstraw.com/blog/2010/10/07/firefox-4-0b6-macbook-external-monitor-issue-and-dirty-fix/#comments</comments>
		<pubDate>Fri, 08 Oct 2010 02:32:08 +0000</pubDate>
		<dc:creator>Kexin</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Firefox]]></category>

		<guid isPermaLink="false">http://www.realstraw.com/blog/?p=179</guid>
		<description><![CDATA[I have been using firefox 4 beta on my macbook pro for a while, now there is a bug that is really annoying. To create the bug: Connect the macbook pro with an external monitor. Open firefox and move it to the external monitor. Close firefox entirely. Disconnect the external monitor. Open firefox. Now firefox [...]]]></description>
			<content:encoded><![CDATA[<p>I have been using firefox 4 beta on my macbook pro for a while, now there is a bug that is really annoying. To create the bug:</p>
<ol>
<li>Connect the macbook pro with an external monitor.</li>
<li>Open firefox and move it to the external monitor.</li>
<li>Close firefox entirely.</li>
<li>Disconnect the external monitor.</li>
<li>Open firefox.</li>
</ol>
<p>Now firefox window will not show no matter what.</p>
<p>How to make it show again?</p>
<p><strong>Option 1</strong></p>
<p>Connect the external monitor back.</p>
<p><strong>Option 2</strong></p>
<ol>
<li>&#8220;opt + click&#8221; to open firefox in safe mode.</li>
<li>Tick the &#8220;Reset toolbars and controls&#8221; check box and click &#8220;continue in safe mode&#8221;</li>
<li>Close firefox and open it normally. </li>
</ol>
<p>Of course your toolbars and controls are reset to the default, at least you can now open firefox without an external monitor.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.realstraw.com/blog/2010/10/07/firefox-4-0b6-macbook-external-monitor-issue-and-dirty-fix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>StartCraft II Promoted to Silver League</title>
		<link>http://www.realstraw.com/blog/2010/10/02/startcraft-ii-promoted-to-silver-league/</link>
		<comments>http://www.realstraw.com/blog/2010/10/02/startcraft-ii-promoted-to-silver-league/#comments</comments>
		<pubDate>Sun, 03 Oct 2010 04:41:14 +0000</pubDate>
		<dc:creator>Kexin</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[StarCraft]]></category>

		<guid isPermaLink="false">http://www.realstraw.com/blog/?p=177</guid>
		<description><![CDATA[After battles in the boring Bronze league, I finally promoted to Silver &#8212; another less boring league. How far away from Gold?]]></description>
			<content:encoded><![CDATA[<p>After battles in the boring Bronze league, I finally promoted to Silver &#8212; another less boring league. How far away from Gold?</p>
<p><a title="View 'Screen shot 2010-10-03 at 2.32.49 PM' on Flickr.com" href="http://www.flickr.com/photos/8859602@N08/5045844941"><img title="Screen shot 2010-10-03 at 2.32.49 PM" src="http://farm5.static.flickr.com/4105/5045844941_7dcd9e0bd1.jpg" border="0" alt="Screen shot 2010-10-03 at 2.32.49 PM" width="489" height="379" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.realstraw.com/blog/2010/10/02/startcraft-ii-promoted-to-silver-league/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>中国互联网不缺乏更新？？？</title>
		<link>http://www.realstraw.com/blog/2010/06/24/%e4%b8%ad%e5%9b%bd%e4%ba%92%e8%81%94%e7%bd%91%e4%b8%8d%e7%bc%ba%e4%b9%8f%e6%9b%b4%e6%96%b0%ef%bc%9f%ef%bc%9f%ef%bc%9f/</link>
		<comments>http://www.realstraw.com/blog/2010/06/24/%e4%b8%ad%e5%9b%bd%e4%ba%92%e8%81%94%e7%bd%91%e4%b8%8d%e7%bc%ba%e4%b9%8f%e6%9b%b4%e6%96%b0%ef%bc%9f%ef%bc%9f%ef%bc%9f/#comments</comments>
		<pubDate>Fri, 25 Jun 2010 00:56:03 +0000</pubDate>
		<dc:creator>Kexin</dc:creator>
				<category><![CDATA[Chinese 中文]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[China]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[山寨]]></category>

		<guid isPermaLink="false">http://www.realstraw.com/blog/?p=173</guid>
		<description><![CDATA[看到王建硕的中国互联网不缺乏创新一文，实在不敢苟同，故写此博文。 文章为国内抄袭山寨的互联网产业进行了开脱。观点：“技术商业模式都很方便拷贝，但是用户成熟度没有跟上” 还引用了“中国的互联网现状究竟相当于美国的哪一年？”一文加以说明。 首先，用户不知到自己需要什么，这类情况显而易见，IT业和传统产业相差甚远，作为创新不断的IT产业，应该是不断创新的科技告诉用户他们可以干什么，而并不是由用户来告诉开发者他们需要什么。在3G网络成熟的时候，用户可以想象手机上网能大到那样的速度么？在facebook成功之前，用户有想到sns是什么么？在twitter成功之前，用户知道什么是微博么？技术的发展创新的速度已经远远超越于人们的想象。所以所谓的用户对互联网创新的制约小而又小，不是没有，但却不能成为借口。难道说中国的网民都是傻x，只配用山寨。 其次，所谓抄袭也分抄的好与不好。完全照搬还要说自己是创新，这个和“当了xx，还xxx”有什么区别？如今的抄袭已经不是抄什么技术特点和商业模式，连域名，界面，甚至颜色都一起搬来这个好像也没有从用户的角度考虑多少吧？拿过来改一改，改的好了，就变成了借鉴。而直接照搬，还要标榜创新，那么大可不必。 文章中说“这就像小芳同学先拿到考卷，看到题目是1+1，就答了2；小明拿到考卷晚了，看到的也是1+1这道题，小明同样写了2。小明是后给出答案的，无论是自己想出来的，还是瞄了一眼小芳的，我们都说小明是抄袭的。这对小明同学不公平。” 但是问题其实是小芳写的是”1个美国人＋1个美国人＝2个美国人“﻿，而小明写的是”1个中国人＋1个中国人 ＝ 2个美国人“ 这不是抄袭山寨又是什么？﻿ 最后文章也承认了中国市场比国外晚半拍。那么既然晚了，那就晚了，也就是没有创新了，又何来得不缺乏创新？]]></description>
			<content:encoded><![CDATA[<p>看到王建硕的<a href="http://home.wangjianshuo.com/cn/20100623_aeaeecaecae.htm">中国互联网不缺乏创新</a>一文，实在不敢苟同，故写此博文。</p>
<p>文章为国内抄袭山寨的互联网产业进行了开脱。观点：“技术商业模式都很方便拷贝，但是用户成熟度没有跟上” 还引用了“<a href="http://home.wangjianshuo.com/cn/20050530_aecaeeccccccaeccaeie.htm">中国的互联网现状究竟相当于美国的哪一年？</a>”一文加以说明。</p>
<p>首先，<em>用户不知到自己需要什么，</em>这类情况显而易见，IT业和传统产业相差甚远，作为创新不断的IT产业，应该是不断创新的科技告诉用户他们可以干什么，而并不是由用户来告诉开发者他们需要什么。在3G网络成熟的时候，用户可以想象手机上网能大到那样的速度么？在facebook成功之前，用户有想到sns是什么么？在twitter成功之前，用户知道什么是微博么？技术的发展创新的速度已经远远超越于人们的想象。所以所谓的用户对互联网创新的制约小而又小，不是没有，但却不能成为借口。难道说中国的网民都是傻x，只配用山寨。</p>
<p>其次，<em>所谓抄袭也分抄的好与不好</em>。完全照搬还要说自己是创新，这个和“当了xx，还xxx”有什么区别？如今的抄袭已经不是抄什么技术特点和商业模式，连域名，界面，甚至颜色都一起搬来这个好像也没有从用户的角度考虑多少吧？拿过来改一改，改的好了，就变成了借鉴。而直接照搬，还要标榜创新，那么大可不必。</p>
<p>文章中说“这就像小芳同学先拿到考卷，看到题目是1+1，就答了2；小明拿到考卷晚了，看到的也是1+1这道题，小明同样写了2。小明是后给出答案的，无论是自己想出来的，还是瞄了一眼小芳的，我们都说小明是抄袭的。这对小明同学不公平。” 但是问题其实是小芳写的是”1个美国人＋1个美国人＝2个美国人“﻿，而小明写的是”1个中国人＋1个中国人 ＝ 2个美国人“  这不是抄袭山寨又是什么？﻿</p>
<p>最后文章也承认了中国市场比国外晚半拍。那么既然晚了，那就晚了，也就是没有创新了，又何来得不缺乏创新？</p>
]]></content:encoded>
			<wfw:commentRss>http://www.realstraw.com/blog/2010/06/24/%e4%b8%ad%e5%9b%bd%e4%ba%92%e8%81%94%e7%bd%91%e4%b8%8d%e7%bc%ba%e4%b9%8f%e6%9b%b4%e6%96%b0%ef%bc%9f%ef%bc%9f%ef%bc%9f/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>互联网水军</title>
		<link>http://www.realstraw.com/blog/2010/06/09/%e4%ba%92%e8%81%94%e7%bd%91%e6%b0%b4%e5%86%9b/</link>
		<comments>http://www.realstraw.com/blog/2010/06/09/%e4%ba%92%e8%81%94%e7%bd%91%e6%b0%b4%e5%86%9b/#comments</comments>
		<pubDate>Thu, 10 Jun 2010 01:28:14 +0000</pubDate>
		<dc:creator>Kexin</dc:creator>
				<category><![CDATA[Chinese 中文]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[China]]></category>
		<category><![CDATA[Feelings]]></category>
		<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://www.realstraw.com/blog/?p=169</guid>
		<description><![CDATA[前日看了网易的文章 “‘网络大手’ 这样出手：没几千水军不好意思做这行” 不禁有如下感叹： 网络打手／推手 在我看来，网络打手或者推手其实是一种新型的marketing的战略。随着互联网的发展，大家上网的时间远远超过了看电视看报纸的时间，在网络上做marketing 应该是成本最低，但效果最好的一种市场手段了。（我不是学市场的，只是有这种感觉而已）。早在几年前就出现了用网络进行的炒做，最成功的当指立二拆四当年制造的中国版别针换别墅了。在当时看来，大家高呼上当受骗，而如今站看来我绝觉得这是一场多么成功的市场策划（不知用这个词对不对）。之所以用市场策划这个词是因为其实这次策划要抄的并不是艾晴晴，而正是立二本人。好像所有经典影片一样，最后的结果是那么的出乎意料。 如今这样的网络炒做团体应该已经不下少数。从网易那篇文章看来，比较成功的打手一般一夜之间就可以形成强大的舆论压力。比如 “姐妹们小心了，揭露新东方老师的真面目”。和某汽车品牌的“爬坡门”。 为什么国外这样的团体很少？ 身在国外这么多年，奇怪的是。国外网络要比我国发达的多，却很少听到网络推手，或者说网络推手所造成的舆论影响力远远不及国内。为什么是这样呢？ BBS的流行 首先，这和我国的互联网环境有很大关系，大家摄取消息的频道多为各种论坛。我们倾向于相信论坛上的各种新闻，而对官方的报道半信半疑。原因为何相信我不说大家也都了解。消息的可靠程度应该是“论坛 &#60; 博客 &#60; 媒体 &#60; 官方“ 而我国这个顺序正好是反过来的。而在论坛上发帖又是最容易的。在国外，论坛多为技术支持，解答疑问等，而我国论坛多为灌水，消遣，和发布小道消息。官方没有的，而其他渠道有的消息往往最可信。当郭德刚说道“咱们说点电视台不让播的”，台下人便一下兴奋起来。 引用的缺失 往往在我们写一篇文章的时候，都会引用一些其他材料来说服读者我引用的消息的可靠性。或者至少如果不可信，那这则消息是谁说的，能从哪里找到。国人也有引用的习惯，但是他只说是谁说的，但却不告诉你如何能找到。这个习惯其实从我们小学的时候就开始了，比如我们写作文的时候经常把自己总结的一句话当成是引用。比如“名人”说过，但我们从来不说这句话从哪里可以找到。很多论坛上的帖子也是这样，要么说我朋友如何如何，我听说如何如何，在哪里看到如何如何，但从来看不到原始消息链接。我曾经看到一个朋友（在此由于对隐私的保护，我就不给链接了:p）在他的博客里抄了一段说唱歌词，歌词本身写的很好，但听过的人却没有多少，很多人在他的博客膜拜，赞扬他多么多么有才，这文章写的都能当歌词了。他笑而不语，没有做任何评价，默默的占有了他人的果实。这种现象在我国几乎是司空见惯了，著名博客人王小峰的文章就经常被其他其他博客甚至于门户级网站新x和腾x网站直接转载也不著明出处。我们早已习惯把他人成果强加与自己，而编造一些虚无的东西来证明自己的观点。却没有人在意或追究。 总结 国外也有很多小道消息没有源，但是大家同时又会把这些小道消息标记为 “rumor”。﻿Rumor这个词本来是不可靠的意思，而到了我国，这些消息却变的比官方更权威更可信。其实从这些我们可以看到很多深层的东西，为什么官方，和大的新闻媒体反而没有公信度？相信很多人心中早就有了答案。]]></description>
			<content:encoded><![CDATA[<p>前日看了网易的文章 <a href="http://news.163.com/10/0609/07/68NJL8UD000146BD.html">“‘网络大手’ 这样出手：没几千水军不好意思做这行”</a> 不禁有如下感叹：</p>
<p><strong>网络打手／推手</strong></p>
<p>在我看来，网络打手或者推手其实是一种新型的marketing的战略。随着互联网的发展，大家上网的时间远远超过了看电视看报纸的时间，在网络上做marketing 应该是成本最低，但效果最好的一种市场手段了。（我不是学市场的，只是有这种感觉而已）。早在几年前就出现了用网络进行的炒做，最成功的当指<a href="http://blog.sina.com.cn/shaneyang">立二拆四</a>当年制造的<a href="http://laiba.tianya.cn/laiba/CommMsgs?cmm=55539&amp;tid=2709230443671270679">中国版别针换别墅</a>了。在当时看来，大家高呼上当受骗，而如今站看来我绝觉得这是一场多么成功的市场策划（不知用这个词对不对）。之所以用市场策划这个词是因为其实这次策划要抄的并不是艾晴晴，而正是立二本人。好像所有经典影片一样，最后的结果是那么的出乎意料。</p>
<p>如今这样的网络炒做团体应该已经不下少数。从网易那篇文章看来，比较成功的打手一般一夜之间就可以形成强大的舆论压力。比如 “姐妹们小心了，揭露新东方老师的真面目”。和某汽车品牌的“爬坡门”。</p>
<p><strong>为什么国外这样的团体很少？</strong></p>
<p>身在国外这么多年，奇怪的是。国外网络要比我国发达的多，却很少听到网络推手，或者说网络推手所造成的舆论影响力远远不及国内。为什么是这样呢？</p>
<p><em>BBS的流行</em></p>
<p>首先，这和我国的互联网环境有很大关系，大家摄取消息的频道多为各种论坛。我们倾向于相信论坛上的各种新闻，而对官方的报道半信半疑。原因为何相信我不说大家也都了解。消息的可靠程度应该是“论坛 &lt; 博客 &lt; 媒体 &lt; 官方“ 而我国这个顺序正好是反过来的。而在论坛上发帖又是最容易的。在国外，论坛多为技术支持，解答疑问等，而我国论坛多为灌水，消遣，和发布小道消息。官方没有的，而其他渠道有的消息往往最可信。当郭德刚说道“咱们说点电视台不让播的”，台下人便一下兴奋起来。</p>
<p><em>引用的缺失</em></p>
<p>往往在我们写一篇文章的时候，都会引用一些其他材料来说服读者我引用的消息的可靠性。或者至少如果不可信，那这则消息是谁说的，能从哪里找到。国人也有引用的习惯，但是他只说是谁说的，但却不告诉你如何能找到。这个习惯其实从我们小学的时候就开始了，比如我们写作文的时候经常把自己总结的一句话当成是引用。比如“名人”说过，但我们从来不说这句话从哪里可以找到。很多论坛上的帖子也是这样，要么说我朋友如何如何，我听说如何如何，在哪里看到如何如何，但从来看不到原始消息链接。我曾经看到一个朋友（在此由于对隐私的保护，我就不给链接了:p）在他的博客里抄了一段说唱歌词，歌词本身写的很好，但听过的人却没有多少，很多人在他的博客膜拜，赞扬他多么多么有才，这文章写的都能当歌词了。他笑而不语，没有做任何评价，默默的占有了他人的果实。这种现象在我国几乎是司空见惯了，著名博客人<a href="http://www.wangxiaofeng.net/">王小峰</a>的文章就经常被其他其他博客甚至于门户级网站新x和腾x网站直接转载也不著明出处。我们早已习惯把他人成果强加与自己，而编造一些虚无的东西来证明自己的观点。却没有人在意或追究。</p>
<p><strong>总结</strong></p>
<p>国外也有很多小道消息没有源，但是大家同时又会把这些小道消息标记为 “rumor”。﻿Rumor这个词本来是不可靠的意思，而到了我国，这些消息却变的比官方更权威更可信。其实从这些我们可以看到很多深层的东西，为什么官方，和大的新闻媒体反而没有公信度？相信很多人心中早就有了答案。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.realstraw.com/blog/2010/06/09/%e4%ba%92%e8%81%94%e7%bd%91%e6%b0%b4%e5%86%9b/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Early thoughts about Safari 5</title>
		<link>http://www.realstraw.com/blog/2010/06/07/early-thoughts-about-safari-5/</link>
		<comments>http://www.realstraw.com/blog/2010/06/07/early-thoughts-about-safari-5/#comments</comments>
		<pubDate>Tue, 08 Jun 2010 01:20:03 +0000</pubDate>
		<dc:creator>Kexin</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Safari]]></category>
		<category><![CDATA[WWDC]]></category>

		<guid isPermaLink="false">http://www.realstraw.com/blog/?p=164</guid>
		<description><![CDATA[Woke up this morning, with WWDC news flying all over the Internet. iPhone 4, Safari 5 and many others. This shows that Apple is still the innovation leader, with every product released with a &#8220;WOW&#8221;. I have removed firefox away from my dock, and start trying out the new Safari 5. Will it actually replace [...]]]></description>
			<content:encoded><![CDATA[<p>Woke up this morning, with WWDC news flying all over the Internet. iPhone 4, Safari 5 and many others. This shows that Apple is still the innovation leader, with every product released with a &#8220;WOW&#8221;.</p>
<p>I have removed firefox away from my dock, and start trying out the new Safari 5. Will it actually replace firefox? I see the light, but it will not happen in a long time. I have only used it for 10 minutes, so this is a very early review. Welcome to leave your thoughts in the comment.</p>
<p><strong>Start with what I noticed immediately, tab management:</strong></p>
<p>Now, we can finally configure (not using the command line) Safari 5 to open new pages in tabs instead of windows. Seriously, this should be enabled a lot earlier. What&#8217;s the point of having tabs while still using many windows? Remember how we use to do it in command lines? You don&#8217;t have to any more.</p>
<p><a title="View 'safari 5 new tabs' on Flickr.com" href="http://www.flickr.com/photos/8859602@N08/4680719788"><img title="safari 5 new tabs" src="http://farm5.static.flickr.com/4063/4680719788_38bbe35f5c.jpg" border="0" alt="safari 5 new tabs" width="500" height="227" /></a></p>
<p><strong>The Reader:</strong></p>
<p>The reader function is pretty cool. I don&#8217;t really mind to read articles within the web pages, but the nice feature about reader function is how it prints the web article. You can use &#8220;Shift+Command+R&#8221; to start or stop the reader for particular website article.</p>
<p><strong>The Search Engine:</strong></p>
<p>Another feature is more built-in search options (Bing search). This doesn&#8217;t excite me much. How about let user decide what search engine they want? How about Google Scholar? How is this helpful to have 3 options but they all offer the same functionality? Think about it, it does not make sense. So give me other options for other search engines, or let me decide.</p>
<p><strong>Safari Developer Program:</strong></p>
<p>Among all these new features, this is very good news. Yes! Extensions! This is why leaving firefox is heart breaking. Let&#8217;s see how this works out. Really looking forward to it!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.realstraw.com/blog/2010/06/07/early-thoughts-about-safari-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Macbook Pro Not Auto Sleep</title>
		<link>http://www.realstraw.com/blog/2010/05/12/macbook-pro-not-auto-sleep/</link>
		<comments>http://www.realstraw.com/blog/2010/05/12/macbook-pro-not-auto-sleep/#comments</comments>
		<pubDate>Wed, 12 May 2010 23:58:56 +0000</pubDate>
		<dc:creator>Kexin</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Macbook Pro]]></category>

		<guid isPermaLink="false">http://www.realstraw.com/blog/?p=156</guid>
		<description><![CDATA[A few days ago, I blogged that the new Macbook Pro i5 and i7 does not do auto sleep very well. It seems that most applications that run in full screen mode breaks the auto sleep for both display and system. More details from here. It seems that we have figured out a solution to [...]]]></description>
			<content:encoded><![CDATA[<p>A few days ago, I blogged that the new Macbook Pro i5 and i7 does not do auto sleep very well. It seems that most applications that run in full screen mode breaks the auto sleep for both display and system. More details from <a href="http://www.realstraw.com/blog/2010/05/09/problems-with-the-new-macbook-pro/">here</a>.</p>
<p>It seems that we have figured out a solution to this problem by manually download and install this <a href="http://support.apple.com/kb/DL1026?viewlocale=en_US">official update</a>. The question is, why this cannot be found by the system&#8217;s autoupdate, but have to be explicitly downloaded and installed.</p>
<p>UPDATE (01 June 2010): This update doesn&#8217;t work. More people have encountered the same issue, and currently there is no known solution <img src='http://www.realstraw.com/blog/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>UPDATE (25 June 2010): This problem has been fixed by 10.6.4 update <img src='http://www.realstraw.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.realstraw.com/blog/2010/05/12/macbook-pro-not-auto-sleep/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

