<?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:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Programming Tricks &#38; Hacks</title>
	<atom:link href="http://programminghack.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://programminghack.wordpress.com</link>
	<description></description>
	<lastBuildDate>Fri, 26 Sep 2008 03:52:40 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='programminghack.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/d164fe0024ea18ed2d3c4b694407fe5d?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Programming Tricks &#38; Hacks</title>
		<link>http://programminghack.wordpress.com</link>
	</image>
			<item>
		<title>Manipulate GridView Rows, Cells, Cell Controls from JavaScript</title>
		<link>http://programminghack.wordpress.com/2008/09/26/manipulate-gridview-rows-cells-cell-controls-from-javascript/</link>
		<comments>http://programminghack.wordpress.com/2008/09/26/manipulate-gridview-rows-cells-cell-controls-from-javascript/#comments</comments>
		<pubDate>Fri, 26 Sep 2008 03:51:16 +0000</pubDate>
		<dc:creator>kinjanshah</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[GridView]]></category>

		<guid isPermaLink="false">http://programminghack.wordpress.com/?p=27</guid>
		<description><![CDATA[In one of the functionalities I was developing, I needed to integrate my GridView with JavaScript. I mean I was supposed to change the text in few cells of GridView. So, I dig it little bit and found out a way as I have shown below.
Accessing GridView rows/cells from JavaScript:
&#60;script type=&#8221;text/javascript&#8221; language=&#8221;javascript&#8221;&#62;
tblTable=document.getElementById(&#8216;&#60;&#60;Client ID of the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=programminghack.wordpress.com&blog=4961473&post=27&subd=programminghack&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>In one of the functionalities I was developing, I needed to integrate my GridView with JavaScript. I mean I was supposed to change the text in few cells of GridView. So, I dig it little bit and found out a way as I have shown below.</p>
<p><strong>Accessing GridView rows/cells from JavaScript:</strong></p>
<p style="padding-left:30px;">&lt;script type=&#8221;text/javascript&#8221; language=&#8221;javascript&#8221;&gt;</p>
<p style="padding-left:60px;">tblTable=document.getElementById(&#8216;&lt;&lt;Client ID of the GridView&gt;&gt;&#8217;);<br />
Cell=tblTable.rows[0].cells[0];<br />
Cell.innerHTML=&#8217;Hurra!!!!! I have accessed the first row, first cell&#8217;;</p>
<p style="padding-left:30px;">&lt;/script&gt;</p>
<p><strong>Accessing GridView Rows/cells and Cell Control from JavaScript:</strong><br />
Isn&#8217;t it a great way to access GridView from JavaScript?</p>
<p style="padding-left:30px;">&lt;script type=&#8221;text/javascript&#8221;&gt;</p>
<p style="padding-left:60px;">tblTable=document.getElementById(&#8216;&lt;&lt;Client ID of the GridView&gt;&gt;&#8217;);<br />
Cell=tblTable.rows[0].cells[0];<br />
FirstControl = Cell.childNodes[0];</p>
<p style="padding-left:30px;">&lt;/script&gt;</p>
<p>Hope this will help you out.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/programminghack.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/programminghack.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/programminghack.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/programminghack.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/programminghack.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/programminghack.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/programminghack.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/programminghack.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/programminghack.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/programminghack.wordpress.com/27/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=programminghack.wordpress.com&blog=4961473&post=27&subd=programminghack&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://programminghack.wordpress.com/2008/09/26/manipulate-gridview-rows-cells-cell-controls-from-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c6b0b95e1eb828cd070d515d02009d6a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kinjanshah</media:title>
		</media:content>
	</item>
		<item>
		<title>Manipulate Validator controls and Validation Group from JavaScript</title>
		<link>http://programminghack.wordpress.com/2008/09/25/manipulate-validator-controls-validation-group-from-javascript/</link>
		<comments>http://programminghack.wordpress.com/2008/09/25/manipulate-validator-controls-validation-group-from-javascript/#comments</comments>
		<pubDate>Thu, 25 Sep 2008 04:07:36 +0000</pubDate>
		<dc:creator>kinjanshah</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[Validation Control]]></category>
		<category><![CDATA[Validation Group]]></category>

		<guid isPermaLink="false">http://programminghack.wordpress.com/?p=21</guid>
		<description><![CDATA[Today, I was working on Validator controls and there was a need to make few validator controls enabled or disabled from JavaScript. So, I was walking through it and I found below few things.

To enable Validator from JavaScript

ValidatorEnable(&#60;&#60;Validator Client ID&#62;&#62;, true);

To disable Validator from JavaScript

ValidatorEnable(&#60;&#60;Validator Client ID&#62;&#62;, false);

To Validate all the Validator control from JavaScript

Page_ClientValidate();
This [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=programminghack.wordpress.com&blog=4961473&post=21&subd=programminghack&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p class="MsoNormal">Today, I was working on Validator controls and there was a need to make few validator controls enabled or disabled from JavaScript. So, I was walking through it and I found below few things.</p>
<ul>
<li><!--[if !supportLists]--><!--[endif]-->To enable Validator from JavaScript</li>
</ul>
<p class="MsoNormal" style="margin-left:.5in;padding-left:30px;">ValidatorEnable(&lt;&lt;Validator Client ID&gt;&gt;, true);</p>
<ul>
<li><!--[if !supportLists]--><!--[endif]-->To disable Validator from JavaScript</li>
</ul>
<p class="MsoNormal" style="margin-left:.5in;padding-left:30px;">ValidatorEnable(&lt;&lt;Validator Client ID&gt;&gt;, false);</p>
<ul>
<li><!--[if !supportLists]--><!--[endif]-->To Validate all the Validator control from JavaScript</li>
</ul>
<p class="MsoNormal" style="text-indent:.5in;padding-left:30px;">Page_ClientValidate();</p>
<p class="MsoNormal" style="text-indent:.5in;">This function will return true if there is no validation error otherwise it will return false.</p>
<ul>
<li><!--[if !supportLists]-->To Validate a Specific Validator Group from JavaScript</li>
</ul>
<p class="MsoListParagraphCxSpLast" style="padding-left:60px;">Page_ClientValidate(&lt;&lt;ValidationGroupName&gt;&gt;)</p>
<p class="MsoNormal">So, this way we can manipulate validator controls and validation group from JavaScript. I hope this will help you out.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/programminghack.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/programminghack.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/programminghack.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/programminghack.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/programminghack.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/programminghack.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/programminghack.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/programminghack.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/programminghack.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/programminghack.wordpress.com/21/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=programminghack.wordpress.com&blog=4961473&post=21&subd=programminghack&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://programminghack.wordpress.com/2008/09/25/manipulate-validator-controls-validation-group-from-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c6b0b95e1eb828cd070d515d02009d6a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kinjanshah</media:title>
		</media:content>
	</item>
		<item>
		<title>IIF Construct, a Handy ShortHand of IF-ELSE</title>
		<link>http://programminghack.wordpress.com/2008/09/24/18/</link>
		<comments>http://programminghack.wordpress.com/2008/09/24/18/#comments</comments>
		<pubDate>Wed, 24 Sep 2008 06:21:00 +0000</pubDate>
		<dc:creator>kinjanshah</dc:creator>
				<category><![CDATA[ASP.NET]]></category>

		<guid isPermaLink="false">http://programminghack.wordpress.com/2008/09/24/18/</guid>
		<description><![CDATA[As I was reviewing the ASP.Net code of one of my friends, I found following thing.
Dim intValue As Integer = 10
Dim blnFlag As Boolean
If intValue = 10 Then
blnFlag = True
Else
blnFlag = False
End If

So, I suggested him a shorthand provided in ASP.NET i.e. IIF Construct.
Syntax:
IIF(&#60;&#60;Expression&#62;&#62; ,&#60;&#60;True Part&#62;&#62;,&#60;&#60;False Part&#62;&#62;)
Explanation:
Expression: The Expression which needs to be evaluated.
True Part: [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=programminghack.wordpress.com&blog=4961473&post=18&subd=programminghack&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p class="MsoNormal">As I was reviewing the ASP.Net code of one of my friends, I found following thing.</p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;padding-left:30px;">Dim intValue As Integer = 10</p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;padding-left:30px;">Dim blnFlag As Boolean</p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;padding-left:30px;">If intValue = 10 Then</p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;padding-left:60px;">blnFlag = True</p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;padding-left:30px;">Else</p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;padding-left:60px;">blnFlag = False</p>
<p class="MsoNormal" style="padding-left:30px;">End If</p>
<p class="MsoNormal">
<p class="MsoNormal">So, I suggested him a shorthand provided in ASP.NET i.e. IIF Construct.</p>
<p class="MsoNormal"><strong>Syntax:</strong></p>
<p class="MsoNormal" style="padding-left:30px;">IIF(&lt;&lt;Expression&gt;&gt; ,&lt;&lt;True Part&gt;&gt;,&lt;&lt;False Part&gt;&gt;)</p>
<p class="MsoNormal"><strong>Explanation:</strong></p>
<p class="MsoNormal" style="text-indent:.5in;"><strong>Expression</strong>: The Expression which needs to be evaluated.</p>
<p class="MsoNormal" style="text-indent:.5in;"><strong>True Part</strong>: What action to be taken if Expression is True</p>
<p class="MsoNormal" style="text-indent:.5in;"><strong>False Part</strong>: What action to be taken if Expression is False</p>
<p class="MsoNormal"><strong>Example:</strong></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;padding-left:30px;">Dim intValue As Integer = 10</p>
<p class="MsoNormal" style="padding-left:30px;">Dim blnFlag As Boolean = IIf(intValue = 10, True, False)</p>
<p class="MsoNormal">
<p>So, above shorthand is very much handy to use.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/programminghack.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/programminghack.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/programminghack.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/programminghack.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/programminghack.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/programminghack.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/programminghack.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/programminghack.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/programminghack.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/programminghack.wordpress.com/18/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=programminghack.wordpress.com&blog=4961473&post=18&subd=programminghack&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://programminghack.wordpress.com/2008/09/24/18/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c6b0b95e1eb828cd070d515d02009d6a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kinjanshah</media:title>
		</media:content>
	</item>
		<item>
		<title>Strip All HTML Tags from a String by Regular Expression</title>
		<link>http://programminghack.wordpress.com/2008/09/24/strip-all-html-tags-from-a-string-by-regular-expression/</link>
		<comments>http://programminghack.wordpress.com/2008/09/24/strip-all-html-tags-from-a-string-by-regular-expression/#comments</comments>
		<pubDate>Wed, 24 Sep 2008 05:03:29 +0000</pubDate>
		<dc:creator>kinjanshah</dc:creator>
				<category><![CDATA[ASP.NET]]></category>

		<guid isPermaLink="false">http://programminghack.wordpress.com/?p=5</guid>
		<description><![CDATA[In one of my functionality, I needed to strip all HTML tags from a String and then I need to show it to User. So, I have used Regular Expression for that. Following is the example of it.
Procedure:

Retrieve All HTML Tags using      &#60;(.&#124;\n)*?&#62; Pattern
Replace them with Empty String and  [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=programminghack.wordpress.com&blog=4961473&post=5&subd=programminghack&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>In one of my functionality, I needed to strip all HTML tags from a String and then I need to show it to User. So, I have used Regular Expression for that. Following is the example of it.</p>
<p class="MsoNormal" style="text-align:justify;line-height:normal;"><strong>Procedure:</strong></p>
<ol type="1">
<li class="MsoNormal">Retrieve All HTML Tags using      &lt;(.|\n)*?&gt; Pattern</li>
<li class="MsoNormal">Replace them with Empty String and      return the Result.</li>
</ol>
<p class="MsoNormal" style="text-align:justify;line-height:normal;"><strong>Example 1:</strong></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;text-align:justify;line-height:normal;padding-left:30px;">Private Function StripHTML(ByVal htmlString As String) As String</p>
<p class="MsoNormal" style="margin-bottom:.0001pt;text-align:justify;line-height:normal;padding-left:60px;">&#8216;”&lt;(.|\n)*?&gt;” -&gt; This pattern Matches everything found inside html tags;</p>
<p class="MsoNormal" style="margin-bottom:.0001pt;text-align:justify;line-height:normal;padding-left:60px;">&#8216;”(.|\n)” -&gt; Look for any character or a new line</p>
<p class="MsoNormal" style="margin-bottom:.0001pt;text-align:justify;line-height:normal;padding-left:60px;">&#8216;”*?” -&gt; 0 or more occurrences, and make a non-greedy search meaning</p>
<p class="MsoNormal" style="margin-bottom:.0001pt;text-align:justify;line-height:normal;padding-left:60px;">&#8216;That the match will stop at the first available ‘&gt;’ it sees, and not at the last one</p>
<p class="MsoNormal" style="margin-bottom:.0001pt;text-align:justify;line-height:normal;padding-left:60px;">Dim Pattern As String = &#8220;&lt;(.|\n)*?&gt;&#8221;</p>
<p class="MsoNormal" style="margin-bottom:.0001pt;text-align:justify;line-height:normal;padding-left:60px;">Return Regex.Replace(htmlString, Pattern, String.Empty)</p>
<p class="MsoNormal" style="margin-bottom:.0001pt;text-align:justify;line-height:normal;">
<p class="MsoNormal" style="text-align:justify;line-height:normal;padding-left:30px;">End Function</p>
<p class="MsoNormal" style="text-align:justify;line-height:normal;"><strong>Example 2:</strong></p>
<p class="MsoNormal" style="text-align:justify;line-height:normal;">You can just use one line also as following</p>
<p class="MsoNormal" style="text-align:justify;padding-left:30px;">Regex.Replace(textBox1.Text,@&#8221;&lt;(.|\n)*?&gt;&#8221;,&#8221;");</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/programminghack.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/programminghack.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/programminghack.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/programminghack.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/programminghack.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/programminghack.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/programminghack.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/programminghack.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/programminghack.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/programminghack.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=programminghack.wordpress.com&blog=4961473&post=5&subd=programminghack&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://programminghack.wordpress.com/2008/09/24/strip-all-html-tags-from-a-string-by-regular-expression/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c6b0b95e1eb828cd070d515d02009d6a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kinjanshah</media:title>
		</media:content>
	</item>
		<item>
		<title>Sharing Helping Hands</title>
		<link>http://programminghack.wordpress.com/2008/09/24/sharing-helping-hands/</link>
		<comments>http://programminghack.wordpress.com/2008/09/24/sharing-helping-hands/#comments</comments>
		<pubDate>Wed, 24 Sep 2008 04:10:06 +0000</pubDate>
		<dc:creator>kinjanshah</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Error Solving]]></category>
		<category><![CDATA[Helping Hands]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Problem Solution]]></category>
		<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://programminghack.wordpress.com/?p=3</guid>
		<description><![CDATA[Hello Development Community,
I Kinjan Shah, Software Engineer, MCP, MCAD would like to give Helping Hands to freshers i.e. New Commers in this field and the vetrans as well.
In This blog I&#8217;ll share Tips, Tricks, Hacks about JavaScript, ASP.NET, SQL Server, AJAX and much more. This is just to help every one who is passing through [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=programminghack.wordpress.com&blog=4961473&post=3&subd=programminghack&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Hello Development Community,</p>
<p>I Kinjan Shah, Software Engineer, MCP, MCAD would like to give Helping Hands to freshers i.e. New Commers in this field and the vetrans as well.</p>
<p>In This blog I&#8217;ll share Tips, Tricks, Hacks about JavaScript, ASP.NET, SQL Server, AJAX and much more. This is just to help every one who is passing through and utilizing their time in finding solutions of the error which I have already Solved. So, basically I would like to save your time by Providing solutions.</p>
<p>You can also post your questions or the problems you face. I&#8217;ll be glad to help you out guys.</p>
<p>Thanks and Regards,<br />
Kinjan Shah.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/programminghack.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/programminghack.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/programminghack.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/programminghack.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/programminghack.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/programminghack.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/programminghack.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/programminghack.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/programminghack.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/programminghack.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=programminghack.wordpress.com&blog=4961473&post=3&subd=programminghack&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://programminghack.wordpress.com/2008/09/24/sharing-helping-hands/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c6b0b95e1eb828cd070d515d02009d6a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kinjanshah</media:title>
		</media:content>
	</item>
	</channel>
</rss>