<?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>Programming Blog</title>
	<atom:link href="http://www.noppanit.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.noppanit.com</link>
	<description>All about my activities, Ideas and everything.</description>
	<lastBuildDate>Thu, 02 Sep 2010 02:08:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Tutorial : Java Random with scaling</title>
		<link>http://www.noppanit.com/tutorial-java-random-with-scaling/</link>
		<comments>http://www.noppanit.com/tutorial-java-random-with-scaling/#comments</comments>
		<pubDate>Thu, 02 Sep 2010 02:08:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Knowledges]]></category>

		<guid isPermaLink="false">http://www.noppanit.com/?p=583</guid>
		<description><![CDATA[I have been playing around with Random class in Java. Unfortunately, this class doesn&#8217;t provide us some methods we need. Such as, limit the range between -50,50 or get random double from 1 &#8211; 1000. Something like this we can fine tune. I copied some good practice from this website. Here are some examples of [...]]]></description>
		<wfw:commentRss>http://www.noppanit.com/tutorial-java-random-with-scaling/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to : Java add custom annotation</title>
		<link>http://www.noppanit.com/how-to-java-add-custom-annotation/</link>
		<comments>http://www.noppanit.com/how-to-java-add-custom-annotation/#comments</comments>
		<pubDate>Fri, 13 Aug 2010 16:19:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://www.noppanit.com/?p=580</guid>
		<description><![CDATA[From Java 5, there is a new feature called annotation that provided easier to tag or mark class or method. For example, in JUnit we can ust @Test above a method to let the JUnit engine knows that this class is a test case. Moreover, we can also implement our own annotation as well. Reference: [...]]]></description>
		<wfw:commentRss>http://www.noppanit.com/how-to-java-add-custom-annotation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tutorial : J2ME and Netbeans : How to test RecordStore with emulator</title>
		<link>http://www.noppanit.com/tutorial-how-to-test-recordstore-with-emulator/</link>
		<comments>http://www.noppanit.com/tutorial-how-to-test-recordstore-with-emulator/#comments</comments>
		<pubDate>Wed, 11 Aug 2010 15:34:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[J2ME]]></category>
		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://www.noppanit.com/?p=577</guid>
		<description><![CDATA[I&#8217;m using Netbeans 6.9 and implementing RecordStore and I want to test that with emulator. How would I do that? because every time I close the emulator, the state will be deleted or gone in some way. This is my way of doing that. Basically, you just have to actually install the application in the [...]]]></description>
		<wfw:commentRss>http://www.noppanit.com/tutorial-how-to-test-recordstore-with-emulator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>If XML file is too big for AJAX</title>
		<link>http://www.noppanit.com/if-xml-file-is-too-big-for-ajax/</link>
		<comments>http://www.noppanit.com/if-xml-file-is-too-big-for-ajax/#comments</comments>
		<pubDate>Wed, 11 Aug 2010 15:28:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Knowledges]]></category>

		<guid isPermaLink="false">http://www.noppanit.com/?p=575</guid>
		<description><![CDATA[http://www.developer.com/lang/php/article.php/3897851/article.htm I found this article which is quite useful. What will you do if XML file is too big. 1. Transform the XML documents into a character string. 2. Split the character string into equal chunks (400 characters). 3. Save each chunk as a value in an array. 4. Transfer the chunks one by one [...]]]></description>
		<wfw:commentRss>http://www.noppanit.com/if-xml-file-is-too-big-for-ajax/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to: Unmanaged C++ read/write with MSXML</title>
		<link>http://www.noppanit.com/how-to-unmanaged-c-msxml/</link>
		<comments>http://www.noppanit.com/how-to-unmanaged-c-msxml/#comments</comments>
		<pubDate>Sat, 07 Aug 2010 20:34:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.NET]]></category>

		<guid isPermaLink="false">http://www.noppanit.com/?p=568</guid>
		<description><![CDATA[I have been scouting all over the Internet of how to use MSXML to read/write XML. This is the article I found which is very clear. So I won&#8217;t have to write anything else. http://www.informit.com/articles/article.aspx?p=169461 Share on Facebook]]></description>
		<wfw:commentRss>http://www.noppanit.com/how-to-unmanaged-c-msxml/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
