<?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>Kuldeepsss's Weblog</title>
	<atom:link href="http://kuldeepsss.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://kuldeepsss.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Wed, 02 Jan 2008 17:58:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='kuldeepsss.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Kuldeepsss's Weblog</title>
		<link>http://kuldeepsss.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://kuldeepsss.wordpress.com/osd.xml" title="Kuldeepsss&#039;s Weblog" />
	<atom:link rel='hub' href='http://kuldeepsss.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Packages</title>
		<link>http://kuldeepsss.wordpress.com/2007/12/20/packages/</link>
		<comments>http://kuldeepsss.wordpress.com/2007/12/20/packages/#comments</comments>
		<pubDate>Thu, 20 Dec 2007 18:19:51 +0000</pubDate>
		<dc:creator>kuldeep</dc:creator>
				<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://kuldeepsss.wordpress.com/2007/12/20/packages/</guid>
		<description><![CDATA[Building packages will be quiet a trick with out making .jar files. 1. Create package files with header package &#60;package name&#62;; class includedInPackage { &#8230;&#8230; &#8230;.. } 2. Save files to be inluded in package in a directory with the same name as of &#60;package name&#62;. 3. Compile them and have their .class files in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kuldeepsss.wordpress.com&amp;blog=1684649&amp;post=10&amp;subd=kuldeepsss&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><b>Building packages will be quiet a trick with out making .jar files.</b></p>
<p>1. Create package files with header</p>
<p><b>        package &lt;package name&gt;;</b></p>
<p><b>        class includedInPackage {</b></p>
<p><b>        &#8230;&#8230;</b></p>
<p><b>        &#8230;..</b></p>
<p><b>         }<br />
</b></p>
<p>2. Save files to be inluded in package in a directory with the same name as of &lt;package name&gt;.</p>
<p>3. Compile them and have their .class files in the same directory.</p>
<p>4. Create the program file which is using the package. Write</p>
<p><b>package &lt;package name&gt;;</b></p>
<p><b> class UsingPackage </b></p>
<p><b>{</b></p>
<p><b>&#8230;..</b></p>
<p><b>&#8230;.</b></p>
<p><b>} </b></p>
<p>This .java file can be saved anywhere. Compile it and place its .class file in the directory &lt;package name&gt;.</p>
<p>5. To execute the file which is using the package, write the following command in command prompt.</p>
<p><b>java &lt;package name&gt;.UsingPackage </b>   and press enter.</p>
<p>It&#8217;s done.</p>
<p>*replace &lt;package name&gt; with the name of package.</p>
<p><b>Building packages with .jar files</b></p>
<p>By making package .jar files it is easy to use and built packages. Create the files to be included in package in the same way as above, and store them in the directory with name same as of package &lt;package name&gt; .</p>
<p>Open command prompt and write the following command</p>
<p>Go to the parent directory of package folder. then</p>
<p><b>C:\ parent&gt;jar cvf &lt;Package name&gt;.jar  &lt;Package name)/*.class  </b>and press enter.</p>
<p>This will create a &lt;Package name&gt;.jar file which will include all the class files stored in &lt;Package name&gt; directory.</p>
<p>o to the directory where java is installed. Let is be C:\Java.Then  open the following directory:</p>
<p><b>C:\Java\jre\lib\ext </b></p>
<p>Paste the newly created &lt;Package name&gt;.jar file here.This will make the package available to all the .java files.To use the package, just write the following in the header of .java file in which it is to be used.</p>
<p><b>import PackageName.*;</b></p>
<p>This will make all the public classes declared in the package available to the program.</p>
<p>To import static members of the package, add static to import statement.</p>
<p><b>import static PackageName.*;</b></p>
<p>Building packages with .jar file is the standard and the easiest way to create and use packages.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/kuldeepsss.wordpress.com/10/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/kuldeepsss.wordpress.com/10/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kuldeepsss.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kuldeepsss.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kuldeepsss.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kuldeepsss.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kuldeepsss.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kuldeepsss.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kuldeepsss.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kuldeepsss.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kuldeepsss.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kuldeepsss.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kuldeepsss.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kuldeepsss.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kuldeepsss.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kuldeepsss.wordpress.com/10/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kuldeepsss.wordpress.com&amp;blog=1684649&amp;post=10&amp;subd=kuldeepsss&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kuldeepsss.wordpress.com/2007/12/20/packages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ef056e861c2d525072519c4c45b6f0ef?s=96&#38;d=identicon" medium="image">
			<media:title type="html">kuldeep</media:title>
		</media:content>
	</item>
		<item>
		<title>Captcha</title>
		<link>http://kuldeepsss.wordpress.com/2007/09/19/captcha/</link>
		<comments>http://kuldeepsss.wordpress.com/2007/09/19/captcha/#comments</comments>
		<pubDate>Wed, 19 Sep 2007 20:06:50 +0000</pubDate>
		<dc:creator>kuldeep</dc:creator>
				<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://kuldeepsss.wordpress.com/2007/09/19/captcha/</guid>
		<description><![CDATA[Writing a Captcha code in Java will require these steps:- 1. Define a BufferedImage object, where the image will be drawn. Pass the dimensions of the captcha image to be drawn as the arguments and the color scheme to BufferedImage constructor. BufferedImage buffer = new BufferedImage(int width,int height,BufferedImage ColorScheme); 2. Associate an object of Graphics2D [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kuldeepsss.wordpress.com&amp;blog=1684649&amp;post=9&amp;subd=kuldeepsss&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><b><u>Writing a Captcha code in Java will require these steps:-</u></b></p>
<p>1. Define a BufferedImage object, where the image will be drawn. Pass the dimensions of the captcha image to be drawn as the arguments and the color scheme to BufferedImage constructor.</p>
<p><b>BufferedImage buffer = new BufferedImage(int width,int height,BufferedImage ColorScheme);</b></p>
<p>2. Associate an object of Graphics2D class with BufferedImage object (i.e. buffer here).</p>
<p>Graphics2D class is an abstract class and thus cannot have an object of itself. Its object is dependent on components to which it relates (here, it is BufferedImage). It takes care of mapping user co-ordinates to the device co-ordinates, information needed for drawing, image transformation functions etc.</p>
<p><b>Graphics2D g = (Graphics2D)buffer.getGraphics();</b></p>
<p>3.  Fill the image buffer with an background color or a pattern.</p>
<p>4. Delcare an FontMetrics object related with Graphics2D object g.</p>
<p><b>FontMetrics fontMet = g.getFontMetrics();</b></p>
<p>By this object we can find out the ascent, descent, height, width of the characters to be displayed in the cpatcha image.</p>
<p>5. Store the the characters to be printed in the captcha image in a string variable.</p>
<p>6. Calculate the dimension of the characters (i.e ascent, descent, width, height).</p>
<p>7. Declare a BufferedImage object with dimensions of the characters, and associate another Graphics2D object with that BufferedImage object.</p>
<p>8. Perform the tranformations to the characters, so that they are shown in the deformed way. Transformations may be either translation, rotation, shearing or combinaton of some or all of them. The transformation functions are associated with Graphics2D object, and thus are called by it.</p>
<p>9. Draw this deformed string of characters in the BufferedImage which was created first (i.e buffer). Your captcha code is ready.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/kuldeepsss.wordpress.com/9/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/kuldeepsss.wordpress.com/9/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kuldeepsss.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kuldeepsss.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kuldeepsss.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kuldeepsss.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kuldeepsss.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kuldeepsss.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kuldeepsss.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kuldeepsss.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kuldeepsss.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kuldeepsss.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kuldeepsss.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kuldeepsss.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kuldeepsss.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kuldeepsss.wordpress.com/9/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kuldeepsss.wordpress.com&amp;blog=1684649&amp;post=9&amp;subd=kuldeepsss&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kuldeepsss.wordpress.com/2007/09/19/captcha/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ef056e861c2d525072519c4c45b6f0ef?s=96&#38;d=identicon" medium="image">
			<media:title type="html">kuldeep</media:title>
		</media:content>
	</item>
		<item>
		<title>Dynamic web project</title>
		<link>http://kuldeepsss.wordpress.com/2007/09/15/dynamic-web-project/</link>
		<comments>http://kuldeepsss.wordpress.com/2007/09/15/dynamic-web-project/#comments</comments>
		<pubDate>Sat, 15 Sep 2007 18:15:52 +0000</pubDate>
		<dc:creator>kuldeep</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://kuldeepsss.wordpress.com/2007/09/15/dynamic-web-project/</guid>
		<description><![CDATA[Writing dynamic web project in Eclipse:- Select New Project-&#62; Web-&#62; Dynamic web Project.Write the project name required, leave the rest of the settings as default and finish.This will create an Project with the following directory structure, as shown in the Project explorer. &#60; To add source code files such as JSP files or Servlets &#8211; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kuldeepsss.wordpress.com&amp;blog=1684649&amp;post=4&amp;subd=kuldeepsss&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Writing dynamic web project in Ecli</strong><strong>pse:-</strong></p>
<p>Select New Project-&gt; Web-&gt; Dynamic web Project.Write the project name required, leave the rest of the settings as default and finish.This will create an Project with the following directory structure, as shown in the Project explorer.<br />
&lt;<a href="http://kuldeepsss.files.wordpress.com/2007/09/1exp.jpg" title="1exp.jpg"><img src="http://kuldeepsss.files.wordpress.com/2007/09/1exp.thumbnail.jpg?w=450" alt="1exp.jpg" /></a><br />
<strong> To add source code files such as JSP files or Servlets &#8211; </strong><br />
Right click on Java Resources:src folder -&gt; New -&gt; Other -&gt; Web -&gt; Servlet. Fill in the class name and superclass for the servlet and other details like which methods to include in the servlet as doGet(), doPost() etc. All servlets are created in this way and their entries are being made automatically in the web.xml file. The class files generated are stored in classes sub-folder of build folder and thus are prevented from directly access from explorer. HTML files are created under WebContent folder and are accessible from the explorer.</p>
<p>To run a project, right click on the project and select Run as -&gt; Run on server.</p>
<p>The other way to deploy  an project on the web server is from &#8212;</p>
<p>File -&gt; Export -&gt; Web -&gt; WAR file -&gt; Select the project to be deployed and provide the path to store the WAR file and finish. Then, login in Application Server console and Select Deploy New. Then select the WAR file and click Install. The project will be deployed on the web server.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/kuldeepsss.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/kuldeepsss.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kuldeepsss.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kuldeepsss.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kuldeepsss.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kuldeepsss.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kuldeepsss.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kuldeepsss.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kuldeepsss.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kuldeepsss.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kuldeepsss.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kuldeepsss.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kuldeepsss.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kuldeepsss.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kuldeepsss.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kuldeepsss.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kuldeepsss.wordpress.com&amp;blog=1684649&amp;post=4&amp;subd=kuldeepsss&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kuldeepsss.wordpress.com/2007/09/15/dynamic-web-project/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ef056e861c2d525072519c4c45b6f0ef?s=96&#38;d=identicon" medium="image">
			<media:title type="html">kuldeep</media:title>
		</media:content>

		<media:content url="http://kuldeepsss.files.wordpress.com/2007/09/1exp.thumbnail.jpg" medium="image">
			<media:title type="html">1exp.jpg</media:title>
		</media:content>
	</item>
		<item>
		<title>Image Writer</title>
		<link>http://kuldeepsss.wordpress.com/2007/09/12/image-writer/</link>
		<comments>http://kuldeepsss.wordpress.com/2007/09/12/image-writer/#comments</comments>
		<pubDate>Wed, 12 Sep 2007 20:21:04 +0000</pubDate>
		<dc:creator>kuldeep</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://kuldeepsss.wordpress.com/2007/09/12/image-writer/</guid>
		<description><![CDATA[I am not able to understand the concept of ImageWriter and IIOImage, as this is the only thing left for the completion of my target for today. If you could find something on that, reply me. Line counts 131 to 143 are left. Rest are good.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kuldeepsss.wordpress.com&amp;blog=1684649&amp;post=3&amp;subd=kuldeepsss&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I am not able to understand the concept of ImageWriter and IIOImage, as this is the only thing left for the completion of my target for today. If you could find something on that, reply me.</p>
<p>Line counts 131 to 143 are left. Rest are good.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/kuldeepsss.wordpress.com/3/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/kuldeepsss.wordpress.com/3/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kuldeepsss.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kuldeepsss.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kuldeepsss.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kuldeepsss.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kuldeepsss.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kuldeepsss.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kuldeepsss.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kuldeepsss.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kuldeepsss.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kuldeepsss.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kuldeepsss.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kuldeepsss.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kuldeepsss.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kuldeepsss.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kuldeepsss.wordpress.com&amp;blog=1684649&amp;post=3&amp;subd=kuldeepsss&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kuldeepsss.wordpress.com/2007/09/12/image-writer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ef056e861c2d525072519c4c45b6f0ef?s=96&#38;d=identicon" medium="image">
			<media:title type="html">kuldeep</media:title>
		</media:content>
	</item>
		<item>
		<title>Hello world!</title>
		<link>http://kuldeepsss.wordpress.com/2007/09/09/hello-world/</link>
		<comments>http://kuldeepsss.wordpress.com/2007/09/09/hello-world/#comments</comments>
		<pubDate>Sun, 09 Sep 2007 21:14:07 +0000</pubDate>
		<dc:creator>kuldeep</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Welcome to WordPress.com. This is your first post. Edit or delete it and start blogging!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kuldeepsss.wordpress.com&amp;blog=1684649&amp;post=1&amp;subd=kuldeepsss&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Welcome to <a href="http://wordpress.com/">WordPress.com</a>. This is your first post. Edit or delete it and start blogging!</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/kuldeepsss.wordpress.com/1/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/kuldeepsss.wordpress.com/1/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kuldeepsss.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kuldeepsss.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kuldeepsss.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kuldeepsss.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kuldeepsss.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kuldeepsss.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kuldeepsss.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kuldeepsss.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kuldeepsss.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kuldeepsss.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kuldeepsss.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kuldeepsss.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kuldeepsss.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kuldeepsss.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kuldeepsss.wordpress.com&amp;blog=1684649&amp;post=1&amp;subd=kuldeepsss&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kuldeepsss.wordpress.com/2007/09/09/hello-world/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ef056e861c2d525072519c4c45b6f0ef?s=96&#38;d=identicon" medium="image">
			<media:title type="html">kuldeep</media:title>
		</media:content>
	</item>
	</channel>
</rss>
