<?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/"
	>

<channel>
	<title>Code to Glory</title>
	<atom:link href="http://www.codetoglory.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.codetoglory.com</link>
	<description>Notes from a Software Architect</description>
	<pubDate>Wed, 30 Dec 2009 04:10:21 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Revisiting Algorithms: Fibonacci Sequence</title>
		<link>http://www.codetoglory.com/2009/12/29/revisiting-algorithms-fibonacci-sequence/</link>
		<comments>http://www.codetoglory.com/2009/12/29/revisiting-algorithms-fibonacci-sequence/#comments</comments>
		<pubDate>Wed, 30 Dec 2009 03:50:00 +0000</pubDate>
		<dc:creator>Code2Glory</dc:creator>
		
		<category><![CDATA[Concepts]]></category>

		<category><![CDATA[Fundamentals]]></category>

		<category><![CDATA[algorithms]]></category>

		<category><![CDATA[fibonacci]]></category>

		<guid isPermaLink="false">http://www.codetoglory.com/2009/12/29/revisiting-algorithms-fibonacci-sequence/</guid>
		<description><![CDATA[I am starting new posts that visit many of the familiar algorithms that we have already learnt in the past. I will use C# as the primary language to represent these algorithms. To start, let us start with a very simple example, Fibonacci Series. 0,1,1,2,3,5,8,13,21,..etc are typically called Fibonacci numbers. These numbers were well known [...]]]></description>
			<content:encoded><![CDATA[<p align="justify">I am starting new posts that visit many of the familiar algorithms that we have already learnt in the past. I will use C# as the primary language to represent these algorithms. To start, let us start with a very simple example, Fibonacci Series. 0,1,1,2,3,5,8,13,21,..etc are typically called Fibonacci numbers. These numbers were well known in ancient India. In short, each number is a sum of the previous two numbers with the seed values being 0, 1. The following is the C# code that outputs a series of Fibonacci numbers with input being the number of Fibonacci numbers to generate.</p>
<div class="csharpcode">
<pre><span class="lnum">   1:  </span><span class="kwrd">public</span> <span class="kwrd">static</span> <span class="kwrd">int</span>[] GenerateFibonacciNumbers(<span class="kwrd">int</span> n)</pre>
<pre><span class="lnum">   2:  </span>{</pre>
<pre><span class="lnum">   3:  </span>    <span class="kwrd">int</span>[] arr = <span class="kwrd">new</span> <span class="kwrd">int</span>[n];</pre>
<pre><span class="lnum">   4:  </span>    arr[0] = 0;</pre>
<pre><span class="lnum">   5:  </span>    arr[1] = 1;</pre>
<pre><span class="lnum">   6:  </span>    <span class="kwrd">for</span> (<span class="kwrd">int</span> i = 2; i &lt; n; i++)</pre>
<pre><span class="lnum">   7:  </span>    {</pre>
<pre><span class="lnum">   8:  </span>        arr[i] = arr[i - 1] + arr[i - 2];</pre>
<pre><span class="lnum">   9:  </span>    }</pre>
<pre><span class="lnum">  10:  </span>    <span class="kwrd">return</span> arr;</pre>
<pre><span class="lnum">  11:  </span>}</pre>
</div>
<style type="text/css">
.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }</style>
]]></content:encoded>
			<wfw:commentRss>http://www.codetoglory.com/2009/12/29/revisiting-algorithms-fibonacci-sequence/feed/</wfw:commentRss>
		</item>
		<item>
		<title>My lessons from the book, The Power of full engagement.</title>
		<link>http://www.codetoglory.com/2009/09/02/my-lessons-from-the-book-the-power-of-full-engagement/</link>
		<comments>http://www.codetoglory.com/2009/09/02/my-lessons-from-the-book-the-power-of-full-engagement/#comments</comments>
		<pubDate>Thu, 03 Sep 2009 01:33:28 +0000</pubDate>
		<dc:creator>Code2Glory</dc:creator>
		
		<category><![CDATA[Books]]></category>

		<category><![CDATA[full engagement]]></category>

		<guid isPermaLink="false">http://www.codetoglory.com/2009/09/02/my-lessons-from-the-book-the-power-of-full-engagement/</guid>
		<description><![CDATA[The Power of full engagement is written by Jim Loehr and Tony Schwartz. The book provides a very compelling argument for change. The central philosophy of this book revolves around using four forms of energy. These are physical, emotional, mental and spiritual energies that will help us to overcome our performance barriers and peak at [...]]]></description>
			<content:encoded><![CDATA[<p>The Power of full engagement is written by Jim Loehr and Tony Schwartz. The book provides a very compelling argument for change. The central philosophy of this book revolves around using four forms of energy. These are physical, emotional, mental and spiritual energies that will help us to overcome our performance barriers and peak at critical moments. I put the salient points of this book in this presentation.</p>
<p>&nbsp;<embed id="preziEmbed_4qzwv8rlhfq1" height="350" type="application/x-shockwave-flash" width="450" src="http://prezi.com/bin/preziloader.swf" flashvars="prezi_id=4qzwv8rlhfq1&amp;lock_to_path=1&amp;color=ffffff&amp;autoplay=no" bgcolor="#ffffff" allowscriptaccess="always" allowfullscreen="true"></embed></p>
<p>&nbsp;</p>
<p>To obtain a quick snapshot of your current energy management strengths and challenges, go to <a title="http://www.hpinstitute.ca/assessments_free.html" href="http://www.hpinstitute.ca/assessments_free.html">http://www.hpinstitute.ca/assessments_free.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.codetoglory.com/2009/09/02/my-lessons-from-the-book-the-power-of-full-engagement/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Great tools for diagramming and presentations.</title>
		<link>http://www.codetoglory.com/2009/08/21/great-tools-for-diagramming-and-presentations/</link>
		<comments>http://www.codetoglory.com/2009/08/21/great-tools-for-diagramming-and-presentations/#comments</comments>
		<pubDate>Fri, 21 Aug 2009 19:36:15 +0000</pubDate>
		<dc:creator>Code2Glory</dc:creator>
		
		<category><![CDATA[Tools]]></category>

		<category><![CDATA[diagrams]]></category>

		<category><![CDATA[planning]]></category>

		<category><![CDATA[presentations]]></category>

		<guid isPermaLink="false">http://www.codetoglory.com/2009/08/21/great-tools-for-diagramming-and-presentations/</guid>
		<description><![CDATA[I use these tools for making my presentations and for some initial planning. These are great handy tools.
http://www.Prezi.com  for making presentations. Free for 100 MB. 
http://www.websequencediagrams.com for generating sequence diagrams. 
http://creately.com/ for online diagrams and collaboration. 
http://www.gliffy.com/ for flow charts.
]]></description>
			<content:encoded><![CDATA[<p>I use these tools for making my presentations and for some initial planning. These are great handy tools.</p>
<p><a title="http://www.Prezi.com " href="http://stackoverflow.com/questions/1209522/project-planning-diagrams-and-such-best-tool/1209617#1209617">http://www.Prezi.com </a> for making presentations. Free for 100 MB. </p>
<p><a href="http://www.websequencediagrams.com">http://www.websequencediagrams.com</a> for generating sequence diagrams. </p>
<p><a href="http://creately.com/">http://creately.com/</a> for online diagrams and collaboration. </p>
<p><a href="http://www.gliffy.com">http://www.gliffy.com</a>/ for flow charts.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.codetoglory.com/2009/08/21/great-tools-for-diagramming-and-presentations/feed/</wfw:commentRss>
		</item>
		<item>
		<title>A side by side comparison of Java and .Net acronyms</title>
		<link>http://www.codetoglory.com/2009/06/29/a-side-by-side-comparison-of-java-and-net-acronyms/</link>
		<comments>http://www.codetoglory.com/2009/06/29/a-side-by-side-comparison-of-java-and-net-acronyms/#comments</comments>
		<pubDate>Tue, 30 Jun 2009 02:16:43 +0000</pubDate>
		<dc:creator>Code2Glory</dc:creator>
		
		<category><![CDATA[Fundamentals]]></category>

		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.codetoglory.com/2009/06/29/a-side-by-side-comparison-of-java-and-net-acronyms/</guid>
		<description><![CDATA[Often times, we jump from one platform to another while working on projects. This is a simple concise table which compares Java and .Net and explains the meanings of the various acronyms.
&#160;



Java
.NET
Description


Java
C#, VB.NET etc
programming language.


Java virtual machine (JVM)
Common Language runtime (CLR)
JVM compiles bytecode into native executable instructions.


Java Enterprise Edition (JEE)
ASP.NET, Sharepoint, WCF, etc.,
Enterprise web development.


Java [...]]]></description>
			<content:encoded><![CDATA[<p>Often times, we jump from one platform to another while working on projects. This is a simple concise table which compares Java and .Net and explains the meanings of the various acronyms.</p>
<p>&nbsp;</p>
<table border="1" cellspacing="0" cellpadding="2" width="461">
<tbody>
<tr>
<td valign="top" width="143">Java</td>
<td valign="top" width="144">.NET</td>
<td valign="top" width="172">Description</td>
</tr>
<tr>
<td valign="top" width="144">Java</td>
<td valign="top" width="144">C#, VB.NET etc</td>
<td valign="top" width="172">programming language.</td>
</tr>
<tr>
<td valign="top" width="144">Java virtual machine (JVM)</td>
<td valign="top" width="144">Common Language runtime (CLR)</td>
<td valign="top" width="172">JVM compiles bytecode into native executable instructions.</td>
</tr>
<tr>
<td valign="top" width="144">Java Enterprise Edition (JEE)</td>
<td valign="top" width="144">ASP.NET, Sharepoint, WCF, etc.,</td>
<td valign="top" width="172">Enterprise web development.</td>
</tr>
<tr>
<td valign="top" width="144">Java FX</td>
<td valign="top" width="144">Silverlight, WPF</td>
<td valign="top" width="172">Rich applications</td>
</tr>
<tr>
<td valign="top" width="144">Java Development Kit (JDK)</td>
<td valign="top" width="144">.Net framework</td>
<td valign="top" width="172">multiple versions are supported.</td>
</tr>
<tr>
<td valign="top" width="144">Spring MVC, Struts 2</td>
<td valign="top" width="144">ASP.NET MVC, Spring.Net MVC</td>
<td valign="top" width="172">MVC frameworks.</td>
</tr>
<tr>
<td valign="top" width="144">JSP pages</td>
<td valign="top" width="144">ASPX pages</td>
<td valign="top" width="172">pages that serve dynamic content form server.</td>
</tr>
<tr>
<td valign="top" width="144">web.xml</td>
<td valign="top" width="144">web.config</td>
<td valign="top" width="172">web application configuration files.</td>
</tr>
<tr>
<td valign="top" width="144">Eclipse based tools</td>
<td valign="top" width="144">Visual Studio Team System</td>
<td valign="top" width="172">IDE for development</td>
</tr>
<tr>
<td valign="top" width="144">Apache, Tomcat, JBoss, etc.,</td>
<td valign="top" width="144">IIS</td>
<td valign="top" width="172">web server</td>
</tr>
<tr>
<td valign="top" width="144">Maven, Ant</td>
<td valign="top" width="144">MSBuild, Nant</td>
<td valign="top" width="172">Build frameworks</td>
</tr>
<tr>
<td valign="top" width="144">Junit</td>
<td valign="top" width="144">Nunit</td>
<td valign="top" width="172">unit testing frameworks</td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
<p>Please let me know if I missed any obvious ones or if you notice any incorrect comparisons.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.codetoglory.com/2009/06/29/a-side-by-side-comparison-of-java-and-net-acronyms/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Learning new programming language</title>
		<link>http://www.codetoglory.com/2009/06/24/learning-new-programming-language/</link>
		<comments>http://www.codetoglory.com/2009/06/24/learning-new-programming-language/#comments</comments>
		<pubDate>Thu, 25 Jun 2009 02:53:46 +0000</pubDate>
		<dc:creator>Code2Glory</dc:creator>
		
		<category><![CDATA[Fundamentals]]></category>

		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.codetoglory.com/2009/06/24/learning-new-programming-language/</guid>
		<description><![CDATA[This was my reply to a question posted on StackOverflow about learning new languages. You can find the question and more discussion at
http://stackoverflow.com/questions/1041687/learning-a-language-while-on-a-project
I would like to mention ALT.NET here

Self-organizing, ad-hoc community of developers bound by a desire to improve ourselves, challenge assumptions, and help each other pursue excellence in the practice of software development.

So in [...]]]></description>
			<content:encoded><![CDATA[<p>This was my reply to a question posted on StackOverflow about learning new languages. You can find the question and more discussion at
<p><a title="http://stackoverflow.com/questions/1041687/learning-a-language-while-on-a-project" href="http://stackoverflow.com/questions/1041687/learning-a-language-while-on-a-project">http://stackoverflow.com/questions/1041687/learning-a-language-while-on-a-project</a>
<p>I would like to mention ALT.NET here<br />
<blockquote>
<p>Self-organizing, ad-hoc community of developers bound by a desire to improve ourselves, challenge assumptions, and help each other pursue excellence in the practice of software development.</p>
</blockquote>
<p>So in the spirit of ALT.NET, it is challenging but useful to reach out of your comfort zone to learn new languages. Some things that really helped me are as follows:
<ol>
<li>Understand the history behind a language or script. Knowing evolution helps a lot.
<li>Pick the right book. Research StackOverflow and Amazon.com to find the right book to help you ease the growing pains.
<li>OOP is fairly common in most of the mature languages, so you can skip many of the chapters related to OOP in many books. Syntax learning will be a gradual process. I commonly bookmark some quick handy guides for that.
<li>Read as many community forums as possible to understand the common pitfalls of the new language.
<li>Attend some local meetups to interact with the community and share your pains.
<li>Take one pitch at a time by building small not so complicated applications and thereby gaining momentum.
<li>Make sure you create a reference frame for what you need to learn. Things like how security, logging, multithreading are handled.
<li>Be Open minded, you can be critical, but if you hate something then do not learn that language.</li>
</ol>
<p>Finally, I think it is worthwhile to learn one strong languages like C# or Java, one functional language and one scripting language like ruby or python.
<p>These things helped me tremendously and I think it will help all software engineers and architects to really gear for any development environment.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.codetoglory.com/2009/06/24/learning-new-programming-language/feed/</wfw:commentRss>
		</item>
		<item>
		<title>My first Hello world program in Objective-C</title>
		<link>http://www.codetoglory.com/2009/05/08/my-first-hello-world-program-in-objective-c/</link>
		<comments>http://www.codetoglory.com/2009/05/08/my-first-hello-world-program-in-objective-c/#comments</comments>
		<pubDate>Sat, 09 May 2009 03:33:14 +0000</pubDate>
		<dc:creator>Code2Glory</dc:creator>
		
		<category><![CDATA[Coding Practices]]></category>

		<category><![CDATA[General]]></category>

		<category><![CDATA[Add new tag]]></category>

		<category><![CDATA[iphone]]></category>

		<category><![CDATA[objectiveC]]></category>

		<guid isPermaLink="false">http://www.codetoglory.com/?p=86</guid>
		<description><![CDATA[Here is my first program that I wrote in Objective-C, and keeping with the tradition, it has to be the Hello World program.

   1:  /* This is a simple hello world program */
   2:  &#160;
   3:  /* Includes the systems file Foundation.h that has some 
 [...]]]></description>
			<content:encoded><![CDATA[<p>Here is my first program that I wrote in Objective-C, and keeping with the tradition, it has to be the Hello World program.</p>
<div class="csharpcode">
<pre><span class="lnum">   1:  </span><span class="rem">/* This is a simple hello world program */</span></pre>
<pre><span class="lnum">   2:  </span>&nbsp;</pre>
<pre><span class="lnum">   3:  </span><span class="rem">/* Includes the systems file Foundation.h that has some </span></pre>
<pre><span class="rem">         specific classes. */</span></pre>
<pre><span class="lnum">   4:  </span>#import &lt;Foundation/Foundation.h&gt;</pre>
<pre><span class="lnum">   5:  </span>&nbsp;</pre>
<pre><span class="lnum">   6:  </span><span class="rem">//Begin Execution</span></pre>
<pre><span class="lnum">   7:  </span><span class="kwrd">int</span> main (<span class="kwrd">int</span> argc, <span class="kwrd">const</span> <span class="kwrd">char</span> *argv[])</pre>
<pre><span class="lnum">   8:  </span>{</pre>
<pre><span class="lnum">   9:  </span>   <span class="rem">/* For now, the below code is mainly for memory </span></pre>
<pre><span class="rem">          management. Reserves space in memory. */</span></pre>
<pre><span class="lnum">  10:  </span>   NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];</pre>
<pre><span class="lnum">  11:  </span>   <span class="rem">/* NSLog is a function that displays the argument you </span></pre>
<pre><span class="rem">          pass along with some other information.*/</span></pre>
<pre><span class="lnum">  12:  </span>   NSLog (<span class="str">@"Hello World"</span>);</pre>
<pre><span class="lnum">  13:  </span>   <span class="rem">//Release the allocated memory pool</span></pre>
<pre><span class="lnum">  14:  </span>   [pool drain];</pre>
<pre><span class="lnum">  15:  </span>   <span class="rem">//Terminate the execution of main. </span></pre>
<pre><span class="lnum">  16:  </span>   <span class="kwrd">return</span> 0;</pre>
<pre><span class="lnum">  17:  </span>}</pre>
<pre>&nbsp;</pre>
<pre>&nbsp;</pre>
</div>
<style type="text/css">.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }
</style>
<p>Since my current background is C#, I am quite happy to find the delimiter &#8216;;&#8217; is the same in Objective-C;). However what is unsettling to me is the whole memory management. I got really comfortable with .net garbage collection. Commenting style is pretty much the same as others. I mixed up the commenting style to show both styles are possible. Microsoft looks like a saint to me compared to Apple when it comes to forcing me to develop on a MAC. Anyway&#8217;s, I will be sharing more code samples, more information in the coming days as I progress through my quest to build the greatest IPhone App. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.codetoglory.com/2009/05/08/my-first-hello-world-program-in-objective-c/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Getting started with IPhone Development</title>
		<link>http://www.codetoglory.com/2009/05/08/getting-started-with-iphone-development/</link>
		<comments>http://www.codetoglory.com/2009/05/08/getting-started-with-iphone-development/#comments</comments>
		<pubDate>Fri, 08 May 2009 04:41:42 +0000</pubDate>
		<dc:creator>Code2Glory</dc:creator>
		
		<category><![CDATA[Books]]></category>

		<category><![CDATA[General]]></category>

		<category><![CDATA[Tools]]></category>

		<category><![CDATA[cocoa]]></category>

		<category><![CDATA[iphone]]></category>

		<category><![CDATA[objectiveC]]></category>

		<guid isPermaLink="false">http://www.codetoglory.com/?p=74</guid>
		<description><![CDATA[I will be doing a lot of learning around IPhone and its App development in the coming days. Hopefully my blog posts will help somebody like me who is looking to get started with IPhone development. I will be covering more topics in the coming days as I get myself up-to-date with this technology. To [...]]]></description>
			<content:encoded><![CDATA[<p>I will be doing a lot of learning around IPhone and its App development in the coming days. Hopefully my blog posts will help somebody like me who is looking to get started with IPhone development. I will be covering more topics in the coming days as I get myself up-to-date with this technology. To get started, I am creating a list of resources that I can access during my learning phase. Having a finite list that won&#8217;t grow over time is important to quickly get up-to-speed on some new platform and then use your experience to write good software. So, in this spirit, as a good first step, I created the following list of resources.</p>
<p>Firstly the book which everyone considers a bible for IPhone development is Programming in Objective-C 2.0, by <a href="http://www.kochan-wood.com/" target="_blank">Stephen G. Kochan</a>. It is currently in its second edition.</p>
<p><img title="Programming in Objective-C 2.0, Second Edition - Graphically Rich Book" alt="Programming in Objective-C 2.0, Second Edition - Graphically Rich Book" src="http://search.safaribooksonline.com/images/9780321605559/9780321605559_xs.jpg" width="76" height="98"></p>
<p>Next are some favorite sites, tips that I collected to get myself started on IPhone development. </p>
<p><a href="http://www.sitepoint.com/print/iphone-development-12-tips/">IPhone Development: 12 Tips To Get You Started</a></p>
<p><a href="http://www.stanford.edu/class/cs193p/cgi-bin/index.php">CS193P - Cocoa Programming | Announcements</a>(Stanford Course)</p>
<p><a href="http://icodeblog.com/">iCodeBlog</a></p>
<p><a href="http://www.cimgf.com/">Cocoa Is My Girlfriend</a></p>
<p><a href="http://www.appsamuck.com/">AppsAmuck IPhone Development Tutorials and Examples</a></p>
<p><a href="http://cocoawithlove.com/">Cocoa with Love</a></p>
<p><a href="http://www.iphonesdkarticles.com/">http://www.iphonesdkarticles.com/</a></p>
<p><a href="http://www.cocoalab.com/">CocoaLab</a></p>
<p>Hopefully, all these tutorials will help me build my first IPhone App. </p>
<p>So, my next steps are as follows:</p>
<ul>
<li>Setting up a development environment.</li>
<li>Become a registered IPhone developer.</li>
<li>Create a list of best practices for IPhone app development.</li>
<li>Study architectures of existing apps to gain better understanding.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.codetoglory.com/2009/05/08/getting-started-with-iphone-development/feed/</wfw:commentRss>
		</item>
		<item>
		<title>My Gravatar from Expression Design</title>
		<link>http://www.codetoglory.com/2009/05/04/my-gravatar-from-expression-design/</link>
		<comments>http://www.codetoglory.com/2009/05/04/my-gravatar-from-expression-design/#comments</comments>
		<pubDate>Tue, 05 May 2009 03:00:56 +0000</pubDate>
		<dc:creator>Code2Glory</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[Tools]]></category>

		<category><![CDATA[expressiondesign]]></category>

		<category><![CDATA[gravatar]]></category>

		<category><![CDATA[silverlight]]></category>

		<guid isPermaLink="false">http://www.codetoglory.com/?p=72</guid>
		<description><![CDATA[Not sure why I spent an hour or so trying to build my gravatar using Expression Design, but I did. I am very happy with the end result. Working with Expression Design gave me a good hang of things, specially the flow of the brush stroke, the dash attribute and many more.
Here is the image [...]]]></description>
			<content:encoded><![CDATA[<p>Not sure why I spent an hour or so trying to build my gravatar using Expression Design, but I did. I am very happy with the end result. Working with Expression Design gave me a good hang of things, specially the flow of the brush stroke, the dash attribute and many more.</p>
<p>Here is the image (size to fit my blog)</p>
<p>&nbsp;</p>
<p><a href="http://www.codetoglory.com/wp-content/uploads/2009/05/treehouse.png"><img style="border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" border="0" alt="TreeHouse" src="http://www.codetoglory.com/wp-content/uploads/2009/05/treehouse-thumb.png" width="432" height="324"></a> </p>
<p>Here is the Avatar version - </p>
<p><a href="http://www.codetoglory.com/wp-content/uploads/2009/05/treehouse1.png"><img style="border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" border="0" alt="TreeHouse" src="http://www.codetoglory.com/wp-content/uploads/2009/05/treehouse-thumb1.png" width="138" height="142"></a> </p>
<p>&nbsp;</p>
<p>I have started liking Expression Design, seems very simple to use.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.codetoglory.com/2009/05/04/my-gravatar-from-expression-design/feed/</wfw:commentRss>
		</item>
		<item>
		<title>5 must have books for programmers</title>
		<link>http://www.codetoglory.com/2009/04/17/5-must-have-books-for-programmers/</link>
		<comments>http://www.codetoglory.com/2009/04/17/5-must-have-books-for-programmers/#comments</comments>
		<pubDate>Fri, 17 Apr 2009 04:28:43 +0000</pubDate>
		<dc:creator>Code2Glory</dc:creator>
		
		<category><![CDATA[Books]]></category>

		<category><![CDATA[Concepts]]></category>

		<category><![CDATA[Fundamentals]]></category>

		<category><![CDATA[General]]></category>

		<category><![CDATA[Design Patterns]]></category>

		<guid isPermaLink="false">http://www.codetoglory.com/?p=64</guid>
		<description><![CDATA[Every programmer should have these books on his or her shelf.&#160; The authors of these books cover a wide range of material in the form of design patterns, real-life experiences, code samples,&#160; and software construction. They present the material really well in a platform agnostic way. If you are serious about your career in computer [...]]]></description>
			<content:encoded><![CDATA[<p>Every programmer should have these books on his or her shelf.&nbsp; The authors of these books cover a wide range of material in the form of design patterns, real-life experiences, code samples,&nbsp; and software construction. They present the material really well in a platform agnostic way. If you are serious about your career in computer programming, these books can help you build great reliable software. These books are not ranked and are in no particular order. I linked each of these books to Amazon but you can find them at other stores as well.</p>
<p>&nbsp;</p>
<table border="0" cellspacing="0" cellpadding="2" width="453">
<tbody>
<tr>
<td valign="top" width="184"><img src="http://image.campusi.com/image/9780201633610_20518_m.jpg" width="136" height="178"></td>
<td valign="top" width="267"><a href="http://www.amazon.com/Design-Patterns-Object-Oriented-Addison-Wesley-Professional/dp/0201633612" target="_blank">Design Patterns: Elements of Reusable Object-Oriented Software by Erich Gamma, Richard Helm, Ralph Johnson, John M. Vlissides</a></td>
</tr>
<tr>
<td valign="top" width="187"><img src="http://orbitalhub.com/amazon-covers/steve-mc-connell-code-complete-second-edition.jpg" width="137" height="160"></td>
<td valign="top" width="267"><a href="http://www.amazon.com/Code-Complete-Practical-Handbook-Construction/dp/0735619670" target="_blank">Code Complete by Steve McConnell</a></td>
</tr>
<tr>
<td valign="top" width="190"><img src="http://grok-code.com/wp-content/uploads/2008/08/pragmatic-programmer.jpg" width="138" height="160"></td>
<td valign="top" width="267"><a href="http://www.amazon.com/Pragmatic-Programmer-Journeyman-Master/dp/020161622X/ref=sr_1_3?ie=UTF8&amp;s=books&amp;qid=1239941160&amp;sr=1-3" target="_blank">Pragmatic Programmer by Andrew Hunt, David Thomas</a></td>
</tr>
<tr>
<td valign="top" width="192"><img src="http://www.informit.com/ShowCover.aspx?isbn=0201485672&amp;type=f" width="139" height="184"></td>
<td valign="top" width="267"><a href="http://www.amazon.com/Refactoring-Improving-Existing-Addison-Wesley-Technology/dp/0201485672/ref=sr_1_1?ie=UTF8&amp;s=books&amp;qid=1239941123&amp;sr=1-1" target="_blank">Refactoring: Improving the Design of Existing Code by Martin Fowler</a></td>
</tr>
<tr>
<td valign="top" width="194"><img src="http://www.informit.com/ShowCover.aspx?isbn=0201896834&amp;type=f" width="139" height="230"></td>
<td valign="top" width="267"><a href="http://www.amazon.com/Art-Computer-Programming-Fundamental-Algorithms/dp/0201896834" target="_blank">The Art of Computer Programming: Fundamental Algorithms by Donald E. Knuth</a></td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://www.codetoglory.com/2009/04/17/5-must-have-books-for-programmers/feed/</wfw:commentRss>
		</item>
		<item>
		<title>ASP.NET MVC Round up</title>
		<link>http://www.codetoglory.com/2009/04/16/aspnet-mvc-round-up/</link>
		<comments>http://www.codetoglory.com/2009/04/16/aspnet-mvc-round-up/#comments</comments>
		<pubDate>Thu, 16 Apr 2009 04:43:28 +0000</pubDate>
		<dc:creator>Code2Glory</dc:creator>
		
		<category><![CDATA[Architecture]]></category>

		<category><![CDATA[Concepts]]></category>

		<category><![CDATA[Tools]]></category>

		<category><![CDATA[asp.net]]></category>

		<category><![CDATA[asp.net mvc]]></category>

		<guid isPermaLink="false">http://www.codetoglory.com/?p=59</guid>
		<description><![CDATA[ASP.NET MVC enables developers to easily build web applications using a model-view-controller pattern.&#160; It enables full control over HTML markup and URL structure, and facilitates unit testing and a test driven development workflow. It is free and fully supported by Microsoft.&#160; Below are some links that I feel provide a great roundup for tracking ASP.NET [...]]]></description>
			<content:encoded><![CDATA[<p>ASP.NET MVC enables developers to easily build web applications using a model-view-controller pattern.&nbsp; It enables full control over HTML markup and URL structure, and facilitates unit testing and a test driven development workflow. It is free and fully supported by Microsoft.&nbsp; Below are some links that I feel provide a great roundup for tracking ASP.NET MVC.</p>
<p><a href="http://blog.wekeroad.com/category/mvc-storefront" target="_blank">Rob Connery</a> is building a storefront using ASP.NET MVC. He has over 26 webcasts and blog posts, documenting the building of an e-commerce storefront using ASP.NET MVC. He uses Domain-Driven-Design and other design patterns to build his storefront. I recommend his entire series for anyone starting out on ASP.NET MVC.</p>
<p><a href="http://weblogs.asp.net/scottgu/">Scott Guthrie</a> on <a href="http://weblogs.asp.net/scottgu/archive/2009/04/01/asp-net-mvc-1-0.aspx">ASP.NET MVC</a>. I don&#8217;t think ScottGu needs any introduction.</p>
<p><a href="www.haacked.com">Phil Haack</a> is the Project Manager on the ASP.NET MVC project. He gave a great presentation at MIX&#8217;09 called <a href="http://videos.visitmix.com/MIX09/T44F">Microsoft ASP.NET Model View Controller (MVC): Ninja on Fire Black Belt Tips</a>. He followed it up with a blog article on his site where he uses <a href="http://haacked.com/archive/2009/04/14/using-jquery-grid-with-asp.net-mvc.aspx">JQuery Grid with ASP.NET MVC</a>.</p>
<p><a href="http://www.hanselman.com/blog/" target="_blank">Scott Hanselman</a> gave a great presentation at MIX&#8217;09 demonstrating his <a href="http://videos.visitmix.com/MIX09/T49F" target="_blank">nerd-dinner application built on ASP.NET MVC.</a></p>
<p><a href="http://stephenwalther.com/blog/default.aspx">Stephen Walther</a> has a series dedicated to <a href="http://stephenwalther.com/blog/category/4.aspx">ASP.NET MVC</a>. He provides some great tips, sample code and much more on his blog.</p>
<p><strong>Related Links</strong>
<ul>
<li><a href="http://www.asp.net/mvc">Learn ASP.NET MVC</a> with Videos, Tutorials, and Examples.
<li><a href="http://weblogs.asp.net/scottgu/archive/2009/03/10/free-asp-net-mvc-ebook-tutorial.aspx">Free ASP.NET MVC eBook Tutorial</a>.
<li>Example App at <a href="http://www.codeplex.com/nerddinner">http://www.codeplex.com/nerddinner</a>
<li><a href="http://nerddinner.codeplex.com/" target="_blank">Nerddinner on codeplex</a>.
<li><a href="http://mdbf.codeplex.com/" target="_blank">Mobile Device Browser Files</a> on codeplex.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.codetoglory.com/2009/04/16/aspnet-mvc-round-up/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
