<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Kiran&#039;s Blog</title>
	<atom:link href="http://punekiran.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://punekiran.wordpress.com</link>
	<description>experience using small tricky code</description>
	<lastBuildDate>Wed, 19 May 2010 06:12:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='punekiran.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/c28b56fc09509d8fb6f305cd3112bd28?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Kiran&#039;s Blog</title>
		<link>http://punekiran.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://punekiran.wordpress.com/osd.xml" title="Kiran&#039;s Blog" />
	<atom:link rel='hub' href='http://punekiran.wordpress.com/?pushpress=hub'/>
		<item>
		<title>SlideUp SlideDown div using JQuery</title>
		<link>http://punekiran.wordpress.com/2009/12/02/slideup-slidedown-div-using-jquery/</link>
		<comments>http://punekiran.wordpress.com/2009/12/02/slideup-slidedown-div-using-jquery/#comments</comments>
		<pubDate>Wed, 02 Dec 2009 13:48:02 +0000</pubDate>
		<dc:creator>punekiran</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://punekiran.wordpress.com/?p=51</guid>
		<description><![CDATA[This is an example of sliding down and sliding up a DIV tag smoothly using jQuery. &#60;!DOCTYPE HTML PUBLIC &#8220;-//W3C//DTD HTML 4.01 Transitional//EN&#8221;  &#8220;http://www.w3.org/TR/html4/loose.dtd&#8221;&#62; &#60;html&#62; &#60;body&#62; &#60;head&#62; &#60;script src=&#8221;jquery.js&#8221;&#62;&#60;/script&#62; &#60;script&#62; function getDownUp(){ if ($(&#8220;div#sliding&#8221;).is(&#8220;:hidden&#8221;)) { $(&#8220;div#sliding&#8221;).slideDown(&#8220;slow&#8221;); }else { $(&#8220;div#sliding&#8221;).slideUp(&#8220;slow&#8221;); } } &#60;/script&#62; &#60;/head&#62; &#60;body&#62; &#60;a href=&#8221;javascript:getDownUp();&#8221;&#62; SLIDING&#60;/a&#62; &#60;div id=&#8221;sliding&#8221; style=&#8221;display:none;text-align:center;&#8221;&#62; &#60;img src=&#8221;Image1.jpg&#8221;&#62; &#60;img src=&#8221;Image2.jpg&#8221;&#62; &#60;img [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=punekiran.wordpress.com&amp;blog=7548584&amp;post=51&amp;subd=punekiran&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This is an example of sliding down and sliding up a DIV tag smoothly using jQuery.</p>
<p>&lt;!DOCTYPE HTML PUBLIC &#8220;-//W3C//DTD HTML 4.01 Transitional//EN&#8221; <span style="background-color:#ffffff;"> &#8220;http://www.w3.org/TR/html4/loose.dtd&#8221;&gt;</span></p>
<p><span style="background-color:#ffffff;">&lt;html&gt;</span></p>
<p><span style="background-color:#ffffff;">&lt;body&gt;</span></p>
<p><span style="background-color:#ffffff;">&lt;head&gt;</span></p>
<div><span style="background-color:#ffffff;">&lt;script src=&#8221;jquery.js&#8221;&gt;&lt;/script&gt;</span></div>
<div id="_mcePaste">&lt;script&gt;</div>
<div id="_mcePaste">function getDownUp(){</div>
<div id="_mcePaste">if ($(&#8220;div#sliding&#8221;).is(&#8220;:hidden&#8221;)) {</div>
<div id="_mcePaste">$(&#8220;div#sliding&#8221;).slideDown(&#8220;slow&#8221;);</div>
<div id="_mcePaste">}else</div>
<div id="_mcePaste">{</div>
<div id="_mcePaste">$(&#8220;div#sliding&#8221;).slideUp(&#8220;slow&#8221;);</div>
<div id="_mcePaste">}</div>
<div id="_mcePaste">}</div>
<div id="_mcePaste">&lt;/script&gt;</div>
<div>&lt;/head&gt;</div>
<div>&lt;body&gt;</div>
<div><strong>&lt;a href=&#8221;javascript:getDownUp();&#8221;&gt; SLIDING&lt;/a&gt;</strong></div>
<div>
<div>&lt;div id=&#8221;sliding&#8221; style=&#8221;display:none;text-align:center;&#8221;&gt;</div>
<div><span style="background-color:#ffffff;">&lt;img src=&#8221;Image1.jpg&#8221;&gt;</span></div>
<div>&lt;img src=&#8221;Image2.jpg&#8221;&gt;</div>
<div>&lt;img src=&#8221;Image3.jpg&#8221;&gt;</div>
<div>&lt;/div&gt;</div>
<div>&lt;/body&gt;</div>
<div>Steps:</div>
<div>1) Create sample images as image1.jpg, image2.jpg and image3.jpg</div>
<div>2) Place them inside the div named &#8220;sliding&#8221; one below other</div>
<div>3) Download the jquery.js file from <span style="background-color:#ffffff;"><a href="http://docs.jquery.com/Release:jQuery_1.3.2">http://docs.jquery.com/Release:jQuery_1.3.2</a></span></div>
<div><span style="background-color:#ffffff;">4) Keep the images and jquery in same directory.</span></div>
<div><span style="background-color:#ffffff;">5) Copy paste the above code into a .htm file saving in the same directory. </span></div>
<div><span style="background-color:#ffffff;">6) Run the .htm file <img src='http://s2.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </span></div>
<div><span style="background-color:#ffffff;">Note: You need to use the doctype correctly to work this properly in IE</span></div>
<div><span style="background-color:#ffffff;">The slidedown slideup also had a single alternative function</span></div>
<div><span style="white-space:pre;"><span style="background-color:#ffffff;"> </span></span><span style="background-color:#ffffff;">$(&#8220;#sliding&#8221;).slideToggle(&#8220;slow&#8221;);</span></div>
</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/punekiran.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/punekiran.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/punekiran.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/punekiran.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/punekiran.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/punekiran.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/punekiran.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/punekiran.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/punekiran.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/punekiran.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/punekiran.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/punekiran.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/punekiran.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/punekiran.wordpress.com/51/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=punekiran.wordpress.com&amp;blog=7548584&amp;post=51&amp;subd=punekiran&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://punekiran.wordpress.com/2009/12/02/slideup-slidedown-div-using-jquery/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b9450e63c7f68edcf083a7fca13ed92e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">punekiran</media:title>
		</media:content>
	</item>
		<item>
		<title>Few SEO tips for wordpress plugin &#8220;iNove&#8221;</title>
		<link>http://punekiran.wordpress.com/2009/08/18/few-seo-tips-for-wordpress-plugin-inove/</link>
		<comments>http://punekiran.wordpress.com/2009/08/18/few-seo-tips-for-wordpress-plugin-inove/#comments</comments>
		<pubDate>Tue, 18 Aug 2009 11:36:23 +0000</pubDate>
		<dc:creator>punekiran</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://punekiran.wordpress.com/?p=43</guid>
		<description><![CDATA[H1 tag: This tag is the most important tag among the tags used in the body of your html page. This theme has the header text in H1 tag which you give main heading to your blog. This is used throughout all pages which is not SEO friendly coding. Steps to acheive this on your [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=punekiran.wordpress.com&amp;blog=7548584&amp;post=43&amp;subd=punekiran&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>H1 tag:</p>
<p>This tag is the most important tag among the tags used in the body of your html page. This theme has the header text in H1 tag which you give main heading to your blog. This is used throughout all pages which is not SEO friendly coding.</p>
<p>Steps to acheive this on your single page blog display.</p>
<p><strong>STEP 1:</strong> introduce the below CSS in your style sheet file style.CSS</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
.post h1 {<br />
display:block;<br />
margin:0 7px 0 7px;<br />
border-bottom:1px solid #CCC;<br />
padding:0px 5px 3px;<br />
font-size:16px;<br />
font-family:Arial, Verdana,&#8221;BitStream vera Sans&#8221;;<br />
letter-spacing: 0px;</p>
<p>}<br />
.post h1 a.title {<br />
text-decoration:none;<br />
color:#4C4C4C;<br />
}<br />
.post h1 a.title:hover {<br />
color:#2970A6;<br />
}<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p><strong>STEP 2: </strong>Change the below line in templates/header.php</p>
<p>&lt;h1 id=&#8221;title&#8221;&gt;&lt;a href=&#8221;&lt;?php bloginfo(&#8216;url&#8217;); ?&gt;/&#8221;&gt;&lt;?php bloginfo(&#8216;name&#8217;); ?&gt;&lt;/a&gt;&lt;/h1&gt;</p>
<p>to &lt;p class=&#8221;new&#8221;&gt;&lt;a href=&#8221;&lt;?php bloginfo(&#8216;url&#8217;); ?&gt;/&#8221;&gt;&lt;?php bloginfo(&#8216;name&#8217;); ?&gt;&lt;/a&gt;&lt;/p&gt;</p>
<p>add a simple  CSS for &lt;p class=&#8221;new&#8221;&gt; into your same CSS file</p>
<p><strong>STEP 3:</strong> Change in single.php</p>
<p>From &lt;h2&gt;&lt;?php the_title(); ?&gt;&lt;/h2&gt;</p>
<p>To &lt;h1&gt;&lt;?php the_title(); ?&gt;&lt;/h1&gt;</p>
<p>This will create the blog title in the blog detail page to &lt;H1&gt; tag</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/punekiran.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/punekiran.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/punekiran.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/punekiran.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/punekiran.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/punekiran.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/punekiran.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/punekiran.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/punekiran.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/punekiran.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/punekiran.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/punekiran.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/punekiran.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/punekiran.wordpress.com/43/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=punekiran.wordpress.com&amp;blog=7548584&amp;post=43&amp;subd=punekiran&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://punekiran.wordpress.com/2009/08/18/few-seo-tips-for-wordpress-plugin-inove/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b9450e63c7f68edcf083a7fca13ed92e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">punekiran</media:title>
		</media:content>
	</item>
		<item>
		<title>Twitter helped me get command on WordPress</title>
		<link>http://punekiran.wordpress.com/2009/07/16/twitter-helped-me-get-command-on-wordpress/</link>
		<comments>http://punekiran.wordpress.com/2009/07/16/twitter-helped-me-get-command-on-wordpress/#comments</comments>
		<pubDate>Thu, 16 Jul 2009 07:10:25 +0000</pubDate>
		<dc:creator>punekiran</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://punekiran.wordpress.com/?p=38</guid>
		<description><![CDATA[I had to get the blog up and ready for my company within a given period which was too small. I was completely new to wordpress, had less command on CSS and less knowledge of PHP. Basically I had only good grip on HTML WordPress as it is said is very easy to install and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=punekiran.wordpress.com&amp;blog=7548584&amp;post=38&amp;subd=punekiran&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I had to get the blog up and ready for my company within a given period which was too small. I was completely new to wordpress, had less command on CSS and less knowledge of PHP. Basically I had only good grip on HTML <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>WordPress as it is said is very easy to install and start using it very famous blog capibility. The hurdle for me was customized theme which was proposed in my office by our professional graphics designer and few customized plugins proposed requirment.</p>
<p>Same time I got introduced to Twitter and things changed like any thing. I started following people who are wordpress lowers and there tweets are all about wordpress like <a href="http://twitter.com/iheartwordpress" target="_blank">@iheartwordpress</a> and<a href="http://twitter.com/wordpress" target="_blank">@wordpress</a> itself. This helped me a lot to get quick hands on configration of wordpress.</p>
<p>Initially I had implemented the inove theme and later I made changes into it and got our own theme into place.  Hoping to get a complete free theme of my own.</p>
<p>Thanks a lot to Twitter.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/punekiran.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/punekiran.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/punekiran.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/punekiran.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/punekiran.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/punekiran.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/punekiran.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/punekiran.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/punekiran.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/punekiran.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/punekiran.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/punekiran.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/punekiran.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/punekiran.wordpress.com/38/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=punekiran.wordpress.com&amp;blog=7548584&amp;post=38&amp;subd=punekiran&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://punekiran.wordpress.com/2009/07/16/twitter-helped-me-get-command-on-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b9450e63c7f68edcf083a7fca13ed92e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">punekiran</media:title>
		</media:content>
	</item>
		<item>
		<title>&#8216;Comment Notifier&#8217; causing spam filter to turn OFF</title>
		<link>http://punekiran.wordpress.com/2009/07/01/comment-notifier-casusing-spam-filter-to-turn-off/</link>
		<comments>http://punekiran.wordpress.com/2009/07/01/comment-notifier-casusing-spam-filter-to-turn-off/#comments</comments>
		<pubDate>Wed, 01 Jul 2009 09:29:52 +0000</pubDate>
		<dc:creator>punekiran</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://punekiran.wordpress.com/2009/07/01/comment-notifier-casusing-spam-filter-to-turn-off/</guid>
		<description><![CDATA[I am using the very famous spam filter Akismet used widely to avoid spam comments on my wordpress blog. There was a requirement to sent auto email about any new comment to few users. By default the email goes to the owner of blog whenever his/her blog is commented. When I searched for a plugin [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=punekiran.wordpress.com&amp;blog=7548584&amp;post=35&amp;subd=punekiran&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I am using the very famous spam filter Akismet used widely to avoid spam comments on my wordpress blog. There was a requirement to sent auto email about any new comment to few users. By default the email goes to the owner of blog whenever his/her blog is commented.</p>
<p>When I searched for a plugin I just noticed many people are using the &#8216;comment Notifier&#8217; plugin. I installed it and using it was very easy. It served our purpose to email multiple including the owner of blog when someone writes a comment on any blog.</p>
<p>The problem which came up was the spam comment filtering of my spam filter plugin Akismet was turned OFF. This caused a ciaos. comment notifier started emailing all the users listed in it for spam comments also and the spam comments were not filtered. We needed to manually delete them or sent to spam folder.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/punekiran.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/punekiran.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/punekiran.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/punekiran.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/punekiran.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/punekiran.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/punekiran.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/punekiran.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/punekiran.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/punekiran.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/punekiran.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/punekiran.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/punekiran.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/punekiran.wordpress.com/35/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=punekiran.wordpress.com&amp;blog=7548584&amp;post=35&amp;subd=punekiran&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://punekiran.wordpress.com/2009/07/01/comment-notifier-casusing-spam-filter-to-turn-off/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b9450e63c7f68edcf083a7fca13ed92e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">punekiran</media:title>
		</media:content>
	</item>
		<item>
		<title>TrackBacks in blogging explained</title>
		<link>http://punekiran.wordpress.com/2009/06/22/trackbacks-in-blogging-eplained/</link>
		<comments>http://punekiran.wordpress.com/2009/06/22/trackbacks-in-blogging-eplained/#comments</comments>
		<pubDate>Mon, 22 Jun 2009 13:41:49 +0000</pubDate>
		<dc:creator>punekiran</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://punekiran.wordpress.com/2009/06/22/trackbacks-in-blogging-eplained/</guid>
		<description><![CDATA[Person A writes something on their blog. Person B wants to comment on Person A&#8217;s blog, but wants her own readers to see what she had to say, and be able to comment on her own blog Person B posts on her own blog and sends a trackback to Person A&#8217;s blog Person A&#8217;s blog [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=punekiran.wordpress.com&amp;blog=7548584&amp;post=32&amp;subd=punekiran&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Person A writes something on their blog.<br />
Person B wants to comment on Person A&#8217;s blog, but wants her own readers to see what she had to say, and be able to comment on her own blog<br />
Person B posts on her own blog and sends a trackback to Person A&#8217;s blog<br />
Person A&#8217;s blog receives the trackback, and displays it as a comment to the original post. This comment contains a link to Person B&#8217;s post</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/punekiran.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/punekiran.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/punekiran.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/punekiran.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/punekiran.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/punekiran.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/punekiran.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/punekiran.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/punekiran.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/punekiran.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/punekiran.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/punekiran.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/punekiran.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/punekiran.wordpress.com/32/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=punekiran.wordpress.com&amp;blog=7548584&amp;post=32&amp;subd=punekiran&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://punekiran.wordpress.com/2009/06/22/trackbacks-in-blogging-eplained/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b9450e63c7f68edcf083a7fca13ed92e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">punekiran</media:title>
		</media:content>
	</item>
		<item>
		<title>Upgrade to wordpress 2.8 Baker</title>
		<link>http://punekiran.wordpress.com/2009/06/17/upgrade-to-wordpress-2-8-baker/</link>
		<comments>http://punekiran.wordpress.com/2009/06/17/upgrade-to-wordpress-2-8-baker/#comments</comments>
		<pubDate>Wed, 17 Jun 2009 09:25:28 +0000</pubDate>
		<dc:creator>punekiran</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://punekiran.wordpress.com/?p=22</guid>
		<description><![CDATA[Hi, I was in a dilemma whether to upgrade to wordpress 2.8 or not. But I did upgrade and till now not facing any problems. I first upgraded my review server where I am using the complete copy of original live wordpress software. Before upgrading I had been through several reviews one of which is [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=punekiran.wordpress.com&amp;blog=7548584&amp;post=22&amp;subd=punekiran&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hi, I was in a dilemma whether to upgrade to wordpress 2.8 or not. But I did upgrade and till now not facing any problems.</p>
<p>I first upgraded my review server where I am using the complete copy of original live wordpress software. Before upgrading I had been through several reviews one of which is <strong><a title="upgrade wordpress" href="http://ithemes.com/wp-qa-when-should-i-update-wordpress/" target="_blank">When should a person upgrade their WordPress blog?</a> </strong>which shares a very useful information to make a upgrade less scary. Also I used the auto upgrade option as I believe in wordpress techies.</p>
<p><strong>My suitation</strong>.</p>
<p>I run a blog for which the original theme is completely changed to an extent that you canot make out the original theme</p>
<p>I have also tampered wordpress files and allmost all theme template directory files.</p>
<p>Using plugins for social media links, cloud, popular posts, etc</p>
<p><strong>What I liked in wordpress 2.8?</strong></p>
<p>Multi column dashboard with just a click.</p>
<p>Speed has increased for processing while you post or add plugins.</p>
<p>Awsome themes available. Not of use for me <img src='http://s2.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/punekiran.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/punekiran.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/punekiran.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/punekiran.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/punekiran.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/punekiran.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/punekiran.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/punekiran.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/punekiran.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/punekiran.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/punekiran.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/punekiran.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/punekiran.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/punekiran.wordpress.com/22/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=punekiran.wordpress.com&amp;blog=7548584&amp;post=22&amp;subd=punekiran&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://punekiran.wordpress.com/2009/06/17/upgrade-to-wordpress-2-8-baker/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b9450e63c7f68edcf083a7fca13ed92e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">punekiran</media:title>
		</media:content>
	</item>
		<item>
		<title>&#8216;Tweet This&#8217; plugin for wordpress causing the WordPress to hang</title>
		<link>http://punekiran.wordpress.com/2009/06/11/tweet-this-plugin-for-wordpress-causing-the-wordpress-to-hang/</link>
		<comments>http://punekiran.wordpress.com/2009/06/11/tweet-this-plugin-for-wordpress-causing-the-wordpress-to-hang/#comments</comments>
		<pubDate>Thu, 11 Jun 2009 06:31:59 +0000</pubDate>
		<dc:creator>punekiran</dc:creator>
				<category><![CDATA[Wordpress Theme Problems]]></category>

		<guid isPermaLink="false">http://punekiran.wordpress.com/2009/06/11/tweet-this-plugin-for-wordpress-causing-the-wordpress-to-hang/</guid>
		<description><![CDATA[Today suddenly my official blog where I am using WordPress 2.7.1 got hung. One of our bloogger had posted his blog and every thing went upside down. I started receiving email from serveral corners of world about the problem in blog. I could not make out first time but the email which is received by [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=punekiran.wordpress.com&amp;blog=7548584&amp;post=19&amp;subd=punekiran&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Today suddenly my official blog where I am using WordPress 2.7.1 got hung. One of our bloogger had posted his blog and every thing went upside down. I started receiving email from serveral corners of world about the problem in blog. I could not make out first time but the email which is received by the blogger about the post helped me in knowing about the source of error. It says</p>
<p>Warning: fopen(http://th8.us/api.php?url=http://blog.mysite.com/my-post-which-caused-error/&amp;client=Tweet+This+v1.3.9&amp;format=simple) [function.fopen]: failed to open stream: Connection timed out in /home/mysite/public_html/blog.mysite.com/wp-content/plugins/tweet-this/tweet-this.php on line 29</p>
<p>The problem solution is at below link. http://www.answerhero.co.uk/blog/let-the-journey-begin/wordpress-problem-resolved-dodgy-tweet-this-plugin/</p>
<p>The problem was solved by changing the URL service which turns the big URL in to tiny URL. Previuosly I was using TH8.us and now TinyURL.com.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/punekiran.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/punekiran.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/punekiran.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/punekiran.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/punekiran.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/punekiran.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/punekiran.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/punekiran.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/punekiran.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/punekiran.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/punekiran.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/punekiran.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/punekiran.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/punekiran.wordpress.com/19/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=punekiran.wordpress.com&amp;blog=7548584&amp;post=19&amp;subd=punekiran&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://punekiran.wordpress.com/2009/06/11/tweet-this-plugin-for-wordpress-causing-the-wordpress-to-hang/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b9450e63c7f68edcf083a7fca13ed92e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">punekiran</media:title>
		</media:content>
	</item>
		<item>
		<title>Number of comments on home page and comments page differ using &#8220;inove&#8221; theme in wordpress</title>
		<link>http://punekiran.wordpress.com/2009/04/29/hello-world/</link>
		<comments>http://punekiran.wordpress.com/2009/04/29/hello-world/#comments</comments>
		<pubDate>Wed, 29 Apr 2009 07:56:00 +0000</pubDate>
		<dc:creator>punekiran</dc:creator>
				<category><![CDATA[Wordpress Theme Problems]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Welcome to the first test case which is about the number of comments displayed below eash blog post. I am using &#8220;inove&#8221; template in one of my blog. On the home page  the number of comments displayed are the sum of comments approved after moderation and the comments to be moderated.  Thus at times you [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=punekiran.wordpress.com&amp;blog=7548584&amp;post=1&amp;subd=punekiran&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Welcome to the first test case which is about the number of comments displayed below eash blog post.</p>
<p>I am using &#8220;inove&#8221; template in one of my blog. On the home page  the number of comments displayed are the sum of comments approved after moderation and the comments to be moderated. </p>
<p>Thus at times you see a difference in the number of comments shown on the home page and the number of comments shown after you go to the comments related to that blog.</p>
<p>I have tested the same on this template but it works absolutely ok. And I cannot change the &#8220;inove&#8221; template at my main blog.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/punekiran.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/punekiran.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/punekiran.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/punekiran.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/punekiran.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/punekiran.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/punekiran.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/punekiran.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/punekiran.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/punekiran.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/punekiran.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/punekiran.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/punekiran.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/punekiran.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=punekiran.wordpress.com&amp;blog=7548584&amp;post=1&amp;subd=punekiran&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://punekiran.wordpress.com/2009/04/29/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b9450e63c7f68edcf083a7fca13ed92e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">punekiran</media:title>
		</media:content>
	</item>
	</channel>
</rss>
