<?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>Mayank Mishra</title>
	<atom:link href="http://mayank03.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://mayank03.wordpress.com</link>
	<description></description>
	<lastBuildDate>Wed, 23 Nov 2011 08:25:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='mayank03.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Mayank Mishra</title>
		<link>http://mayank03.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://mayank03.wordpress.com/osd.xml" title="Mayank Mishra" />
	<atom:link rel='hub' href='http://mayank03.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Install and Configure OpenLDAP</title>
		<link>http://mayank03.wordpress.com/2010/02/11/install-and-configure-openldap/</link>
		<comments>http://mayank03.wordpress.com/2010/02/11/install-and-configure-openldap/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 20:00:07 +0000</pubDate>
		<dc:creator>Mayank Mishra</dc:creator>
				<category><![CDATA[OpenLDAP]]></category>
		<category><![CDATA[configure-openldap]]></category>
		<category><![CDATA[install openldap on centos]]></category>
		<category><![CDATA[install-openldap]]></category>
		<category><![CDATA[openldap on centos]]></category>

		<guid isPermaLink="false">http://mayank03.wordpress.com/?p=66</guid>
		<description><![CDATA[In my recent project,  I worked on OpenLDAP directory server. I would like to share my experience on it. The OpenLDAP(The open source implementation of LDAP protocol) software suite consists of, openldap-server(Directory Server) openldap-clients(Provides tools to communitcate with server like ldapsearch, ldapadd, etc.) Let&#8217;s see how to install and configure it on CentOS5.3. Installing OpenLDAP Clients: [root@localhost [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mayank03.wordpress.com&amp;blog=4471334&amp;post=66&amp;subd=mayank03&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In my recent project,  I worked on <a title="OpenLDAP" href="http://en.wikipedia.org/wiki/OpenLDAP">OpenLDAP</a> directory server. I would like to share my experience on it.</p>
<p>The <a title="OpenLDAP" href="http://en.wikipedia.org/wiki/OpenLDAP" target="_self">OpenLDAP</a>(The open source implementation of <a href="http://en.wikipedia.org/wiki/Lightweight_Directory_Access_Protocol">LDAP </a>protocol) software suite consists of,</p>
<ol>
<li>openldap-server(Directory Server)</li>
<li>openldap-clients(Provides tools to communitcate with server like ldapsearch, ldapadd, etc.)</li>
</ol>
<p>Let&#8217;s see how to install and configure it on <a title="CentOS5.3" href="http://wiki.centos.org/Manuals/ReleaseNotes/CentOS5.3">CentOS5.3</a>.</p>
<p><strong>Installing OpenLDAP Clients:</strong></p>
<blockquote>
<pre>[root@localhost openldap]# yum install openldap-clients</pre>
</blockquote>
<p>This command will install the OpenLDAP clients on the system. It has one main configuration file can be found at /etc/openldap/ldap.conf</p>
<p><strong>Installing  OpenLDAP Server :</strong></p>
<blockquote>
<pre>[root@localhost openldap]# yum install openldap-servers</pre>
</blockquote>
<p>This command will install the OpenLDAP Server(slapd daemon) on Port <strong>389</strong>.  SLAPD has one main configuration file can be found at<strong> /etc/openldap/slapd.conf</strong> and other auxiliary config files.</p>
<p><strong>Configuring the LDAP Server :</strong></p>
<p><strong>Step 1. </strong>In order to use the slapd LDAP server, modify its main configuration file /etc/openldap/slapd.conf, to match your environment by specifing the correct domain and server.</p>
<p>- For Example :</p>
<blockquote>
<pre># slapd.conf
database     bdb
suffix       "dc=example,dc=com"
rootdn       "cn=Manager,dc=example,dc=com"
# Cleartext passwords, especially for the rootdn, should
# be avoided.  See slappasswd(8) and slapd.conf(5) for details.
# Use of strong authentication encouraged.
rootpw       examplepasswd
# rootpw     {crypt}ijFYNcSNctBYg
# The database directory must exists prior to running slapd and should
# only be accessible by the slapd and slap tools.
# Mode 700 recommended
directory    /var/lib/ldap</pre>
</blockquote>
<p>Where,</p>
<ul>
<li>database -&gt; Defines the database backend used by openldap, here it is Berkeley DB backend.</li>
<li>suffix -&gt;  Root of the directory tree</li>
<li>rootdn -&gt; The Distinguish name of the superuser of the directory</li>
<li>rootpw -&gt; Password for superuser</li>
<li>directory -&gt; Database storage area</li>
</ul>
<p><strong>Step 2. </strong>Copy /etc/openldap/DB_CONFIG.example file in /var/lib/ldap directory.</p>
<p>- This file should be placed in the directory as specified by the directory configuration option in the slapd.conf file.</p>
<p><strong>Step 3. </strong>Start the daemon</p>
<p>- Once we have setup the server, we need to start the LDAP daemon.The script for LDAP daemon is placed at /etc/init.d/ldap</p>
<p>- For Example:</p>
<blockquote>
<pre>[root@localhost openldap]# /etc/init.d/ldap start
Checking configuration files for slapd:  config file testing succeeded
[  OK  ]
Starting slapd:                                            [  OK  ]</pre>
</blockquote>
<p><strong>Step 4.</strong> Check whether server is running or not.</p>
<blockquote>
<pre>[root@localhost openldap]# ldapsearch -x -h localhost -b "dc=example,dc=com"
# extended LDIF
#
# LDAPv3
# base &lt;dc=example,dc=com&gt; with scope subtree
# filter: (objectclass=*)
# requesting: ALL
#
# search result
search: 2
result: 32 No such object</pre>
</blockquote>
<p>Here the we are getting the result as &#8220;No such object&#8221; which indicates that our LDAP server is up and running but unable to locate the data.</p>
<p><strong>Step 5. </strong>Create the base data for the LDAP server.</p>
<p>- Create the example.ldif file</p>
<blockquote>
<pre>dn: dc=example,dc=com
dc: example
objectClass: top
objectClass: domain</pre>
</blockquote>
<p><strong>Step 6. </strong>Add the data to the directory</p>
<blockquote>
<pre>[root@localhost openldap]# ldapadd -x -D "cn=Manager,dc=example,dc=com" \
-W -f example.ldif
Enter LDAP Password:
adding new entry "dc=example,dc=com"</pre>
</blockquote>
<p>Where,</p>
<ul>
<li>-D -&gt; Specifies username</li>
<li>-W -&gt;  Specified that the password will be prompted</li>
<li>-f -&gt; Specifies the name of the LDIF file</li>
<li>-x -&gt; Specifies simple authentication</li>
</ul>
<p>Now we have successfully created the base of the directory, Lets do a test.</p>
<blockquote>
<pre>[root@localhost openldap]# ldapsearch -x -h localhost -b "dc=example,dc=com"
# extended LDIF
#
# LDAPv3
# base &lt;dc=example,dc=com&gt; with scope subtree
# filter: (objectclass=*)
# requesting: ALL
#
# example.com
dn: dc=example,dc=com
dc: example
objectClass: top
objectClass: domain
# search result
search: 2
result: 0 Success
# numResponses: 2
# numEntries: 1</pre>
</blockquote>
<p>You&#8217;re Finished!!! <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Till now we have added the base of our directory, further you can add more data using ldapadd command.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mayank03.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mayank03.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mayank03.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mayank03.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mayank03.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mayank03.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mayank03.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mayank03.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mayank03.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mayank03.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mayank03.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mayank03.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mayank03.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mayank03.wordpress.com/66/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mayank03.wordpress.com&amp;blog=4471334&amp;post=66&amp;subd=mayank03&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mayank03.wordpress.com/2010/02/11/install-and-configure-openldap/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fac6aacb86327572a81e101a8b498dff?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">Mayank Mishra</media:title>
		</media:content>
	</item>
		<item>
		<title>Header issue in PHP</title>
		<link>http://mayank03.wordpress.com/2009/09/21/header-issue-in-php/</link>
		<comments>http://mayank03.wordpress.com/2009/09/21/header-issue-in-php/#comments</comments>
		<pubDate>Mon, 21 Sep 2009 06:55:31 +0000</pubDate>
		<dc:creator>Mayank Mishra</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://mayank03.wordpress.com/?p=25</guid>
		<description><![CDATA[I remember back in the days when I was new to PHP, was so strange to why I can&#8217;t do echo before header. Then I started googling about this topic. Basically, when you send body content to the browser before sending your header content with the header()/setcookie()/setrawcookie() methods, you wiil get an error message &#8220;Cannot [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mayank03.wordpress.com&amp;blog=4471334&amp;post=25&amp;subd=mayank03&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I remember back in the days when I was new to PHP, was so strange to why I can&#8217;t do echo before header.<br />
Then I started googling <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  about this topic.</p>
<p>Basically, when you send body content to the browser before sending your header content with the header()/setcookie()/setrawcookie() methods, you wiil get an error message &#8220;<strong>Cannot modify header information &#8211; headers already sent</strong>&#8220;.</p>
<p>This is because the HTTP status header line will always be the first sent to the client, regardless of the actual header() call being the first or not. The status may be overridden by calling header() with a new status line at any time unless the HTTP headers have already been sent.</p>
<p>The output buffering solves this issue. While output buffering is active no output is sent from the script (other than headers), instead the output is stored in an internal buffer.</p>
<p>By default the output buffering is disabled in php.ini file. There are two ways of enabling output buffering,</p>
<p><strong>1.</strong> Enable output_buffering in php.ini<br />
e.g. output_buffering = on</p>
<p><strong>2.</strong> Call ob_start() method to turn on output buffering.</p>
<p>Let&#8217;s take an example, how it works :</p>
<p><strong>Example :</strong></p>
<p><strong>1. </strong> Example with error</p>
<p><pre class="brush: jscript;">
&lt;?php
echo &quot;Test&quot;;
setcookie('name', 'value');
?&gt;
</pre></p>
<p>The above script will throw an error  &#8220;Cannot modify header information &#8211; headers already sent&#8221;, <em>only if the output_buffering is disabled in php.ini file.<br />
</em></p>
<p><strong>2.</strong> Example without error</p>
<p><pre class="brush: jscript;">
&lt;?php
ob_start();// Turn on output buffering
echo &quot;Test&quot;;
setcookie('name', 'value');
ob_end_flush(); // Flush (send) the output buffer and turn off output buffering
?&gt;
</pre></p>
<p>The above script will work with zero error plus zero warning. <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Reference : <a href="http://in2.php.net/manual/en/function.header.php">http://in2.php.net/manual/en/function.header.php</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mayank03.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mayank03.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mayank03.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mayank03.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mayank03.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mayank03.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mayank03.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mayank03.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mayank03.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mayank03.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mayank03.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mayank03.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mayank03.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mayank03.wordpress.com/25/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mayank03.wordpress.com&amp;blog=4471334&amp;post=25&amp;subd=mayank03&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mayank03.wordpress.com/2009/09/21/header-issue-in-php/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fac6aacb86327572a81e101a8b498dff?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">Mayank Mishra</media:title>
		</media:content>
	</item>
		<item>
		<title>Magic in PHP5</title>
		<link>http://mayank03.wordpress.com/2009/09/19/magic-in-php5/</link>
		<comments>http://mayank03.wordpress.com/2009/09/19/magic-in-php5/#comments</comments>
		<pubDate>Sat, 19 Sep 2009 14:54:24 +0000</pubDate>
		<dc:creator>Mayank Mishra</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://mayank03.wordpress.com/?p=13</guid>
		<description><![CDATA[PHP5 has made a lot of improvements over php4 as regarding OOPS is concerned and performance as well. PHP5 provides various magic methods like  __construct(),  __destruct(), __set(), __get(), __call(), __toString(), __sleep(), __wakeup(), __isset(), __unset(), __autoload(), __clone(). Don&#8217;t create functions with thsese names in your class unless you want the magic functionality associated with them. These [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mayank03.wordpress.com&amp;blog=4471334&amp;post=13&amp;subd=mayank03&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>PHP5 has made a lot of improvements over php4 as regarding OOPS is concerned and performance as well.</p>
<p>PHP5 provides various magic methods like  __construct(),  __destruct(), __set(), __get(), __call(), __toString(), __sleep(), __wakeup(), __isset(), __unset(), __autoload(), __clone(). Don&#8217;t create functions with thsese names in your class unless you want the magic functionality associated with them.</p>
<p>These magic methods are widely used by many PHP open source frameworks like<a href="http://cakephp.org/"> CakePHP</a>, <a href="http://vanillaforums.org/">Garden</a>, etc.</p>
<p>Lets take an example of how <strong>__call()</strong> works :</p>
<p>The magic method <strong>__call()</strong> gets automatically called when a call to undeclared or undefined method of a class is made.</p>
<p><pre class="brush: jscript;">
class MyClass{
       public function __call($name, $args) {
        echo &quot;Function Name : &quot;; print_r($name);
        echo &quot;&lt;br /&gt;&quot;;
        echo &quot;Arguments : &quot;;    print_r($args);
        }
}

$myClass = new MyClass();
$myClass-&gt;setName('Mayank'); // This will call __call() method.
</pre></p>
<p><strong>Output </strong>:</p>
<p><pre class="brush: jscript;">
Function Name : setName
Arguments : Array ([0] =&gt; Mayank )
</pre><br />
<!--Session data--></p>
<p><!--Session data--></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mayank03.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mayank03.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mayank03.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mayank03.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mayank03.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mayank03.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mayank03.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mayank03.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mayank03.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mayank03.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mayank03.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mayank03.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mayank03.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mayank03.wordpress.com/13/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mayank03.wordpress.com&amp;blog=4471334&amp;post=13&amp;subd=mayank03&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mayank03.wordpress.com/2009/09/19/magic-in-php5/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fac6aacb86327572a81e101a8b498dff?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">Mayank Mishra</media:title>
		</media:content>
	</item>
		<item>
		<title>Hello world!</title>
		<link>http://mayank03.wordpress.com/2008/08/10/hello-world/</link>
		<comments>http://mayank03.wordpress.com/2008/08/10/hello-world/#comments</comments>
		<pubDate>Sun, 10 Aug 2008 18:53:16 +0000</pubDate>
		<dc:creator>Mayank Mishra</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Hello Everyone, Finally, I&#8217;ve started blogging.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mayank03.wordpress.com&amp;blog=4471334&amp;post=1&amp;subd=mayank03&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hello Everyone,</p>
<p>Finally, I&#8217;ve started blogging.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mayank03.wordpress.com/1/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mayank03.wordpress.com/1/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mayank03.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mayank03.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mayank03.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mayank03.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mayank03.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mayank03.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mayank03.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mayank03.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mayank03.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mayank03.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mayank03.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mayank03.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mayank03.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mayank03.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mayank03.wordpress.com&amp;blog=4471334&amp;post=1&amp;subd=mayank03&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mayank03.wordpress.com/2008/08/10/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fac6aacb86327572a81e101a8b498dff?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">Mayank Mishra</media:title>
		</media:content>
	</item>
	</channel>
</rss>
