<?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>The Code Pilgrim&#039;s Progress</title>
	<atom:link href="http://christyjohn.org/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://christyjohn.org/blog</link>
	<description>One step closer to coding enlightenment.</description>
	<lastBuildDate>Mon, 06 Sep 2010 11:31:48 +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>Project Euler Problem 2</title>
		<link>http://christyjohn.org/blog/2010/09/project-euler-problem-2/</link>
		<comments>http://christyjohn.org/blog/2010/09/project-euler-problem-2/#comments</comments>
		<pubDate>Fri, 03 Sep 2010 12:38:51 +0000</pubDate>
		<dc:creator>christyjohn</dc:creator>
				<category><![CDATA[Project Euler]]></category>
		<category><![CDATA[Project Euler Problem 2]]></category>

		<guid isPermaLink="false">http://christyjohn.org/blog/?p=228</guid>
		<description><![CDATA[[NB: This series is here for my own reference. It is not meant as a help for others who are trying to solve problems at Project Euler. Please don't use it so because it will foil the purpose and also I don't guarantee the quality of the answers.] Java public class Euler2 { public static [...]]]></description>
			<content:encoded><![CDATA[<p><strong>[NB: This series is here for my own reference. It is not meant as a help for others who are trying to solve problems at <a href="http://projecteuler.net/" target="_blank">Project Euler</a>.  Please don't use it so because it will foil the purpose and  also I don't guarantee the quality of the answers.]</strong></p>
<p><strong>Java</strong></p>
<pre class="brush: java;">
public class Euler2
{
	public static void main(String[] args)
	{
		int sum = 0;
		int i = 0;
		int k = 1;
		for(int fib = 0; fib &lt; 4000000; fib = i + k)
		{
			i = k;
			k = fib;
			if(fib % 2 == 0)
				sum += fib;
		}
		System.out.println(&quot;The result is: &quot; + sum);
	}
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://christyjohn.org/blog/2010/09/project-euler-problem-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Project Euler Problem 1</title>
		<link>http://christyjohn.org/blog/2010/09/project-euler-problem-1/</link>
		<comments>http://christyjohn.org/blog/2010/09/project-euler-problem-1/#comments</comments>
		<pubDate>Fri, 03 Sep 2010 11:43:00 +0000</pubDate>
		<dc:creator>christyjohn</dc:creator>
				<category><![CDATA[Project Euler]]></category>
		<category><![CDATA[Project Euler Problem 1]]></category>

		<guid isPermaLink="false">http://christyjohn.org/blog/?p=220</guid>
		<description><![CDATA[[NB: This series is here for my own reference. It is not meant as a help for others who are trying to solve problems at Project Euler.  Please don't use it so because it will foil the purpose and also I don't guarantee the quality of the answers.] Java public class Euler1 { public static [...]]]></description>
			<content:encoded><![CDATA[<p><strong>[NB: This series is here for my own reference. It is not meant as a help for others who are trying to solve problems at <a href="http://projecteuler.net/" target="_blank">Project Euler</a>.  Please don't use it so because it will foil the purpose and  also I don't guarantee the quality of the answers.]</strong></p>
<p><strong>Java</strong></p>
<pre class="brush: java;">
public class Euler1
{
  public static void main(String[] args)
  {
    int sum = 0;
    for (int i = 1; i &lt; 1000; i++)
    {
      if(i % 3 == 0 || i % 5 == 0)
      {
        sum += i;
      }
    }
    System.out.println(&quot;The sum is :&quot; + sum);
  }
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://christyjohn.org/blog/2010/09/project-euler-problem-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Welcome</title>
		<link>http://christyjohn.org/blog/2010/09/welcome/</link>
		<comments>http://christyjohn.org/blog/2010/09/welcome/#comments</comments>
		<pubDate>Wed, 01 Sep 2010 07:10:56 +0000</pubDate>
		<dc:creator>christyjohn</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://christyjohn.org/blog/?p=213</guid>
		<description><![CDATA[Today I&#8217;m embarking on a new journey. I&#8217;m starting a software engineering blog. For many years I have been reading and learning from many of the top post from the blogosphere. So I thought It is time that I reciprocate the process. Thus here it is. My foray into the world of programming blogs. You [...]]]></description>
			<content:encoded><![CDATA[<p>Today I&#8217;m embarking on a new journey. I&#8217;m starting a software engineering blog. For many years I have been reading and learning from many of the top post from the blogosphere. So I thought It is time that I reciprocate the process. Thus here it is. My foray into the world of programming blogs.</p>
<p>You may understand the general idea behind the blog by going through the &#8216;<a href="http://christyjohn.org/blog/about-me/" target="_blank">About</a>&#8216; page.</p>
<p>So once again welcome.</p>
]]></content:encoded>
			<wfw:commentRss>http://christyjohn.org/blog/2010/09/welcome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
