<?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>Roy Jin</title>
	<atom:link href="http://royjin.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://royjin.wordpress.com</link>
	<description>Great effort with Clear Goal</description>
	<lastBuildDate>Tue, 15 Nov 2011 20:10:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='royjin.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Roy Jin</title>
		<link>http://royjin.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://royjin.wordpress.com/osd.xml" title="Roy Jin" />
	<atom:link rel='hub' href='http://royjin.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Plans for jTextarea plugin</title>
		<link>http://royjin.wordpress.com/2010/11/20/plans-for-jtextarea-plugin/</link>
		<comments>http://royjin.wordpress.com/2010/11/20/plans-for-jtextarea-plugin/#comments</comments>
		<pubDate>Sat, 20 Nov 2010 08:14:07 +0000</pubDate>
		<dc:creator>Roy Jin</dc:creator>
				<category><![CDATA[jQuery; jTextarea; Opensource; Javascript;]]></category>

		<guid isPermaLink="false">http://royjin.wordpress.com/?p=435</guid>
		<description><![CDATA[1. Plan to fix the issue about IE ctrl + z which doesn&#8217;t trigger the event to recaculate the word and character counter. 2. Plan to add plugin for different languages&#8217; character and word count. If you guys have any good idea about jTextarea, please contact me via http://roy-jin.appspot.com Thank you for your support! Tagged: [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=royjin.wordpress.com&amp;blog=2832166&amp;post=435&amp;subd=royjin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://royjin.wordpress.com/2010/11/20/plans-for-jtextarea-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7a8a7801b17b389a39197ee699afe78c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">royjin</media:title>
		</media:content>
	</item>
		<item>
		<title>Cleanup .svn folders Java</title>
		<link>http://royjin.wordpress.com/2010/10/07/cleanup-svn-folders-java/</link>
		<comments>http://royjin.wordpress.com/2010/10/07/cleanup-svn-folders-java/#comments</comments>
		<pubDate>Thu, 07 Oct 2010 02:50:15 +0000</pubDate>
		<dc:creator>Roy Jin</dc:creator>
				<category><![CDATA[Freebies]]></category>

		<guid isPermaLink="false">http://royjin.wordpress.com/?p=440</guid>
		<description><![CDATA[I just did quick and simple java code for delete .svn folders and its sub files in the eclipse project directory. You can feel free to copy, paste and modify the code. import java.io.File; public class CleanUp { public static void main(String args[]){ String path = "C:\\cleanup\\"; File root = new File(path); traverseFile(root); } public [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=royjin.wordpress.com&amp;blog=2832166&amp;post=440&amp;subd=royjin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://royjin.wordpress.com/2010/10/07/cleanup-svn-folders-java/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7a8a7801b17b389a39197ee699afe78c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">royjin</media:title>
		</media:content>
	</item>
		<item>
		<title>Caution Singleton in Spring</title>
		<link>http://royjin.wordpress.com/2010/10/07/caution-singleton-in-spring/</link>
		<comments>http://royjin.wordpress.com/2010/10/07/caution-singleton-in-spring/#comments</comments>
		<pubDate>Wed, 06 Oct 2010 20:39:07 +0000</pubDate>
		<dc:creator>Roy Jin</dc:creator>
				<category><![CDATA[JEE]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[singleton]]></category>
		<category><![CDATA[Spring]]></category>

		<guid isPermaLink="false">http://royjin.wordpress.com/?p=436</guid>
		<description><![CDATA[Caution Singleton in Spring When you define a private member in a controller, bear in mind when to choose store the data in the member variable or local variable. The servlet is multi-thread and the member state will be shared by each request but local variable will be created as new. It is quite risky [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=royjin.wordpress.com&amp;blog=2832166&amp;post=436&amp;subd=royjin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://royjin.wordpress.com/2010/10/07/caution-singleton-in-spring/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7a8a7801b17b389a39197ee699afe78c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">royjin</media:title>
		</media:content>
	</item>
		<item>
		<title>jXmlTree Version Two</title>
		<link>http://royjin.wordpress.com/2010/10/01/jxmltree-version-two/</link>
		<comments>http://royjin.wordpress.com/2010/10/01/jxmltree-version-two/#comments</comments>
		<pubDate>Fri, 01 Oct 2010 06:12:28 +0000</pubDate>
		<dc:creator>Roy Jin</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[jQuery Plugin]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://royjin.wordpress.com/?p=431</guid>
		<description><![CDATA[jXmlTree Version Two has been released. Create XML Schema for formatting jXmlTree xml file Add restore expand/collpase funcionality to keep state of previous xml tree structure (based on cookies) Feel free to use it and report any issues please. Click here to view the latest version of jXmlTree Filed under: Freebies Tagged: jQuery, jQuery Plugin, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=royjin.wordpress.com&amp;blog=2832166&amp;post=431&amp;subd=royjin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://royjin.wordpress.com/2010/10/01/jxmltree-version-two/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7a8a7801b17b389a39197ee699afe78c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">royjin</media:title>
		</media:content>
	</item>
		<item>
		<title>Good News for my plugins</title>
		<link>http://royjin.wordpress.com/2010/09/16/good-news-for-my-plugins/</link>
		<comments>http://royjin.wordpress.com/2010/09/16/good-news-for-my-plugins/#comments</comments>
		<pubDate>Thu, 16 Sep 2010 10:07:46 +0000</pubDate>
		<dc:creator>Roy Jin</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[jQuery Plugin]]></category>

		<guid isPermaLink="false">http://royjin.wordpress.com/?p=428</guid>
		<description><![CDATA[It is quite great that my jTextareaCounter has been ranked as Top 10 July 2010 jQuery plugin. http://technologytosoftware.com/best-mostuseful-jquery-plugins-of-july-2010.html Tagged: jQuery, jQuery Plugin<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=royjin.wordpress.com&amp;blog=2832166&amp;post=428&amp;subd=royjin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://royjin.wordpress.com/2010/09/16/good-news-for-my-plugins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7a8a7801b17b389a39197ee699afe78c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">royjin</media:title>
		</media:content>
	</item>
		<item>
		<title>Start for new challenge&#8230;&#8230;&#8230;.</title>
		<link>http://royjin.wordpress.com/2010/09/01/start-for-new-challenge/</link>
		<comments>http://royjin.wordpress.com/2010/09/01/start-for-new-challenge/#comments</comments>
		<pubDate>Wed, 01 Sep 2010 00:55:21 +0000</pubDate>
		<dc:creator>Roy Jin</dc:creator>
				<category><![CDATA[life]]></category>

		<guid isPermaLink="false">http://royjin.wordpress.com/?p=419</guid>
		<description><![CDATA[Start for new challenge&#8230;&#8230;&#8230;. Tagged: life<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=royjin.wordpress.com&amp;blog=2832166&amp;post=419&amp;subd=royjin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://royjin.wordpress.com/2010/09/01/start-for-new-challenge/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7a8a7801b17b389a39197ee699afe78c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">royjin</media:title>
		</media:content>
	</item>
		<item>
		<title>Java STAX Read/Write XML Tutorial</title>
		<link>http://royjin.wordpress.com/2010/08/24/java-stax-readwrite-xml-tutorial/</link>
		<comments>http://royjin.wordpress.com/2010/08/24/java-stax-readwrite-xml-tutorial/#comments</comments>
		<pubDate>Tue, 24 Aug 2010 03:20:48 +0000</pubDate>
		<dc:creator>Roy Jin</dc:creator>
		
		<guid isPermaLink="false">http://royjin.wordpress.com/?p=422</guid>
		<description><![CDATA[Please follow the link to access Java STAX Read/Write XML Tutorial<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=royjin.wordpress.com&amp;blog=2832166&amp;post=422&amp;subd=royjin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://royjin.wordpress.com/2010/08/24/java-stax-readwrite-xml-tutorial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7a8a7801b17b389a39197ee699afe78c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">royjin</media:title>
		</media:content>
	</item>
		<item>
		<title>Java Stax vs Sax</title>
		<link>http://royjin.wordpress.com/2010/08/23/java-stax-vs-sax/</link>
		<comments>http://royjin.wordpress.com/2010/08/23/java-stax-vs-sax/#comments</comments>
		<pubDate>Mon, 23 Aug 2010 02:28:33 +0000</pubDate>
		<dc:creator>Roy Jin</dc:creator>
				<category><![CDATA[JEE]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[SAX]]></category>
		<category><![CDATA[STAX]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://royjin.wordpress.com/?p=414</guid>
		<description><![CDATA[The StAX Java API for XML processing is designed for parsing XML streams, just like the SAX API&#8217;s. The main differences between the StAX and SAX API&#8217;s are: StAX is a &#8220;pull&#8221; API. SAX is a &#8220;push&#8221; API. StAX can do both XML reading and writing. SAX can only do XML reading. It is pretty [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=royjin.wordpress.com&amp;blog=2832166&amp;post=414&amp;subd=royjin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://royjin.wordpress.com/2010/08/23/java-stax-vs-sax/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7a8a7801b17b389a39197ee699afe78c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">royjin</media:title>
		</media:content>

		<media:content url="http://royjin.files.wordpress.com/2010/08/aviary-tutorials-jenkov-com-picture-1.png" medium="image">
			<media:title type="html">Aviary tutorials-jenkov-com Picture 1</media:title>
		</media:content>

		<media:content url="http://royjin.files.wordpress.com/2010/08/aviary-tutorials-jenkov-com-picture-11.png" medium="image">
			<media:title type="html">Aviary tutorials-jenkov-com Picture 1</media:title>
		</media:content>
	</item>
		<item>
		<title>C# Basic Socket Programming Building Proxy Server</title>
		<link>http://royjin.wordpress.com/2010/08/13/c-basic-socket-programming-building-proxy-server/</link>
		<comments>http://royjin.wordpress.com/2010/08/13/c-basic-socket-programming-building-proxy-server/#comments</comments>
		<pubDate>Fri, 13 Aug 2010 02:44:24 +0000</pubDate>
		<dc:creator>Roy Jin</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[.Net]]></category>
		<category><![CDATA[Socket Programming]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://royjin.wordpress.com/?p=402</guid>
		<description><![CDATA[What is Proxy Server? In computer networks, a proxy server is a server (a computer system or an application program) that acts as an intermediary for requests from clients seeking resources from other servers. A client connects to the proxy server, requesting some service, such as a file, connection, web page, or other resource, available [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=royjin.wordpress.com&amp;blog=2832166&amp;post=402&amp;subd=royjin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://royjin.wordpress.com/2010/08/13/c-basic-socket-programming-building-proxy-server/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7a8a7801b17b389a39197ee699afe78c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">royjin</media:title>
		</media:content>

		<media:content url="http://www.home-network-help.com/images/anonymous-proxy-server-network.jpg" medium="image">
			<media:title type="html">Proxy Server</media:title>
		</media:content>
	</item>
		<item>
		<title>Release jQuery Textarea Counter Version 2</title>
		<link>http://royjin.wordpress.com/2010/07/16/release-jquery-textarea-counter-version-2/</link>
		<comments>http://royjin.wordpress.com/2010/07/16/release-jquery-textarea-counter-version-2/#comments</comments>
		<pubDate>Fri, 16 Jul 2010 03:39:56 +0000</pubDate>
		<dc:creator>Roy Jin</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[jQuery Plugin]]></category>

		<guid isPermaLink="false">http://royjin.wordpress.com/?p=392</guid>
		<description><![CDATA[Check out latest version 2 jTextareaCounter. http://roy-jin.appspot.com/jsp/textareaCounter.jsp This version gives you more flexible display format config and call back function to get counter data. Filed under: Freebies Tagged: Freebies, jQuery, jQuery Plugin<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=royjin.wordpress.com&amp;blog=2832166&amp;post=392&amp;subd=royjin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://royjin.wordpress.com/2010/07/16/release-jquery-textarea-counter-version-2/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7a8a7801b17b389a39197ee699afe78c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">royjin</media:title>
		</media:content>
	</item>
		<item>
		<title>Good Javascript Date Format Resource</title>
		<link>http://royjin.wordpress.com/2010/07/09/good-javascript-date-format-resource/</link>
		<comments>http://royjin.wordpress.com/2010/07/09/good-javascript-date-format-resource/#comments</comments>
		<pubDate>Thu, 08 Jul 2010 22:32:36 +0000</pubDate>
		<dc:creator>Roy Jin</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://royjin.wordpress.com/?p=389</guid>
		<description><![CDATA[Link [http://blog.stevenlevithan.com/archives/date-time-format] Overview: Although JavaScript provides a bunch of methods for getting and setting parts of a date object, it lacks a simple way to format dates and times according to a user-specified mask. There are a few scripts out there which provide this functionality, but I&#8217;ve never seen one that worked well for me… [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=royjin.wordpress.com&amp;blog=2832166&amp;post=389&amp;subd=royjin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://royjin.wordpress.com/2010/07/09/good-javascript-date-format-resource/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7a8a7801b17b389a39197ee699afe78c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">royjin</media:title>
		</media:content>
	</item>
		<item>
		<title>jQuery ajax local file access xml</title>
		<link>http://royjin.wordpress.com/2010/07/02/jquery-ajax-local-file-access-xml/</link>
		<comments>http://royjin.wordpress.com/2010/07/02/jquery-ajax-local-file-access-xml/#comments</comments>
		<pubDate>Thu, 01 Jul 2010 22:56:28 +0000</pubDate>
		<dc:creator>Roy Jin</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://royjin.wordpress.com/?p=385</guid>
		<description><![CDATA[Some users reported that they can not view XML trees from IE, Chrome but can view my demo on the website. This reminds me of  XML security permission issues. Now the issue has been fixed for IE but not for chrome. Researching on different posts, seems this is a google chrome bug itself. Latest download [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=royjin.wordpress.com&amp;blog=2832166&amp;post=385&amp;subd=royjin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://royjin.wordpress.com/2010/07/02/jquery-ajax-local-file-access-xml/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7a8a7801b17b389a39197ee699afe78c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">royjin</media:title>
		</media:content>
	</item>
		<item>
		<title>Java annotation practical tutorials</title>
		<link>http://royjin.wordpress.com/2010/06/30/java-annotation-practical-tutorials/</link>
		<comments>http://royjin.wordpress.com/2010/06/30/java-annotation-practical-tutorials/#comments</comments>
		<pubDate>Tue, 29 Jun 2010 23:06:41 +0000</pubDate>
		<dc:creator>Roy Jin</dc:creator>
				<category><![CDATA[J2SE]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[annotation]]></category>
		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://royjin.wordpress.com/?p=376</guid>
		<description><![CDATA[Concepts: Java Annotation is only for JDK5 or higher Annotations are like meta-tags that you can add to your code and apply them to package declarations, type declarations, constructors, methods, fields, parameters, and variables. Annotation-based development relieves Java developers from the pain of cumbersome configuration. Simply speaking, annotation is a mechanism for associating a meta-tag [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=royjin.wordpress.com&amp;blog=2832166&amp;post=376&amp;subd=royjin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://royjin.wordpress.com/2010/06/30/java-annotation-practical-tutorials/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7a8a7801b17b389a39197ee699afe78c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">royjin</media:title>
		</media:content>
	</item>
		<item>
		<title>jQuery Text Selection Google Translate plugin</title>
		<link>http://royjin.wordpress.com/2010/06/23/jquery-text-selection-google-translate-plugin/</link>
		<comments>http://royjin.wordpress.com/2010/06/23/jquery-text-selection-google-translate-plugin/#comments</comments>
		<pubDate>Wed, 23 Jun 2010 02:28:43 +0000</pubDate>
		<dc:creator>Roy Jin</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Googl ajax API]]></category>
		<category><![CDATA[Google Translate API]]></category>
		<category><![CDATA[jQuery Plugin]]></category>

		<guid isPermaLink="false">http://royjin.wordpress.com/?p=349</guid>
		<description><![CDATA[Select text and display translated language by using google translate ajax api. For showcase please click here  [Demo] For documentation: click here [Link] For Download: click here [Download] Filed under: Freebies, jQuery Tagged: Googl ajax API, Google Translate API, jQuery, jQuery Plugin<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=royjin.wordpress.com&amp;blog=2832166&amp;post=349&amp;subd=royjin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://royjin.wordpress.com/2010/06/23/jquery-text-selection-google-translate-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7a8a7801b17b389a39197ee699afe78c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">royjin</media:title>
		</media:content>

		<media:content url="http://royjin.files.wordpress.com/2010/06/demo.png" medium="image">
			<media:title type="html">demo</media:title>
		</media:content>
	</item>
		<item>
		<title>SVG Image Zoom and Drag Demo</title>
		<link>http://royjin.wordpress.com/2010/06/21/svg-image-zoom-and-drag-demo/</link>
		<comments>http://royjin.wordpress.com/2010/06/21/svg-image-zoom-and-drag-demo/#comments</comments>
		<pubDate>Mon, 21 Jun 2010 05:17:50 +0000</pubDate>
		<dc:creator>Roy Jin</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[SVG]]></category>

		<guid isPermaLink="false">http://royjin.wordpress.com/?p=342</guid>
		<description><![CDATA[In this tutorial, we will talk about how to zoom and drag svg. For demo, please click [DEMO] Additional Plugins Required jQuery SVG Plugin: http://keith-wood.name/svg.html jQuery mouse wheel event plugin: http://brandonaaron.net/code/mousewheel/docs jQuery drag event plugin: http://threedubmedia.com Explain: Create SVG Group. Add any svg images, texts or shapes inside group. When mousewheel event was fired, change [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=royjin.wordpress.com&amp;blog=2832166&amp;post=342&amp;subd=royjin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://royjin.wordpress.com/2010/06/21/svg-image-zoom-and-drag-demo/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7a8a7801b17b389a39197ee699afe78c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">royjin</media:title>
		</media:content>
	</item>
		<item>
		<title>jXMLTree jQuery Plugin (XML menu Tree Generating)</title>
		<link>http://royjin.wordpress.com/2010/06/18/jxmltree-jquery-plugin-xml-menu-tree-generating/</link>
		<comments>http://royjin.wordpress.com/2010/06/18/jxmltree-jquery-plugin-xml-menu-tree-generating/#comments</comments>
		<pubDate>Fri, 18 Jun 2010 03:30:55 +0000</pubDate>
		<dc:creator>Roy Jin</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[jQuery Plugin]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://royjin.wordpress.com/?p=332</guid>
		<description><![CDATA[I had created a jQuer plugin called: jXMLTree. jXMLTree will help you to generate Menu Tree based on predefined XML. Easy and Flexible. Free to download jQuery Plugin: http://plugins.jquery.com/project/jxmltree Demo: http://roy-jin.appspot.com/jsp/jqueryXmlMenuTreeDemo.jsp Download: http://roy-jin.appspot.com/jsp/jqueryXmlMenuTreeDemo.jsp Filed under: Freebies, jQuery Tagged: Freebies, jQuery Plugin, xml<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=royjin.wordpress.com&amp;blog=2832166&amp;post=332&amp;subd=royjin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://royjin.wordpress.com/2010/06/18/jxmltree-jquery-plugin-xml-menu-tree-generating/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7a8a7801b17b389a39197ee699afe78c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">royjin</media:title>
		</media:content>

		<media:content url="http://royjin.files.wordpress.com/2010/06/screenshot.jpg" medium="image">
			<media:title type="html">screenshot</media:title>
		</media:content>
	</item>
		<item>
		<title>About ASP.NET 2.0 app_offline.htm</title>
		<link>http://royjin.wordpress.com/2010/06/16/about-asp-net-2-0-app_offline-htm/</link>
		<comments>http://royjin.wordpress.com/2010/06/16/about-asp-net-2-0-app_offline-htm/#comments</comments>
		<pubDate>Wed, 16 Jun 2010 03:02:10 +0000</pubDate>
		<dc:creator>Roy Jin</dc:creator>
				<category><![CDATA[ASP]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[asp.net]]></category>

		<guid isPermaLink="false">http://royjin.wordpress.com/?p=324</guid>
		<description><![CDATA[About app_offline Basically, if you place a file with this name in the root of a web application directory, ASP.NET 2.0 will shut-down the application, unload the application domain from the server, and stop processing any new incoming requests for that application. ASP.NET will also then respond to all requests for dynamic pages in the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=royjin.wordpress.com&amp;blog=2832166&amp;post=324&amp;subd=royjin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://royjin.wordpress.com/2010/06/16/about-asp-net-2-0-app_offline-htm/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7a8a7801b17b389a39197ee699afe78c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">royjin</media:title>
		</media:content>
	</item>
		<item>
		<title>XSLT test questions from uni</title>
		<link>http://royjin.wordpress.com/2010/06/14/xslt-test-questions-from-uni/</link>
		<comments>http://royjin.wordpress.com/2010/06/14/xslt-test-questions-from-uni/#comments</comments>
		<pubDate>Mon, 14 Jun 2010 02:56:17 +0000</pubDate>
		<dc:creator>Roy Jin</dc:creator>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[xml]]></category>
		<category><![CDATA[xslt]]></category>

		<guid isPermaLink="false">http://royjin.wordpress.com/?p=308</guid>
		<description><![CDATA[Question 1: Explain: Start from root: xml node match with node a write &#60;b&#62; down to node c write &#60;u&#62; get value called Hello add end tag &#60;/u&#62; add end tag &#60;/b&#62; Done math with node d write &#60;i&#62; down to /xml/a match with a write &#60;b&#62; match with c write &#60;u&#62; get value called [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=royjin.wordpress.com&amp;blog=2832166&amp;post=308&amp;subd=royjin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://royjin.wordpress.com/2010/06/14/xslt-test-questions-from-uni/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7a8a7801b17b389a39197ee699afe78c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">royjin</media:title>
		</media:content>

		<media:content url="http://royjin.files.wordpress.com/2010/06/xslt_test1.jpg" medium="image">
			<media:title type="html">xslt_test1</media:title>
		</media:content>

		<media:content url="http://royjin.files.wordpress.com/2010/06/xslt_test1_tree.jpg" medium="image">
			<media:title type="html">xslt_test1_tree</media:title>
		</media:content>

		<media:content url="http://royjin.files.wordpress.com/2010/06/xslt_test21.jpg" medium="image">
			<media:title type="html">xslt_test2</media:title>
		</media:content>

		<media:content url="http://royjin.files.wordpress.com/2010/06/xslt_test2_tree.jpg" medium="image">
			<media:title type="html">xslt_test2_tree</media:title>
		</media:content>
	</item>
		<item>
		<title>jQuery Textarea Characters Limitation and Counter</title>
		<link>http://royjin.wordpress.com/2010/06/11/jquery-textarea-characters-limitation-and-counter/</link>
		<comments>http://royjin.wordpress.com/2010/06/11/jquery-textarea-characters-limitation-and-counter/#comments</comments>
		<pubDate>Fri, 11 Jun 2010 08:16:26 +0000</pubDate>
		<dc:creator>Roy Jin</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[jQuery Plugin]]></category>

		<guid isPermaLink="false">http://royjin.wordpress.com/?p=303</guid>
		<description><![CDATA[jQuery Textarea Characters Limitation and Counter<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=royjin.wordpress.com&amp;blog=2832166&amp;post=303&amp;subd=royjin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://royjin.wordpress.com/2010/06/11/jquery-textarea-characters-limitation-and-counter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7a8a7801b17b389a39197ee699afe78c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">royjin</media:title>
		</media:content>
	</item>
		<item>
		<title>Online CSS Tab and Style Generator</title>
		<link>http://royjin.wordpress.com/2010/06/11/online-css-tab-and-style-generator/</link>
		<comments>http://royjin.wordpress.com/2010/06/11/online-css-tab-and-style-generator/#comments</comments>
		<pubDate>Fri, 11 Jun 2010 00:27:22 +0000</pubDate>
		<dc:creator>Roy Jin</dc:creator>
				<category><![CDATA[Freebies]]></category>

		<guid isPermaLink="false">http://royjin.wordpress.com/?p=299</guid>
		<description><![CDATA[Free Online CSS Tab and Style Generator.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=royjin.wordpress.com&amp;blog=2832166&amp;post=299&amp;subd=royjin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://royjin.wordpress.com/2010/06/11/online-css-tab-and-style-generator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7a8a7801b17b389a39197ee699afe78c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">royjin</media:title>
		</media:content>
	</item>
	</channel>
</rss>
