<?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>programcreek.com &#124; programcreek.com</title>
	<atom:link href="http://www.programcreek.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.programcreek.com</link>
	<description>More Pictures, Less Words</description>
	<lastBuildDate>Fri, 10 May 2013 03:50:52 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Collection of Natural Language Processing Tools</title>
		<link>http://www.programcreek.com/2013/05/collection-of-natural-language-processing-tools/</link>
		<comments>http://www.programcreek.com/2013/05/collection-of-natural-language-processing-tools/#comments</comments>
		<pubDate>Tue, 07 May 2013 01:28:22 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Software Engineering]]></category>

		<guid isPermaLink="false">http://www.programcreek.com/?p=8682</guid>
		<description><![CDATA[Notes of NLP tools. Only some of the interested functions are listed for each tool. OpenNLP: a Java package to do text tokenization, part-of-speech tagging, chunking, etc. ScalaNLP: NLP and machine learning Snowball: a stemmer, support C and Java. MALLET: a Java-based package for statistical natural language processing, document classification, &#8230;]]></description>
		<wfw:commentRss>http://www.programcreek.com/2013/05/collection-of-natural-language-processing-tools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How “Hello World” Gets Printed? &#8211; A Complete Life Cycle</title>
		<link>http://www.programcreek.com/2013/04/how-hello-world-gets-printed-a-complete-life-cycle/</link>
		<comments>http://www.programcreek.com/2013/04/how-hello-world-gets-printed-a-complete-life-cycle/#comments</comments>
		<pubDate>Wed, 01 May 2013 03:59:36 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Others]]></category>

		<guid isPermaLink="false">http://www.programcreek.com/?p=8654</guid>
		<description><![CDATA[I posted this question on Stack Overflow today because the complete life cycle of a simple program is interesting. I will keep updating the post by using answers/comments to make it more complete and correct my mistake. I surely will up vote any answer/comment that makes sense. Please up vote &#8230;]]></description>
		<wfw:commentRss>http://www.programcreek.com/2013/04/how-hello-world-gets-printed-a-complete-life-cycle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Frequently Used Methods of Java HashMap</title>
		<link>http://www.programcreek.com/2013/04/frequently-used-methods-of-java-hashmap/</link>
		<comments>http://www.programcreek.com/2013/04/frequently-used-methods-of-java-hashmap/#comments</comments>
		<pubDate>Tue, 30 Apr 2013 21:00:51 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Collections]]></category>
		<category><![CDATA[Good Code]]></category>
		<category><![CDATA[frequently used methods]]></category>
		<category><![CDATA[HashMap]]></category>

		<guid isPermaLink="false">http://www.programcreek.com/?p=8642</guid>
		<description><![CDATA[HashMap is very useful when a counter is required. HashMap&#60;String, Integer&#62; countMap = new HashMap&#60;String, Integer&#62;&#40;&#41;; &#160; //.... a lot of a's like the following if&#40;countMap.keySet&#40;&#41;.contains&#40;a&#41;&#41;&#123; countMap.put&#40;a, countMap.get&#40;a&#41;+1&#41;; &#125;else&#123; countMap.put&#40;a, 1&#41;; &#125; 1. Loop Through HashMap Iterator it = mp.entrySet&#40;&#41;.iterator&#40;&#41;; while &#40;it.hasNext&#40;&#41;&#41; &#123; Map.Entry pairs = &#40;Map.Entry&#41;it.next&#40;&#41;; System.out.println&#40;pairs.getKey&#40;&#41; + &#34; &#8230;]]></description>
		<wfw:commentRss>http://www.programcreek.com/2013/04/frequently-used-methods-of-java-hashmap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is Servlet Container?</title>
		<link>http://www.programcreek.com/2013/04/what-is-servlet-container/</link>
		<comments>http://www.programcreek.com/2013/04/what-is-servlet-container/#comments</comments>
		<pubDate>Sun, 28 Apr 2013 02:23:56 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Others]]></category>

		<guid isPermaLink="false">http://www.programcreek.com/?p=8601</guid>
		<description><![CDATA[In this post, I write a little bit about the basic ideas of web server, Servlet container and its relation with JVM. I want to show that Servlet container is nothing more than a Java program. 1. What is a Web Server? To know what is a Servlet container, we &#8230;]]></description>
		<wfw:commentRss>http://www.programcreek.com/2013/04/what-is-servlet-container/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Constructors of Sub and Super Classes in Java?</title>
		<link>http://www.programcreek.com/2013/04/what-are-the-frequently-asked-questions-about-constructors-in-java/</link>
		<comments>http://www.programcreek.com/2013/04/what-are-the-frequently-asked-questions-about-constructors-in-java/#comments</comments>
		<pubDate>Mon, 22 Apr 2013 02:55:16 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Classes & Interfaces]]></category>

		<guid isPermaLink="false">http://www.programcreek.com/?p=8567</guid>
		<description><![CDATA[This post summarizes some commonly asked questions from Stackoverflow.com. 1. Why creating an object of the sub class invokes also the constructor of the super class? class Super &#123; String s; &#160; public Super&#40;&#41;&#123; System.out.println&#40;&#34;Super&#34;&#41;; &#125; &#125; &#160; public class Sub extends Super &#123; &#160; public Sub&#40;&#41;&#123; System.out.println&#40;&#34;Sub&#34;&#41;; &#125; &#160; &#8230;]]></description>
		<wfw:commentRss>http://www.programcreek.com/2013/04/what-are-the-frequently-asked-questions-about-constructors-in-java/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Convert Array to ArrayList in Java?</title>
		<link>http://www.programcreek.com/2013/04/how-to-convert-array-to-arraylist-in-java/</link>
		<comments>http://www.programcreek.com/2013/04/how-to-convert-array-to-arraylist-in-java/#comments</comments>
		<pubDate>Wed, 17 Apr 2013 03:15:07 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Collections]]></category>

		<guid isPermaLink="false">http://www.programcreek.com/?p=8475</guid>
		<description><![CDATA[This is a question that is worth to take a look for myself, because it is one of the top viewed and voted questions in stackoverflow. The one who accidentally asks such a question could gain a lot of reputation which would enable him to do a lot of stuff &#8230;]]></description>
		<wfw:commentRss>http://www.programcreek.com/2013/04/how-to-convert-array-to-arraylist-in-java/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
