<?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>Arindam&#039;s Blog</title>
	<atom:link href="http://iarindam.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://iarindam.wordpress.com</link>
	<description>Storehouse for all the knowledge i come across</description>
	<lastBuildDate>Sun, 22 May 2011 09:20:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='iarindam.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Arindam&#039;s Blog</title>
		<link>http://iarindam.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://iarindam.wordpress.com/osd.xml" title="Arindam&#039;s Blog" />
	<atom:link rel='hub' href='http://iarindam.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Dynamic series of Column Chart</title>
		<link>http://iarindam.wordpress.com/2010/03/15/dynamic-series-of-column-chart/</link>
		<comments>http://iarindam.wordpress.com/2010/03/15/dynamic-series-of-column-chart/#comments</comments>
		<pubDate>Mon, 15 Mar 2010 08:02:31 +0000</pubDate>
		<dc:creator>iarindam</dc:creator>
				<category><![CDATA[Flex]]></category>
		<category><![CDATA[Column chart]]></category>
		<category><![CDATA[dynamic column series]]></category>
		<category><![CDATA[multiple column series]]></category>

		<guid isPermaLink="false">http://iarindam.wordpress.com/?p=40</guid>
		<description><![CDATA[When using Column charts in flex with static set of data that we know of at compile time, one can go ahead with the default implementation of the chart. This will provide a simple chart. One can use multiple series on a single chart to depict different data categorized or measured across some common parameter. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iarindam.wordpress.com&amp;blog=11520894&amp;post=40&amp;subd=iarindam&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>When using Column charts in flex with static set of data that we know of at compile time, one can go ahead with the default implementation of the chart. This will provide a simple chart. One can use multiple series on a single chart to depict different data categorized or measured across some common parameter.</p>
<p>For eg,<br />
if our data set is the set comprising information about our expenses and earnings of one week, then the chart should show each data on each day of the week. i.e., expense and earnings of day1, day2 and so on for 7 days of the week.</p>
<p>The data set will be an array collection :-</p>
<p>This produces the following graph. the display name allows us to have different names displayed when we hover over the different series to help users to understand what data they are viewing, as shown in the figure.</p>
<pre style="font-family:Consolas, Monaco, 'Courier New', Courier, monospace;line-height:18px;font-size:12px;white-space:pre;">&lt;mx:ArrayCollection id="data"&gt;
      &lt;mx:source&gt;
           &lt;mx:Array&gt;
               &lt;mx:Object day="1" earning="220" expense="20"/&gt;
               &lt;mx:Object day="2" earning="200" expense="33"/&gt;
               &lt;mx:Object day="3" earning="225" expense="24"/&gt;
               &lt;mx:Object day="4" earning="235" expense="47"/&gt;
               &lt;mx:Object day="5" earning="245" expense="58"/&gt;
               &lt;mx:Object day="6" earning="265" expense="10"/&gt;
               &lt;mx:Object day="7" earning="230" expense="29"/&gt;
           &lt;/mx:Array&gt;
      &lt;/mx:source&gt;
&lt;/mx:ArrayCollection&gt;
<pre><span style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;line-height:19px;white-space:normal;font-size:13px;">The code to create a multiple series column chart is to simply add as many columns as desired in the series tag and set their x and y fields ( and sometimes one can have different data providers for each and different x and y fields too). Here colorsArray is an array of some predefined colors that provide the colors of the columns. </span></pre>
<pre style="font-family:Consolas, Monaco, 'Courier New', Courier, monospace;line-height:18px;font-size:12px;white-space:pre;">&lt;mx:ColumnChart dataProvider="{data}" showDataTips="true"&gt;
&lt;mx:horizontalAxis&gt;
            &lt;mx:CategoryAxis id="ca" categoryField="day" title="Financial report" /&gt;
&lt;/mx:horizontalAxis&gt;
&lt;mx:series&gt;
           &lt;mx:ColumnSeries xField="day" yField="expense" fills="{colorsArray}" displayName="Expense"/&gt;
           &lt;mx:ColumnSeries xField="day" yField="earning" fills="{colorsArray}" displayName="Earning"/&gt;
&lt;/mx:series&gt;
&lt;/mx:ColumnChart&gt;</pre>
<p><span style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;line-height:19px;white-space:normal;font-size:13px;">This produces the following graph. the display name allows us to have different names displayed when we hover over the different series to help users to understand what data they are viewing, as shown in the figure.</span></p>
<div id="attachment_41" class="wp-caption aligncenter" style="width: 310px"><a href="http://iarindam.files.wordpress.com/2010/03/multi-series.jpg"><img class="size-medium wp-image-41" title="Multi-series graph" src="http://iarindam.files.wordpress.com/2010/03/multi-series.jpg?w=300&#038;h=287" alt="" width="300" height="287" /></a><p class="wp-caption-text">Graph with different data shown in multiple series</p></div></pre>
<p>But when the data source is not uniform and known at compile time, such charts become useless. Consider a real world applications when data is fetched from dynamic methods like JSP, servlets, PHP interfaces that fetch varying amount of data depending on some user inputs.</p>
<p>For eg., if the columns of plotting is not known at compile time and decided by user input at run time. If the user is given a choice to select the parameters <strong>[one or more of - earnings, expense,savings,tax, education,investment] </strong>upon which he wishes to compare his money, the no. of columns will be different every time the user selects the no. of columns.</p>
<p>In such cases the graph should be able to draw as many series as desired and this information is available only at run time. So the following piece of code adds column series at run time.</p>
<p>The function is passed an array of objects that represent the parameters chosen by the user from the list of the supplied parameters. It then draws those many columns and sets their x and y fields.</p>
<pre style="font-family:Consolas, Monaco, 'Courier New', Courier, monospace;line-height:18px;font-size:12px;white-space:pre;">public function drawTheColumns(parameters:Array):void
{
	var tmp:ColumnSeries = new ColumnSeries();
	series = [tmp];
	for(var i:int=0;i&lt;parameters.length;i++)
     	{
     		tmp = new ColumnSeries();
     		tmp.id = "column"+Number(i);
     		tmp.xField = "day";
     		tmp.yField = parameters[i];
     		tmp.displayName = parameters[i];
     		series[i] = tmp;
     	}
}</pre>
<p>And the data source is modified like this to hold various data fields.</p>
<pre style="font-family:Consolas, Monaco, 'Courier New', Courier, monospace;line-height:18px;font-size:12px;white-space:pre;">&lt;mx:ArrayCollection id="data"&gt;
	&lt;mx:source&gt;
		&lt;mx:Array&gt;
			&lt;mx:Object day="1" earning="220" expense="20" saving="120" tax="75"/&gt;
			&lt;mx:Object day="2" earning="200" expense="33" saving="175" tax="65"/&gt;
			&lt;mx:Object day="3" earning="225" expense="24" saving="180" tax="55"/&gt;
			&lt;mx:Object day="4" earning="235" expense="47" saving="140" tax="25"/&gt;
			&lt;mx:Object day="5" earning="245" expense="58" saving="135" tax="55"/&gt;
			&lt;mx:Object day="6" earning="265" expense="10" saving="115" tax="45"/&gt;
			&lt;mx:Object day="7" earning="230" expense="29" saving="165" tax="85"/&gt;
		&lt;/mx:Array&gt;
	&lt;/mx:source&gt;
&lt;/mx:ArrayCollection&gt;</pre>
<p>Assuming user selects <strong>earning,tax and saving</strong> fields from the UI, the following graph is generated.</p>
<p><div id="attachment_42" class="wp-caption aligncenter" style="width: 310px"><a href="http://iarindam.files.wordpress.com/2010/03/dynamic-series.jpg"><img class="size-medium wp-image-42" title="dynamic series" src="http://iarindam.files.wordpress.com/2010/03/dynamic-series.jpg?w=300&#038;h=291" alt="" width="300" height="291" /></a><p class="wp-caption-text">Chart with dynamically generated columns</p></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/iarindam.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/iarindam.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/iarindam.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/iarindam.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/iarindam.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/iarindam.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/iarindam.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/iarindam.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/iarindam.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/iarindam.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/iarindam.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/iarindam.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/iarindam.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/iarindam.wordpress.com/40/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iarindam.wordpress.com&amp;blog=11520894&amp;post=40&amp;subd=iarindam&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://iarindam.wordpress.com/2010/03/15/dynamic-series-of-column-chart/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/971bb20678e83c73b15eb1e981ebe740?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">iarindam</media:title>
		</media:content>

		<media:content url="http://iarindam.files.wordpress.com/2010/03/multi-series.jpg?w=300" medium="image">
			<media:title type="html">Multi-series graph</media:title>
		</media:content>

		<media:content url="http://iarindam.files.wordpress.com/2010/03/dynamic-series.jpg?w=300" medium="image">
			<media:title type="html">dynamic series</media:title>
		</media:content>
	</item>
		<item>
		<title>Customizing colors of a Column Chart</title>
		<link>http://iarindam.wordpress.com/2010/03/11/customizing-colors-of-a-column-chart/</link>
		<comments>http://iarindam.wordpress.com/2010/03/11/customizing-colors-of-a-column-chart/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 05:15:15 +0000</pubDate>
		<dc:creator>iarindam</dc:creator>
				<category><![CDATA[Flex]]></category>
		<category><![CDATA[Column colors]]></category>
		<category><![CDATA[ColumnChart]]></category>

		<guid isPermaLink="false">http://iarindam.wordpress.com/?p=23</guid>
		<description><![CDATA[A Column chart when instantiated, draws columns of the same color, whatever is the default or that chosen by the programmer in the ‘color’ property of the ColumnChart tag. Lets see a few examples to walk through the variations. For the rest of the article the array-collection named “data” is assumed to be the data [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iarindam.wordpress.com&amp;blog=11520894&amp;post=23&amp;subd=iarindam&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A Column chart when instantiated, draws columns of the same color, whatever is the default or that chosen by the programmer in the ‘color’ property of the ColumnChart tag. Lets see a few examples to walk through the variations.</p>
<p>For the rest of the article the array-collection named “data” is assumed to be the data source for the graph.</p>
<pre style="font-family:Consolas, Monaco, 'Courier New', Courier, monospace;line-height:18px;font-size:12px;white-space:pre;">
&lt;mx:ArrayCollection id="data"&gt;
     &lt;mx:source&gt;
           &lt;mx:Array&gt;
                &lt;mx:Object x_value="x1" y_value="20"/&gt;
                &lt;mx:Object x_value="x2" y_value="33"/&gt;
                &lt;mx:Object x_value="x3" y_value="24"/&gt;
                &lt;mx:Object x_value="x4" y_value="47"/&gt;
                &lt;mx:Object x_value="x5" y_value="58"/&gt;
                &lt;mx:Object x_value="x6" y_value="10"/&gt;
                &lt;mx:Object x_value="x7" y_value="29"/&gt;
                &lt;mx:Object x_value="x8" y_value="29"/&gt;
           &lt;/mx:Array&gt;
     &lt;/mx:source&gt;
&lt;/mx:ArrayCollection&gt;</pre>
<p>Now a normal chart code produces the following graph.</p>
<pre style="font-family:Consolas, Monaco, 'Courier New', Courier, monospace;line-height:18px;font-size:12px;white-space:pre;">&lt;mx:ColumnChart dataProvider="{data}"&gt;
      &lt;mx:horizontalAxis&gt;
            &lt;mx:CategoryAxis categoryField="x_value"/&gt;
      &lt;/mx:horizontalAxis&gt;
      &lt;mx:series&gt;
          &lt;mx:ColumnSeries xField="x_value" yField="y_value" /&gt;
      &lt;/mx:series&gt;
&lt;/mx:ColumnChart&gt;</pre>
<p><a href="http://iarindam.files.wordpress.com/2010/03/same-color-chart1.jpg"><img class="aligncenter size-medium wp-image-24" title="same color chart" src="http://iarindam.files.wordpress.com/2010/03/same-color-chart1.jpg?w=300&#038;h=270" alt="" width="300" height="270" /></a></p>
<p>If we want to have the columns have a desired color, say(#3355FF) we have to make the following change.</p>
<pre style="font-family:Consolas, Monaco, 'Courier New', Courier, monospace;line-height:18px;font-size:12px;white-space:pre;">&lt;mx:series&gt;
     &lt;mx:ColumnSeries color="0x3355ff" xField="x_value" yField="y_value"&gt;
          &lt;mx:fill&gt;
               &lt;mx:SolidColor&gt;
                    &lt;mx:color&gt;0x335f4c&lt;/mx:color&gt;
               &lt;/mx:SolidColor&gt;
          &lt;/mx:fill&gt;
      &lt;/mx:ColumnSeries&gt;
&lt;/mx:series&gt;</pre>
<p>And we get the following graph</p>
<p><a href="http://iarindam.files.wordpress.com/2010/03/desired-color-columns1.jpg"><img class="aligncenter size-medium wp-image-25" title="desired color columns" src="http://iarindam.files.wordpress.com/2010/03/desired-color-columns1.jpg?w=300&#038;h=284" alt="" width="300" height="284" /></a></p>
<p>If we want that the colors of each of the columns are different, the following approach is useful.</p>
<p>Making the array &#8220;colorsArray&#8221; bindable allows us to reflect any changes to the array at any stage of the program to the color of the columns using the array.</p>
<pre style="font-family:Consolas, Monaco, 'Courier New', Courier, monospace;line-height:18px;font-size:12px;white-space:pre;">&lt;mx:ColumnChart height="300" dataProvider="{data}"&gt;
	&lt;mx:horizontalAxis&gt;
		&lt;mx:CategoryAxis categoryField="x_value" /&gt;
	&lt;/mx:horizontalAxis&gt;
	&lt;mx:series&gt;
		&lt;mx:ColumnSeries xField="x_value" yField="y_value" fills="{colorsArray}" /&gt;
	&lt;/mx:series&gt;
&lt;/mx:ColumnChart&gt;
&lt;mx:Script&gt;
     import mx.graphics.SolidColor;
     [Bindable]
     private var colorsArray:Array = new Array
		     	(
		        new SolidColor(0xFF6699, 1),
		        new SolidColor(0x9900CC, 1),
		        new SolidColor(0xFFFF33, 1),
		        new SolidColor(0x99FF99, 1),
		        new SolidColor(0x9900CC, 1),
		        new SolidColor(0x66CCFF, 1),
		        new SolidColor(0x000000, 1),
		        new SolidColor(0xFFFF33, 1),
		        new SolidColor(0xCC99CC, 1),
		        new SolidColor(0xFF6633, 1)
    			);
&lt;/mx:Script&gt;</pre>
<p><a href="http://iarindam.files.wordpress.com/2010/03/colored-columns3.jpg"><img class="aligncenter size-medium wp-image-26" title="colored columns" src="http://iarindam.files.wordpress.com/2010/03/colored-columns3.jpg?w=300&#038;h=284" alt="" width="300" height="284" /></a>So these were the methods to add colors to the columns of a Column Chart as well as a Bar Chart.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/iarindam.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/iarindam.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/iarindam.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/iarindam.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/iarindam.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/iarindam.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/iarindam.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/iarindam.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/iarindam.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/iarindam.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/iarindam.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/iarindam.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/iarindam.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/iarindam.wordpress.com/23/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iarindam.wordpress.com&amp;blog=11520894&amp;post=23&amp;subd=iarindam&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://iarindam.wordpress.com/2010/03/11/customizing-colors-of-a-column-chart/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/971bb20678e83c73b15eb1e981ebe740?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">iarindam</media:title>
		</media:content>

		<media:content url="http://iarindam.files.wordpress.com/2010/03/same-color-chart1.jpg?w=300" medium="image">
			<media:title type="html">same color chart</media:title>
		</media:content>

		<media:content url="http://iarindam.files.wordpress.com/2010/03/desired-color-columns1.jpg?w=300" medium="image">
			<media:title type="html">desired color columns</media:title>
		</media:content>

		<media:content url="http://iarindam.files.wordpress.com/2010/03/colored-columns3.jpg?w=300" medium="image">
			<media:title type="html">colored columns</media:title>
		</media:content>
	</item>
		<item>
		<title>My new Guitar and my new found life :)</title>
		<link>http://iarindam.wordpress.com/2010/01/19/my-new-guitar-and-my-new-found-life/</link>
		<comments>http://iarindam.wordpress.com/2010/01/19/my-new-guitar-and-my-new-found-life/#comments</comments>
		<pubDate>Tue, 19 Jan 2010 05:25:59 +0000</pubDate>
		<dc:creator>iarindam</dc:creator>
				<category><![CDATA[guitar]]></category>

		<guid isPermaLink="false">http://iarindam.wordpress.com/?p=7</guid>
		<description><![CDATA[Guys out there&#8230;. There is this good thing that happened to me i want to share with u all&#8230;. At the verge of extreme boredom and monotoniety in my college life came the breakthrough of my internship at eBay. And since then i am very happy with the work we do in here. Plus i [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iarindam.wordpress.com&amp;blog=11520894&amp;post=7&amp;subd=iarindam&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Guys out there&#8230;.</p>
<p>There is this good thing that happened to me i want to share with u all&#8230;. At the verge of extreme boredom and monotoniety in my college life came the breakthrough of my internship at eBay. And since then i am very happy with the work we do in here. Plus i also found one of my most cherished dreams since childhood come to terms&#8230;</p>
<p>I actually bought a guitar. a true real solid guitar that i can play with my own fingers. And now that i have it i spend most of my office time looking up guitar on the freely available net in my office, the first thing in the day. My computer at home and eBay are busy processing EADGBe chords rather than CPU cycles. If they were smart enough, they would have rebelled, definitely, for using them for work nowhere related to computing. thats unfair to them, but fair enough for me.</p>
<p>Having said all that,i must admit that all of it is of very little help. learning guitar is one hectic job and has no shortcuts or easy cuts. So if anyone finds this blog along somewhere at any point of time and can fathom my miseries in learning guitar, please be benevolent to dole out your guitar experience so that i can also get some of it&#8230;..</p>
<p>C ya soon&#8230;.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/iarindam.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/iarindam.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/iarindam.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/iarindam.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/iarindam.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/iarindam.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/iarindam.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/iarindam.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/iarindam.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/iarindam.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/iarindam.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/iarindam.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/iarindam.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/iarindam.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iarindam.wordpress.com&amp;blog=11520894&amp;post=7&amp;subd=iarindam&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://iarindam.wordpress.com/2010/01/19/my-new-guitar-and-my-new-found-life/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/971bb20678e83c73b15eb1e981ebe740?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">iarindam</media:title>
		</media:content>
	</item>
	</channel>
</rss>
