<?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>What&#039;s UP Next</title>
	<atom:link href="http://asitkatiyar.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://asitkatiyar.wordpress.com</link>
	<description>Drive your thoughts</description>
	<lastBuildDate>Fri, 06 Nov 2009 05:49:50 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='asitkatiyar.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/1bb06f8838e4d5a8a4d733d5c74a93a3?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>What&#039;s UP Next</title>
		<link>http://asitkatiyar.wordpress.com</link>
	</image>
			<item>
		<title>YUI Profiler</title>
		<link>http://asitkatiyar.wordpress.com/2009/11/05/yui-profiler/</link>
		<comments>http://asitkatiyar.wordpress.com/2009/11/05/yui-profiler/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 11:35:16 +0000</pubDate>
		<dc:creator>Asit</dc:creator>
				<category><![CDATA[YUI]]></category>

		<guid isPermaLink="false">http://asitkatiyar.wordpress.com/?p=105</guid>
		<description><![CDATA[Yahoo User Interface (YUI) provides a very good feature to profile your javascript code. One can measure the performance of their code in the terms of the number of times the function call, average time, minimum time,
maximum time taken by a code block or script to execute. The best feature I feel with YUI code profiler [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asitkatiyar.wordpress.com&blog=250539&post=105&subd=asitkatiyar&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><div id="_mcePaste">Yahoo User Interface (YUI) provides a very good feature to profile your javascript code. One can measure the performance of their code in the terms of the number of times the function call, average time, minimum time,</div>
<div id="_mcePaste">maximum time taken by a code block or script to execute. The best feature I feel with YUI code profiler is the ability to profile a specific code block like functions. Here I am going to present how to create a profile using YUI profiler for a code block:</div>
<div id="_mcePaste"><span style="color:#993300;">Include the code profiler source file in your script:</span></div>
<div style="padding-left:30px;">&lt;script type=&#8221;text/javascript&#8221; src=&#8221;http://yui.yahooapis.com/2.7.0/build/yahoo/yahoo.js&#8221;&gt;&lt;/script&gt;</div>
<div id="_mcePaste" style="padding-left:30px;">&lt;script type=&#8221;text/javascript&#8221; src=&#8221;http://yui.yahooapis.com/2.7.0/build/profiler/profiler-min.js&#8221;&gt;&lt;/script&gt;</div>
<div id="_mcePaste"><span style="color:#993300;">HTML block:</span></div>
<div id="_mcePaste" style="padding-left:30px;">&lt;div id=&#8221;p_report&#8221;&gt;&lt;/div&gt;</div>
<div id="_mcePaste" style="padding-left:30px;">&lt;input type=&#8221;button&#8221; name=&#8221;d_profile&#8221; id=&#8221;d_profile&#8221; value=&#8221;Create Profile&#8221;&gt;</div>
<div><span style="color:#993300;">JavaScript:</span></div>
<div id="_mcePaste" style="padding-left:30px;">YAHOO.util.Event.on(&#8216;d_profile&#8217;, &#8216;click&#8217;, function(){</div>
<div id="_mcePaste" style="padding-left:30px;">YAHOO.tool.Profiler.registerFunction(&#8220;pObject.sayHello&#8221;);</div>
<div id="_mcePaste" style="padding-left:30px;">var pObject = {</div>
<div id="_mcePaste" style="padding-left:30px;">sayHello : function(){</div>
<div id="_mcePaste" style="padding-left:30px;">return &#8220;Hello&#8221;;</div>
<div id="_mcePaste" style="padding-left:30px;">}</div>
<div id="_mcePaste" style="padding-left:30px;">};</div>
<div id="_mcePaste" style="padding-left:30px;">//register method on a global object &#8211; no second argument needed</div>
<div id="_mcePaste" style="padding-left:30px;">YAHOO.tool.Profiler.registerFunction(&#8220;pObject.sayHello&#8221;);</div>
<div id="_mcePaste" style="padding-left:30px;">//alternate &#8211; providing second argument</div>
<div id="_mcePaste" style="padding-left:30px;">YAHOO.tool.Profiler.registerFunction(&#8220;pObject.sayHello&#8221;, pObject);</div>
<div id="_mcePaste" style="padding-left:30px;">//call this function</div>
<div id="_mcePaste" style="padding-left:30px;">var hello = pObject.sayHello();</div>
<div id="_mcePaste" style="padding-left:30px;">var calls = YAHOO.tool.Profiler.getCallCount(&#8220;pObject.sayHello&#8221;);</div>
<div id="_mcePaste" style="padding-left:30px;">var max = YAHOO.tool.Profiler.getMax(&#8220;pObject.sayHello&#8221;);</div>
<div id="_mcePaste" style="padding-left:30px;">var min = YAHOO.tool.Profiler.getMin(&#8220;pObject.sayHello&#8221;);</div>
<div id="_mcePaste" style="padding-left:30px;">var avg = YAHOO.tool.Profiler.getAverage(&#8220;pObject.sayHello&#8221;);</div>
<div id="_mcePaste" style="padding-left:30px;">YAHOO.tool.Profiler.unregisterFunction(&#8220;pObject.sayHello&#8221;);</div>
<div id="_mcePaste" style="padding-left:30px;">document.getElementById(&#8216;p_report&#8217;).innerHTML =</div>
<div id="_mcePaste" style="padding-left:30px;">&#8220;pObject.sayHello(): was called &#8221; + calls +&#8221; times.&lt;br&gt;&#8221;+</div>
<div id="_mcePaste" style="padding-left:30px;">&#8220;The average time was &#8221; + avg + &#8220;ms.&#8221;+&#8221;&lt;br&gt;&#8221;+</div>
<div id="_mcePaste" style="padding-left:30px;">&#8220;The max time was &#8221; + max + &#8221; ms.&#8221; +&#8221;,&lt;br&gt;&#8221;+</div>
<div id="_mcePaste" style="padding-left:30px;">&#8220;The min time was &#8221; + min + &#8221; ms.&#8221;;</div>
<div id="_mcePaste" style="padding-left:30px;">});</div>
<p>The HTML part will display a button &#8220;Create Profile&#8221;. Clicking on that button will generate the report of the pObject.sayHello() function call and display the result in the div with id &#8220;p_report&#8221;.</p>
<p>This is just an example of how to use <a href="http://developer.yahoo.com/yui/profiler/" target="_blank">YUI code profiler</a>.  Hope this will help creating code profiles.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/asitkatiyar.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/asitkatiyar.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/asitkatiyar.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/asitkatiyar.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/asitkatiyar.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/asitkatiyar.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/asitkatiyar.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/asitkatiyar.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/asitkatiyar.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/asitkatiyar.wordpress.com/105/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asitkatiyar.wordpress.com&blog=250539&post=105&subd=asitkatiyar&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://asitkatiyar.wordpress.com/2009/11/05/yui-profiler/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/59f5440eaa4da0039ccd7cf35d943072?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">asitkatiyar</media:title>
		</media:content>
	</item>
		<item>
		<title>Badi Mushkil se Duniya me Dost Milte Hai&#8230;.</title>
		<link>http://asitkatiyar.wordpress.com/2009/04/07/badi-mushkil-se-duniya-me-dost-milte-hai/</link>
		<comments>http://asitkatiyar.wordpress.com/2009/04/07/badi-mushkil-se-duniya-me-dost-milte-hai/#comments</comments>
		<pubDate>Tue, 07 Apr 2009 10:15:44 +0000</pubDate>
		<dc:creator>Asit</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://asitkatiyar.wordpress.com/?p=90</guid>
		<description><![CDATA[This is a line of a famous Hindi song by Kishor Da. This line completely fits to my friends. 
My father got a major heart attack and I was in Bangalore. I had to rush to my native place, Kanpur. Before leaving, I just informed one of best friend around me about my arrival. I informed [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asitkatiyar.wordpress.com&blog=250539&post=90&subd=asitkatiyar&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>This is a line of a famous Hindi song by Kishor Da. This line completely fits to my friends. </p>
<p>My father got a major heart attack and I was in Bangalore. I had to rush to my native place, Kanpur. Before leaving, I just informed one of best friend around me about my arrival. I informed other and he booked the flight ticket on-line. I reached  Delhi then from there I took train and reached Kanpur. I was trying to grab an auto, but what I saw another friend  already waiting for me. He took me directly to the hospital where papa was admitted. Within half an hour all my true  friends gathered at the hospital and offered to stay there for any kind of requirement.</p>
<p>We 5 guys stayed at the hospital for full 7 nights without a single nap for a single minute. In that span of time all of  them slept just for 2-3 hours in day time. Although all of them were very busy in there work schedule and one of them was fasting  for 8 days due to Navrata, they took care of my dad with me. Although they are not strong financially, they offered the financial support. But at that time  I required moral support very badly which they provided just by their presence.</p>
<p>Now my dad is out of danger and about to be released from the hospital within 2-3 days. After being assured about  papa&#8217;s health, I came back to Bangalore, but friends are still there supporting my family.  I will not give thanks to them for their efforts but will pray to God to make me available whenever any of my friends  seeks my presence.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/asitkatiyar.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/asitkatiyar.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/asitkatiyar.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/asitkatiyar.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/asitkatiyar.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/asitkatiyar.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/asitkatiyar.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/asitkatiyar.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/asitkatiyar.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/asitkatiyar.wordpress.com/90/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asitkatiyar.wordpress.com&blog=250539&post=90&subd=asitkatiyar&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://asitkatiyar.wordpress.com/2009/04/07/badi-mushkil-se-duniya-me-dost-milte-hai/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/59f5440eaa4da0039ccd7cf35d943072?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">asitkatiyar</media:title>
		</media:content>
	</item>
		<item>
		<title>Funny things about Ghajini:</title>
		<link>http://asitkatiyar.wordpress.com/2009/03/26/funny-things-about-ghajini/</link>
		<comments>http://asitkatiyar.wordpress.com/2009/03/26/funny-things-about-ghajini/#comments</comments>
		<pubDate>Thu, 26 Mar 2009 10:47:26 +0000</pubDate>
		<dc:creator>Asit</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://asitkatiyar.wordpress.com/?p=85</guid>
		<description><![CDATA[Amir Khan&#8217;s latest released movie Ghajini is the biggest Bollywood hit of the year 2008. I have seen the movie and appreciated a lot. I could find good humor in the happy part of the movie. but the kids of this generation are smarter and more humorous than the adults. Want to know how? Just [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asitkatiyar.wordpress.com&blog=250539&post=85&subd=asitkatiyar&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Amir Khan&#8217;s latest released movie Ghajini is the biggest Bollywood hit of the year 2008. I have seen the movie and appreciated a lot. I could find good humor in the happy part of the movie. but the kids of this generation are smarter and more humorous than the adults. Want to know how? Just read below&#8230;.</p>
<div id="attachment_84" class="wp-caption alignleft" style="width: 510px"><img class="size-full wp-image-84" title="image1233726454789" src="http://asitkatiyar.files.wordpress.com/2009/03/image1233726454789.gif?w=500&#038;h=311" alt="fun in Ghajini" width="500" height="311" /><p class="wp-caption-text">Humor in Ghajini</p></div>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/asitkatiyar.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/asitkatiyar.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/asitkatiyar.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/asitkatiyar.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/asitkatiyar.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/asitkatiyar.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/asitkatiyar.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/asitkatiyar.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/asitkatiyar.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/asitkatiyar.wordpress.com/85/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asitkatiyar.wordpress.com&blog=250539&post=85&subd=asitkatiyar&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://asitkatiyar.wordpress.com/2009/03/26/funny-things-about-ghajini/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/59f5440eaa4da0039ccd7cf35d943072?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">asitkatiyar</media:title>
		</media:content>

		<media:content url="http://asitkatiyar.files.wordpress.com/2009/03/image1233726454789.gif" medium="image">
			<media:title type="html">image1233726454789</media:title>
		</media:content>
	</item>
		<item>
		<title>Zend Framework:: Helper method for creating breadcrumbs</title>
		<link>http://asitkatiyar.wordpress.com/2009/03/24/zend-framework-helper-method-for-creating-breadcrumbs/</link>
		<comments>http://asitkatiyar.wordpress.com/2009/03/24/zend-framework-helper-method-for-creating-breadcrumbs/#comments</comments>
		<pubDate>Tue, 24 Mar 2009 10:33:38 +0000</pubDate>
		<dc:creator>Asit</dc:creator>
				<category><![CDATA[Zend Framework]]></category>

		<guid isPermaLink="false">http://asitkatiyar.wordpress.com/?p=80</guid>
		<description><![CDATA[Here I am going to show how one can create breadcrumbs in the web application based on Zend Framework. This can be achieved by creating a helper method. Before creating helper method, we need to do the following exercise:

Create Zend view object,
Add view script path,
Add the default helper path to the view object,

Now lets start [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asitkatiyar.wordpress.com&blog=250539&post=80&subd=asitkatiyar&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Here I am going to show how one can create breadcrumbs in the web application based on Zend Framework. This can be achieved by creating a helper method. Before creating helper method, we need to do the following exercise:</p>
<ul>
<li>Create Zend view object,</li>
<li>Add view script path,</li>
<li>Add the default helper path to the view object,</li>
</ul>
<p>Now lets start step by step:</p>
<p><strong>Creating Zend view object:</strong></p>
<blockquote><p>$view = Zend_View();</p></blockquote>
<p><strong>Adding view script path:</strong></p>
<blockquote><p>$viewPath = &#8220;path/to/viewsDirectory&#8221;;<br />
$view-&gt;addScriptPath($viewPath);</p></blockquote>
<p><strong>Adding the default helper path to the vew object:</strong></p>
<blockquote><p>$helperPath = &#8220;path/to/helperDirectory&#8221;;      Zend_Controller_Action_HelperBroker::getStaticHelper(&#8216;viewRenderer&#8217;)-&gt;setView($view);<br />
$view-&gt;addHelperPath($helperPath, &#8216;Helper_&#8217;);</p></blockquote>
<p>Now creating the class for the breadcrumbs:</p>
<blockquote><p>class Helper_BreadCrumbs {</p>
<p>public function breadCrumb(){<br />
$cFront = Zend_Controller_Front::getInstance();<br />
$module = $cFront-&gt;getRequest()-&gt;getModuleName();<br />
$module = strtolower($module);</p>
<p>$controller = $cFront-&gt;getRequest()-&gt;getControllerName();<br />
$controller = strtolower($controller);</p>
<p>$action = $cFront-&gt;getRequest()-&gt;getActionName();<br />
$action = strtolower($action);</p>
<p>if($module == &#8220;default&#8221; &amp;&amp; $controller == &#8220;index&#8221; &amp;&amp; $action == &#8220;index&#8221;){<br />
return;<br />
}<br />
//Home link<br />
$home = &#8216;&lt;a href=&#8221;/&#8221;&gt;Home&lt;/a&gt;&#8217;;</p>
<p>//start breadcrumbs<br />
$bCrumbs = $home . &#8220;::&#8221;;<br />
if($action == &#8220;index&#8221;){<br />
$bCrumbs .= $controller;<br />
}<br />
else{<br />
$bCrumbs .= &#8220;&lt;a href=&#8217;/$controller&#8217;&gt;$controller&lt;/a&gt;::<br />
&lt;a href=&#8217;/$controller/$action&#8217;&gt;$action&lt;/a&gt;&#8221;;<br />
}</p>
<p>return $bCrumbs;<br />
}<br />
}</p></blockquote>
<p>Hope this article will help the web application users to indicate &#8220;where are you&#8221;.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/asitkatiyar.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/asitkatiyar.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/asitkatiyar.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/asitkatiyar.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/asitkatiyar.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/asitkatiyar.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/asitkatiyar.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/asitkatiyar.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/asitkatiyar.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/asitkatiyar.wordpress.com/80/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asitkatiyar.wordpress.com&blog=250539&post=80&subd=asitkatiyar&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://asitkatiyar.wordpress.com/2009/03/24/zend-framework-helper-method-for-creating-breadcrumbs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/59f5440eaa4da0039ccd7cf35d943072?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">asitkatiyar</media:title>
		</media:content>
	</item>
		<item>
		<title>Zend Framework:: Caching the database query results</title>
		<link>http://asitkatiyar.wordpress.com/2009/03/20/zend-framework-caching-the-database-query-results/</link>
		<comments>http://asitkatiyar.wordpress.com/2009/03/20/zend-framework-caching-the-database-query-results/#comments</comments>
		<pubDate>Fri, 20 Mar 2009 09:52:29 +0000</pubDate>
		<dc:creator>Asit</dc:creator>
				<category><![CDATA[Zend Framework]]></category>

		<guid isPermaLink="false">http://asitkatiyar.wordpress.com/?p=76</guid>
		<description><![CDATA[Caching is basically used to improve the performance of the application. Your application may consists of multiple expensive queries ruining the application performance.  The Zend_Cache component of Zend Framework provides a good feature to improve the page performance by caching the database query results. Here is the sample code :
// Creating the cache options
$frontend = [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asitkatiyar.wordpress.com&blog=250539&post=76&subd=asitkatiyar&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Caching is basically used to improve the performance of the application. Your application may consists of multiple expensive queries ruining the application performance.  The Zend_Cache component of Zend Framework provides a good feature to improve the page performance by caching the database query results. Here is the sample code :</p>
<blockquote><p><span style="color:#800080;">// Creating the cache options<br />
$frontend = array(<br />
&#8216;lifetime&#8217; =&gt; 86400, // cache lifetime of 24 hours (time is in seconds)<br />
&#8216;automatic_serialization&#8217; =&gt; true  //default is false<br />
);</span></p>
<p><span style="color:#800080;">$cachedir = /path/to/cacheDirectory;<br />
if(!is_dir($cachedir)){<br />
mkdir($cachedir,0755);<br />
}</span></p>
<p><span style="color:#800080;">$backend = array(&#8216;cache_dir&#8217; =&gt; $cachedir);</span></p>
<p><span style="color:#800080;">// Getting a Zend_Cache_Core object<br />
$zend_cache = Zend_Cache::factory(&#8216;Core&#8217;, &#8216;File&#8217;, $frontend, $backend);</span></p>
<p><span style="color:#800080;">$result = run_query($zend_cache);<br />
print_r($result);</span></p>
<p><span style="color:#800080;">function run_query($cacheObj){<br />
$q = &#8220;Database query&#8221;;<br />
if(!$result = $cacheObj-&gt;cache-&gt;load(&#8220;myresult&#8221;)){<br />
$db = Zend_Db::factory(DB_connection_parameters);<br />
$result = $db-&gt;fetchAll($q);<br />
$cacheObj-&gt;save($result, &#8220;myresult&#8221;);<br />
}<br />
else {<br />
echo &#8220;This result is from cache.&#8221;;<br />
}<br />
return $result;<br />
}</span></p></blockquote>
<p><span style="color:#800000;">Caution: </span>You should give the unique name in the &#8220;load(&#8216;name&#8217;) and save(&#8216;name&#8217;)&#8221; functions.<br />
Otherwise you will get the same result on the pages where the query is intended to produce<br />
different results.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/asitkatiyar.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/asitkatiyar.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/asitkatiyar.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/asitkatiyar.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/asitkatiyar.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/asitkatiyar.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/asitkatiyar.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/asitkatiyar.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/asitkatiyar.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/asitkatiyar.wordpress.com/76/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asitkatiyar.wordpress.com&blog=250539&post=76&subd=asitkatiyar&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://asitkatiyar.wordpress.com/2009/03/20/zend-framework-caching-the-database-query-results/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/59f5440eaa4da0039ccd7cf35d943072?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">asitkatiyar</media:title>
		</media:content>
	</item>
		<item>
		<title>IE7.0-Expected Identifier or String&#8230;Bang the bug</title>
		<link>http://asitkatiyar.wordpress.com/2008/12/31/ie70-expected-identifier-or-stringbang-the-bug/</link>
		<comments>http://asitkatiyar.wordpress.com/2008/12/31/ie70-expected-identifier-or-stringbang-the-bug/#comments</comments>
		<pubDate>Wed, 31 Dec 2008 04:36:20 +0000</pubDate>
		<dc:creator>Asit</dc:creator>
				<category><![CDATA[Java Script]]></category>

		<guid isPermaLink="false">http://asitkatiyar.wordpress.com/?p=68</guid>
		<description><![CDATA[Hi,
While testing my application, I was very happy by getting smooth run on the FireFox and Safari.  But when I tested that on IE7.0, I was banged with the error popup-
&#8220;Expected identifier or string&#8221;
on the very first page of the application. I started trying out putting few alerts on the very first javascript file loaded, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asitkatiyar.wordpress.com&blog=250539&post=68&subd=asitkatiyar&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Hi,</p>
<p>While testing my application, I was very happy by getting smooth run on the FireFox and Safari.  But when I tested that on IE7.0, I was banged with the error popup-</p>
<p>&#8220;Expected identifier or string&#8221;</p>
<p>on the very first page of the application. I started trying out putting few alerts on the very first javascript file loaded, but failed. After digging a lot, I found the way to get-rid-of this issue. Here is the soultion-</p>
<p>The problem JavaScript code was-</p>
<p>1    function txtCellEditor(){<br />
2        var txt = new YAHOO.widget.TextboxCellEditor({<br />
3                  asyncSubmitter: asyncUpdate,<br />
4                  validator:YAHOO.widget.DataTable.validateNumber,<br />
5                  });<br />
6        return txt;<br />
7    }</p>
<p>The main problem was the &#8220;,&#8221;(comma) at the line 4. I removed the comma and the application started working fine on IE7 also.</p>
<p>Actually for IE, there should be no comma after the function closing(after the braces{}), or the parameters passed to the functions or the class constructors. IE considers that as a new line.</p>
<p>Enjoy debugging&#8230;&#8230;</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/asitkatiyar.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/asitkatiyar.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/asitkatiyar.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/asitkatiyar.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/asitkatiyar.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/asitkatiyar.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/asitkatiyar.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/asitkatiyar.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/asitkatiyar.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/asitkatiyar.wordpress.com/68/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asitkatiyar.wordpress.com&blog=250539&post=68&subd=asitkatiyar&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://asitkatiyar.wordpress.com/2008/12/31/ie70-expected-identifier-or-stringbang-the-bug/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/59f5440eaa4da0039ccd7cf35d943072?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">asitkatiyar</media:title>
		</media:content>
	</item>
		<item>
		<title>PHP-Showing image having name with &#8220;%2F&#8221;</title>
		<link>http://asitkatiyar.wordpress.com/2008/06/26/php-showing-image-having-name-with-%2f/</link>
		<comments>http://asitkatiyar.wordpress.com/2008/06/26/php-showing-image-having-name-with-%2f/#comments</comments>
		<pubDate>Thu, 26 Jun 2008 08:58:20 +0000</pubDate>
		<dc:creator>Asit</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://asitkatiyar.wordpress.com/?p=61</guid>
		<description><![CDATA[If you want to display an image on an HTML page, you can simply use the &#60;img&#62; tag. But if the image name consists of the html entity &#8220;%2F&#8221;, it is difficult to do that. For example:
The image name is : foo%2Fbar.png
&#60;img src=&#8221;/images/foo%2Fbar.png&#8221; title=&#8221;image&#8221; alt=&#8221;image&#8221; /&#62;
The html page will try to get the image from [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asitkatiyar.wordpress.com&blog=250539&post=61&subd=asitkatiyar&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>If you want to display an image on an HTML page, you can simply use the &lt;img&gt; tag. But if the image name consists of the html entity &#8220;%2F&#8221;, it is difficult to do that. For example:</p>
<p>The image name is : foo%2Fbar.png</p>
<p>&lt;img src=&#8221;/images/foo%2Fbar.png&#8221; title=&#8221;image&#8221; alt=&#8221;image&#8221; /&gt;</p>
<p>The html page will try to get the image from the directory: /images/foo/bar.png</p>
<p>This way the page will never get the image and won&#8217;t be able to display that. I have a trick to solve this problem. Here it is:</p>
<p style="padding-left:30px;"><span style="color:#800000;">&lt;?php</span></p>
<p style="padding-left:30px;"><span style="color:#800000;">&lt;html&gt;</span></p>
<p style="padding-left:30px;"><span style="color:#800000;">&lt;p&gt;The correct image is:</span></p>
<p style="padding-left:30px;"><span style="color:#800000;">&lt;img src=&#8221;&lt;?php echo substr_replace(&#8220;/images/foo%2Fbar.png&#8221;, &#8216;%252F&#8217;, -10, -7) ?&gt;&#8221; alt=&#8221;image&#8221; title=&#8221;image&#8221; /&gt;</span></p>
<p style="padding-left:30px;"><span style="color:#800000;">&lt;/html&gt;</span></p>
<p style="padding-left:30px;"><span style="color:#800000;">?&gt;</span></p>
<p>This code will display the image by replacing &#8220;%2F&#8221; with &#8220;%252F&#8221; and you will not be blamed to have extra subdirectories.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/asitkatiyar.wordpress.com/61/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/asitkatiyar.wordpress.com/61/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/asitkatiyar.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/asitkatiyar.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/asitkatiyar.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/asitkatiyar.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/asitkatiyar.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/asitkatiyar.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/asitkatiyar.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/asitkatiyar.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/asitkatiyar.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/asitkatiyar.wordpress.com/61/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asitkatiyar.wordpress.com&blog=250539&post=61&subd=asitkatiyar&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://asitkatiyar.wordpress.com/2008/06/26/php-showing-image-having-name-with-%2f/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/59f5440eaa4da0039ccd7cf35d943072?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">asitkatiyar</media:title>
		</media:content>
	</item>
		<item>
		<title>Breaking News!!</title>
		<link>http://asitkatiyar.wordpress.com/2008/04/29/breaking-news/</link>
		<comments>http://asitkatiyar.wordpress.com/2008/04/29/breaking-news/#comments</comments>
		<pubDate>Tue, 29 Apr 2008 10:29:57 +0000</pubDate>
		<dc:creator>Asit</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://asitkatiyar.wordpress.com/?p=59</guid>
		<description><![CDATA[



You open the TV to get some news updates. You rush to a news channel who claims to   be the best news channel. Suddenly you hold your breath seeing the Breaking News heading. The breaking news is:
Breaking News:: Tulsi ki wapasi………………
Your excitement ends up with frustration and irritation. You change the channel. After [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asitkatiyar.wordpress.com&blog=250539&post=59&subd=asitkatiyar&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p class="MsoNormal"><a href="http://asitkatiyar.files.wordpress.com/2008/04/breaking2.jpeg"><img class="alignleft size-thumbnail wp-image-60" src="http://asitkatiyar.files.wordpress.com/2008/04/breaking2.jpeg?w=123&#038;h=85" alt="breakinig news" width="123" height="85" /></a></p>
<p class="MsoNormal">
<p class="MsoNormal">
<p class="MsoNormal">
<p class="MsoNormal">You open the TV to get some news updates. You rush to a news channel who claims to   be the best news channel. Suddenly you hold your breath seeing the Breaking News heading. The breaking news is:</p>
<p class="MsoNormal"><strong>Breaking News:: Tulsi ki wapasi………………</strong></p>
<p class="MsoNormal">Your excitement ends up with frustration and irritation. You change the channel. After some time, you again reach the same channel, now the breaking news is::</p>
<p class="MsoNormal"><strong>Breaking News:: Mumbai ke zoo me ek magarmacchh ne anda diya……….</strong></p>
<p class="MsoNormal">Now either you want to break your head or the TV. Obviously you don’t do any one. So you simply switch off the TV. After 1 hour you again open the TV with some hope. Now the best news channel is showing the clippings of some idiot Saas-Bahu daily soap which is becoming the epic in television history. Now I don’t have words to express your frustration level. Finally you start searching for the news paper having older but better news.</p>
<p class="MsoNormal">This is now the standard of news channels. They try to make the simple news, sensational. They have hours to discuss what Khali did in WWE, but don&#8217;t have even 5 minutes for successful launch of 10 satellites at one go. They have full time to discuss about Dhoni’s hair style but not to discuss about the people who spent their lives serving for society.</p>
<p class="MsoNormal">I suggest, they should claim to be the best entertainment channel.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/asitkatiyar.wordpress.com/59/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/asitkatiyar.wordpress.com/59/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/asitkatiyar.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/asitkatiyar.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/asitkatiyar.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/asitkatiyar.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/asitkatiyar.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/asitkatiyar.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/asitkatiyar.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/asitkatiyar.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/asitkatiyar.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/asitkatiyar.wordpress.com/59/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asitkatiyar.wordpress.com&blog=250539&post=59&subd=asitkatiyar&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://asitkatiyar.wordpress.com/2008/04/29/breaking-news/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/59f5440eaa4da0039ccd7cf35d943072?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">asitkatiyar</media:title>
		</media:content>

		<media:content url="http://asitkatiyar.files.wordpress.com/2008/04/breaking2.jpeg?w=123" medium="image">
			<media:title type="html">breakinig news</media:title>
		</media:content>
	</item>
		<item>
		<title>When my heart broke</title>
		<link>http://asitkatiyar.wordpress.com/2008/02/25/when-my-heart-broke/</link>
		<comments>http://asitkatiyar.wordpress.com/2008/02/25/when-my-heart-broke/#comments</comments>
		<pubDate>Mon, 25 Feb 2008 13:11:53 +0000</pubDate>
		<dc:creator>Asit</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://asitkatiyar.wordpress.com/?p=58</guid>
		<description><![CDATA[Here you can see what happened, when I proposed the  first girl in my life  

       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asitkatiyar.wordpress.com&blog=250539&post=58&subd=asitkatiyar&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Here you can see what happened, when I proposed the  first girl in my life <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p><span style="text-align:center; display: block;"><a href="http://asitkatiyar.wordpress.com/2008/02/25/when-my-heart-broke/"><img src="http://img.youtube.com/vi/rOLe2S03tCo/2.jpg" alt="" /></a></span></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/asitkatiyar.wordpress.com/58/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/asitkatiyar.wordpress.com/58/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/asitkatiyar.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/asitkatiyar.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/asitkatiyar.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/asitkatiyar.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/asitkatiyar.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/asitkatiyar.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/asitkatiyar.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/asitkatiyar.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/asitkatiyar.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/asitkatiyar.wordpress.com/58/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asitkatiyar.wordpress.com&blog=250539&post=58&subd=asitkatiyar&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://asitkatiyar.wordpress.com/2008/02/25/when-my-heart-broke/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/59f5440eaa4da0039ccd7cf35d943072?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">asitkatiyar</media:title>
		</media:content>

		<media:content url="http://img.youtube.com/vi/rOLe2S03tCo/2.jpg" medium="image" />
	</item>
		<item>
		<title>Fool or lack of information!!</title>
		<link>http://asitkatiyar.wordpress.com/2008/02/01/fool-or-lack-of-information/</link>
		<comments>http://asitkatiyar.wordpress.com/2008/02/01/fool-or-lack-of-information/#comments</comments>
		<pubDate>Fri, 01 Feb 2008 05:26:06 +0000</pubDate>
		<dc:creator>Asit</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://asitkatiyar.wordpress.com/?p=51</guid>
		<description><![CDATA[Few days back, I asked one of my good friend to send me some money. He agreed and went to the nearest ATM to deposit money. He simply filled all the information regarding my account on the envelop and drop that into the &#8220;Cheque Drop Box&#8221;. When I didn&#8217;t get the money after expected days, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asitkatiyar.wordpress.com&blog=250539&post=51&subd=asitkatiyar&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Few days back, I asked one of my good friend to send me some money. He agreed and went to the nearest ATM to deposit money. He simply filled all the information regarding my account on the envelop and drop that into the &#8220;Cheque Drop Box&#8221;. When I didn&#8217;t get the money after expected days, I called him to ask. When he told, what he did, I died of laugh at his foolishness. The amazing thing was, he doesn&#8217;t have account in that bank too.</p>
<p>After sometime I thought that, why to blame only his foolishness. People do lots of things carelessly. He may be dump but the banking system was also a big &#8220;Dump&#8221;. This is the responsibility of the &#8220;System &#8221; to be informative enough to suggest right steps to use them. If someone is giving wrong input to any system, either software or hardware, the system is responsible. I think he should claim for his money but he doesn&#8217;t have any proof ( this is surely his foolishness <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  ).</p>
<p>The banking system should provide &#8220;what to do&#8221; along with &#8220;what NOT to do(At least what mistakes one can do.)&#8221;.</p>
<p>I think bank should paste/print these on the envelop or on ATM centers:</p>
<p>1- You can not deposit cash here if you don&#8217;t have account with us.</p>
<p>2- Please do not drop cash in the &#8220;cheque  drop box&#8221;.</p>
<p>3- You must have ATM card to deposit cash at ATM points.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/asitkatiyar.wordpress.com/51/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/asitkatiyar.wordpress.com/51/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/asitkatiyar.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/asitkatiyar.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/asitkatiyar.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/asitkatiyar.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/asitkatiyar.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/asitkatiyar.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/asitkatiyar.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/asitkatiyar.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/asitkatiyar.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/asitkatiyar.wordpress.com/51/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asitkatiyar.wordpress.com&blog=250539&post=51&subd=asitkatiyar&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://asitkatiyar.wordpress.com/2008/02/01/fool-or-lack-of-information/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/59f5440eaa4da0039ccd7cf35d943072?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">asitkatiyar</media:title>
		</media:content>
	</item>
	</channel>
</rss>