<?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>Oscar Tong</title>
	<atom:link href="http://moscartong.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://moscartong.wordpress.com</link>
	<description>Everything that has a beginning has an end.</description>
	<lastBuildDate>Thu, 05 May 2011 06:53:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='moscartong.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Oscar Tong</title>
		<link>http://moscartong.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://moscartong.wordpress.com/osd.xml" title="Oscar Tong" />
	<atom:link rel='hub' href='http://moscartong.wordpress.com/?pushpress=hub'/>
		<item>
		<title>在HTMLLoader里打开target=&#8217;_blank&#8217;的链接</title>
		<link>http://moscartong.wordpress.com/2011/04/26/%e5%9c%a8htmlloader%e9%87%8c%e6%89%93%e5%bc%80target_blank%e7%9a%84%e9%93%be%e6%8e%a5/</link>
		<comments>http://moscartong.wordpress.com/2011/04/26/%e5%9c%a8htmlloader%e9%87%8c%e6%89%93%e5%bc%80target_blank%e7%9a%84%e9%93%be%e6%8e%a5/#comments</comments>
		<pubDate>Tue, 26 Apr 2011 15:45:52 +0000</pubDate>
		<dc:creator>moscartong</dc:creator>
				<category><![CDATA[ria]]></category>
		<category><![CDATA[web-tech]]></category>
		<category><![CDATA[air]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[html]]></category>

		<guid isPermaLink="false">https://moscartong.wordpress.com/2011/04/26/%e5%9c%a8htmlloader%e9%87%8c%e6%89%93%e5%bc%80target_blank%e7%9a%84%e9%93%be%e6%8e%a5/</guid>
		<description><![CDATA[Adobe AIR 提供了HTMLLoader，用以在AIR应用里嵌入html页面，虽然对标准的支持和性能都不如真正的浏览器强（此处无视本人认为不是浏览器的IE），但还是可以做很多有意思的应用，不过呢这个东东有个好郁闷的问题，它无法处理html里需要打开新窗口的链接（target=&#8217;_blank&#8217;），如果HTMLLoader的navigateInSystemBrowser属性设置了为false，点击这类链接就会完全没有反应 &#62;____&#60; 咁点算呢，好彩万事都有work around，网上有人说，可以在页面加载完成之后，遍历里面所有target为_blank的a标签，给它们加个onclick函数，来处理它们的点击打开操作，这个方法对简单的页面没有问题，但系对于动态生成的a标签，或者页面里嵌入的iframe里面的a标签，就无能为力了，这个问题在js层面上去解决还是很局限的 Google不负有心人，终于搜出一个比较似样的解决方法，原文见这里，这位仁兄继承了HTMLHost类，修改了其对打开新窗口链接的默认处理，终于使得_blank们重见天日，大概原理如下： 首先我们要写个HTMLHost的子类： 1: package com.oscartong 2: { 3: import flash.html.HTMLHost; 4: import flash.html.HTMLWindowCreateOptions; 5: import flash.html.HTMLLoader; 6: &#160; 7: public class MyHTMLHost extends HTMLHost{ 8: public function MyHTMLHost(defaultBehaviors:Boolean = true){ 9: super(defaultBehaviors); 10: } 11: override public function createWindow(windowCreateOptions:HTMLWindowCreateOptions):HTMLLoader{ 12: var ldr:HTMLLoader = super.createWindow(windowCreateOptions); 13: ldr.addEventListener(Event.LOCATION_CHANGE, function(e:Event):void{ 14: trace('open [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=moscartong.wordpress.com&amp;blog=10911282&amp;post=470&amp;subd=moscartong&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Adobe AIR 提供了HTMLLoader，用以在AIR应用里嵌入html页面，虽然对标准的支持和性能都不如真正的浏览器强（此处无视本人认为不是浏览器的IE），但还是可以做很多有意思的应用，不过呢这个东东有个好郁闷的问题，它无法处理html里需要打开新窗口的链接（<strong>target=&#8217;_blank&#8217;</strong>），如果HTMLLoader的navigateInSystemBrowser属性设置了为false，点击这类链接就会完全没有反应 &gt;____&lt;</p>
<p>咁点算呢，好彩万事都有work around，网上有人说，可以在页面加载完成之后，遍历里面所有target为_blank的a标签，给它们加个onclick函数，来处理它们的点击打开操作，这个方法对简单的页面没有问题，但系对于动态生成的a标签，或者页面里嵌入的iframe里面的a标签，就无能为力了，这个问题在js层面上去解决还是很局限的</p>
<p>Google不负有心人，终于搜出一个比较似样的解决方法，<a href="http://digitaldumptruck.jotabout.com/?p=672" target="_blank">原文见这里</a>，这位仁兄继承了HTMLHost类，修改了其对打开新窗口链接的默认处理，终于使得_blank们重见天日，大概原理如下：</p>
<p>首先我们要写个HTMLHost的子类：</p>
<div class="csharpcode">
<pre class="alt"><span class="lnum">   1:  </span>package com.oscartong</pre>
<pre><span class="lnum">   2:  </span>{</pre>
<pre class="alt"><span class="lnum">   3:  </span>    import flash.html.HTMLHost;</pre>
<pre><span class="lnum">   4:  </span>    import flash.html.HTMLWindowCreateOptions;</pre>
<pre class="alt"><span class="lnum">   5:  </span>    import flash.html.HTMLLoader;</pre>
<pre><span class="lnum">   6:  </span>&#160;</pre>
<pre class="alt"><span class="lnum">   7:  </span>    <span class="kwrd">public</span> <span class="kwrd">class</span> MyHTMLHost extends HTMLHost{</pre>
<pre><span class="lnum">   8:  </span>        <span class="kwrd">public</span> <span class="kwrd">function</span> MyHTMLHost(defaultBehaviors:Boolean = <span class="kwrd">true</span>){</pre>
<pre class="alt"><span class="lnum">   9:  </span>            super(defaultBehaviors);</pre>
<pre><span class="lnum">  10:  </span>        }</pre>
<pre class="alt"><span class="lnum">  11:  </span>        <span class="kwrd">override</span> <span class="kwrd">public</span> <span class="kwrd">function</span> createWindow(windowCreateOptions:HTMLWindowCreateOptions):HTMLLoader{</pre>
<pre><span class="lnum">  12:  </span>            <span class="kwrd">var</span> ldr:HTMLLoader = super.createWindow(windowCreateOptions);</pre>
<pre class="alt"><span class="lnum">  13:  </span>            ldr.addEventListener(Event.LOCATION_CHANGE, <span class="kwrd">function</span>(e:Event):<span class="kwrd">void</span>{</pre>
<pre><span class="lnum">  14:  </span>                trace(<span class="str">'open window, url='</span> + ldr.location);</pre>
<pre class="alt"><span class="lnum">  15:  </span>            });</pre>
<pre><span class="lnum">  16:  </span>            <span class="kwrd">return</span> ldr;</pre>
<pre class="alt"><span class="lnum">  17:  </span>        }</pre>
<pre><span class="lnum">  18:  </span>    }</pre>
<pre class="alt"><span class="lnum">  19:  </span>}</pre>
</div>
<p>.csharpcode, .csharpcode pre<br />
{<br />
	font-size: small;<br />
	color: black;<br />
	font-family: consolas, &#8220;Courier New&#8221;, courier, monospace;<br />
	background-color: #ffffff;<br />
	/*white-space: pre;*/<br />
}<br />
.csharpcode pre { margin: 0em; }<br />
.csharpcode .rem { color: #008000; }<br />
.csharpcode .kwrd { color: #0000ff; }<br />
.csharpcode .str { color: #006080; }<br />
.csharpcode .op { color: #0000c0; }<br />
.csharpcode .preproc { color: #cc6633; }<br />
.csharpcode .asp { background-color: #ffff00; }<br />
.csharpcode .html { color: #800000; }<br />
.csharpcode .attr { color: #ff0000; }<br />
.csharpcode .alt<br />
{<br />
	background-color: #f4f4f4;<br />
	width: 100%;<br />
	margin: 0em;<br />
}<br />
.csharpcode .lnum { color: #606060; }</p>
<p>But为什么要监听LOCATION_CHANGE事件呢上面的ldr？因为ldr创建出来之后，它的location还只是&#8217;about : blank&#8217;，还不是a标签上的href，所以要在其location发生变化之后才去读取</p>
<p>然后的做法的很简单啦，设置一下<strong>htmlLoader.htmlHost = new MyHTMLHost()</strong>就OK了，have fun <img style="border-style:none;" class="wlEmoticon wlEmoticon-smile" alt="Smile" src="http://moscartong.files.wordpress.com/2011/04/wlemoticon-smile.png?w=510" /></p>
<br /> Tagged: <a href='http://moscartong.wordpress.com/tag/air/'>air</a>, <a href='http://moscartong.wordpress.com/tag/flex/'>flex</a>, <a href='http://moscartong.wordpress.com/tag/html/'>html</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/moscartong.wordpress.com/470/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/moscartong.wordpress.com/470/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/moscartong.wordpress.com/470/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/moscartong.wordpress.com/470/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/moscartong.wordpress.com/470/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/moscartong.wordpress.com/470/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/moscartong.wordpress.com/470/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/moscartong.wordpress.com/470/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/moscartong.wordpress.com/470/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/moscartong.wordpress.com/470/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/moscartong.wordpress.com/470/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/moscartong.wordpress.com/470/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/moscartong.wordpress.com/470/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/moscartong.wordpress.com/470/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=moscartong.wordpress.com&amp;blog=10911282&amp;post=470&amp;subd=moscartong&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://moscartong.wordpress.com/2011/04/26/%e5%9c%a8htmlloader%e9%87%8c%e6%89%93%e5%bc%80target_blank%e7%9a%84%e9%93%be%e6%8e%a5/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e8a2818f344d0fdfe8fed1c226fb017d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">moscartong</media:title>
		</media:content>

		<media:content url="http://moscartong.files.wordpress.com/2011/04/wlemoticon-smile.png" medium="image">
			<media:title type="html">Smile</media:title>
		</media:content>
	</item>
		<item>
		<title>Test post from android</title>
		<link>http://moscartong.wordpress.com/2011/04/08/test-post-from-android/</link>
		<comments>http://moscartong.wordpress.com/2011/04/08/test-post-from-android/#comments</comments>
		<pubDate>Fri, 08 Apr 2011 13:42:16 +0000</pubDate>
		<dc:creator>moscartong</dc:creator>
				<category><![CDATA[life]]></category>
		<category><![CDATA[jojo]]></category>

		<guid isPermaLink="false">https://moscartong.wordpress.com/2011/04/08/test-post-from-android/</guid>
		<description><![CDATA[This is just a test post from my new HTC Desire HD. Thanks my lovely wife for sending me such a great gift Tagged: jojo<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=moscartong.wordpress.com&amp;blog=10911282&amp;post=468&amp;subd=moscartong&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This is just a test post from my new HTC Desire HD. Thanks my lovely wife for sending me such a great gift <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br /> Tagged: <a href='http://moscartong.wordpress.com/tag/jojo/'>jojo</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/moscartong.wordpress.com/468/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/moscartong.wordpress.com/468/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/moscartong.wordpress.com/468/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/moscartong.wordpress.com/468/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/moscartong.wordpress.com/468/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/moscartong.wordpress.com/468/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/moscartong.wordpress.com/468/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/moscartong.wordpress.com/468/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/moscartong.wordpress.com/468/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/moscartong.wordpress.com/468/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/moscartong.wordpress.com/468/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/moscartong.wordpress.com/468/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/moscartong.wordpress.com/468/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/moscartong.wordpress.com/468/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=moscartong.wordpress.com&amp;blog=10911282&amp;post=468&amp;subd=moscartong&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://moscartong.wordpress.com/2011/04/08/test-post-from-android/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e8a2818f344d0fdfe8fed1c226fb017d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">moscartong</media:title>
		</media:content>
	</item>
		<item>
		<title>SunSpider on Mobile Safari and embeded webview (iPad1 iOS4.3)</title>
		<link>http://moscartong.wordpress.com/2011/03/24/sunspider-on-mobile-safari-and-embeded-webview-ipad1-ios4-3/</link>
		<comments>http://moscartong.wordpress.com/2011/03/24/sunspider-on-mobile-safari-and-embeded-webview-ipad1-ios4-3/#comments</comments>
		<pubDate>Thu, 24 Mar 2011 02:06:34 +0000</pubDate>
		<dc:creator>moscartong</dc:creator>
				<category><![CDATA[web-tech]]></category>
		<category><![CDATA[ios]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[safari]]></category>

		<guid isPermaLink="false">https://moscartong.wordpress.com/2011/03/24/sunspider-on-mobile-safari-and-embeded-webview-ipad1-ios4-3/</guid>
		<description><![CDATA[测试是在iPad1 iOS4.3上，分别在Mobile Safari和一个app内嵌浏览器里跑的，照理说大家都是用的同一版本的safari，分数应该差不多吧，Apple说4.3的js引擎速度比4.2的要快2.5杯，听起来很感动，但是看看上面的实际结果&#8230; 左边数字比较小的是mobile safari的分数，右边的是app内嵌浏览器的，很明显的两者相差了2.5倍（啊~~悲剧吖！）&#8230;也就是说所谓的加速只限于在mobile safari上跑的webapp，若想要把webapp打个包搞成native（比如用phonegap），或者添加到桌面做成全屏webapp，则完全没得到任何性能提升&#8230; 乔帮主你有必要这样搞来彰显你native app的性能吗&#8230; Tagged: ios, ipad, safari<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=moscartong.wordpress.com&amp;blog=10911282&amp;post=467&amp;subd=moscartong&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://moscartong.files.wordpress.com/2011/03/photo.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="photo" border="0" alt="photo" src="http://moscartong.files.wordpress.com/2011/03/photo_thumb.png?w=500&#038;h=375" width="500" height="375" /></a></p>
<p>测试是在iPad1 iOS4.3上，分别在Mobile Safari和一个app内嵌浏览器里跑的，照理说大家都是用的同一版本的safari，分数应该差不多吧，Apple说4.3的js引擎速度比4.2的要快2.5杯，听起来很感动，但是看看上面的实际结果&#8230;</p>
<p>左边数字比较小的是mobile safari的分数，右边的是app内嵌浏览器的，很明显的两者相差了2.5倍（啊~~悲剧吖！）&#8230;也就是说所谓的加速只限于在mobile safari上跑的webapp，若想要把webapp打个包搞成native（比如用phonegap），或者添加到桌面做成全屏webapp，则完全没得到任何性能提升&#8230;</p>
<p>乔帮主你有必要这样搞来彰显你native app的性能吗&#8230;</p>
<br /> Tagged: <a href='http://moscartong.wordpress.com/tag/ios/'>ios</a>, <a href='http://moscartong.wordpress.com/tag/ipad/'>ipad</a>, <a href='http://moscartong.wordpress.com/tag/safari/'>safari</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/moscartong.wordpress.com/467/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/moscartong.wordpress.com/467/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/moscartong.wordpress.com/467/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/moscartong.wordpress.com/467/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/moscartong.wordpress.com/467/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/moscartong.wordpress.com/467/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/moscartong.wordpress.com/467/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/moscartong.wordpress.com/467/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/moscartong.wordpress.com/467/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/moscartong.wordpress.com/467/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/moscartong.wordpress.com/467/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/moscartong.wordpress.com/467/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/moscartong.wordpress.com/467/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/moscartong.wordpress.com/467/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=moscartong.wordpress.com&amp;blog=10911282&amp;post=467&amp;subd=moscartong&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://moscartong.wordpress.com/2011/03/24/sunspider-on-mobile-safari-and-embeded-webview-ipad1-ios4-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e8a2818f344d0fdfe8fed1c226fb017d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">moscartong</media:title>
		</media:content>

		<media:content url="http://moscartong.files.wordpress.com/2011/03/photo_thumb.png" medium="image">
			<media:title type="html">photo</media:title>
		</media:content>
	</item>
		<item>
		<title>debugging GPU acceleration in Chrome</title>
		<link>http://moscartong.wordpress.com/2011/03/21/debugging-gpu-acceleration-in-chrome/</link>
		<comments>http://moscartong.wordpress.com/2011/03/21/debugging-gpu-acceleration-in-chrome/#comments</comments>
		<pubDate>Mon, 21 Mar 2011 13:05:15 +0000</pubDate>
		<dc:creator>moscartong</dc:creator>
				<category><![CDATA[html5]]></category>
		<category><![CDATA[web-tech]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[gpu]]></category>

		<guid isPermaLink="false">https://moscartong.wordpress.com/2011/03/21/debugging-gpu-acceleration-in-chrome/</guid>
		<description><![CDATA[chrome提供了两个运行参数来调试GPU加速，分别如下： &#8211;show-composited-layer-borders：将由GPU处理的元素用一个红框标识出来，可以让开发者确认哪些区域有GPU加速 &#8211;show-paint-rects：非GPU渲染的区域在重新渲染时会用浅色边框标注，可以让你看看哪些区域频繁的更新，找出性能问题所在 Tagged: chrome, gpu<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=moscartong.wordpress.com&amp;blog=10911282&amp;post=459&amp;subd=moscartong&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>chrome提供了两个运行参数来调试GPU加速，分别如下：</p>
<p><strong>&#8211;show-composited-layer-borders</strong>：将由GPU处理的元素用一个红框标识出来，可以让开发者确认哪些区域有GPU加速</p>
<p><strong>&#8211;show-paint-rects</strong>：非GPU渲染的区域在重新渲染时会用浅色边框标注，可以让你看看哪些区域频繁的更新，找出性能问题所在</p>
<br /> Tagged: <a href='http://moscartong.wordpress.com/tag/chrome/'>chrome</a>, <a href='http://moscartong.wordpress.com/tag/gpu/'>gpu</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/moscartong.wordpress.com/459/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/moscartong.wordpress.com/459/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/moscartong.wordpress.com/459/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/moscartong.wordpress.com/459/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/moscartong.wordpress.com/459/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/moscartong.wordpress.com/459/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/moscartong.wordpress.com/459/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/moscartong.wordpress.com/459/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/moscartong.wordpress.com/459/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/moscartong.wordpress.com/459/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/moscartong.wordpress.com/459/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/moscartong.wordpress.com/459/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/moscartong.wordpress.com/459/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/moscartong.wordpress.com/459/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=moscartong.wordpress.com&amp;blog=10911282&amp;post=459&amp;subd=moscartong&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://moscartong.wordpress.com/2011/03/21/debugging-gpu-acceleration-in-chrome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e8a2818f344d0fdfe8fed1c226fb017d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">moscartong</media:title>
		</media:content>
	</item>
		<item>
		<title>FlashBuilder代码提示有问题&#8230;</title>
		<link>http://moscartong.wordpress.com/2011/02/08/flashbuilder%e4%bb%a3%e7%a0%81%e6%8f%90%e7%a4%ba%e6%9c%89%e9%97%ae%e9%a2%98/</link>
		<comments>http://moscartong.wordpress.com/2011/02/08/flashbuilder%e4%bb%a3%e7%a0%81%e6%8f%90%e7%a4%ba%e6%9c%89%e9%97%ae%e9%a2%98/#comments</comments>
		<pubDate>Mon, 07 Feb 2011 16:21:44 +0000</pubDate>
		<dc:creator>moscartong</dc:creator>
				<category><![CDATA[web-tech]]></category>
		<category><![CDATA[flashbuilder]]></category>

		<guid isPermaLink="false">https://moscartong.wordpress.com/?p=457</guid>
		<description><![CDATA[用了一段时间FlashBuilder Burrito，突然有天发现代码提示功能失效了，无论系编辑MXML或是AS，代码提示都不正常，在MXML里输入&#34;&#60;&#34;之后只显示出当前组件的属性，没有了Spark/MX组件的类，甚至写AS时，import语句后面也完全没有提示 &#62;__&#60; ，后来发现貌似系workspace目录下的.metadata目录有点问题，可以换一个干净的目录作为workspace，也可以直接将.metadata删掉，下次打开fb时会自动从新创建一个，不过项目信息会丢失，要重新导入项目到fb Tagged: flashbuilder<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=moscartong.wordpress.com&amp;blog=10911282&amp;post=457&amp;subd=moscartong&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>用了一段时间FlashBuilder Burrito，突然有天发现代码提示功能失效了，无论系编辑MXML或是AS，代码提示都不正常，在MXML里输入&quot;&lt;&quot;之后只显示出当前组件的属性，没有了Spark/MX组件的类，甚至写AS时，import语句后面也完全没有提示 &gt;__&lt; ，后来发现貌似系workspace目录下的.metadata目录有点问题，可以换一个干净的目录作为workspace，也可以直接将.metadata删掉，下次打开fb时会自动从新创建一个，不过项目信息会丢失，要重新导入项目到fb</p>
<br /> Tagged: <a href='http://moscartong.wordpress.com/tag/flashbuilder/'>flashbuilder</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/moscartong.wordpress.com/457/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/moscartong.wordpress.com/457/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/moscartong.wordpress.com/457/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/moscartong.wordpress.com/457/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/moscartong.wordpress.com/457/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/moscartong.wordpress.com/457/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/moscartong.wordpress.com/457/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/moscartong.wordpress.com/457/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/moscartong.wordpress.com/457/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/moscartong.wordpress.com/457/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/moscartong.wordpress.com/457/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/moscartong.wordpress.com/457/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/moscartong.wordpress.com/457/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/moscartong.wordpress.com/457/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=moscartong.wordpress.com&amp;blog=10911282&amp;post=457&amp;subd=moscartong&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://moscartong.wordpress.com/2011/02/08/flashbuilder%e4%bb%a3%e7%a0%81%e6%8f%90%e7%a4%ba%e6%9c%89%e9%97%ae%e9%a2%98/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e8a2818f344d0fdfe8fed1c226fb017d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">moscartong</media:title>
		</media:content>
	</item>
		<item>
		<title>小甥女</title>
		<link>http://moscartong.wordpress.com/2011/02/05/%e5%b0%8f%e7%94%a5%e5%a5%b3/</link>
		<comments>http://moscartong.wordpress.com/2011/02/05/%e5%b0%8f%e7%94%a5%e5%a5%b3/#comments</comments>
		<pubDate>Sat, 05 Feb 2011 08:22:24 +0000</pubDate>
		<dc:creator>moscartong</dc:creator>
				<category><![CDATA[life]]></category>
		<category><![CDATA[AF Nikkor 50mm f/1.4D]]></category>
		<category><![CDATA[D5000]]></category>
		<category><![CDATA[nikon]]></category>

		<guid isPermaLink="false">https://moscartong.wordpress.com/2011/02/05/%e5%b0%8f%e7%94%a5%e5%a5%b3/</guid>
		<description><![CDATA[表姐生的BB女，已经9个月了，很可爱很会哄人开心，哈哈我越来越中意细路仔 上面两张相系用Nikon D5000 + AF Nikkor 50mm f/1.4D影的，镜头光圈好大，影出来既浅景深效果好正，比D5000套机的镜头（最大光圈3.5）效果要好好多，多谢老婆大人送个甘靓既镜头比我 :3 Tagged: AF Nikkor 50mm f/1.4D, D5000, nikon<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=moscartong.wordpress.com&amp;blog=10911282&amp;post=454&amp;subd=moscartong&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://moscartong.files.wordpress.com/2011/02/dsc_0488.jpg"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="DSC_0488" border="0" alt="DSC_0488" src="http://moscartong.files.wordpress.com/2011/02/dsc_0488_thumb.jpg?w=250&#038;h=166" width="250" height="166" /></a><a href="http://moscartong.files.wordpress.com/2011/02/dsc_0486.jpg"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="DSC_0486" border="0" alt="DSC_0486" src="http://moscartong.files.wordpress.com/2011/02/dsc_0486_thumb.jpg?w=250&#038;h=166" width="250" height="166" /></a></p>
<p>表姐生的BB女，已经9个月了，很可爱很会哄人开心，哈哈我越来越中意细路仔</p>
<p>上面两张相系用Nikon D5000 + AF Nikkor 50mm f/1.4D影的，镜头光圈好大，影出来既浅景深效果好正，比D5000套机的镜头（最大光圈3.5）效果要好好多，多谢老婆大人送个甘靓既镜头比我 :3</p>
<br /> Tagged: <a href='http://moscartong.wordpress.com/tag/af-nikkor-50mm-f1-4d/'>AF Nikkor 50mm f/1.4D</a>, <a href='http://moscartong.wordpress.com/tag/d5000/'>D5000</a>, <a href='http://moscartong.wordpress.com/tag/nikon/'>nikon</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/moscartong.wordpress.com/454/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/moscartong.wordpress.com/454/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/moscartong.wordpress.com/454/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/moscartong.wordpress.com/454/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/moscartong.wordpress.com/454/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/moscartong.wordpress.com/454/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/moscartong.wordpress.com/454/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/moscartong.wordpress.com/454/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/moscartong.wordpress.com/454/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/moscartong.wordpress.com/454/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/moscartong.wordpress.com/454/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/moscartong.wordpress.com/454/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/moscartong.wordpress.com/454/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/moscartong.wordpress.com/454/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=moscartong.wordpress.com&amp;blog=10911282&amp;post=454&amp;subd=moscartong&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://moscartong.wordpress.com/2011/02/05/%e5%b0%8f%e7%94%a5%e5%a5%b3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e8a2818f344d0fdfe8fed1c226fb017d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">moscartong</media:title>
		</media:content>

		<media:content url="http://moscartong.files.wordpress.com/2011/02/dsc_0488_thumb.jpg" medium="image">
			<media:title type="html">DSC_0488</media:title>
		</media:content>

		<media:content url="http://moscartong.files.wordpress.com/2011/02/dsc_0486_thumb.jpg" medium="image">
			<media:title type="html">DSC_0486</media:title>
		</media:content>
	</item>
		<item>
		<title>Make In China &#8230;</title>
		<link>http://moscartong.wordpress.com/2011/02/04/make-in-china/</link>
		<comments>http://moscartong.wordpress.com/2011/02/04/make-in-china/#comments</comments>
		<pubDate>Fri, 04 Feb 2011 15:27:55 +0000</pubDate>
		<dc:creator>moscartong</dc:creator>
				<category><![CDATA[life]]></category>
		<category><![CDATA[MIC]]></category>

		<guid isPermaLink="false">https://moscartong.wordpress.com/2011/02/04/make-in-china/</guid>
		<description><![CDATA[前几天老婆逛超市的时候发现了上图这些山寨饼干…和正牌饼干混在一起卖…这不明显系坑人么，不过不得不说呢D山寨货仿真度真系几高，无论系包装、设计、颜色、字体，都同真品十分相近，有时D公公婆婆出去办年货，仲真系分分钟会以为系坚野买翻屋企 &#62;____&#60; 以前中学读历史，呢D行为系清朝叫做“师夷长技以制夷”，叫得甘好听，事实上一样系自欺欺人，靠厄自己人来赚钱，难道中国人就真的甘没创意，咩都只识得抄？除了造假就没其他致富发财之路？ 唔单止系超市，今日同老婆去珠海吉大的新华书店拣碟，居然系“进口电影区”发现一件印有Tron Legacy的热销品（上左图），我仲以为系真的出了DVD，冲动得差D买了，睇真D发现个电影名貌似有D出入，再细睇睇发现个剧情系讲打外星人保卫地球的…不过呢个封面…同真正的Tron Legacy海报（上右图）真系一模一样，甘做同偷厄拐骗有咩分别… 最后上一张上年（2010）农历新年系乡下影到的一对Kappa男…系咯in case你唔知道点解呢篇日志标题叫做“Make In China”，我解释下先，Make In China简称MIC，意为中国制造，亦指山寨货 -____- &#124;&#124;&#124; Tagged: MIC<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=moscartong.wordpress.com&amp;blog=10911282&amp;post=448&amp;subd=moscartong&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://moscartong.files.wordpress.com/2011/02/2011-01-29-darjian-cookies.jpg"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="2011-01-29 DarJian Cookies" border="0" alt="2011-01-29 DarJian Cookies" src="http://moscartong.files.wordpress.com/2011/02/2011-01-29-darjian-cookies_thumb.jpg?w=250&#038;h=333" width="250" height="333" /></a><a href="http://moscartong.files.wordpress.com/2011/02/2011-01-29.jpg"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="2011-01-29 嘉威什锦饼干" border="0" alt="2011-01-29 嘉威什锦饼干" src="http://moscartong.files.wordpress.com/2011/02/2011-01-29-_thumb.jpg?w=250&#038;h=333" width="250" height="333" /></a></p>
<p>前几天老婆逛超市的时候发现了上图这些山寨饼干…和正牌饼干混在一起卖…这不明显系坑人么，不过不得不说呢D山寨货仿真度真系几高，无论系包装、设计、颜色、字体，都同真品十分相近，有时D公公婆婆出去办年货，仲真系分分钟会以为系坚野买翻屋企 &gt;____&lt; 以前中学读历史，呢D行为系清朝叫做“<font color="#333333"></font><font color="#ffffff">师夷长技以制夷</font><font color="#333333"></font>”，叫得甘好听，事实上一样系自欺欺人，靠厄自己人来赚钱，难道中国人就真的甘没创意，咩都只识得抄？除了造假就没其他致富发财之路？</p>
<p><a href="http://moscartong.files.wordpress.com/2011/02/2011-02-04-tron-legacy.jpg"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="2011-02-04 山寨Tron Legacy 珠海吉大新华书店" border="0" alt="2011-02-04 山寨Tron Legacy 珠海吉大新华书店" src="http://moscartong.files.wordpress.com/2011/02/2011-02-04-tron-legacy-_thumb.jpg?w=250&#038;h=333" width="250" height="333" /></a><a href="http://moscartong.files.wordpress.com/2011/02/2011-02-04-tron-legacy-dvd.jpg"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="2011-02-04 Tron Legacy 正版DVD封面" border="0" alt="2011-02-04 Tron Legacy 正版DVD封面" src="http://moscartong.files.wordpress.com/2011/02/2011-02-04-tron-legacy-dvd_thumb.jpg?w=250&#038;h=333" width="250" height="333" /></a></p>
<p>唔单止系超市，今日同老婆去<font color="#ffffff"></font><font color="#ffffff">珠海吉大的新华书店</font><font color="#ffffff"></font>拣碟，居然系“进口电影区”发现一件印有Tron Legacy的热销品（上左图），我仲以为系真的出了DVD，冲动得差D买了，睇真D发现个电影名貌似有D出入，再细睇睇发现个剧情系讲打外星人保卫地球的…不过呢个封面…同真正的Tron Legacy海报（上右图）真系一模一样，甘做同偷厄拐骗有咩分别…</p>
<p><a href="http://moscartong.files.wordpress.com/2011/02/2010-02-19-kappa.jpg"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="2010-02-19 Kappa" border="0" alt="2010-02-19 Kappa" src="http://moscartong.files.wordpress.com/2011/02/2010-02-19-kappa_thumb.jpg?w=500&#038;h=259" width="500" height="259" /></a></p>
<p>最后上一张上年（2010）农历新年系乡下影到的一对Kappa男…系咯in case你唔知道点解呢篇日志标题叫做“Make In China”，我解释下先，Make In China简称MIC，意为中国制造，亦指山寨货 -____- |||</p>
<br /> Tagged: <a href='http://moscartong.wordpress.com/tag/mic/'>MIC</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/moscartong.wordpress.com/448/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/moscartong.wordpress.com/448/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/moscartong.wordpress.com/448/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/moscartong.wordpress.com/448/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/moscartong.wordpress.com/448/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/moscartong.wordpress.com/448/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/moscartong.wordpress.com/448/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/moscartong.wordpress.com/448/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/moscartong.wordpress.com/448/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/moscartong.wordpress.com/448/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/moscartong.wordpress.com/448/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/moscartong.wordpress.com/448/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/moscartong.wordpress.com/448/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/moscartong.wordpress.com/448/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=moscartong.wordpress.com&amp;blog=10911282&amp;post=448&amp;subd=moscartong&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://moscartong.wordpress.com/2011/02/04/make-in-china/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e8a2818f344d0fdfe8fed1c226fb017d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">moscartong</media:title>
		</media:content>

		<media:content url="http://moscartong.files.wordpress.com/2011/02/2011-01-29-darjian-cookies_thumb.jpg" medium="image">
			<media:title type="html">2011-01-29 DarJian Cookies</media:title>
		</media:content>

		<media:content url="http://moscartong.files.wordpress.com/2011/02/2011-01-29-_thumb.jpg" medium="image">
			<media:title type="html">2011-01-29 嘉威什锦饼干</media:title>
		</media:content>

		<media:content url="http://moscartong.files.wordpress.com/2011/02/2011-02-04-tron-legacy-_thumb.jpg" medium="image">
			<media:title type="html">2011-02-04 山寨Tron Legacy 珠海吉大新华书店</media:title>
		</media:content>

		<media:content url="http://moscartong.files.wordpress.com/2011/02/2011-02-04-tron-legacy-dvd_thumb.jpg" medium="image">
			<media:title type="html">2011-02-04 Tron Legacy 正版DVD封面</media:title>
		</media:content>

		<media:content url="http://moscartong.files.wordpress.com/2011/02/2010-02-19-kappa_thumb.jpg" medium="image">
			<media:title type="html">2010-02-19 Kappa</media:title>
		</media:content>
	</item>
		<item>
		<title>I hate this place</title>
		<link>http://moscartong.wordpress.com/2011/02/03/i-hate-this-place-2/</link>
		<comments>http://moscartong.wordpress.com/2011/02/03/i-hate-this-place-2/#comments</comments>
		<pubDate>Thu, 03 Feb 2011 13:45:53 +0000</pubDate>
		<dc:creator>moscartong</dc:creator>
				<category><![CDATA[life]]></category>
		<category><![CDATA[freedom]]></category>

		<guid isPermaLink="false">https://moscartong.wordpress.com/?p=427</guid>
		<description><![CDATA[可能系因为长时间没有在乡下，很不习惯电视的吵杂，而且最郁闷的系每次讲到对中国大陆不利的新闻，就被cut掉信号，转去公益广告，这样的社会，叫我如何去热爱~~ 凸 = = 凸 很不习惯没你在身边的生活 Tagged: freedom<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=moscartong.wordpress.com&amp;blog=10911282&amp;post=427&amp;subd=moscartong&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://moscartong.files.wordpress.com/2011/02/2010-01-09.jpg"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="2010-01-09 省传信号" border="0" alt="2010-01-09 省传信号" src="http://moscartong.files.wordpress.com/2011/02/2010-01-09-_thumb.jpg?w=250&#038;h=188" width="250" height="188" /></a><a href="http://moscartong.files.wordpress.com/2011/02/2010-05-08.jpg"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="2010-05-08 省传信号" border="0" alt="2010-05-08 省传信号" src="http://moscartong.files.wordpress.com/2011/02/2010-05-08-_thumb.jpg?w=250&#038;h=188" width="250" height="188" /></a></p>
<p>可能系因为长时间没有在乡下，很不习惯电视的吵杂，而且最郁闷的系每次讲到对中国大陆不利的新闻，就被cut掉信号，转去公益广告，这样的社会，叫我如何去热爱~~ 凸 = = 凸</p>
<p>很不习惯没你在身边的生活</p>
<br /> Tagged: <a href='http://moscartong.wordpress.com/tag/freedom/'>freedom</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/moscartong.wordpress.com/427/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/moscartong.wordpress.com/427/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/moscartong.wordpress.com/427/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/moscartong.wordpress.com/427/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/moscartong.wordpress.com/427/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/moscartong.wordpress.com/427/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/moscartong.wordpress.com/427/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/moscartong.wordpress.com/427/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/moscartong.wordpress.com/427/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/moscartong.wordpress.com/427/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/moscartong.wordpress.com/427/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/moscartong.wordpress.com/427/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/moscartong.wordpress.com/427/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/moscartong.wordpress.com/427/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=moscartong.wordpress.com&amp;blog=10911282&amp;post=427&amp;subd=moscartong&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://moscartong.wordpress.com/2011/02/03/i-hate-this-place-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e8a2818f344d0fdfe8fed1c226fb017d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">moscartong</media:title>
		</media:content>

		<media:content url="http://moscartong.files.wordpress.com/2011/02/2010-01-09-_thumb.jpg" medium="image">
			<media:title type="html">2010-01-09 省传信号</media:title>
		</media:content>

		<media:content url="http://moscartong.files.wordpress.com/2011/02/2010-05-08-_thumb.jpg" medium="image">
			<media:title type="html">2010-05-08 省传信号</media:title>
		</media:content>
	</item>
		<item>
		<title>除夕·味千拉面</title>
		<link>http://moscartong.wordpress.com/2011/02/02/%e9%99%a4%e5%a4%95%c2%b7%e5%91%b3%e5%8d%83%e6%8b%89%e9%9d%a2/</link>
		<comments>http://moscartong.wordpress.com/2011/02/02/%e9%99%a4%e5%a4%95%c2%b7%e5%91%b3%e5%8d%83%e6%8b%89%e9%9d%a2/#comments</comments>
		<pubDate>Wed, 02 Feb 2011 13:42:00 +0000</pubDate>
		<dc:creator>moscartong</dc:creator>
				<category><![CDATA[life]]></category>
		<category><![CDATA[jojo]]></category>

		<guid isPermaLink="false">https://moscartong.wordpress.com/?p=422</guid>
		<description><![CDATA[年三十中午，和老婆在吉大味千拉面撑台脚，我很喜欢这个拉面馆，因为基本上每次和老婆出来逛街，无论系珠海深圳广州，多数都系在味千拉面食野（香港除外，香港既味千拉面….今时今日甘既服务态度未够的）。系深圳上班的时候，有时会系超市度买D味千拉面翻屋企自己煮，味道唔错，有老婆在身边的感觉 Tagged: jojo<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=moscartong.wordpress.com&amp;blog=10911282&amp;post=422&amp;subd=moscartong&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://moscartong.files.wordpress.com/2011/02/dsc_04111.jpg"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="DSC_0411" border="0" alt="DSC_0411" src="http://moscartong.files.wordpress.com/2011/02/dsc_0411_thumb.jpg?w=500&#038;h=331" width="500" height="331" /></a></p>
<p>年三十中午，和老婆在吉大味千拉面撑台脚，我很喜欢这个拉面馆，因为基本上每次和老婆出来逛街，无论系珠海深圳广州，多数都系在味千拉面食野（香港除外，香港既味千拉面….今时今日甘既服务态度未够的）。系深圳上班的时候，有时会系超市度买D味千拉面翻屋企自己煮，味道唔错，有老婆在身边的感觉</p>
<br /> Tagged: <a href='http://moscartong.wordpress.com/tag/jojo/'>jojo</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/moscartong.wordpress.com/422/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/moscartong.wordpress.com/422/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/moscartong.wordpress.com/422/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/moscartong.wordpress.com/422/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/moscartong.wordpress.com/422/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/moscartong.wordpress.com/422/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/moscartong.wordpress.com/422/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/moscartong.wordpress.com/422/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/moscartong.wordpress.com/422/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/moscartong.wordpress.com/422/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/moscartong.wordpress.com/422/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/moscartong.wordpress.com/422/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/moscartong.wordpress.com/422/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/moscartong.wordpress.com/422/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=moscartong.wordpress.com&amp;blog=10911282&amp;post=422&amp;subd=moscartong&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://moscartong.wordpress.com/2011/02/02/%e9%99%a4%e5%a4%95%c2%b7%e5%91%b3%e5%8d%83%e6%8b%89%e9%9d%a2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e8a2818f344d0fdfe8fed1c226fb017d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">moscartong</media:title>
		</media:content>

		<media:content url="http://moscartong.files.wordpress.com/2011/02/dsc_0411_thumb.jpg" medium="image">
			<media:title type="html">DSC_0411</media:title>
		</media:content>
	</item>
		<item>
		<title>Happy New Year</title>
		<link>http://moscartong.wordpress.com/2011/02/02/happy-new-year-2/</link>
		<comments>http://moscartong.wordpress.com/2011/02/02/happy-new-year-2/#comments</comments>
		<pubDate>Wed, 02 Feb 2011 13:00:00 +0000</pubDate>
		<dc:creator>moscartong</dc:creator>
				<category><![CDATA[device]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[ria]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[jojo]]></category>
		<category><![CDATA[qq]]></category>

		<guid isPermaLink="false">https://moscartong.wordpress.com/?p=434</guid>
		<description><![CDATA[又有几乎半年没有更新过blog了，因为近几个月工作都很忙，每天都系code code code 加班加班加班 …. 觉得有点对唔住老婆和家人，总是没时间陪在他们身边，尤其是老婆，真是辛苦了，每晚挨夜等我加班回家，新年放假也没带你去什么好玩的地方放松一下，今天除夕本来好好的，又因为我吵了架 今年你给了我很多很多支持，想和你说声谢谢，老婆我爱你！ OK，忙了甘耐，就系为呢件野，去片： 传说中的QQ for Pad，全HTML5技术打造，不含防腐剂或人造色素，哈哈听起来很猛，其实HTML5还是有很多很多很多的问题，Apple鼓吹的那么猛，我始终还是觉得Flash才是皇道，论语言论性能论功能论平台支持我觉得都是Flash更为优胜，HTML5的话，做做普通网页，搞搞阴影圆角离线缓存之类的东东系绰绰有余的，不过同Flash相比，实在系相距甚远。不过今次项目令我都好大收获，如果唔系因为iPad唔支持Flash，我都接触唔到甘多HTML5的东东，对js和css的了解亦唔会深入甘多~~ Anyway，我今年的目标要升职加薪娶老婆！新年新景象，祝大家兔年事事顺意，大家加油！ Tagged: html5, ipad, jojo, qq<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=moscartong.wordpress.com&amp;blog=10911282&amp;post=434&amp;subd=moscartong&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>又有几乎半年没有更新过blog了，因为近几个月工作都很忙，每天都系code code code 加班加班加班 …. 觉得有点对唔住老婆和家人，总是没时间陪在他们身边，尤其是老婆，真是辛苦了，每晚挨夜等我加班回家，新年放假也没带你去什么好玩的地方放松一下，今天除夕本来好好的，又因为我吵了架 <img alt=":(" src="http://s0.wp.com/wp-includes/images/smilies/icon_sad.gif?m=1244996873g" /> 今年你给了我很多很多支持，想和你说声谢谢，老婆我爱你！</p>
<p>OK，忙了甘耐，就系为呢件野，去片：</p>
<p><a href="http://moscartong.files.wordpress.com/2011/02/qq-for-pad1.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="qq for pad" border="0" alt="qq for pad" src="http://moscartong.files.wordpress.com/2011/02/qq-for-pad_thumb.png?w=500&#038;h=252" width="500" height="252" /></a></p>
<p>传说中的QQ for Pad，全HTML5技术打造，不含防腐剂或人造色素，哈哈听起来很猛，其实HTML5还是有很多很多很多的问题，Apple鼓吹的那么猛，我始终还是觉得Flash才是皇道，论语言论性能论功能论平台支持我觉得都是Flash更为优胜，HTML5的话，做做普通网页，搞搞阴影圆角离线缓存之类的东东系绰绰有余的，不过同Flash相比，实在系相距甚远。不过今次项目令我都好大收获，如果唔系因为iPad唔支持Flash，我都接触唔到甘多HTML5的东东，对js和css的了解亦唔会深入甘多~~</p>
<p>Anyway，我今年的目标要升职加薪娶老婆！新年新景象，祝大家兔年事事顺意，大家加油！</p>
<br /> Tagged: <a href='http://moscartong.wordpress.com/tag/html5/'>html5</a>, <a href='http://moscartong.wordpress.com/tag/ipad/'>ipad</a>, <a href='http://moscartong.wordpress.com/tag/jojo/'>jojo</a>, <a href='http://moscartong.wordpress.com/tag/qq/'>qq</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/moscartong.wordpress.com/434/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/moscartong.wordpress.com/434/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/moscartong.wordpress.com/434/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/moscartong.wordpress.com/434/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/moscartong.wordpress.com/434/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/moscartong.wordpress.com/434/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/moscartong.wordpress.com/434/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/moscartong.wordpress.com/434/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/moscartong.wordpress.com/434/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/moscartong.wordpress.com/434/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/moscartong.wordpress.com/434/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/moscartong.wordpress.com/434/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/moscartong.wordpress.com/434/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/moscartong.wordpress.com/434/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=moscartong.wordpress.com&amp;blog=10911282&amp;post=434&amp;subd=moscartong&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://moscartong.wordpress.com/2011/02/02/happy-new-year-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e8a2818f344d0fdfe8fed1c226fb017d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">moscartong</media:title>
		</media:content>

		<media:content url="http://s0.wp.com/wp-includes/images/smilies/icon_sad.gif?m=1244996873g" medium="image">
			<media:title type="html">:(</media:title>
		</media:content>

		<media:content url="http://moscartong.files.wordpress.com/2011/02/qq-for-pad_thumb.png" medium="image">
			<media:title type="html">qq for pad</media:title>
		</media:content>
	</item>
	</channel>
</rss>
