<?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>Mingch</title>
	<atom:link href="http://loongest.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://loongest.com</link>
	<description></description>
	<lastBuildDate>Thu, 17 May 2012 06:00:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Missing remote branch in git bash</title>
		<link>http://loongest.com/uncategorized/missing-remote-branch-in-git-bash/</link>
		<comments>http://loongest.com/uncategorized/missing-remote-branch-in-git-bash/#comments</comments>
		<pubDate>Thu, 17 May 2012 06:00:19 +0000</pubDate>
		<dc:creator>loongest</dc:creator>
				<category><![CDATA[Exception & Solution]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://loongest.com/?p=3375</guid>
		<description><![CDATA[Today i&#8217;m frustrated why my git bash cannot see the remote branches. After consult my colleagues and the solution found. Solution First ensure the remote branch is exist. &#160; git ls-remote &#8211;heads origin &#160; Run the command &#160; $ git gc &#8211;prune=now $ git pull &#160; Checkout again &#160; $ git branch -a &#160;]]></description>
		<wfw:commentRss>http://loongest.com/uncategorized/missing-remote-branch-in-git-bash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript debug</title>
		<link>http://loongest.com/javascript/javascript-debug/</link>
		<comments>http://loongest.com/javascript/javascript-debug/#comments</comments>
		<pubDate>Thu, 26 Apr 2012 16:04:03 +0000</pubDate>
		<dc:creator>loongest</dc:creator>
				<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://loongest.com/?p=3336</guid>
		<description><![CDATA[Do you know how to debug in javascript? console.log(), firebug are the common used. Here i show you to use debugger. . &#160; function callme&#40;&#41; &#123; debugger; &#160; &#160;var i = 10; &#160; &#160;var b = i * 10; &#160; &#160;return b; &#125; &#160; function callhim&#40;&#41; &#123; &#160; &#160;var x = 20; &#160; &#160;var y [...]]]></description>
		<wfw:commentRss>http://loongest.com/javascript/javascript-debug/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ExtJs V4 &#8211; XType</title>
		<link>http://loongest.com/extjs/extjs-v4-xtype/</link>
		<comments>http://loongest.com/extjs/extjs-v4-xtype/#comments</comments>
		<pubDate>Sat, 03 Mar 2012 12:24:29 +0000</pubDate>
		<dc:creator>loongest</dc:creator>
				<category><![CDATA[ExtJs]]></category>

		<guid isPermaLink="false">http://loongest.com/?p=2760</guid>
		<description><![CDATA[XType is a short-hand to create the component that registry under Ext.Component list. You can see what are the available list under this link. Example to create a button &#160; var buttonPanel = Ext.create&#40;&#8216;Ext.panel.Panel&#8217;, &#123; &#160; &#160; renderTo : Ext.getBody&#40;&#41;, &#160; &#160; title : &#34;My Panel&#34;, height : 300, width : 300 &#125;&#41;; &#160; buttonPanel.add&#40; [...]]]></description>
		<wfw:commentRss>http://loongest.com/extjs/extjs-v4-xtype/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ExtJs V4 &#8211; Template &amp; XTemplate</title>
		<link>http://loongest.com/extjs/extjs-v4-template-xtemplate/</link>
		<comments>http://loongest.com/extjs/extjs-v4-template-xtemplate/#comments</comments>
		<pubDate>Thu, 01 Mar 2012 15:48:06 +0000</pubDate>
		<dc:creator>loongest</dc:creator>
				<category><![CDATA[ExtJs]]></category>

		<guid isPermaLink="false">http://loongest.com/?p=2731</guid>
		<description><![CDATA[Template or XTemplate is content information that formatted in html fragment. The benefit of using (X)Template allow you to design more complicated UI and pass in the dynamic data. Generally 2 pattern data are supported, which is javascript array and json data. Supported Format Curly bracket Curly bracket act as the placeholder just like other [...]]]></description>
		<wfw:commentRss>http://loongest.com/extjs/extjs-v4-template-xtemplate/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ExtJS v4 &#8211; Ext Container</title>
		<link>http://loongest.com/extjs/extjs-v4-ext-container/</link>
		<comments>http://loongest.com/extjs/extjs-v4-ext-container/#comments</comments>
		<pubDate>Tue, 28 Feb 2012 17:30:00 +0000</pubDate>
		<dc:creator>loongest</dc:creator>
				<category><![CDATA[ExtJs]]></category>

		<guid isPermaLink="false">http://loongest.com/?p=2763</guid>
		<description><![CDATA[Container is the component that can contain other elements, the following example show some basic knowledge how the container works. Container &#8211; basic creation &#160; Ext.onReady&#40;function&#40;&#41;&#123; &#160; &#160; &#160; &#160; var x = Ext.create&#40;&#8216;Ext.container.Container&#8217;, &#123; &#160; &#160; &#160; &#160; &#160; &#160; renderTo : Ext.getBody&#40;&#41;, &#160; &#160; &#160; &#160; &#160; &#160; title &#160; &#160;: &#8216;Getting started [...]]]></description>
		<wfw:commentRss>http://loongest.com/extjs/extjs-v4-ext-container/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ExtJs V4 &#8211; Panel</title>
		<link>http://loongest.com/extjs/extjs-v4-panel/</link>
		<comments>http://loongest.com/extjs/extjs-v4-panel/#comments</comments>
		<pubDate>Mon, 27 Feb 2012 16:56:46 +0000</pubDate>
		<dc:creator>loongest</dc:creator>
				<category><![CDATA[ExtJs]]></category>

		<guid isPermaLink="false">http://loongest.com/?p=2767</guid>
		<description><![CDATA[Panel is a subclass of container, that allow the element such as button, label, textfield and etc put inside and arrange with layout. Placeholder Panel offer 4 major area to place your component. 1) Tools 2) Toolbar &#8211; It support 4 dimension. 3) Content 4) Button How to create panel The sample code below demo [...]]]></description>
		<wfw:commentRss>http://loongest.com/extjs/extjs-v4-panel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ExtJs v4 &#8211; Class System</title>
		<link>http://loongest.com/extjs/extjs-v4-class-system/</link>
		<comments>http://loongest.com/extjs/extjs-v4-class-system/#comments</comments>
		<pubDate>Wed, 22 Feb 2012 16:45:27 +0000</pubDate>
		<dc:creator>loongest</dc:creator>
				<category><![CDATA[ExtJs]]></category>

		<guid isPermaLink="false">http://loongest.com/?p=2848</guid>
		<description><![CDATA[The following example cover only basic class system creation. For more information read the extJs documentation. Class creation &#160; &#160;&#160;&#160;Ext.define(&#8216; namespace &#8216;, { properties/method }, function callback) &#160;&#160;&#160;namespace &#8211; unique identifiers or symbols that associated with the environment. &#160;&#160;&#160;properties &#8211; class properties and function &#160;&#160;&#160;function(optional) &#8211; callback function that run after the class is created. [...]]]></description>
		<wfw:commentRss>http://loongest.com/extjs/extjs-v4-class-system/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ExtJs v4 – Elements</title>
		<link>http://loongest.com/extjs/extjs-v4-%e2%80%93-elements/</link>
		<comments>http://loongest.com/extjs/extjs-v4-%e2%80%93-elements/#comments</comments>
		<pubDate>Mon, 20 Feb 2012 17:30:59 +0000</pubDate>
		<dc:creator>loongest</dc:creator>
				<category><![CDATA[ExtJs]]></category>

		<guid isPermaLink="false">http://loongest.com/?p=2668</guid>
		<description><![CDATA[Let&#8217;s start playing with the Ext.Element. Element refer to the DOM element, basically we can access the dom element by calling Ext.get(&#8221;) or if the element is attach by other component then we used getEl() method or short-hand with referring its properties .el Prepare the index file index.html If you dont want to host the [...]]]></description>
		<wfw:commentRss>http://loongest.com/extjs/extjs-v4-%e2%80%93-elements/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript undefined</title>
		<link>http://loongest.com/javascript/javascript-undefined/</link>
		<comments>http://loongest.com/javascript/javascript-undefined/#comments</comments>
		<pubDate>Mon, 20 Feb 2012 15:20:34 +0000</pubDate>
		<dc:creator>loongest</dc:creator>
				<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://loongest.com/?p=2631</guid>
		<description><![CDATA[Javascript null and undefined is always confuse, i&#8217;m gonna to used google chrome&#8217;s console to try out what i can verify it. Press ctr + shift + J to launch google console. Declare variable From google chrome console define a variable immediate will show &#8216;undefined&#8217; &#62; var test; undefined now we try again assign &#8220;hello&#8221; [...]]]></description>
		<wfw:commentRss>http://loongest.com/javascript/javascript-undefined/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ExtJs v4 – Project directory structure</title>
		<link>http://loongest.com/extjs/extjs-v4-%e2%80%93-project-directory-structure/</link>
		<comments>http://loongest.com/extjs/extjs-v4-%e2%80%93-project-directory-structure/#comments</comments>
		<pubDate>Fri, 03 Feb 2012 13:55:39 +0000</pubDate>
		<dc:creator>loongest</dc:creator>
				<category><![CDATA[ExtJs]]></category>

		<guid isPermaLink="false">http://loongest.com/?p=2495</guid>
		<description><![CDATA[The recommended project directory is describe as follow. &#160; &#91; project_folder &#93; &#160; &#160; &#160; &#160; + index.html &#160; &#160; &#160; &#160; &#62; &#91; application_folder &#93; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;&#62; &#91; models_folder &#160; &#160; &#160;&#93; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;&#62; &#91; views_folder &#160; &#160; &#160; &#93; &#160; &#160; [...]]]></description>
		<wfw:commentRss>http://loongest.com/extjs/extjs-v4-%e2%80%93-project-directory-structure/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

