<?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>Kudithipudi.Org &#187; Programming</title>
	<atom:link href="http://kudithipudi.org/category/technology/programming/feed/" rel="self" type="application/rss+xml" />
	<link>http://kudithipudi.org</link>
	<description>Too much time on hand!!!</description>
	<lastBuildDate>Tue, 07 Feb 2012 15:01:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>HOW TO : for loop in bash</title>
		<link>http://kudithipudi.org/2011/06/23/how-to-for-loop-in-bash/</link>
		<comments>http://kudithipudi.org/2011/06/23/how-to-for-loop-in-bash/#comments</comments>
		<pubDate>Thu, 23 Jun 2011 16:54:30 +0000</pubDate>
		<dc:creator>Vinay</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://kudithipudi.org/?p=977</guid>
		<description><![CDATA[Quick post for my own reference down the road. the &#8220;for&#8221; loop comes in very handy, when you want to perform the same task on multiple items in a bash shell. For example, I wanted to query the DNS results of a couple of sub domains (blog.gogoair.com, pr.gogoair.com, tracker.gogoair.com), I can do it the normal [...]]]></description>
			<content:encoded><![CDATA[<p>Quick post for my own reference down the road. the &#8220;for&#8221; loop comes in very handy, when you want to perform the same task on multiple items in a bash shell.</p>
<p>For example, I wanted to query the DNS results of a couple of sub domains (blog.gogoair.com, pr.gogoair.com, tracker.gogoair.com), I can do it the normal way (that 99% of us do <img src='http://kudithipudi.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  )</p>
<pre class="brush: plain; title: ; notranslate"> dig blog.gogoair.com

dig pr.gogoair.com

dig tracker.gogoair.com </pre>
<p>Or, I can use the for loop function and do this</p>
<pre class="brush: plain; title: ; notranslate"> for i in {blog,pr,tracker}.gogoair.com; do echo &quot;$i&quot; ; dig +short &quot;$i&quot;; done </pre>
<p>Got to love technology <img src='http://kudithipudi.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .. Makes you lazy!!..err I meant to say productive.</p>
<p>Thx to Cliff for the inspiration.</p>
]]></content:encoded>
			<wfw:commentRss>http://kudithipudi.org/2011/06/23/how-to-for-loop-in-bash/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>HOW TO : Combining Perl and Zoho to produce reports</title>
		<link>http://kudithipudi.org/2011/01/26/how-to-combining-perl-and-zoho-to-produce-reports/</link>
		<comments>http://kudithipudi.org/2011/01/26/how-to-combining-perl-and-zoho-to-produce-reports/#comments</comments>
		<pubDate>Thu, 27 Jan 2011 04:00:27 +0000</pubDate>
		<dc:creator>Vinay</dc:creator>
				<category><![CDATA[HOWTO]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://kudithipudi.org/?p=888</guid>
		<description><![CDATA[This HOW TO is more for my notes. We had a request at work, where we had to parse some log files and create a graph from the data in the log files. The log files looked like this I wrote the following perl script to get the log file to look as such perl [...]]]></description>
			<content:encoded><![CDATA[<p>This HOW TO is more for my notes. We had a request at work, where we had to parse some log files and create a graph from the data in the log files.</p>
<p>The log files looked like this</p>
<pre class="brush: bash; title: ; notranslate">
0m0.107s
0m0.022s
0m0.015s
2011-01-05_02_22
0m0.102s
0m0.024s
0m0.014s
2011-01-05_02_23
</pre>
<p>I wrote the following perl script to get the log file to look as such</p>
<pre class="brush: bash; title: ; notranslate">| 0m0.107s| 0m0.022s| 0m0.015s| 2011-01-05 | 02:22

| 0m0.102s| 0m0.024s| 0m0.014s| 2011-01-05 | 02:23 </pre>
<p>perl script</p>
<pre class="brush: perl; title: ; notranslate">
#!/usr/bin/perl
# Modules to load
# use strict;
use warnings;

# Variables
my $inputFile = 'input.txt';
my $version = 0.1;

my $logFile = 'parsed_input.csv';

# Sub Functions
sub Log($$$);
sub Trim($);

# Clear the screen
system $^O eq 'MSWin32' ? 'cls' : 'clear';

# Open the output log file
open(LOGFILE,&quot;&gt; $logFile&quot;) || die &quot;Couldn't open $logFile, exiting $!\n&quot;;

# Open the input file
open(INPUTFILE,&quot;&lt; $inputFile&quot;) || die &quot;Couldn't open $inputFile, exiting $!\n&quot;;

# Process the input file, one line at a time
while (defined ($line = &lt;INPUTFILE&gt;)) {
	chomp $line;
	# Check for blank line
	if ($line =~ /^$/)
		{
			# Start a new line in the output
			print LOGFILE &quot;\n&quot;;
		}
	else
		{
			# Split the date and time
			if ($line =~ /2011/)
				{
					@date = split (/_/,$line);
					print LOGFILE &quot;| $date[0] | $date[1]:$date[2]&quot;;
				}
			else
				{
					# Write the value to the output
					print LOGFILE &quot;| $line&quot;;
				}
		}
	}
</pre>
<pre><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif; line-height: 19px; white-space: normal; font-size: 13px;">I then took the parsed log files and imported them into the cloud based reporting engine provided by Zoho at <a href="http://reports.zoho.com">http://reports.zoho.com</a></span></pre>
<p>The final result are these reports</p>
<p><a href="http://reports.zoho.com/ZDBDataSheetView.cc?OBJID=144766000000038450&amp;STANDALONE=true&amp;ZDB_THEME_NAME=blue&amp;REMTOOLBAR=false&amp;INCLUDETITLE=true&amp;INCLUDEDESC=true">SERVER1</a></p>
<p><a href="http://reports.zoho.com/ZDBDataSheetView.cc?OBJID=144766000000038487&amp;STANDALONE=true&amp;ZDB_THEME_NAME=blue&amp;REMTOOLBAR=false&amp;INCLUDETITLE=true&amp;INCLUDEDESC=true">SERVER2</a></p>
<p>Did I say, I love technology? <img src='http://kudithipudi.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://kudithipudi.org/2011/01/26/how-to-combining-perl-and-zoho-to-produce-reports/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HOW TO : Improve Jboss startup times</title>
		<link>http://kudithipudi.org/2009/12/31/how-to-improve-jboss-startup-times/</link>
		<comments>http://kudithipudi.org/2009/12/31/how-to-improve-jboss-startup-times/#comments</comments>
		<pubDate>Thu, 31 Dec 2009 22:11:41 +0000</pubDate>
		<dc:creator>Vinay</dc:creator>
				<category><![CDATA[HOWTO]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://kudithipudi.org/?p=749</guid>
		<description><![CDATA[We run multiple applications in Jboss at my work and one of the applications used to take an inordinate time to come up. A typical application would take &#60; 1 minute to get deployed and this particular application for some reason was taking ~7-8 minutes. We initially thought it was a bug in the code [...]]]></description>
			<content:encoded><![CDATA[<p>We run multiple applications in Jboss at my work and one of the applications used to take an inordinate time to come up. A typical application would take &lt; 1 minute to get deployed and this particular application for some reason was taking ~7-8 minutes. We initially thought it was a bug in the code and gave hell to our development team <img src='http://kudithipudi.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .. But on closer investigation, we found out that a feature we enabled in the Jboss server settings which allows content to be hosted on network storage was causing the issue.</p>
<p>I blogged the feature in Jboss to follow sym links here (<a href="http://kudithipudi.org/2008/07/25/howto-configure-jboss-to-follow-symbolic-links/">http://kudithipudi.org/2008/07/25/howto-configure-jboss-to-follow-symbolic-links/</a>). So essentially when Jboss was started, it was checking all the content in these network path to check for applications to deploy. And traversing a network share with 1000s of directories isn&#8217;t fun <img src='http://kudithipudi.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> ..</p>
<p>We fixed it by making a simple edit to the start up script. Here&#8217;s the psuedo code for the script</p>
<ol>
<li>Remove soft links to network share</li>
<li>Start Jboss</li>
<li>Put soft links to network share</li>
</ol>
<p>And now the application starts in less than a minute <img src='http://kudithipudi.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
<p>I guess there might be other elegant ways to do this. i.e. Configure Jboss to only deploy certain applications, but this did the trick for us <img src='http://kudithipudi.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
]]></content:encoded>
			<wfw:commentRss>http://kudithipudi.org/2009/12/31/how-to-improve-jboss-startup-times/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HOW TO : Perl subfunction to unmount a partition in Linux</title>
		<link>http://kudithipudi.org/2009/05/22/how-to-perl-subfunction-to-unmount-a-partition-in-linux/</link>
		<comments>http://kudithipudi.org/2009/05/22/how-to-perl-subfunction-to-unmount-a-partition-in-linux/#comments</comments>
		<pubDate>Sat, 23 May 2009 02:18:23 +0000</pubDate>
		<dc:creator>Vinay</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://kudithipudi.org/?p=615</guid>
		<description><![CDATA[For my record&#8230;here&#8217;s a snippet of perl code that can be called as a sub function to unmount a partition in Linux. Â The magic is in the line &#8220;grep m{$mountPoint}, qx{/bin/mount}&#8221;, which essentially lets you check if the partition is already mounted or not. sub UnMountVolume($) { my $mountPoint = $_[0]; print "Unmounting $mountPoint\n"; # [...]]]></description>
			<content:encoded><![CDATA[<p>For my record&#8230;here&#8217;s a snippet of <a href="http://perl.org">perl</a> code that can be called as a sub function to unmount a partition in Linux. Â The magic is in the line &#8220;grep m{$mountPoint}, qx{/bin/mount}&#8221;, which essentially lets you check if the partition is already mounted or not.</p>
<pre><code>sub UnMountVolume($)
{
    my $mountPoint = $_[0];

    print "Unmounting $mountPoint\n";
	# Check if the mount point exists
	if ( grep m{$mountPoint}, qx{/bin/mount} )
	{
		#Let's try to unmount it
		system("/bin/umount $mountPoint");
	}
	else
	{
		print "$mountPoint is not mounted, so didn't have to do anything\n";
	}
}
</code></pre>
<p>As with any perl code, I am sure there are a tons of ways to do this in a more efficient and &#8220;cool&#8221; way.</p>
]]></content:encoded>
			<wfw:commentRss>http://kudithipudi.org/2009/05/22/how-to-perl-subfunction-to-unmount-a-partition-in-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HOW TO : Find which interface a particular IP address is configured on</title>
		<link>http://kudithipudi.org/2009/05/22/how-to-find-which-interface-a-particular-ip-address-is-configured-on/</link>
		<comments>http://kudithipudi.org/2009/05/22/how-to-find-which-interface-a-particular-ip-address-is-configured-on/#comments</comments>
		<pubDate>Fri, 22 May 2009 19:28:53 +0000</pubDate>
		<dc:creator>Vinay</dc:creator>
				<category><![CDATA[HOWTO]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://kudithipudi.org/?p=611</guid>
		<description><![CDATA[There are a ton of scripts to find how many IP addresses Â are configured on a system, but I could not find one, whic would show me which particular network interface an IP address was configured on. Here is a one liner, that will give you this information in Linux /sbin/ifconfig &#124; grep -B1 10.10.10.10 [...]]]></description>
			<content:encoded><![CDATA[<p>There are a ton of scripts to find how many IP addresses Â are configured on a system, but I could not find one, whic would show me which particular network interface an IP address was configured on. Here is a one liner, that will give you this information in <a href="http://en.wikipedia.org/wiki/Linux">Linux</a></p>
<p><code> /sbin/ifconfig | grep -B1 10.10.10.10 | awk '{if (NR==1) print $1}'</code></p>
<p>The same script can be changes a bit to support other operating systems too. Essentially, I am doing a grep (search) of the output of ifconfig, which shows all the network information on the system for a particular IP. At the same time, I am using the -B1 option, which will show the line above the matching line. Finally, I am piping this to awk and printing the first row in the first column.</p>
]]></content:encoded>
			<wfw:commentRss>http://kudithipudi.org/2009/05/22/how-to-find-which-interface-a-particular-ip-address-is-configured-on/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>HOW TO : Simple perl script to replace lines in file</title>
		<link>http://kudithipudi.org/2009/02/19/how-to-simple-perl-script-to-replace-lines-in-file/</link>
		<comments>http://kudithipudi.org/2009/02/19/how-to-simple-perl-script-to-replace-lines-in-file/#comments</comments>
		<pubDate>Thu, 19 Feb 2009 06:11:26 +0000</pubDate>
		<dc:creator>Vinay</dc:creator>
				<category><![CDATA[HOWTO]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://kudithipudi.org/?p=549</guid>
		<description><![CDATA[Nothing fancy.. but here is a simple perl script to open a file, search for specific content in the a line and replace it with some other content. open (SOURCE, "< source.xml") or die "Could not open file source.xml: $!\n"; open (DESTINATION, ">modfile.xml") or die "Could not open file modfile.xml: $!\n"; while (defined($line = )) [...]]]></description>
			<content:encoded><![CDATA[<p>Nothing fancy.. but here is a simple perl script to open a file, search for specific content in the a line and replace it with some other content.<br />
<code><br />
open (SOURCE, "< source.xml")<br />
	or die "Could not open file source.xml: $!\n";</p>
<p>open (DESTINATION, ">modfile.xml")<br />
		or die "Could not open file modfile.xml: $!\n";</p>
<p>while (defined($line = <SOURCE>)) {<br />
	if ($line =~ m/YYYYYYYY/i) {<br />
		$line = "XXXXXXXXXXXXXXXXXXX\n";<br />
		}<br />
	print DESTINATION "$line";<br />
	}</p>
<p>close (SOURCE);<br />
close (DESTINATION);<br />
</code></p>
<p>You are opening a file named source.xml, reading every line and if there is some text that matches &#8220;YYYYYYYY&#8221;, you are replacing the whole line with &#8220;XXXXXXXXXXXXXXXXXXX&#8221;. I am sure there are more elegant ways to write this <img src='http://kudithipudi.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .. but this will do the trick too..</p>
]]></content:encoded>
			<wfw:commentRss>http://kudithipudi.org/2009/02/19/how-to-simple-perl-script-to-replace-lines-in-file/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SourceForge : Project of the Month</title>
		<link>http://kudithipudi.org/2009/01/24/sourceforge-project-of-the-month/</link>
		<comments>http://kudithipudi.org/2009/01/24/sourceforge-project-of-the-month/#comments</comments>
		<pubDate>Sat, 24 Jan 2009 21:19:05 +0000</pubDate>
		<dc:creator>Vinay</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://kudithipudi.org/?p=495</guid>
		<description><![CDATA[SourceForge.net is an online community supporting open source projects by providing hosting, distribution and subversion services. They choose a project every month from the hundreds of thousands of projects that are hosted on SourceForge based on popularity and activity. Most of the projects are the who is who of the Open source community. This is [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://sourceforge.net">SourceForge.net</a> is an online community supporting <a href="http://en.wikipedia.org/wiki/Open_source">open source</a> projects by providing hosting, distribution and <a href="http://en.wikipedia.org/wiki/Subversion_(software)">subversion</a> services. They choose a project every month from the hundreds of thousands of projects that are hosted on SourceForge based on popularity and activity. Most of the projects are the who is who of the Open source community. This is a good link to bookmark..Â <a href="http://sourceforge.net/community/index.php/potm/">http://sourceforge.net/community/index.php/potm/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://kudithipudi.org/2009/01/24/sourceforge-project-of-the-month/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HOW TO : Configure JBoss to follow symbolic links</title>
		<link>http://kudithipudi.org/2008/07/25/howto-configure-jboss-to-follow-symbolic-links/</link>
		<comments>http://kudithipudi.org/2008/07/25/howto-configure-jboss-to-follow-symbolic-links/#comments</comments>
		<pubDate>Fri, 25 Jul 2008 05:42:12 +0000</pubDate>
		<dc:creator>Vinay</dc:creator>
				<category><![CDATA[HOWTO]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://kudithipudi.org/?p=273</guid>
		<description><![CDATA[Jboss, in addition to being an application server also serves static content. We recently ran into an issue where some static content was not displayed when users hit the link. The JBoss server kept spewing 404 errors, stating that the content was not found. On some hair pulling research, we figured out that JBoss, like [...]]]></description>
			<content:encoded><![CDATA[<p>Jboss, in addition to being an application server also serves static content. We recently ran into an issue where some static content was not displayed when users hit the link. The JBoss server kept spewing 404 errors, stating that the content was not found. On some hair pulling research, we figured out that JBoss, like Apache, does not follow/allow content mapped to a symbolic link.</p>
<p>So for example in your web app, you added a sym link to another directory, where most of your content is stored, Jboss would not show the content, when you go to the link.</p>
<p>Here&#8217;s a quick guide to fix this.</p>
<ol>
<li>Go to the deploy folder of the context you want to configure. For example, if you used the default context, you go to <strong>$JBOSS_HOME/server/default/deploy/jboss-web.deployer</strong></li>
<li>Edit the context.xml file and add <strong>allowLinking=&#8221;true&#8221;</strong> in the Context (<strong>NOTE :</strong> This allows Jboss to publish symbolic links on all apps in your application server, if you want to restrict it to just one particular app, you have to edit the context.xml in your specific application folder). Upon adding the option, our context.xml file looked as such</li>
</ol>
<pre><code>
<!-- The contents of this file will be loaded for each web application -->

   <!-- Session persistence is disable by default. To enable for all web
   apps set the pathname to a non-empty value:
   <Manager pathname="SESSIONS.ser" />

   To enable session persistence for a single web app, add a
   WEB-INF/context.xml
   -->

   <!-- Install an InstanceListener to handle the establishment of the run-as
   role for servlet init/destroy events.
   -->
   org.jboss.web.tomcat.security.RunAsListener

</code></pre>
<p>More information on options for the context.xml can be found here</p>
<p><a href="http://www.jboss.org/file-access/default/members/jbossweb/freezone/docs/2.1.0/config/context.html">http://www.jboss.org/file-access/default/members/jbossweb/freezone/docs/2.1.0/config/context.html</a></p>
<p>For the record, Jboss configuration and accompanying documentation is what I call black magic <img src='http://kudithipudi.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .. Too many options, too many ways to do the same thing.</p>
]]></content:encoded>
			<wfw:commentRss>http://kudithipudi.org/2008/07/25/howto-configure-jboss-to-follow-symbolic-links/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Week 6 training and improved charts with Google Charts</title>
		<link>http://kudithipudi.org/2008/07/17/week-6-training-and-improved-charts-with-google-charts/</link>
		<comments>http://kudithipudi.org/2008/07/17/week-6-training-and-improved-charts-with-google-charts/#comments</comments>
		<pubDate>Fri, 18 Jul 2008 03:13:33 +0000</pubDate>
		<dc:creator>Vinay</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Running]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://kudithipudi.org/?p=264</guid>
		<description><![CDATA[Week 6 of the Chicago marathon training and I was again not able to keep up with my mid week runs. Although I did manage to improve the charts displaying the training program .. I added a new column to compare my actual milege to the recommended milege. Here are the parameters I used cht=bvg [...]]]></description>
			<content:encoded><![CDATA[<p>Week 6 of the Chicago marathon training and I was again not able to keep up with my mid week runs. Although I did manage to improve the charts displaying the training program <img src='http://kudithipudi.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .. I added a new column to compare my actual milege to the recommended milege.</p>
<p style="text-align: center;"><img style="border: 1px solid black; vertical-align: middle;" src="http://chart.apis.google.com/chart?cht=bvg&amp;chs=400x250&amp;chtt=Week+6+Training&amp;chdl=Recommended+Miles|Actual+Miles&amp;chco=ff0000,00ff00&amp;chxt=x,y&amp;chxl=0:|Mon|Tue|Wed|Thu|Fri|Sat|Sun|&amp;chd=t:0,3,4,3,0,7,0|0,2,0,3,0,0,7&amp;chds=0,15&amp;chxr=1,0,15&amp;chbh=10" alt="" width="560" height="200" /></p>
<p style="text-align: left;">Here are the parameters I used</p>
<p>cht=bvg<br />
chs=400&#215;250<br />
chtt=week+6+Training<br />
chdl=Recommended+Miles|Actual+Miles<br />
chco=ff0000,00ff00<br />
chxt=x,y<br />
chxr=1,0,15<br />
chxl=0:|Mon|Tue|Wed|Thu|Fri|Sat|Sun|<br />
chd=t:0,3,4,3,0,7,0|0,2,0,3,0,0,7<br />
chbh=10</p>
]]></content:encoded>
			<wfw:commentRss>http://kudithipudi.org/2008/07/17/week-6-training-and-improved-charts-with-google-charts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tracking my runs using Google charts : Part II</title>
		<link>http://kudithipudi.org/2008/07/11/tracking-my-runs-using-google-charts-part-ii/</link>
		<comments>http://kudithipudi.org/2008/07/11/tracking-my-runs-using-google-charts-part-ii/#comments</comments>
		<pubDate>Fri, 11 Jul 2008 22:56:23 +0000</pubDate>
		<dc:creator>Vinay</dc:creator>
				<category><![CDATA[HOWTO]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://kudithipudi.org/?p=262</guid>
		<description><![CDATA[Comment from my friend Sri, after looking at my post regd using Google Charts API to track weekly runs. &#8221; Hey V, You can show the value of the bars by using the variable CHM&#8221;.. Thx for making me lazy dude .. Here&#8217;s the upated image]]></description>
			<content:encoded><![CDATA[<p>Comment from my friend Sri, after looking at <a href="http://kudithipudi.org/?p=261">my post</a> regd using <a href="http://kudithipudi.org/?p=261">Google Charts API</a> to track weekly runs.</p>
<p>&#8221; Hey V, You can show the value of the bars by using the variable CHM&#8221;..</p>
<p>Thx for making me lazy dude <img src='http://kudithipudi.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .. Here&#8217;s the upated image</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 1px solid black; vertical-align: middle;" src="http://chart.apis.google.com/chart?chtt=Week+5+Training&amp;chts=FF0000,20&amp;chdl=Miles&amp;cht=bvs&amp;chxt=x,y&amp;chxr=1,0,15&amp;chxl=0:|Mon|Tue|Wed|Thu|Fri|Sat|Sun|&amp;chs=400x250&amp;chd=t:0.0,0.0,20.0,0.0,0.0,66.6,0.0&amp;chm=t,000000,0,0,13|t,000000,0,1,13|t3,000000,0,2,13|t,000000,0,3,13|t,000000,0,4,13|t10,000000,0,5,13|t,000000,0,6,13&amp;chco=4d89f9,c6d9fd&amp;chbh=30" alt="" width="400" height="250" /></p>
]]></content:encoded>
			<wfw:commentRss>http://kudithipudi.org/2008/07/11/tracking-my-runs-using-google-charts-part-ii/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

