<?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>Mithunsingh&#039;s Blog</title>
	<atom:link href="http://mithunsingh.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://mithunsingh.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Sat, 20 Nov 2010 07:06:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='mithunsingh.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/a6552dfd28a73fc359b6fc0d417aa751?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Mithunsingh&#039;s Blog</title>
		<link>http://mithunsingh.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://mithunsingh.wordpress.com/osd.xml" title="Mithunsingh&#039;s Blog" />
	<atom:link rel='hub' href='http://mithunsingh.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Redirection operators</title>
		<link>http://mithunsingh.wordpress.com/2010/11/20/redirection-operators/</link>
		<comments>http://mithunsingh.wordpress.com/2010/11/20/redirection-operators/#comments</comments>
		<pubDate>Sat, 20 Nov 2010 07:06:26 +0000</pubDate>
		<dc:creator>mithunsingh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mithunsingh.wordpress.com/2010/11/20/redirection-operators/</guid>
		<description><![CDATA[Using command redirection operators You can use redirection operators to redirect command input and output streams from the default locations to different locations. The input or output stream location is referred to as a handle The following table lists operators that you can use to redirect command input and output streams. Redirection operator Description &#62; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mithunsingh.wordpress.com&amp;blog=7939202&amp;post=232&amp;subd=mithunsingh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Using command redirection operators</p>
<p>You can use redirection operators to redirect command input and output streams from the default locations to different locations. The input or output stream location is referred to as a handle</p>
<p>The following table lists operators that you can use to redirect command input and output streams.</p>
<table>
<tbody>
<tr>
<th>Redirection operator</th>
<th>Description</th>
</tr>
<tr>
<td><strong>&gt;</strong></td>
<td>Writes the command output to a file or a device, such as a printer, instead of the Command Prompt window.</td>
</tr>
<tr>
<td><strong>&lt;</strong></td>
<td>Reads the command input from a file, instead of reading input from the keyboard.</td>
</tr>
<tr>
<td><strong>&gt;&gt;</strong></td>
<td>Appends the command output to the end of a file without deleting the information that is already in the file.</td>
</tr>
<tr>
<td><strong>&gt;&amp;</strong></td>
<td>Writes the output from one handle to the input of another handle.</td>
</tr>
<tr>
<td><strong>&lt;&amp;</strong></td>
<td>Reads the input from one handle and writes it to the output of another handle.</td>
</tr>
<tr>
<td><strong>|</strong></td>
<td>Reads the output from one command and writes it to the input of another command. Also known as a pipe.</td>
</tr>
</tbody>
</table>
<p>By default, you send the command input (that is, the STDIN handle) from your keyboard to Cmd.exe, and then Cmd.exe sends the command output (that is, the STDOUT handle) to the Command Prompt window.</p>
<p>The following table lists the available handles.</p>
<table>
<tbody>
<tr>
<th>Handle</th>
<th>Numeric equivalent of handle</th>
<th>Description</th>
</tr>
<tr>
<td>STDIN</td>
<td>0</td>
<td>Keyboard input</td>
</tr>
<tr>
<td>STDOUT</td>
<td>1</td>
<td>Output to the Command Prompt window</td>
</tr>
<tr>
<td>STDERR</td>
<td>2</td>
<td>Error output to the Command Prompt window</td>
</tr>
<tr>
<td>UNDEFINED</td>
<td>3-9</td>
<td>These handles are defined individually by the application and are specific to each tool.</td>
</tr>
</tbody>
</table>
<p>The numbers zero through nine (that is, 0-9) represent the first 10 handles. You can use Cmd.exe to run a program and redirect any of the first 10 handles for the program. To specify which handle you want to use, type the number of the handle before the redirection operator. If you do not define a handle, the default &lt; redirection input operator is zero (0) and the default &gt; redirection output operator is one (1). After you type the &lt; or &gt; operator, you must specify where you want to read or write the data. You can specify a file name or another existing handle.</p>
<p>To specify redirection to existing handles, use the ampersand (&amp;) character followed by the handle number that you want to redirect (that is, <strong>&amp;</strong><em>handle#</em>). For example, the following command redirects handle 2 (that is, STDERR) into handle 1 (that is, STDOUT):</p>
<p><strong>1&lt;&amp;2</strong></p>
<h3>Duplicating handles </h3>
<p>The &amp; redirection operator duplicates output or input from one specified handle to another specified handle. For example, to send <strong>dir</strong> output to File.txt and send the error output to File.txt, type:</p>
<p><strong>dir&gt;c:\file.txt 2&gt;&amp;1</strong></p>
<p>When you duplicate a handle, you duplicate all characteristics of the original occurrence of the handle. For example, if a handle has write-only access, all duplicates of that handle have write-only access. You cannot duplicate a handle with read-only access into a handle with write-only access.</p>
<p><a href="http://technet.microsoft.com/en-us/library/bb490982.aspx#mainSection">Top of page</a></p>
<h3>Redirecting command input (&lt;)</h3>
<p>To redirect command input from the keyboard to a file or device, use the &lt; operator. For example, to get the command input for the <strong>sort</strong> command from File.txt:</p>
<p><strong>sort&lt;file.txt </strong></p>
<p>The contents of File.txt appear in the Command Prompt window as an alphabetized list.</p>
<p>The &lt; operator opens the specified file name with read-only access. As a result, you cannot write to the file when you use this operator. For example, if you start a program with &lt;&amp;2, all attempts to read handle 0 fail because handle 2 is initially opened with write-only access.</p>
<p><strong>Note</strong></p>
<ul>
<li>Zero is the default handle for the &lt; redirection input operator.</li>
</ul>
<p><a href="http://technet.microsoft.com/en-us/library/bb490982.aspx#mainSection">Top of page</a></p>
<h3>Redirecting command output (&gt;)</h3>
<p>Almost all commands send output to your Command Prompt window. Even commands that send output to a drive or printer display messages and prompts in the Command Prompt window.</p>
<p>To redirect command output from the Command Prompt window to a file or device, use the &gt; operator. You can use this operator with most commands. For example, to redirect <strong>dir</strong> output to Dirlist.txt:</p>
<p><strong>dir&gt;dirlist.txt </strong></p>
<p>If Dirlist.txt does not exist, Cmd.exe creates it. If Dirlist.txt exists, Cmd.exe replaces the information in the file with the output from the <strong>dir</strong> command.</p>
<p>To run the <strong>netsh routing dump</strong> command and then send the command output to Route.cfg, type:</p>
<p><strong>netsh routing dump</strong>&gt;<strong>c:\route.cfg</strong></p>
<p>The &gt; operator opens the specified file with write-only access. As a result, you cannot read the file when you use this operator. For example, if you start a program with redirection &gt;&amp;0, all attempts to write handle 1 fail because handle 0 is initially opened with read-only access.</p>
<p><strong>Note</strong></p>
<ul>
<li>One is the default handle for the &gt; redirection output operator.</li>
</ul>
<p><a href="http://technet.microsoft.com/en-us/library/bb490982.aspx#mainSection">Top of page</a></p>
<h3>Using the &lt;&amp; operator to redirect input and duplicate</h3>
<p>To use the redirection input operator &lt;&amp;, the file you specify must already exist. If the input file exists, Cmd.exe opens it as read-only and sends the characters contained in the file as input to the command as if they were input from the keyboard. If you specify a handle, Cmd.exe duplicates the handle you specify onto the existing handle in the system.</p>
<p>For example, to open File.txt as input read to handle 0 (that is, STDIN), type:</p>
<p><strong>&lt;</strong> <strong>file.txt</strong></p>
<p>To open File.txt, sort the contents and then send the output to the Command Prompt window (that is, STDOUT), type:</p>
<p><strong>sort&lt;</strong> <strong>file.txt</strong></p>
<p>To find File.txt, and then redirect handle 1 (that is, STDOUT) and handle 2 (that is, STDERR) to the Search.txt, type:</p>
<p><strong>findfile file.txt&gt;search.txt 2&lt;&amp;1</strong></p>
<p>To duplicate a user-defined handle 3 as input read to handle 0 (that is, STDIN), type:</p>
<p><strong>&lt;&amp;3</strong></p>
<p><a href="http://technet.microsoft.com/en-us/library/bb490982.aspx#mainSection">Top of page</a></p>
<h3>Using the &gt;&amp; operator to redirect output and duplicate</h3>
<p>If you redirect output to a file and you specify an existing file name, Cmd.exe opens the file as write-only and overwrites the file&#8217;s contents. If you specify a handle, Cmd.exe duplicates the file onto the existing handle.</p>
<p>To duplicate a user-defined handle 3 into handle 1, type:</p>
<p><strong>&gt;&amp;3</strong></p>
<p>To redirect all of the output, including handle 2 (that is, STDERR), from the <strong>ipconfig</strong> command to handle 1 (that is, STDOUT), and then redirect the ouput to Output.log, type:</p>
<p><strong>ipconfig.exe&gt;&gt;output.log 2&gt;&amp;1</strong></p>
<p><a href="http://technet.microsoft.com/en-us/library/bb490982.aspx#mainSection">Top of page</a></p>
<h3>Using the &gt;&gt; redirection operator to append output</h3>
<p>To add the output from a command to the end of a file without losing any of the information already in the file, use two consecutive greater than signs (that is, &gt;&gt;). For example, the following command appends the directory list produced by the <strong>dir</strong> command to the Dirlist.txt file:</p>
<p><strong>dir&gt;&gt;dirlist.txt </strong></p>
<p>To append the output of the <strong>netstat</strong> command to the end of Tcpinfo.txt, type:</p>
<p><strong>netstat&gt;&gt;tcpinfo.txt</strong></p>
<p><a href="http://technet.microsoft.com/en-us/library/bb490982.aspx#mainSection">Top of page</a></p>
<h3>Using the pipe operator (|) </h3>
<p>The pipe operator (|) takes the output (by default, STDOUT) of one command and directs it into the input (by default, STDIN) of another command. For example, the following command sorts a directory:</p>
<p><strong>dir | sort</strong></p>
<p>In this example, both commands start simultaneously, but then the <strong>sort</strong> command pauses until it receives the <strong>dir</strong> command&#8217;s output. The <strong>sort</strong> command uses the <strong>dir</strong> command&#8217;s output as its input, and then sends its output to handle 1 (that is, STDOUT).</p>
<p><a href="http://technet.microsoft.com/en-us/library/bb490982.aspx#mainSection">Top of page</a></p>
<h3>Combining commands with redirection operators</h3>
<p>You can create custom commands by combining filter commands with other commands and file names. For example, you can use the following command to store the names of files that contain the string &quot;LOG&quot;:</p>
<p><strong>dir /b | find &quot;LOG&quot; &gt; loglist.txt </strong></p>
<p>The <strong>dir</strong> command&#8217;s output is sent through the <strong>find</strong> filter command. File names that contain the string &quot;LOG&quot; are stored as a list of file names (for example, NetshConfig.log, Logdat.svd, and Mylog.bat) in the Loglist.txt file.</p>
<p>To use more than one filter in the same command, separate the filters with a pipe (|). For example, the following command searches every directory on drive C:, finds the file names that include the string &quot;Log&quot;, and then displays them in one Command Prompt window at a time:</p>
<p><strong>dir c:\ /s /b | find &quot;LOG&quot; | more </strong></p>
<p>By using a pipe (|), you direct Cmd.exe to send the <strong>dir</strong> command output through the <strong>find</strong> filter command. The <strong>find </strong>command selects only file names that contain the string &quot;LOG.&quot; The <strong>more </strong>command displays the file names that are selected by the <strong>find </strong>command, one Command Prompt window at a time. For more information about filter commands, see <a href="http://technet.microsoft.com/en-us/library/bb490905.aspx">Using filters</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mithunsingh.wordpress.com/232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mithunsingh.wordpress.com/232/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mithunsingh.wordpress.com/232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mithunsingh.wordpress.com/232/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mithunsingh.wordpress.com/232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mithunsingh.wordpress.com/232/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mithunsingh.wordpress.com/232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mithunsingh.wordpress.com/232/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mithunsingh.wordpress.com/232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mithunsingh.wordpress.com/232/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mithunsingh.wordpress.com/232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mithunsingh.wordpress.com/232/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mithunsingh.wordpress.com/232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mithunsingh.wordpress.com/232/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mithunsingh.wordpress.com&amp;blog=7939202&amp;post=232&amp;subd=mithunsingh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mithunsingh.wordpress.com/2010/11/20/redirection-operators/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7d32ceee163a17c375b9437f0ccb0858?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mithunsingh</media:title>
		</media:content>
	</item>
		<item>
		<title>Message for the day 02-09-10</title>
		<link>http://mithunsingh.wordpress.com/2010/09/02/message-for-the-day-02-09-10/</link>
		<comments>http://mithunsingh.wordpress.com/2010/09/02/message-for-the-day-02-09-10/#comments</comments>
		<pubDate>Thu, 02 Sep 2010 04:36:59 +0000</pubDate>
		<dc:creator>mithunsingh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mithunsingh.wordpress.com/2010/09/02/message-for-the-day-02-09-10/</guid>
		<description><![CDATA[Message for the day 02-09-10 You can remain stable when you learn to apply a full-stop. Checking: In any difficult situation, check if you are having thoughts like, &#34;why do things happen with me like this or why is this person behaving in this way&#34; etc. you can never remain stable when you have such [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mithunsingh.wordpress.com&amp;blog=7939202&amp;post=231&amp;subd=mithunsingh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong><strong>Message for the day 02-09-10 </strong></strong></p>
<p>You can remain stable when you learn to apply a full-stop.</p>
<p><strong><strong>Checking: </strong></strong></p>
<p>In any difficult situation, check if you are having thoughts like, &quot;why do things happen with me like this or why is this person behaving in this way&quot; etc. you can never remain stable when you have such questions.</p>
<p><strong><strong>Practice: </strong></strong></p>
<p>Tell yourself that it is much easier to put a full-stop(.) than putting a question mark(?). understand the difference between worrying and finding solutions and worrying. If there is a solution, find it, if there isn&#8217;t let things take care of themselves and put a full-stop.</p>
<p>Brahmakumaris-B &amp; I Wing, Building name &quot;OMSHANTI&quot;, Plot no.48, SWASTIK CHS, N.S. Road no.3, JVPD scheme, Vile Parle &#8211; West,Mumbai, Maharashtra-400056, INDIA</p>
<table border="0" cellspacing="0" cellpadding="0" width="580">
<tbody>
<tr>
<td>To unsubscribe or change subscriber options visit:<br />
<a href="http://www.aweber.com/z/r/?bAzsLGxstCysnKws7GxstEa07OyMDIwMnA==">http://www.aweber.com/z/r/?bAzsLGxstCysnKws7GxstEa07OyMDIwMnA==</a></p>
<p><img src="http://openrate.aweber.com/y/o/?l=Beo3l&amp;m=1ZsNEHfjuNqP8H" width="1" height="1" alt="?l=Beo3l&amp;m=1ZsNEHfjuNqP8H" /></td>
</tr>
</tbody>
</table>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mithunsingh.wordpress.com/231/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mithunsingh.wordpress.com/231/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mithunsingh.wordpress.com/231/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mithunsingh.wordpress.com/231/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mithunsingh.wordpress.com/231/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mithunsingh.wordpress.com/231/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mithunsingh.wordpress.com/231/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mithunsingh.wordpress.com/231/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mithunsingh.wordpress.com/231/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mithunsingh.wordpress.com/231/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mithunsingh.wordpress.com/231/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mithunsingh.wordpress.com/231/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mithunsingh.wordpress.com/231/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mithunsingh.wordpress.com/231/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mithunsingh.wordpress.com&amp;blog=7939202&amp;post=231&amp;subd=mithunsingh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mithunsingh.wordpress.com/2010/09/02/message-for-the-day-02-09-10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7d32ceee163a17c375b9437f0ccb0858?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mithunsingh</media:title>
		</media:content>

		<media:content url="http://openrate.aweber.com/y/o/?l=Beo3l&#38;m=1ZsNEHfjuNqP8H" medium="image">
			<media:title type="html">?l=Beo3l&#38;m=1ZsNEHfjuNqP8H</media:title>
		</media:content>
	</item>
		<item>
		<title>Message for the day 06-07-10</title>
		<link>http://mithunsingh.wordpress.com/2010/07/06/message-for-the-day-06-07-10/</link>
		<comments>http://mithunsingh.wordpress.com/2010/07/06/message-for-the-day-06-07-10/#comments</comments>
		<pubDate>Tue, 06 Jul 2010 03:09:59 +0000</pubDate>
		<dc:creator>mithunsingh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mithunsingh.wordpress.com/2010/07/06/message-for-the-day-06-07-10/</guid>
		<description><![CDATA[Message for the day 06-07-10 To be free from wants is to be free from waste. Expression: The one who is free from wants is the one who is free from expectations. When there are no expectations, there is not too much thought about what is not there or what should be there. Since the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mithunsingh.wordpress.com&amp;blog=7939202&amp;post=230&amp;subd=mithunsingh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Message for the day 06-07-10</p>
<p>To be free from wants is to be free from waste.</p>
<p>Expression:</p>
<p>The one who is free from wants is the one who is free from expectations. When there are no expectations, there is not too much thought about what is not there or what should be there. Since the mind is free from all these kind of waste thoughts, whatever is done is the best.</p>
<p>Experience:</p>
<p>When I am free from wants or desires, I am able to always remain content. I can then appreciate and enjoy everything that comes my way, and do not expect anything both from situations and people. So the mind is free from waste thoughts and questions.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mithunsingh.wordpress.com/230/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mithunsingh.wordpress.com/230/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mithunsingh.wordpress.com/230/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mithunsingh.wordpress.com/230/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mithunsingh.wordpress.com/230/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mithunsingh.wordpress.com/230/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mithunsingh.wordpress.com/230/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mithunsingh.wordpress.com/230/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mithunsingh.wordpress.com/230/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mithunsingh.wordpress.com/230/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mithunsingh.wordpress.com/230/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mithunsingh.wordpress.com/230/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mithunsingh.wordpress.com/230/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mithunsingh.wordpress.com/230/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mithunsingh.wordpress.com&amp;blog=7939202&amp;post=230&amp;subd=mithunsingh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mithunsingh.wordpress.com/2010/07/06/message-for-the-day-06-07-10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7d32ceee163a17c375b9437f0ccb0858?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mithunsingh</media:title>
		</media:content>
	</item>
		<item>
		<title>Hilarious I.T. jokes !!!</title>
		<link>http://mithunsingh.wordpress.com/2010/06/09/hilarious-i-t-jokes/</link>
		<comments>http://mithunsingh.wordpress.com/2010/06/09/hilarious-i-t-jokes/#comments</comments>
		<pubDate>Wed, 09 Jun 2010 03:37:01 +0000</pubDate>
		<dc:creator>mithunsingh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mithunsingh.wordpress.com/?p=199</guid>
		<description><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mithunsingh.wordpress.com&amp;blog=7939202&amp;post=199&amp;subd=mithunsingh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<table border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="top">
<blockquote>
<table>
<tbody>
<tr>
<td><a title="Join our Group FunAndFunOnly (www.funandfunonly.org) - SridhaR" href="http://groups.yahoo.com/group/new_fun_and_fun_only"></p>
<p></a> <a title="Join our Group FunAndFunOnly (www.funandfunonly.org) - SridhaR" href="http://groups.yahoo.com/group/new_fun_and_fun_only"><a href="http://mithunsingh.files.wordpress.com/2010/06/att00001.gif"><img src="http://mithunsingh.files.wordpress.com/2010/06/att00001.gif?w=480" alt="" title="att00001"   class="alignnone size-full wp-image-202" /></a></p>
<p></a></p>
<p><a title="Join our Group FunAndFunOnly (www.funandfunonly.org) - SridhaR" href="http://groups.yahoo.com/group/new_fun_and_fun_only">
<a href='http://mithunsingh.wordpress.com/2010/06/09/hilarious-i-t-jokes/att00003/' title='att00003'><img data-attachment-id='206' data-orig-size='399,323' data-liked='0'width="150" height="121" src="http://mithunsingh.files.wordpress.com/2010/06/att00003.gif?w=150&#038;h=121" class="attachment-thumbnail" alt="att00003" title="att00003" /></a>
<a href='http://mithunsingh.wordpress.com/2010/06/09/hilarious-i-t-jokes/att00002/' title='att00002'><img data-attachment-id='208' data-orig-size='399,334' data-liked='0'width="150" height="125" src="http://mithunsingh.files.wordpress.com/2010/06/att00002.gif?w=150&#038;h=125" class="attachment-thumbnail" alt="att00002" title="att00002" /></a>
</p>
<p></a></p>
<p><a title="Join our Group FunAndFunOnly (www.funandfunonly.org) - SridhaR" href="http://groups.yahoo.com/group/new_fun_and_fun_only"><a href="http://mithunsingh.files.wordpress.com/2010/06/att00004.gif"><img src="http://mithunsingh.files.wordpress.com/2010/06/att00004.gif?w=480&#038;h=335" alt="" title="att00004" width="480" height="335" class="alignnone size-full wp-image-200" /></a></p>
<p></a></p>
<p><a title="Join our Group FunAndFunOnly (www.funandfunonly.org) - SridhaR" href="http://groups.yahoo.com/group/new_fun_and_fun_only"><a href="http://mithunsingh.files.wordpress.com/2010/06/att00005.gif"><img src="http://mithunsingh.files.wordpress.com/2010/06/att00005.gif?w=480&#038;h=413" alt="" title="att00005" width="480" height="413" class="alignnone size-full wp-image-201" /></a></p>
<p></a></p>
<p><a title="Join our Group FunAndFunOnly (www.funandfunonly.org) - SridhaR" href="http://groups.yahoo.com/group/new_fun_and_fun_only">
<a href='http://mithunsingh.wordpress.com/2010/06/09/hilarious-i-t-jokes/att00006/' title='att00006'><img data-attachment-id='203' data-orig-size='320,350' data-liked='0'width="137" height="150" src="http://mithunsingh.files.wordpress.com/2010/06/att00006.gif?w=137&#038;h=150" class="attachment-thumbnail" alt="att00006" title="att00006" /></a>
<a href='http://mithunsingh.wordpress.com/2010/06/09/hilarious-i-t-jokes/att00007/' title='att00007'><img data-attachment-id='204' data-orig-size='320,350' data-liked='0'width="137" height="150" src="http://mithunsingh.files.wordpress.com/2010/06/att00007.gif?w=137&#038;h=150" class="attachment-thumbnail" alt="att00007" title="att00007" /></a>
</p>
<p></a></p>
<p><a title="Join our Group FunAndFunOnly (www.funandfunonly.org) - SridhaR" href="http://groups.yahoo.com/group/new_fun_and_fun_only">
<a href='http://mithunsingh.wordpress.com/2010/06/09/hilarious-i-t-jokes/att00008/' title='att00008'><img data-attachment-id='205' data-orig-size='320,350' data-liked='0'width="137" height="150" src="http://mithunsingh.files.wordpress.com/2010/06/att00008.gif?w=137&#038;h=150" class="attachment-thumbnail" alt="att00008" title="att00008" /></a>
<a href='http://mithunsingh.wordpress.com/2010/06/09/hilarious-i-t-jokes/att00009/' title='att00009'><img data-attachment-id='211' data-orig-size='540,415' data-liked='0'width="150" height="115" src="http://mithunsingh.files.wordpress.com/2010/06/att00009.gif?w=150&#038;h=115" class="attachment-thumbnail" alt="att00009" title="att00009" /></a>
</p>
<p></a></p>
<p><a title="Join our Group FunAndFunOnly (www.funandfunonly.org) - SridhaR" href="http://groups.yahoo.com/group/new_fun_and_fun_only"><a href="http://mithunsingh.files.wordpress.com/2010/06/att00010.gif"><img src="http://mithunsingh.files.wordpress.com/2010/06/att00010.gif?w=480" alt="" title="att00010"   class="alignnone size-full wp-image-212" /></a></p>
<p></a></p>
<p><a title="Join our Group FunAndFunOnly (www.funandfunonly.org) - SridhaR" href="http://groups.yahoo.com/group/new_fun_and_fun_only">
<a href='http://mithunsingh.wordpress.com/2010/06/09/hilarious-i-t-jokes/att00011/' title='att00011'><img data-attachment-id='207' data-orig-size='348,350' data-liked='0'width="150" height="150" src="http://mithunsingh.files.wordpress.com/2010/06/att00011.gif?w=150&#038;h=150" class="attachment-thumbnail" alt="att00011" title="att00011" /></a>
<a href='http://mithunsingh.wordpress.com/2010/06/09/hilarious-i-t-jokes/att00012/' title='att00012'><img data-attachment-id='209' data-orig-size='329,363' data-liked='0'width="135" height="150" src="http://mithunsingh.files.wordpress.com/2010/06/att00012.gif?w=135&#038;h=150" class="attachment-thumbnail" alt="att00012" title="att00012" /></a>
</p>
<p></a></p>
<p><a title="Join our Group FunAndFunOnly (www.funandfunonly.org) - SridhaR" href="http://groups.yahoo.com/group/new_fun_and_fun_only">
<a href='http://mithunsingh.wordpress.com/2010/06/09/hilarious-i-t-jokes/att00014/' title='att00014'><img data-attachment-id='213' data-orig-size='260,284' data-liked='0'width="137" height="150" src="http://mithunsingh.files.wordpress.com/2010/06/att00014.jpg?w=137&#038;h=150" class="attachment-thumbnail" alt="att00014" title="att00014" /></a>
<a href='http://mithunsingh.wordpress.com/2010/06/09/hilarious-i-t-jokes/att00013/' title='att00013'><img data-attachment-id='214' data-orig-size='512,364' data-liked='0'width="150" height="106" src="http://mithunsingh.files.wordpress.com/2010/06/att00013.jpg?w=150&#038;h=106" class="attachment-thumbnail" alt="att00013" title="att00013" /></a>
</p>
<p></a></p>
<p><a title="Join our Group FunAndFunOnly (www.funandfunonly.org) - SridhaR" href="http://groups.yahoo.com/group/new_fun_and_fun_only"><a href="http://mithunsingh.files.wordpress.com/2010/06/att00015.jpg"><img src="http://mithunsingh.files.wordpress.com/2010/06/att00015.jpg?w=480" alt="" title="att00015"   class="alignnone size-full wp-image-210" /></a></p>
<p></a></td>
</tr>
</tbody>
</table>
</blockquote>
</td>
</tr>
</tbody>
</table>

<a href='http://mithunsingh.wordpress.com/2010/06/09/hilarious-i-t-jokes/att000031/' title='att000031'><img data-attachment-id='215' data-orig-size='399,323' data-liked='0'width="150" height="121" src="http://mithunsingh.files.wordpress.com/2010/06/att000031.gif?w=150&#038;h=121" class="attachment-thumbnail" alt="att000031" title="att000031" /></a>
<a href='http://mithunsingh.wordpress.com/2010/06/09/hilarious-i-t-jokes/att000111/' title='att000111'><img data-attachment-id='217' data-orig-size='348,350' data-liked='0'width="150" height="150" src="http://mithunsingh.files.wordpress.com/2010/06/att000111.gif?w=150&#038;h=150" class="attachment-thumbnail" alt="att000111" title="att000111" /></a>
<a href='http://mithunsingh.wordpress.com/2010/06/09/hilarious-i-t-jokes/att000141/' title='att000141'><img data-attachment-id='218' data-orig-size='260,284' data-liked='0'width="137" height="150" src="http://mithunsingh.files.wordpress.com/2010/06/att000141.jpg?w=137&#038;h=150" class="attachment-thumbnail" alt="att000141" title="att000141" /></a>
<a href='http://mithunsingh.wordpress.com/2010/06/09/hilarious-i-t-jokes/att000011/' title='att000011'><img data-attachment-id='219' data-orig-size='350,320' data-liked='0'width="150" height="137" src="http://mithunsingh.files.wordpress.com/2010/06/att000011.gif?w=150&#038;h=137" class="attachment-thumbnail" alt="att000011" title="att000011" /></a>
<a href='http://mithunsingh.wordpress.com/2010/06/09/hilarious-i-t-jokes/att000061/' title='att000061'><img data-attachment-id='220' data-orig-size='320,350' data-liked='0'width="137" height="150" src="http://mithunsingh.files.wordpress.com/2010/06/att000061.gif?w=137&#038;h=150" class="attachment-thumbnail" alt="att000061" title="att000061" /></a>
<a href='http://mithunsingh.wordpress.com/2010/06/09/hilarious-i-t-jokes/att000071/' title='att000071'><img data-attachment-id='221' data-orig-size='320,350' data-liked='0'width="137" height="150" src="http://mithunsingh.files.wordpress.com/2010/06/att000071.gif?w=137&#038;h=150" class="attachment-thumbnail" alt="att000071" title="att000071" /></a>
<a href='http://mithunsingh.wordpress.com/2010/06/09/hilarious-i-t-jokes/att000131/' title='att000131'><img data-attachment-id='222' data-orig-size='512,364' data-liked='0'width="150" height="106" src="http://mithunsingh.files.wordpress.com/2010/06/att000131.jpg?w=150&#038;h=106" class="attachment-thumbnail" alt="att000131" title="att000131" /></a>
<a href='http://mithunsingh.wordpress.com/2010/06/09/hilarious-i-t-jokes/att000081/' title='att000081'><img data-attachment-id='223' data-orig-size='320,350' data-liked='0'width="137" height="150" src="http://mithunsingh.files.wordpress.com/2010/06/att000081.gif?w=137&#038;h=150" class="attachment-thumbnail" alt="att000081" title="att000081" /></a>
<a href='http://mithunsingh.wordpress.com/2010/06/09/hilarious-i-t-jokes/att000041/' title='att000041'><img data-attachment-id='224' data-orig-size='544,380' data-liked='0'width="150" height="104" src="http://mithunsingh.files.wordpress.com/2010/06/att000041.gif?w=150&#038;h=104" class="attachment-thumbnail" alt="att000041" title="att000041" /></a>
<a href='http://mithunsingh.wordpress.com/2010/06/09/hilarious-i-t-jokes/att000101/' title='att000101'><img data-attachment-id='225' data-orig-size='360,245' data-liked='0'width="150" height="102" src="http://mithunsingh.files.wordpress.com/2010/06/att000101.gif?w=150&#038;h=102" class="attachment-thumbnail" alt="att000101" title="att000101" /></a>
<a href='http://mithunsingh.wordpress.com/2010/06/09/hilarious-i-t-jokes/att000021/' title='att000021'><img data-attachment-id='226' data-orig-size='399,334' data-liked='0'width="150" height="125" src="http://mithunsingh.files.wordpress.com/2010/06/att000021.gif?w=150&#038;h=125" class="attachment-thumbnail" alt="att000021" title="att000021" /></a>
<a href='http://mithunsingh.wordpress.com/2010/06/09/hilarious-i-t-jokes/att000051/' title='att000051'><img data-attachment-id='227' data-orig-size='481,414' data-liked='0'width="150" height="129" src="http://mithunsingh.files.wordpress.com/2010/06/att000051.gif?w=150&#038;h=129" class="attachment-thumbnail" alt="att000051" title="att000051" /></a>
<a href='http://mithunsingh.wordpress.com/2010/06/09/hilarious-i-t-jokes/att000121/' title='att000121'><img data-attachment-id='228' data-orig-size='329,363' data-liked='0'width="135" height="150" src="http://mithunsingh.files.wordpress.com/2010/06/att000121.gif?w=135&#038;h=150" class="attachment-thumbnail" alt="att000121" title="att000121" /></a>
<a href='http://mithunsingh.wordpress.com/2010/06/09/hilarious-i-t-jokes/att000091/' title='att000091'><img data-attachment-id='229' data-orig-size='540,415' data-liked='0'width="150" height="115" src="http://mithunsingh.files.wordpress.com/2010/06/att000091.gif?w=150&#038;h=115" class="attachment-thumbnail" alt="att000091" title="att000091" /></a>

<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mithunsingh.wordpress.com/199/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mithunsingh.wordpress.com/199/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mithunsingh.wordpress.com/199/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mithunsingh.wordpress.com/199/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mithunsingh.wordpress.com/199/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mithunsingh.wordpress.com/199/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mithunsingh.wordpress.com/199/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mithunsingh.wordpress.com/199/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mithunsingh.wordpress.com/199/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mithunsingh.wordpress.com/199/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mithunsingh.wordpress.com/199/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mithunsingh.wordpress.com/199/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mithunsingh.wordpress.com/199/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mithunsingh.wordpress.com/199/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mithunsingh.wordpress.com&amp;blog=7939202&amp;post=199&amp;subd=mithunsingh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mithunsingh.wordpress.com/2010/06/09/hilarious-i-t-jokes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7d32ceee163a17c375b9437f0ccb0858?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mithunsingh</media:title>
		</media:content>

		<media:content url="http://mithunsingh.files.wordpress.com/2010/06/att00001.gif" medium="image">
			<media:title type="html">att00001</media:title>
		</media:content>

		<media:content url="http://mithunsingh.files.wordpress.com/2010/06/att00003.gif?w=150" medium="image">
			<media:title type="html">att00003</media:title>
		</media:content>

		<media:content url="http://mithunsingh.files.wordpress.com/2010/06/att00002.gif?w=150" medium="image">
			<media:title type="html">att00002</media:title>
		</media:content>

		<media:content url="http://mithunsingh.files.wordpress.com/2010/06/att00004.gif" medium="image">
			<media:title type="html">att00004</media:title>
		</media:content>

		<media:content url="http://mithunsingh.files.wordpress.com/2010/06/att00005.gif" medium="image">
			<media:title type="html">att00005</media:title>
		</media:content>

		<media:content url="http://mithunsingh.files.wordpress.com/2010/06/att00006.gif?w=137" medium="image">
			<media:title type="html">att00006</media:title>
		</media:content>

		<media:content url="http://mithunsingh.files.wordpress.com/2010/06/att00007.gif?w=137" medium="image">
			<media:title type="html">att00007</media:title>
		</media:content>

		<media:content url="http://mithunsingh.files.wordpress.com/2010/06/att00008.gif?w=137" medium="image">
			<media:title type="html">att00008</media:title>
		</media:content>

		<media:content url="http://mithunsingh.files.wordpress.com/2010/06/att00009.gif?w=150" medium="image">
			<media:title type="html">att00009</media:title>
		</media:content>

		<media:content url="http://mithunsingh.files.wordpress.com/2010/06/att00010.gif" medium="image">
			<media:title type="html">att00010</media:title>
		</media:content>

		<media:content url="http://mithunsingh.files.wordpress.com/2010/06/att00011.gif?w=150" medium="image">
			<media:title type="html">att00011</media:title>
		</media:content>

		<media:content url="http://mithunsingh.files.wordpress.com/2010/06/att00012.gif?w=135" medium="image">
			<media:title type="html">att00012</media:title>
		</media:content>

		<media:content url="http://mithunsingh.files.wordpress.com/2010/06/att00014.jpg?w=137" medium="image">
			<media:title type="html">att00014</media:title>
		</media:content>

		<media:content url="http://mithunsingh.files.wordpress.com/2010/06/att00013.jpg?w=150" medium="image">
			<media:title type="html">att00013</media:title>
		</media:content>

		<media:content url="http://mithunsingh.files.wordpress.com/2010/06/att00015.jpg" medium="image">
			<media:title type="html">att00015</media:title>
		</media:content>

		<media:content url="http://mithunsingh.files.wordpress.com/2010/06/att000031.gif?w=150" medium="image">
			<media:title type="html">att000031</media:title>
		</media:content>

		<media:content url="http://mithunsingh.files.wordpress.com/2010/06/att000111.gif?w=150" medium="image">
			<media:title type="html">att000111</media:title>
		</media:content>

		<media:content url="http://mithunsingh.files.wordpress.com/2010/06/att000141.jpg?w=137" medium="image">
			<media:title type="html">att000141</media:title>
		</media:content>

		<media:content url="http://mithunsingh.files.wordpress.com/2010/06/att000011.gif?w=150" medium="image">
			<media:title type="html">att000011</media:title>
		</media:content>

		<media:content url="http://mithunsingh.files.wordpress.com/2010/06/att000061.gif?w=137" medium="image">
			<media:title type="html">att000061</media:title>
		</media:content>

		<media:content url="http://mithunsingh.files.wordpress.com/2010/06/att000071.gif?w=137" medium="image">
			<media:title type="html">att000071</media:title>
		</media:content>

		<media:content url="http://mithunsingh.files.wordpress.com/2010/06/att000131.jpg?w=150" medium="image">
			<media:title type="html">att000131</media:title>
		</media:content>

		<media:content url="http://mithunsingh.files.wordpress.com/2010/06/att000081.gif?w=137" medium="image">
			<media:title type="html">att000081</media:title>
		</media:content>

		<media:content url="http://mithunsingh.files.wordpress.com/2010/06/att000041.gif?w=150" medium="image">
			<media:title type="html">att000041</media:title>
		</media:content>

		<media:content url="http://mithunsingh.files.wordpress.com/2010/06/att000101.gif?w=150" medium="image">
			<media:title type="html">att000101</media:title>
		</media:content>

		<media:content url="http://mithunsingh.files.wordpress.com/2010/06/att000021.gif?w=150" medium="image">
			<media:title type="html">att000021</media:title>
		</media:content>

		<media:content url="http://mithunsingh.files.wordpress.com/2010/06/att000051.gif?w=150" medium="image">
			<media:title type="html">att000051</media:title>
		</media:content>

		<media:content url="http://mithunsingh.files.wordpress.com/2010/06/att000121.gif?w=135" medium="image">
			<media:title type="html">att000121</media:title>
		</media:content>

		<media:content url="http://mithunsingh.files.wordpress.com/2010/06/att000091.gif?w=150" medium="image">
			<media:title type="html">att000091</media:title>
		</media:content>
	</item>
		<item>
		<title>srini koppuri life history..</title>
		<link>http://mithunsingh.wordpress.com/2010/05/31/srini-koppuri-life-history/</link>
		<comments>http://mithunsingh.wordpress.com/2010/05/31/srini-koppuri-life-history/#comments</comments>
		<pubDate>Mon, 31 May 2010 06:11:44 +0000</pubDate>
		<dc:creator>mithunsingh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mithunsingh.wordpress.com/2010/05/31/srini-koppuri-life-history/</guid>
		<description><![CDATA[http://www.thehindu.com/thehindu/mp/2002/09/17/stories/2002091700380200.htm<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mithunsingh.wordpress.com&amp;blog=7939202&amp;post=198&amp;subd=mithunsingh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.thehindu.com/thehindu/mp/2002/09/17/stories/2002091700380200.htm">http://www.thehindu.com/thehindu/mp/2002/09/17/stories/2002091700380200.htm</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mithunsingh.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mithunsingh.wordpress.com/198/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mithunsingh.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mithunsingh.wordpress.com/198/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mithunsingh.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mithunsingh.wordpress.com/198/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mithunsingh.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mithunsingh.wordpress.com/198/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mithunsingh.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mithunsingh.wordpress.com/198/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mithunsingh.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mithunsingh.wordpress.com/198/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mithunsingh.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mithunsingh.wordpress.com/198/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mithunsingh.wordpress.com&amp;blog=7939202&amp;post=198&amp;subd=mithunsingh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mithunsingh.wordpress.com/2010/05/31/srini-koppuri-life-history/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7d32ceee163a17c375b9437f0ccb0858?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mithunsingh</media:title>
		</media:content>
	</item>
		<item>
		<title>What SKSVMA taught me…</title>
		<link>http://mithunsingh.wordpress.com/2010/05/08/what-sksvma-taught-me%e2%80%a6/</link>
		<comments>http://mithunsingh.wordpress.com/2010/05/08/what-sksvma-taught-me%e2%80%a6/#comments</comments>
		<pubDate>Sat, 08 May 2010 15:55:52 +0000</pubDate>
		<dc:creator>mithunsingh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mithunsingh.wordpress.com/2010/05/08/what-sksvma-taught-me%e2%80%a6/</guid>
		<description><![CDATA[TRUE STORY: Friday. 2PM. Lunch-Break. 3 engineers are in the urinals. The first engineer finished and walked over to the sink to wash his hands. He then proceeded to dry his hands very carefully. He used paper towel after paper towel and ensured that every single spot of water on his hands was dried. Turning [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mithunsingh.wordpress.com&amp;blog=7939202&amp;post=197&amp;subd=mithunsingh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>TRUE STORY:</strong> Friday. 2PM. Lunch-Break. 3 engineers are in the urinals.</p>
<p>The first engineer finished and walked over to the sink to wash his hands. He then proceeded to dry his hands very carefully. He used paper towel after paper towel and ensured that every single spot of water on his hands was dried. Turning to the other two engineers, he said, “At <strong>NIT</strong>, we are trained to be extremely thorough.”</p>
<p>The second engineer finished his task at the urinal and he proceeded to wash his hands. He used a single paper towel and made sure that he dried his hands using every available portion of the paper towel. He turned and said, “At <strong>IIT</strong>, not only are we trained to be extremely thorough, but we are also trained to be ECO-Friendly.”</p>
<p>The third engineer finished and walked straight for the door, shouting over his shoulder,</p>
<blockquote><p><strong>“At SKSVMA, we don’t pee on our hands.”<br />
</strong></p>
</blockquote>
<p>__________________________</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mithunsingh.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mithunsingh.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mithunsingh.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mithunsingh.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mithunsingh.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mithunsingh.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mithunsingh.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mithunsingh.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mithunsingh.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mithunsingh.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mithunsingh.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mithunsingh.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mithunsingh.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mithunsingh.wordpress.com/197/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mithunsingh.wordpress.com&amp;blog=7939202&amp;post=197&amp;subd=mithunsingh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mithunsingh.wordpress.com/2010/05/08/what-sksvma-taught-me%e2%80%a6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7d32ceee163a17c375b9437f0ccb0858?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mithunsingh</media:title>
		</media:content>
	</item>
		<item>
		<title>Conversation from &#8220;The Fontain Head&#8221;</title>
		<link>http://mithunsingh.wordpress.com/2010/05/03/conversation-from-the-fontain-head/</link>
		<comments>http://mithunsingh.wordpress.com/2010/05/03/conversation-from-the-fontain-head/#comments</comments>
		<pubDate>Mon, 03 May 2010 05:38:00 +0000</pubDate>
		<dc:creator>mithunsingh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mithunsingh.wordpress.com/2010/05/03/conversation-from-the-fontain-head/</guid>
		<description><![CDATA[One of the best Conversation&#8217;s &#8230;. &#34;When did you decide to become an architect?&#34; &#34;When I was ten years old.&#34; &#34;Men don&#8217;t know what they want so early in life, if ever. You&#8217;re lying.&#34; &#34;Am I?&#34; &#34;Don&#8217;t stare at me like that! Can&#8217;t you look at something else? Why did you decide to be an [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mithunsingh.wordpress.com&amp;blog=7939202&amp;post=196&amp;subd=mithunsingh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>One of the best Conversation&#8217;s &#8230;.</p>
<p>&quot;When did you decide to become an architect?&quot;</p>
<p>&quot;When I was ten years old.&quot;</p>
<p>&quot;Men don&#8217;t know what they want so early in life, if ever. You&#8217;re lying.&quot;</p>
<p>&quot;Am I?&quot;</p>
<p>&quot;Don&#8217;t stare at me like that! Can&#8217;t you look at something else? Why did you decide to be an architect?&quot;</p>
<p>&quot;I didn&#8217;t know it then. But it&#8217;s because I&#8217;ve never believed in God.&quot;</p>
<p>&quot;Come on, talk sense.&quot;</p>
<p>&quot;Because I love this earth. That&#8217;s all I love. I don&#8217;t like the shape of things on this earth. I want to change them.&quot;</p>
<p>&quot;For whom?&quot;</p>
<p>&quot;For myself.&quot;</p>
<p>&quot;How old are you?&quot;</p>
<p>&quot;Twenty-two.&quot;</p>
<p>&quot;When did you hear all that?&quot;</p>
<p>&quot;I didn&#8217;t.&quot;</p>
<p>&quot;Men don&#8217;t talk like that at twenty-two. You&#8217;re abnormal.&quot;</p>
<p>&quot;Probably.&quot;</p>
<p>&quot;I didn&#8217;t mean it as a compliment.&quot;</p>
<p>&quot;I didn&#8217;t either.&quot;</p>
<p>&quot;Got any family?&quot;</p>
<p>&quot;No.&quot;</p>
<p>&quot;Worked through school?&quot;</p>
<p>&quot;Yes.&quot;</p>
<p>&quot;At what?&quot;</p>
<p>&quot;In the building trades.&quot;</p>
<p>&quot;How much money have you got left?&quot;</p>
<p>&quot;Seventeen dollars and thirty cents.&quot;</p>
<p>&quot;When did you come to New York?&quot;</p>
<p>&quot;Yesterday.&quot;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mithunsingh.wordpress.com/196/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mithunsingh.wordpress.com/196/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mithunsingh.wordpress.com/196/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mithunsingh.wordpress.com/196/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mithunsingh.wordpress.com/196/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mithunsingh.wordpress.com/196/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mithunsingh.wordpress.com/196/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mithunsingh.wordpress.com/196/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mithunsingh.wordpress.com/196/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mithunsingh.wordpress.com/196/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mithunsingh.wordpress.com/196/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mithunsingh.wordpress.com/196/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mithunsingh.wordpress.com/196/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mithunsingh.wordpress.com/196/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mithunsingh.wordpress.com&amp;blog=7939202&amp;post=196&amp;subd=mithunsingh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mithunsingh.wordpress.com/2010/05/03/conversation-from-the-fontain-head/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7d32ceee163a17c375b9437f0ccb0858?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mithunsingh</media:title>
		</media:content>
	</item>
		<item>
		<title>Nenjukkul peidhidum</title>
		<link>http://mithunsingh.wordpress.com/2010/04/30/nenjukkul-peidhidum/</link>
		<comments>http://mithunsingh.wordpress.com/2010/04/30/nenjukkul-peidhidum/#comments</comments>
		<pubDate>Fri, 30 Apr 2010 13:29:51 +0000</pubDate>
		<dc:creator>mithunsingh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mithunsingh.wordpress.com/2010/04/30/nenjukkul-peidhidum/</guid>
		<description><![CDATA[Nenjukkul peidhidum Nenjukkul peidhidum maa mazhai Neerukul moozhgidum thaamarai Sattendru maarudhu vaanilai Penne un mel pizhai Nillamal veesidum peralai Nenjukkul neenthidum tharagai Pon vannam soodiya kaarigai Penne nee kaanchanai Oh shaanti shaanti oh shaanti Yen uyirai uyirai neeyenthi Yen sendrai sendrai yennai thaandi Ini neethan yenthan andhathi Nenjukkul peidhidum maa mazhai Neerukul moozhgidum thaamarai Sattendru [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mithunsingh.wordpress.com&amp;blog=7939202&amp;post=195&amp;subd=mithunsingh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Nenjukkul peidhidum</strong></p>
<p>Nenjukkul peidhidum maa mazhai<br />
Neerukul moozhgidum thaamarai<br />
Sattendru maarudhu vaanilai<br />
Penne un mel pizhai</p>
<p>Nillamal veesidum peralai<br />
Nenjukkul neenthidum tharagai<br />
Pon vannam soodiya kaarigai<br />
Penne nee kaanchanai</p>
<p>Oh shaanti shaanti oh shaanti<br />
Yen uyirai uyirai neeyenthi<br />
Yen sendrai sendrai yennai thaandi<br />
Ini neethan yenthan andhathi</p>
<p>Nenjukkul peidhidum maa mazhai<br />
Neerukul moozhgidum thaamarai<br />
Sattendru maarudhu vaanilai<br />
Penne un mel pizhai</p>
<p>Yedho ondru ennai eerka<br />
Mookin nuni marmam serka<br />
Kalla-thanam yedhum illa<br />
Punnagaiyo boganvilla</p>
<p>Nee nindra idam endral Vilai yeri pogadho<br />
Nee sellum vazhi ellam panikatti aahadho<br />
Yennodu vaa veedu varaikkum<br />
Yen veetai paar yennai pidikkum</p>
<p>Ival yaaro yaaro theriyadhey<br />
Ival pinnal nenje pogadhey<br />
Idhu poyyo meyyo theriyadhey<br />
Ival pinnal nenje pogadhey</p>
<p>Nenjukkul peidhidum maa mazhai<br />
Neerukul moozhgidum thaamarai<br />
Sattendru maarudhu vaanilai<br />
Penne un mel pizhai.. oh.o.</p>
<p>Nillamal veesidum peralai<br />
Nenjukkul neenthidum tharagai<br />
Pon vannam soodiya kaarigai<br />
Penne nee kaanchanai</p>
<p>Thookangalai thooki sendrai<br />
Yekkangalai thoovi sendrai<br />
Unnai thaandi pogum podhu<br />
Veesum kaatrin veechu veru</p>
<p>Nil endru nee sonnal en kaalam nagaradhey<br />
Nee soodum poovellam oru podhum udhiradhey<br />
Kadhal enai ketka villa<br />
Ketkathadhu kadhal illa</p>
<p>Yen jeevan jeevan neethaney<br />
Yena thondrum neram idhuthane<br />
Nee illai illai yendrale<br />
Yen nenjam nenjam thaangadhey</p>
<p>Nenjukkul peidhidum maa mazhai<br />
Neerukul moozhgidum thaamarai<br />
Sattendru maarudhu vaanilai<br />
Penne un mel pizhai.. oh.o.</p>
<p>Nillamal veesidum peralai<br />
Nenjukkul neenthidum tharagai<br />
Pon vannam soodiya kaarigai<br />
Penne nee kaanchanai</p>
<p>Oh shaanti shaanti oh shaanti<br />
Yen uyirai uyirai neeyenthi<br />
Yen sendrai sendrai yennai thaandi<br />
Ini neethan yenthan andhathi</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mithunsingh.wordpress.com/195/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mithunsingh.wordpress.com/195/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mithunsingh.wordpress.com/195/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mithunsingh.wordpress.com/195/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mithunsingh.wordpress.com/195/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mithunsingh.wordpress.com/195/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mithunsingh.wordpress.com/195/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mithunsingh.wordpress.com/195/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mithunsingh.wordpress.com/195/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mithunsingh.wordpress.com/195/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mithunsingh.wordpress.com/195/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mithunsingh.wordpress.com/195/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mithunsingh.wordpress.com/195/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mithunsingh.wordpress.com/195/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mithunsingh.wordpress.com&amp;blog=7939202&amp;post=195&amp;subd=mithunsingh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mithunsingh.wordpress.com/2010/04/30/nenjukkul-peidhidum/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7d32ceee163a17c375b9437f0ccb0858?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mithunsingh</media:title>
		</media:content>
	</item>
		<item>
		<title>From Srirangam to Mumbai — a tale of three generations</title>
		<link>http://mithunsingh.wordpress.com/2010/04/30/from-srirangam-to-mumbai-%e2%80%94-a-tale-of-three-generations/</link>
		<comments>http://mithunsingh.wordpress.com/2010/04/30/from-srirangam-to-mumbai-%e2%80%94-a-tale-of-three-generations/#comments</comments>
		<pubDate>Fri, 30 Apr 2010 07:21:39 +0000</pubDate>
		<dc:creator>mithunsingh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mithunsingh.wordpress.com/2010/04/30/from-srirangam-to-mumbai-%e2%80%94-a-tale-of-three-generations/</guid>
		<description><![CDATA[Nice intresting post &#8230;&#8230; http://beta.thehindu.com/opinion/open-page/article409676.ece<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mithunsingh.wordpress.com&amp;blog=7939202&amp;post=191&amp;subd=mithunsingh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Nice intresting post &#8230;&#8230;</p>
<p><a href="http://beta.thehindu.com/opinion/open-page/article409676.ece">http://beta.thehindu.com/opinion/open-page/article409676.ece</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mithunsingh.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mithunsingh.wordpress.com/191/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mithunsingh.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mithunsingh.wordpress.com/191/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mithunsingh.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mithunsingh.wordpress.com/191/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mithunsingh.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mithunsingh.wordpress.com/191/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mithunsingh.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mithunsingh.wordpress.com/191/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mithunsingh.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mithunsingh.wordpress.com/191/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mithunsingh.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mithunsingh.wordpress.com/191/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mithunsingh.wordpress.com&amp;blog=7939202&amp;post=191&amp;subd=mithunsingh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mithunsingh.wordpress.com/2010/04/30/from-srirangam-to-mumbai-%e2%80%94-a-tale-of-three-generations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7d32ceee163a17c375b9437f0ccb0858?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mithunsingh</media:title>
		</media:content>
	</item>
		<item>
		<title>Quitters or Winners</title>
		<link>http://mithunsingh.wordpress.com/2010/03/17/quitters-or-winners/</link>
		<comments>http://mithunsingh.wordpress.com/2010/03/17/quitters-or-winners/#comments</comments>
		<pubDate>Wed, 17 Mar 2010 03:53:47 +0000</pubDate>
		<dc:creator>mithunsingh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mithunsingh.wordpress.com/?p=171</guid>
		<description><![CDATA[Quitters or Winners<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mithunsingh.wordpress.com&amp;blog=7939202&amp;post=171&amp;subd=mithunsingh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Quitters or Winners</p>
<p><a href="http://groups.fropki.com/"><a href="http://mithunsingh.files.wordpress.com/2010/03/winners_fropki2.jpg"><img src="http://mithunsingh.files.wordpress.com/2010/03/winners_fropki2.jpg?w=480&#038;h=360" alt="" title="winners fropki2" width="480" height="360" class="alignnone size-full wp-image-174" /></a></p>
<p></a></p>
<p><a href="http://groups.fropki.com/"><a href="http://mithunsingh.files.wordpress.com/2010/03/winners_fropki3.jpg"><img src="http://mithunsingh.files.wordpress.com/2010/03/winners_fropki3.jpg?w=480&#038;h=355" alt="" title="winners fropki3" width="480" height="355" class="alignnone size-full wp-image-175" /></a></p>
<p></a></p>
<p><a href="http://groups.fropki.com/"><a href="http://mithunsingh.files.wordpress.com/2010/03/winners_fropki16.jpg"><img src="http://mithunsingh.files.wordpress.com/2010/03/winners_fropki16.jpg?w=480&#038;h=358" alt="" title="winners fropki16" width="480" height="358" class="alignnone size-full wp-image-188" /></a></p>
<p></a></p>
<p><a href="http://groups.fropki.com/"><a href="http://mithunsingh.files.wordpress.com/2010/03/winners_fropki4.jpg"><img src="http://mithunsingh.files.wordpress.com/2010/03/winners_fropki4.jpg?w=480&#038;h=362" alt="" title="winners fropki4" width="480" height="362" class="alignnone size-full wp-image-176" /></a></p>
<p></a></p>
<p><a href="http://groups.fropki.com/"><a href="http://mithunsingh.files.wordpress.com/2010/03/winners_fropki7.jpg"><img src="http://mithunsingh.files.wordpress.com/2010/03/winners_fropki7.jpg?w=480&#038;h=360" alt="" title="winners fropki7" width="480" height="360" class="alignnone size-full wp-image-179" /></a></p>
<p></a></p>
<p><a href="http://groups.fropki.com/"><a href="http://mithunsingh.files.wordpress.com/2010/03/winners_fropki11.jpg"><img src="http://mithunsingh.files.wordpress.com/2010/03/winners_fropki11.jpg?w=480&#038;h=358" alt="" title="winners fropki11" width="480" height="358" class="alignnone size-full wp-image-183" /></a></p>
<p></a></p>
<p><a href="http://groups.fropki.com/"><a href="http://mithunsingh.files.wordpress.com/2010/03/winners_fropki13.jpg"><img src="http://mithunsingh.files.wordpress.com/2010/03/winners_fropki13.jpg?w=480&#038;h=360" alt="" title="winners fropki13" width="480" height="360" class="alignnone size-full wp-image-185" /></a></p>
<p></a></p>
<p><a href="http://groups.fropki.com/"><a href="http://mithunsingh.files.wordpress.com/2010/03/winners_fropki12.jpg"><img src="http://mithunsingh.files.wordpress.com/2010/03/winners_fropki12.jpg?w=480&#038;h=361" alt="" title="winners fropki12" width="480" height="361" class="alignnone size-full wp-image-184" /></a></p>
<p></a></p>
<p><a href="http://groups.fropki.com/"><a href="http://mithunsingh.files.wordpress.com/2010/03/winners_fropki5.jpg"><img src="http://mithunsingh.files.wordpress.com/2010/03/winners_fropki5.jpg?w=480&#038;h=360" alt="" title="winners fropki5" width="480" height="360" class="alignnone size-full wp-image-177" /></a></p>
<p></a></p>
<p><a href="http://groups.fropki.com/"><a href="http://mithunsingh.files.wordpress.com/2010/03/winners_fropki6.jpg"><img src="http://mithunsingh.files.wordpress.com/2010/03/winners_fropki6.jpg?w=480&#038;h=361" alt="" title="winners fropki6" width="480" height="361" class="alignnone size-full wp-image-178" /></a></p>
<p></a></p>
<p><a href="http://groups.fropki.com/"><a href="http://mithunsingh.files.wordpress.com/2010/03/winners_fropki8.jpg"><img src="http://mithunsingh.files.wordpress.com/2010/03/winners_fropki8.jpg?w=480&#038;h=355" alt="" title="winners fropki8" width="480" height="355" class="alignnone size-full wp-image-180" /></a></p>
<p></a></p>
<p><a href="http://groups.fropki.com/"><a href="http://mithunsingh.files.wordpress.com/2010/03/winners_fropki1.jpg"><img src="http://mithunsingh.files.wordpress.com/2010/03/winners_fropki1.jpg?w=480&#038;h=328" alt="" title="winners fropki1" width="480" height="328" class="alignnone size-full wp-image-173" /></a></p>
<p></a></p>
<p><a href="http://groups.fropki.com/"><a href="http://mithunsingh.files.wordpress.com/2010/03/winners_fropki10.jpg"><img src="http://mithunsingh.files.wordpress.com/2010/03/winners_fropki10.jpg?w=480&#038;h=338" alt="" title="winners fropki10" width="480" height="338" class="alignnone size-full wp-image-182" /></a></p>
<p></a></p>
<p><a href="http://groups.fropki.com/"><a href="http://mithunsingh.files.wordpress.com/2010/03/winners_fropki18.jpg"><img src="http://mithunsingh.files.wordpress.com/2010/03/winners_fropki18.jpg?w=480&#038;h=346" alt="" title="winners fropki18" width="480" height="346" class="alignnone size-full wp-image-190" /></a></p>
<p></a></p>
<p><a href="http://groups.fropki.com/"><a href="http://mithunsingh.files.wordpress.com/2010/03/winners_fropki9.jpg"><img src="http://mithunsingh.files.wordpress.com/2010/03/winners_fropki9.jpg?w=480&#038;h=330" alt="" title="winners fropki9" width="480" height="330" class="alignnone size-full wp-image-181" /></a></p>
<p></a></p>
<p><a href="http://groups.fropki.com/"><a href="http://mithunsingh.files.wordpress.com/2010/03/winners_fropki15.jpg"><img src="http://mithunsingh.files.wordpress.com/2010/03/winners_fropki15.jpg?w=480&#038;h=341" alt="" title="winners fropki15" width="480" height="341" class="alignnone size-full wp-image-187" /></a></p>
<p></a></p>
<p><a href="http://groups.fropki.com/"><a href="http://mithunsingh.files.wordpress.com/2010/03/winners_fropki17.jpg"><img src="http://mithunsingh.files.wordpress.com/2010/03/winners_fropki17.jpg?w=480&#038;h=311" alt="" title="winners fropki17" width="480" height="311" class="alignnone size-full wp-image-189" /></a></p>
<p></a></p>
<p><a href="http://groups.fropki.com/"><a href="http://mithunsingh.files.wordpress.com/2010/03/winners_fropki14.jpg"><img src="http://mithunsingh.files.wordpress.com/2010/03/winners_fropki14.jpg?w=480&#038;h=346" alt="" title="winners fropki14" width="480" height="346" class="alignnone size-full wp-image-186" /></a></p>
<p></a></p>
<p><a href="http://groups.fropki.com/"><a href="http://mithunsingh.files.wordpress.com/2010/03/winners_fropki.jpg"><img src="http://mithunsingh.files.wordpress.com/2010/03/winners_fropki.jpg?w=480&#038;h=305" alt="" title="winners fropki" width="480" height="305" class="alignnone size-full wp-image-172" /></a></p>
<p></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mithunsingh.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mithunsingh.wordpress.com/171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mithunsingh.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mithunsingh.wordpress.com/171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mithunsingh.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mithunsingh.wordpress.com/171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mithunsingh.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mithunsingh.wordpress.com/171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mithunsingh.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mithunsingh.wordpress.com/171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mithunsingh.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mithunsingh.wordpress.com/171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mithunsingh.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mithunsingh.wordpress.com/171/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mithunsingh.wordpress.com&amp;blog=7939202&amp;post=171&amp;subd=mithunsingh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mithunsingh.wordpress.com/2010/03/17/quitters-or-winners/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7d32ceee163a17c375b9437f0ccb0858?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mithunsingh</media:title>
		</media:content>

		<media:content url="http://mithunsingh.files.wordpress.com/2010/03/winners_fropki2.jpg" medium="image">
			<media:title type="html">winners fropki2</media:title>
		</media:content>

		<media:content url="http://mithunsingh.files.wordpress.com/2010/03/winners_fropki3.jpg" medium="image">
			<media:title type="html">winners fropki3</media:title>
		</media:content>

		<media:content url="http://mithunsingh.files.wordpress.com/2010/03/winners_fropki16.jpg" medium="image">
			<media:title type="html">winners fropki16</media:title>
		</media:content>

		<media:content url="http://mithunsingh.files.wordpress.com/2010/03/winners_fropki4.jpg" medium="image">
			<media:title type="html">winners fropki4</media:title>
		</media:content>

		<media:content url="http://mithunsingh.files.wordpress.com/2010/03/winners_fropki7.jpg" medium="image">
			<media:title type="html">winners fropki7</media:title>
		</media:content>

		<media:content url="http://mithunsingh.files.wordpress.com/2010/03/winners_fropki11.jpg" medium="image">
			<media:title type="html">winners fropki11</media:title>
		</media:content>

		<media:content url="http://mithunsingh.files.wordpress.com/2010/03/winners_fropki13.jpg" medium="image">
			<media:title type="html">winners fropki13</media:title>
		</media:content>

		<media:content url="http://mithunsingh.files.wordpress.com/2010/03/winners_fropki12.jpg" medium="image">
			<media:title type="html">winners fropki12</media:title>
		</media:content>

		<media:content url="http://mithunsingh.files.wordpress.com/2010/03/winners_fropki5.jpg" medium="image">
			<media:title type="html">winners fropki5</media:title>
		</media:content>

		<media:content url="http://mithunsingh.files.wordpress.com/2010/03/winners_fropki6.jpg" medium="image">
			<media:title type="html">winners fropki6</media:title>
		</media:content>

		<media:content url="http://mithunsingh.files.wordpress.com/2010/03/winners_fropki8.jpg" medium="image">
			<media:title type="html">winners fropki8</media:title>
		</media:content>

		<media:content url="http://mithunsingh.files.wordpress.com/2010/03/winners_fropki1.jpg" medium="image">
			<media:title type="html">winners fropki1</media:title>
		</media:content>

		<media:content url="http://mithunsingh.files.wordpress.com/2010/03/winners_fropki10.jpg" medium="image">
			<media:title type="html">winners fropki10</media:title>
		</media:content>

		<media:content url="http://mithunsingh.files.wordpress.com/2010/03/winners_fropki18.jpg" medium="image">
			<media:title type="html">winners fropki18</media:title>
		</media:content>

		<media:content url="http://mithunsingh.files.wordpress.com/2010/03/winners_fropki9.jpg" medium="image">
			<media:title type="html">winners fropki9</media:title>
		</media:content>

		<media:content url="http://mithunsingh.files.wordpress.com/2010/03/winners_fropki15.jpg" medium="image">
			<media:title type="html">winners fropki15</media:title>
		</media:content>

		<media:content url="http://mithunsingh.files.wordpress.com/2010/03/winners_fropki17.jpg" medium="image">
			<media:title type="html">winners fropki17</media:title>
		</media:content>

		<media:content url="http://mithunsingh.files.wordpress.com/2010/03/winners_fropki14.jpg" medium="image">
			<media:title type="html">winners fropki14</media:title>
		</media:content>

		<media:content url="http://mithunsingh.files.wordpress.com/2010/03/winners_fropki.jpg" medium="image">
			<media:title type="html">winners fropki</media:title>
		</media:content>
	</item>
	</channel>
</rss>
