<?xml version="1.0" encoding="UTF-8"?>
<rss version="0.92">
<channel>
	<title>JavaScript Infected</title>
	<link>http://www.julianwong.net/blog</link>
	<description>Do everything with javascript</description>
	<lastBuildDate>Sat, 15 May 2010 05:22:31 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>When my mind is made up?</title>
		<description><![CDATA[Just saw the video from hulu which is same as http://www.theartistsden.com/episodes/swellseason.shtml
When your mind is made up,
When your mind is made up,
There&#8217;s no point try to change it,
There&#8217;s no point try to stop it,
There&#8217;s no point try to talking,
There&#8217;s no point try to fight it.
So what have I made up~?
Have been working quite hard for the [...]]]></description>
		<link>http://www.julianwong.net/blog/2010/05/when-my-mind-is-made-up/</link>
			</item>
	<item>
		<title>My damn last minute habit</title>
		<description><![CDATA[星期日就要飛. 行理未拾, 房未拾, 野未買曬, data 未backup. 我應該都係會pk ga la&#8230;&#8230;
May the god of last minute be with me!
]]></description>
		<link>http://www.julianwong.net/blog/2010/03/my-damn-last-minute-habit/</link>
			</item>
	<item>
		<title>It&#8217;s been a long time&#8230;</title>
		<description><![CDATA[好像已經有兩年多沒寫下什麼. 之前blogger 的blog 都已經荒廢了. 今天又想從新再寫自己的事. 2009 年, 行屍走肉的一年. 工作上沒方向, 沒前進, 沒後退. 僵著腿站著, 一動不動. 生活更是不知所謂, 總是找一些東西讓自己沈溺, 什麼都不去想, 讓烏雲把自己遮蓋, 消失於世上&#8230;為什麼!? 我也不能明白&#8230;.
現在座下來, 重新再思考自己的事, 感覺很不一樣. 久違了的msn&#8230;.我再次看到frd list 上的朋友和他們的status, 找人聊天再次讓自己跟別人連繫上. 希望能把烏雲抺去一點. 希望再給自己一點動力, 重新上路.
還有一個星期就要到美國, 感覺有點像按reset button. 29 歲去一個完全陌生的地方, 帶住135磅肥肉同二三十公斤行李, 沒有其他&#8230; 現在還不算胖, 來一個up side down 的轉變, 應該可以吧.
]]></description>
		<link>http://www.julianwong.net/blog/2010/03/its-been-a-long-time/</link>
			</item>
	<item>
		<title>Dumping Firefox XUL object</title>
		<description><![CDATA[I am not sure is it correct to call it XUL object, what I mean to do is transversing javascript object. It sounds silly as we got firebug but it makes sense when working on firefox addon where the script debugger in firebug doesn&#8217;t work for javascript running in chrome.
There is a XUL reference in [...]]]></description>
		<link>http://www.julianwong.net/blog/2009/11/dumping-firefox-xul-object/</link>
			</item>
	<item>
		<title>Rackspace cloud hosting (256MB Ram) and wordpress performance issue</title>
		<description><![CDATA[Any one out there is using rackspace cloud hosting with 256MB Ram and hosting a wordpress? I was doing fine with it, but after I install the subversion on the Fedora VM, I found my apache become very very slow and take over 60s to serve a request&#8230;. 
Actually this is the second time for [...]]]></description>
		<link>http://www.julianwong.net/blog/2009/10/rackspace-cloud-hosting-256mb-ram-and-wordpress-performance-issu/</link>
			</item>
	<item>
		<title>Nice way to check dom node className</title>
		<description><![CDATA[It happen quite often to me that I need to check the element className in the event handler and to determine what function to trigger. element.className contains all the class name separated by space. e.g. &#8220;classA classB classCCC&#8221;. So it is bad to check the className like:
if (element.className === "classA") {...}
 or
if (element.className.indexOf("classC") > -1) [...]]]></description>
		<link>http://www.julianwong.net/blog/2009/10/nice-way-to-check-dom-node-classname/</link>
			</item>
	<item>
		<title>Detecting page dimension with Javascript</title>
		<description><![CDATA[I just come to a problem that need to create a canvas element the will cover on top of the whole page. This prevented me from using style.width and style.height as the drawing will become scaled by the style setting. So I have to calculate the exact page width and height then assign it to [...]]]></description>
		<link>http://www.julianwong.net/blog/2009/10/detectinge-page-dimension-with-javascript/</link>
			</item>
	<item>
		<title>Just found i was wrong on MACD</title>
		<description><![CDATA[It is common to see financial site providing MACD in (12,26,9). I was so confused on what those number mean and finally I resolved it today.
12 &#8211; is the 12 day moving average of the stock
26 &#8211; is the 26 day moving average of the stock
9 &#8211; is the 9 day moving average of the [...]]]></description>
		<link>http://www.julianwong.net/blog/2009/09/just-found-i-was-wrong-on-macd/</link>
			</item>
	<item>
		<title>Using custom event on jQuery</title>
		<description><![CDATA[When doing Javascript, it is common to handle different DOM event like click, mouseover, keydown&#8230; This is cool that with the DOM triggering those events, we can create custom handling / behaviors on it. Say, when user click on the button, a edit panel fade in. But this is not good enough when we have [...]]]></description>
		<link>http://www.julianwong.net/blog/2009/09/using-custom-event-on-jquery/</link>
			</item>
	<item>
		<title>A classname to save, using negative magin to remove the &quot;first&quot; / &quot;last&quot; class in your list</title>
		<description><![CDATA[It is common to create a list with a separator in between like this:
Item 1 &#124; Item 2 &#124; Item 3
One common way of doing this is create a list (ol / ul) then apply the border-left and add a class &#8220;first&#8221; to the first li setting the border to 0px. This is good, but [...]]]></description>
		<link>http://www.julianwong.net/blog/2009/08/a-classname-to-save-using-negative-magin-to-remove-the-first-last-in-your-list/</link>
			</item>
</channel>
</rss>
