<?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/"
	>

<channel>
	<title>YourSearchBuddy</title>
	<atom:link href="http://www.yoursearchbuddy.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.yoursearchbuddy.com</link>
	<description>your search ends here</description>
	<lastBuildDate>Sun, 16 Jun 2013 15:30:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>Get the IP address in ASP.NET</title>
		<link>http://www.yoursearchbuddy.com/ip-address-aspnet</link>
		<comments>http://www.yoursearchbuddy.com/ip-address-aspnet#comments</comments>
		<pubDate>Tue, 14 May 2013 20:45:52 +0000</pubDate>
		<dc:creator>lokeshlal</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[TipnTricks]]></category>
		<category><![CDATA[address]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[ip]]></category>

		<guid isPermaLink="false">http://www.yoursearchbuddy.com/?p=9339</guid>
		<description><![CDATA[To get the ip address of client machine in asp.net use the following code snippet. private string GetUserIP() { string ip = Request.ServerVariables["HTTP_X_CLUSTER_CLIENT_IP"]; string trueIP = string.Empty; if (!string.IsNullOrEmpty(ip)) {... <a class="meta-more" href="http://www.yoursearchbuddy.com/ip-address-aspnet">Read more <span class="meta-nav">&#187;</span></a>]]></description>
			<content:encoded><![CDATA[<p>To get the ip address of client machine in asp.net use the following code snippet.</p>
<pre>
private string GetUserIP()
{
    string ip = Request.ServerVariables["HTTP_X_CLUSTER_CLIENT_IP"];
    string trueIP = string.Empty;
    if (!string.IsNullOrEmpty(ip))
    {
        trueIP = ip;
    }
    else
    {
        ip = Request.ServerVariables["HTTP_X_FORWARDED_FOR"];
        if (!string.IsNullOrEmpty(ip))
        {
            string[] ipRange = ip.Split(',');
            trueIP = ipRange[0];
        }
        else
        {
            trueIP = Request.ServerVariables["REMOTE_ADDR"];
        }
    }

    return trueIP;
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.yoursearchbuddy.com/ip-address-aspnet/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stuff to carry when travelling with an Infant</title>
		<link>http://www.yoursearchbuddy.com/stuff-carry-travelling-infant</link>
		<comments>http://www.yoursearchbuddy.com/stuff-carry-travelling-infant#comments</comments>
		<pubDate>Thu, 25 Apr 2013 00:29:37 +0000</pubDate>
		<dc:creator>artisajjan</dc:creator>
				<category><![CDATA[Information]]></category>
		<category><![CDATA[baby]]></category>
		<category><![CDATA[carry stuff]]></category>
		<category><![CDATA[travelling]]></category>

		<guid isPermaLink="false">http://www.yoursearchbuddy.com/?p=9037</guid>
		<description><![CDATA[An extra set or two of clothes for baby, and an extra shirt or sweater for you. The one time you forget this, you will inevitably face the biggest, poopiest... <a class="meta-more" href="http://www.yoursearchbuddy.com/stuff-carry-travelling-infant">Read more <span class="meta-nav">&#187;</span></a>]]></description>
			<content:encoded><![CDATA[<ul>
<li> An extra set or two of clothes for baby, and an extra shirt or sweater for you.  The one time you forget this, you will inevitably face the biggest, poopiest disaster of all time.  I speak from experience on this.</li>
</ul>
<ul>
<li> <strong>Diapers, wipes, diaper rash ointment</strong>.  Pack more diapers and wipes than you think you will need—anticipate delays.</li>
</ul>
<ul>
<li> <strong>Disposable changing pads </strong>– Huggies makes a disposable changing pad that can be used once and thrown away.   Airplane restrooms are tiny, so you will need to take the pad out and make it fit the space.</li>
</ul>
<ul>
<li> Plastic bags to dispose of the mess.  Newborn and small diapers can be put in air-sickness bags if you forget your plastic bag stash. It could be helpful to pack each diaper in its own plastic bag so you are certain you don’t run out.  The best bags for this purpose are the long, skinny ones that the newspaper comes in, which can be twisted and doubled over to guard against smell.</li>
</ul>
<ul>
<li> <strong>Whatever your baby eats</strong>.</li>
</ul>
<ul>
<li> <strong>Favorite toys, blankets, teddy bear, or pacifier or other soothing tool</strong>.</li>
</ul>
<ul>
<li> A new toy to distract the child.</li>
</ul>
<ul>
<li> If your baby is teething, bring some teething rings and biscuits for her to chew on.</li>
</ul>
<ul>
<li> Medications needed for you and/or your child, prescriptions, and your pediatrician&#8217;s phone number.</li>
</ul>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.yoursearchbuddy.com/stuff-carry-travelling-infant/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Facebook style mention</title>
		<link>http://www.yoursearchbuddy.com/facebook-style-mention</link>
		<comments>http://www.yoursearchbuddy.com/facebook-style-mention#comments</comments>
		<pubDate>Tue, 23 Apr 2013 16:11:49 +0000</pubDate>
		<dc:creator>lokeshlal</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[TipnTricks]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[mention]]></category>
		<category><![CDATA[Tag]]></category>

		<guid isPermaLink="false">http://www.yoursearchbuddy.com/?p=8929</guid>
		<description><![CDATA[I was working on Facebook style mention and found this link http://stackoverflow.com/questions/8438371/style-text-inside-textarea-like-facebook-does this gives me initial setup, for css and html. later I added script to make it work. Added... <a class="meta-more" href="http://www.yoursearchbuddy.com/facebook-style-mention">Read more <span class="meta-nav">&#187;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I was working on Facebook style mention and found this link</p>
<p><a href="http://stackoverflow.com/questions/8438371/style-text-inside-textarea-like-facebook-does">http://stackoverflow.com/questions/8438371/style-text-inside-textarea-like-facebook-does<br />
</a><br />
this gives me initial setup, for css and html. later I added script to make it work.</p>
<p>Added attributes to maintain the <strong>mentions</strong> in the main textarea element and script to sync the underlying div and upper textarea.</p>
<p>basically underlying div is use to style the textarea text.</p>
<p>here is the html file.</p>
<pre>
&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
&lt;title&gt;Demo&lt;/title&gt;
&lt;script type="text/javascript" src="http://sandbox.tozoy.com/javascripts/jquery.min.js"&gt;&lt;/script&gt;
&lt;style&gt;
* { font-family: sans-serif; font-size: 10pt; font-weight: normal; }
.txtwrapper     { position: relative; width: 200px; height: 35px; }
.txtwrapper &gt; * { position: absolute; top: 0; left: 0; height: 100%; width: 100%; margin: 0; padding: 0; }
.highlighter { background-color: #fff; color: #fff; width: 100%; height: 100%;}
.highlight   { background:#d8dfea;background:-webkit-gradient(linear, center top, center bottom, from(#dce6f8), to(#bdcff1));background:-webkit-linear-gradient(#dce6f8, #bdcff1);-webkit-border-radius:2px;-webkit-box-shadow:0 0 0 1px #a3bcea;font-weight:normal; color: transparent;}
.txtwrapper &gt; textarea     { background-color: transparent; border: 0;}
&lt;/style&gt;
&lt;/head&gt;
&lt;body onload="init();"&gt;
&lt;div class="txtwrapper"&gt;
	&lt;div class="highlighter"&gt;
		&lt;span class="highlight"&gt;lokesh lal&lt;/span&gt; and &lt;span class="highlight"&gt;vishal gupta&lt;/span&gt; are working on tozoy
	&lt;/div&gt;
	&lt;textarea onkeyup="hh(this);" tagsname="|Lokesh Lal|Vishal Gupta" tagsdata="|1234567|3456768"&gt;lokesh lal and vishal gupta are working on tozoy&lt;/textarea&gt;
&lt;/div&gt;
&lt;script&gt;

function hh(obj)
{
	var highlighter = $(obj).parent().find('.highlighter').eq(0);
	var s = $(obj).val();
	var tagsnamearr = $(obj).attr('tagsname').split('|');
	var tagsdataarr = $(obj).attr('tagsdata').split('|');
	for(var i = 0 ; i &lt; tagsnamearr.length; i++) {
		if(tagsnamearr[i] == '')
			continue;
		var idx = s.search(new RegExp(tagsnamearr[i], "i"));
		var len = tagsnamearr[i].length;
		if(s.search(new RegExp(tagsnamearr[i], "i")) &gt; -1) {
			s = s.replace(new RegExp(tagsnamearr[i], "i"),'&lt;span class="highlight" tagname="' + tagsnamearr[i] + '" tagdata="' + tagsdataarr[i] + '"&gt;' + s.substr(idx,len) + '&lt;/span&gt;');
		}
	}

	while(s.indexOf("  ") &gt; -1)
		s = s.replace("  "," ");

	highlighter.html(s);

	var s1 = $(obj).val();
	while(s1.indexOf("  ") &gt; -1)
		s1 = s1.replace("  "," ");
	$(obj).val(s1);

	//update the tagsname and tagsdata

	var tagsdata = $(obj).attr('tagsdata').split('|');
	var tagsname = $(obj).attr('tagsname').split('|');
	var newtagsdata = ''
	var newtagsname = ''
	for(var i = 0; i &lt;  tagsdata.length; i++) {
		var isExists = false;

		if(tagsnamearr[i] == '')
			continue;
		for(var j = 0 ; j &lt; $(obj).parent().find('.highlight').length; j++)
		{
			if($(obj).parent().find('.highlight').eq(j).html().toLowerCase() == tagsname[i].toLowerCase()) {
				isExists = true;
			}
		}
		if(isExists == true) {
			newtagsdata = newtagsdata + '|' + tagsdata[i];
			newtagsname = newtagsname + '|' + tagsname[i];
		}
	}

	$(obj).attr('tagsdata', newtagsdata)
	$(obj).attr('tagsname', newtagsname)

}
var observe;
if (window.attachEvent) {
    observe = function (element, event, handler) {
        element.attachEvent('on'+event, handler);
    };
}
else {
    observe = function (element, event, handler) {
        element.addEventListener(event, handler, false);
    };
}
function init () {
    function resize () {

		$('textarea').each(function(i){
			$('textarea')[i].style.height = 'auto';
			$('textarea')[i].style.height = $('textarea')[i].scrollHeight+'px';

			$('textarea').eq(i).parent()[0].style.height = 'auto';
			$('textarea').eq(i).parent()[0].style.height = ($('textarea')[i].scrollHeight + 9)+'px';

			//setupBlocks();

		});
    }
    /* 0-timeout to get the already changed text */
    function delayedResize () {
        window.setTimeout(resize, 0);
    }
	$('textarea').each(function(i){
		observe($('textarea')[i], 'change',  resize);
		observe($('textarea')[i], 'cut',     delayedResize);
		observe($('textarea')[i], 'paste',   delayedResize);
		observe($('textarea')[i], 'drop',    delayedResize);
		observe($('textarea')[i], 'keydown', delayedResize);
	});
    //text.focus();
    //text.select();
    resize();
}
&lt;/script&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.yoursearchbuddy.com/facebook-style-mention/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Teens are tiring of the social network</title>
		<link>http://www.yoursearchbuddy.com/teens-tiring-social-network</link>
		<comments>http://www.yoursearchbuddy.com/teens-tiring-social-network#comments</comments>
		<pubDate>Tue, 23 Apr 2013 00:11:46 +0000</pubDate>
		<dc:creator>artisajjan</dc:creator>
				<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[Information]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[instagram]]></category>
		<category><![CDATA[teen]]></category>
		<category><![CDATA[teenagers]]></category>

		<guid isPermaLink="false">http://www.yoursearchbuddy.com/?p=8927</guid>
		<description><![CDATA[Teenagers are a good measure of what&#8217;s &#8220;cool.&#8221; Observing which apps they use and how they interact with technology can help the rest of us spot budding trends. Facebook has... <a class="meta-more" href="http://www.yoursearchbuddy.com/teens-tiring-social-network">Read more <span class="meta-nav">&#187;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Teenagers are a good measure of what&#8217;s &#8220;cool.&#8221; Observing which apps they use and how they interact with technology can help the rest of us spot budding trends. Facebook has made the startling admission that teenagers are becoming bored with the social networking giant.</p>
<p>Facing competition from younger, more agile and &#8216;cooler&#8217; apps such as Snapchat and Instagram, Facebook fears its long-term business could be harmed.</p>
<p>Why isn&#8217;t Facebook &#8220;cool&#8221; anymore? The Verge&#8217;s Ellis Hamburger asked a few social media experts for their thoughts.</p>
<p>&#8220;I think it has less to do with kids consciously looking for &#8216;the next big thing&#8217; than Facebook just no longer being a space that serves them,&#8221; one said. In other words, it used to be &#8220;cool&#8221; to brag about yourself and show pictures to friends on Facebook. Now people are looking for more intimate places to share items with a handful of people, like Snapchat. There&#8217;s a sense of privacy there, and it meets a need Facebook has grown too big to serve.</p>
<p>Of course, this doesn&#8217;t mean teens are deleting their Facebook profiles. They&#8217;re just looking to use the service less, and they&#8217;re open to communicating on other platforms.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.yoursearchbuddy.com/teens-tiring-social-network/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Samsung&#8217;s New Phone Starting Next Week</title>
		<link>http://www.yoursearchbuddy.com/samsungs-phone-starting-week</link>
		<comments>http://www.yoursearchbuddy.com/samsungs-phone-starting-week#comments</comments>
		<pubDate>Mon, 22 Apr 2013 23:47:23 +0000</pubDate>
		<dc:creator>artisajjan</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Information]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[galaxy]]></category>
		<category><![CDATA[S4 galaxy]]></category>
		<category><![CDATA[samsung]]></category>
		<category><![CDATA[Samsung S4]]></category>

		<guid isPermaLink="false">http://www.yoursearchbuddy.com/?p=8925</guid>
		<description><![CDATA[Samsung&#8217;s Galaxy S4 has become the Android phone to wait for. The phone has a slew of new features, including an improved 13-megapixel camera, new software features and it responds... <a class="meta-more" href="http://www.yoursearchbuddy.com/samsungs-phone-starting-week">Read more <span class="meta-nav">&#187;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Samsung&#8217;s Galaxy S4 has become the Android phone to wait for. The phone has a slew of new features, including an improved 13-megapixel camera, new software features and it responds to waves and gestures. It also has a 5-inch Super AMOLED 1080p screen. </p>
<p>The release of Samsung&#8217;s next super smartphone, the Galaxy S4, is just days away</p>
<p><strong>Verizon Wireless</strong><br />
When: May, with exact date to come.<br />
Price: To be announced</p>
<p><strong>AT&#038;T</strong><br />
When: AT&#038;T promised an official ship date of April 30, but some devices may ship earlier. You can pre-order now.<br />
Price: $199 for the 16GB version (with a two-year contract)</p>
<p><strong>T-Mobile</strong><br />
When: April 24<br />
Price: $149.99 down; subsequent monthly service payments should be $20<br />
<strong><br />
U.S. Cellular</strong><br />
When: Second week of May. You can pre-order now.<br />
Price: $199 for the 16GB version (with a two-year contract)</p>
<p><strong>Sprint</strong><br />
When: April 27.<br />
Price: $249 for the 16GB version (with a two-year contract); new customers can get the smartphone for $149</p>
]]></content:encoded>
			<wfw:commentRss>http://www.yoursearchbuddy.com/samsungs-phone-starting-week/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Samsung Galaxy S4 vs Apple iPhone 5</title>
		<link>http://www.yoursearchbuddy.com/samsung-galaxy-s4-apple-iphone-5</link>
		<comments>http://www.yoursearchbuddy.com/samsung-galaxy-s4-apple-iphone-5#comments</comments>
		<pubDate>Tue, 19 Mar 2013 00:03:18 +0000</pubDate>
		<dc:creator>artisajjan</dc:creator>
				<category><![CDATA[Information]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[Mobile phone]]></category>
		<category><![CDATA[samsung]]></category>

		<guid isPermaLink="false">http://www.yoursearchbuddy.com/?p=8685</guid>
		<description><![CDATA[Like Apple, Samsung is a hardware company that innovates mainly through software The Samsung Galaxy S4 is expected to have a full-HD 1920×1080 display (up from 1280×720 on the S3)... <a class="meta-more" href="http://www.yoursearchbuddy.com/samsung-galaxy-s4-apple-iphone-5">Read more <span class="meta-nav">&#187;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Like Apple, Samsung is a hardware company that innovates mainly through software</p>
<p>The Samsung Galaxy S4 is expected to have a full-HD 1920×1080 display (up from 1280×720 on the S3) — and the display might even make the jump from 4.8 inches to an edge-to-edge 5 inches.</p>
<p>The 5-inch full HD Super AMOLED; 1,920×1,080 screen, at 441 pixels per inch, is both bigger and higher resolution than the iPhone 5.</p>
<p>The resolution of the 7.9mm Galaxy S4 is higher than the iPhone 5.</p>
<p>The Gorilla Glass 3 – the first device to sport the new technology – is ostensibly stronger than what iPhone 5 has</p>
<p>Inside, the Samsung Galaxy S4 is a near 2 GHz quad-core CPU. The dual-core iPhone 5 has 1 GHz of power.</p>
<p>Samsung stuffed a 13 megapixel camera into the Samsung Galaxy S4, while the iPhone 5 tops out at 8MP.</p>
<p>Samsung is also starting to use NFC is interesting ways: letting people pair the phones by tapping and then turning the ad-hoc connection between multiple phones into a surround sound system. That’s quite cool, though it also seems pretty impractical.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.yoursearchbuddy.com/samsung-galaxy-s4-apple-iphone-5/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Do people actually know when to use LOL!</title>
		<link>http://www.yoursearchbuddy.com/people-lol</link>
		<comments>http://www.yoursearchbuddy.com/people-lol#comments</comments>
		<pubDate>Fri, 22 Feb 2013 15:44:34 +0000</pubDate>
		<dc:creator>lokeshlal</dc:creator>
				<category><![CDATA[Comedy]]></category>
		<category><![CDATA[LOL]]></category>

		<guid isPermaLink="false">http://www.yoursearchbuddy.com/?p=8467</guid>
		<description><![CDATA[People add LOL unnecessary at the end of every sentence they write..be it chat or facebook..or any other social platform. It is very annoying seeing lol at the end of... <a class="meta-more" href="http://www.yoursearchbuddy.com/people-lol">Read more <span class="meta-nav">&#187;</span></a>]]></description>
			<content:encoded><![CDATA[<p>People add LOL unnecessary at the end of every sentence they write..be it chat or facebook..or any other social platform.</p>
<p>It is very annoying seeing lol at the end of every line..even when what they are saying is not funny..adding lol is like a mandatory clause to write any thing for most of the population.</p>
<p>what does lol means??</p>
<p>LOL = <strong>laughing/laugh out loud</strong></p>
<p>If you write something funny then it makes a little sense to add this idiotic phrase at the end of statement..otherwise it is as stupid as I have seen people confused with obama/osama names (yes there are people who some times refer obama as osama)</p>
<p>People write&#8230;<br />
<em>really??? LOL</em><br />
<em>I am going to blah blah place LOL</em><br />
<em>My boss fired me LOL</em><br />
and the list is endless&#8230;cause people add lol to almost everything..</p>
<p>what does that lol means here?</p>
<p>get back to your senses!!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.yoursearchbuddy.com/people-lol/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sonia and Manmohan</title>
		<link>http://www.yoursearchbuddy.com/sonia-manmohan</link>
		<comments>http://www.yoursearchbuddy.com/sonia-manmohan#comments</comments>
		<pubDate>Tue, 05 Feb 2013 23:57:15 +0000</pubDate>
		<dc:creator>silly</dc:creator>
				<category><![CDATA[Comedy]]></category>
		<category><![CDATA[ManMohan]]></category>
		<category><![CDATA[sonia]]></category>

		<guid isPermaLink="false">http://www.yoursearchbuddy.com/?p=8131</guid>
		<description><![CDATA[&#160;&#160;&#160;Sonia-ji and her prime minister-ji On a visit to London, Sonia Gandhi asks the Queen, &#8220;Your Majesty, now that I am also a queen of the Gandhi-Nehru dynasty in India,... <a class="meta-more" href="http://www.yoursearchbuddy.com/sonia-manmohan">Read more <span class="meta-nav">&#187;</span></a>]]></description>
			<content:encoded><![CDATA[<blockquote><p>&nbsp;&nbsp;&nbsp;<strong>Sonia-ji and her prime minister-ji</strong></p>
<p>On a visit to London, Sonia Gandhi asks the Queen, &#8220;Your Majesty, now that I am also a queen of the Gandhi-Nehru dynasty in India, are there any tips you can give to me to stay in power?&#8221;</p>
<p>&#8220;Well,&#8221; says the Queen, &#8220;the most important thing is to surround yourself with intelligent people.&#8221;</p>
<p>Sonia frowns, then asks, &#8220;But how do I know the people around me are intelligent?&#8221;</p>
<p>The Queen takes a sip of tea.&#8221;Oh, that&#8217;s easy. You just ask them to answer an intelligent riddle.&#8221;</p>
<p>The Queen pushes a button on her intercom and calls, &#8220;David, would you come in here, please?&#8221;</p>
<p>David Cameron walks into the room. &#8220;Yes, Your Majesty?&#8221;</p>
<p>The Queen smiles and says,&#8221;Answer me this please, David. Your mother and father have a child. It is not your brother and it is not your sister. Who is it?&#8221;</p>
<p>Without pausing for a moment,David Cameron answers, &#8220;That would be me, ma’am.&#8221;</p>
<p>&#8220;Very good! Thank you, David. That will be all!&#8221; says the Queen.</p>
<p>Then she turns to Sonia with a smile and says, “See?”</p>
<p>Sonia comes back to India, calls Manmohan Singh and asks, &#8220;Manmohanji, answer this for me. Your mother and your father have a child. It&#8217;s not your brother and it&#8217;s not your sister. Who is it?&#8221;</p>
<p>&#8220;I&#8217;m not sure,&#8221; says Manmohan. &#8220;Let me get back to you on this one.&#8221;</p>
<p>Manmohan goes to his advisors and asks every one, but none could give him an answer.</p>
<p>Finally, he runs into Narendra Modi and asks, “Narendrabhai, can you answer this for me? Your mother and father have a child and it&#8217;s not your brother or your sister. Who is it?&#8221;</p>
<p>Narendra Modi smiles. &#8220;That&#8217;s easy, it&#8217;s me!&#8221;</p>
<p>Manmohan says, &#8220;Thanks!&#8221;</p>
<p>He phones Sonia. &#8220;Madam, I didsome thinking and I have the answer to that riddle. It&#8217;s Narendra Modi!&#8221;</p>
<p>Sonia slaps her head and shouts, &#8220;No! No! You idiot! It&#8217;s David Cameron!&#8221;</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.yoursearchbuddy.com/sonia-manmohan/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Men and Horse Puzzle</title>
		<link>http://www.yoursearchbuddy.com/men-horse-puzzle</link>
		<comments>http://www.yoursearchbuddy.com/men-horse-puzzle#comments</comments>
		<pubDate>Thu, 31 Jan 2013 07:47:14 +0000</pubDate>
		<dc:creator>lokeshlal</dc:creator>
				<category><![CDATA[puzzle]]></category>
		<category><![CDATA[Horse]]></category>
		<category><![CDATA[Men]]></category>
		<category><![CDATA[Puzzle]]></category>

		<guid isPermaLink="false">http://www.yoursearchbuddy.com/?p=8117</guid>
		<description><![CDATA[Another simple 8th standard mathematics question In a stable there are men and horses. In all, there are 22 heads and 72 feet. how many men and horses are in... <a class="meta-more" href="http://www.yoursearchbuddy.com/men-horse-puzzle">Read more <span class="meta-nav">&#187;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Another simple 8th standard mathematics question</p>
<p>In a stable there are men and horses. </p>
<p>In all, there are 22 heads and 72 feet. </p>
<p>how many men and horses are in stable.</p>
<p>Men : 1 head and 2 feet.</p>
<p>Horse = 1 head and 4 feet.</p>
<p>so head count would be </p>
<p>Number of Men + Number of Horses = 22</p>
<p>=&gt; Number of men = 22 &#8211; Number of horses  (i)</p>
<p>feet count would be</p>
<p>2 * (Number of men) + 4 * (Number of horses) = 72</p>
<p>(divide the whole equation by 2)<br />
=&gt; Number of Men + 2 * (Number of horses) = 36</p>
<p>(replace Number of Men from above equation (i))<br />
=&gt; 22 &#8211; Number of horses + 2 * (Number of horses) = 36</p>
<p>=&gt; Number of Horses = 14<br />
and Number of Men = 8</p>
]]></content:encoded>
			<wfw:commentRss>http://www.yoursearchbuddy.com/men-horse-puzzle/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Chocolate and Wrapper Puzzle</title>
		<link>http://www.yoursearchbuddy.com/chocolate-wrapper-puzzle</link>
		<comments>http://www.yoursearchbuddy.com/chocolate-wrapper-puzzle#comments</comments>
		<pubDate>Thu, 31 Jan 2013 07:38:56 +0000</pubDate>
		<dc:creator>lokeshlal</dc:creator>
				<category><![CDATA[puzzle]]></category>
		<category><![CDATA[chocolate]]></category>
		<category><![CDATA[Puzzle]]></category>
		<category><![CDATA[wrapper]]></category>

		<guid isPermaLink="false">http://www.yoursearchbuddy.com/?p=8115</guid>
		<description><![CDATA[A very simple but interesting puzzle. A shopkeeper sells 1 chocolate at Rs 1 each. You can exchange 3 wrappers for 1 chocolate. If you have Rs 15, how many... <a class="meta-more" href="http://www.yoursearchbuddy.com/chocolate-wrapper-puzzle">Read more <span class="meta-nav">&#187;</span></a>]]></description>
			<content:encoded><![CDATA[<p>A very simple but interesting puzzle.</p>
<p>A shopkeeper sells 1 chocolate at Rs 1 each.</p>
<p>You can exchange 3 wrappers for 1 chocolate.</p>
<p>If you have Rs 15, how many chocolates can you totally get?</p>
<p>Rs 15 = 15 chocolates + 15 wrappers</p>
<p>15 wrappers = 15/3 = 5 chocolates + 5 wrappers</p>
<p>use 3 wrappers out of five and get a chocolate</p>
<p>3 wrappers = 1 chocolate + 1 wrapper + (2 wrapper left from 5)</p>
<p>now again we have 3 wrappers, so means 1 chocolate</p>
<p>so finally we have 22 chocolates + 1 wrappers.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.yoursearchbuddy.com/chocolate-wrapper-puzzle/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
