<?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 &#187; TipnTricks</title>
	<atom:link href="http://www.yoursearchbuddy.com/category/how-to/tipntricks/feed" rel="self" type="application/rss+xml" />
	<link>http://www.yoursearchbuddy.com</link>
	<description>your search ends here</description>
	<lastBuildDate>Tue, 31 Jan 2012 19:47:00 +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>window.postMessage, Cross Domain Iframe communication</title>
		<link>http://www.yoursearchbuddy.com/window-postmessage-cross-domain-iframe-communication</link>
		<comments>http://www.yoursearchbuddy.com/window-postmessage-cross-domain-iframe-communication#comments</comments>
		<pubDate>Tue, 24 Jan 2012 16:14:32 +0000</pubDate>
		<dc:creator>lokeshlal</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[TipnTricks]]></category>
		<category><![CDATA[communication]]></category>
		<category><![CDATA[Cross]]></category>
		<category><![CDATA[domain]]></category>
		<category><![CDATA[Iframe]]></category>
		<category><![CDATA[window.postMessage]]></category>

		<guid isPermaLink="false">http://www.yoursearchbuddy.com/?p=6943</guid>
		<description><![CDATA[window.postMessage and receiveMessage are part of HTML5 and can be used for communication between two Iframes, belong to two different domains. To send a message to parent window from Iframe... <a class="meta-more" href="http://www.yoursearchbuddy.com/window-postmessage-cross-domain-iframe-communication">Read more <span class="meta-nav">&#187;</span></a>]]></description>
			<content:encoded><![CDATA[<p>window.postMessage and receiveMessage are part of HTML5 and can be used for communication between two Iframes, belong to two different domains.</p>
<p>To send a message to parent window from Iframe</p>
<pre>

top.postMessage('resizeMe','[URL OF PARENT WINDOW]');
</pre>
<p>Use top instead of parent.</p>
<p>to recieve messages at parent window. Register event and start listening.</p>
<pre>
window.addEventListener("message", receiveMessage, false);  

function receiveMessage(event)
{
    if (event.origin !== "http://www.IframeDomain.com")
        return;
    if(event.data == 'resizeMe')
    {
        //resize iframe
    }
}
</pre>
<p>Parent window (or recieving window) should always check  for origin and sender should always specify the target origin and not *</p>
<p>Similarly, parent window can also post messages to iframe window and iframe can have an event to receive messages</p>
]]></content:encoded>
			<wfw:commentRss>http://www.yoursearchbuddy.com/window-postmessage-cross-domain-iframe-communication/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WCF net.tcp listener adapter stops responding Issue</title>
		<link>http://www.yoursearchbuddy.com/wcf-nettcp-listener-adapter-stops-responding-issue</link>
		<comments>http://www.yoursearchbuddy.com/wcf-nettcp-listener-adapter-stops-responding-issue#comments</comments>
		<pubDate>Fri, 20 Jan 2012 05:29:12 +0000</pubDate>
		<dc:creator>lokeshlal</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[TipnTricks]]></category>
		<category><![CDATA[Issue]]></category>
		<category><![CDATA[net.tcp listener adapter stops responding]]></category>
		<category><![CDATA[WCF]]></category>

		<guid isPermaLink="false">http://www.yoursearchbuddy.com/?p=6932</guid>
		<description><![CDATA[Referring to this post net.tcp listener adapter stops responding. To solve this, I added enable port sharing on server by adding portSharingEnabled attribute &#60;bindings&#62; &#60;netTcpBinding&#62; &#60;binding name="tcpBinding" portSharingEnabled="true" ... Increase... <a class="meta-more" href="http://www.yoursearchbuddy.com/wcf-nettcp-listener-adapter-stops-responding-issue">Read more <span class="meta-nav">&#187;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Referring to this post <a href="http://forums.iis.net/t/1167668.aspx">net.tcp listener adapter stops responding</a>.</p>
<p>To solve this, I added <strong>enable port sharing on server by adding portSharingEnabled attribute</strong></p>
<pre>
&lt;bindings&gt;
      &lt;netTcpBinding&gt;
        &lt;binding name="tcpBinding" portSharingEnabled="true" ...
</pre>
<p>Increase the <strong>concurrent instances and sessions in service throttling </strong>section on WCF server</p>
<pre>
&lt;serviceThrottling
                      maxConcurrentCalls="100"
                      maxConcurrentInstances="20000"
                      maxConcurrentSessions="20000"/&gt;
</pre>
<p>In the application pool of WCF service changed the <strong>Maximum Worker Process</strong> value to <strong>1</strong>.</p>
<p>That is all, and now no more WCF issues <img src='http://www.yoursearchbuddy.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' title="WCF net.tcp listener adapter stops responding Issue" /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.yoursearchbuddy.com/wcf-nettcp-listener-adapter-stops-responding-issue/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Connect Your Mobile or iPad Camera Into Webcam</title>
		<link>http://www.yoursearchbuddy.com/connect-mobile-ipad-camera-webcam</link>
		<comments>http://www.yoursearchbuddy.com/connect-mobile-ipad-camera-webcam#comments</comments>
		<pubDate>Wed, 11 Jan 2012 19:46:42 +0000</pubDate>
		<dc:creator>techno</dc:creator>
				<category><![CDATA[How to?]]></category>
		<category><![CDATA[TipnTricks]]></category>
		<category><![CDATA[ipad camera]]></category>
		<category><![CDATA[ipad camera webcam]]></category>

		<guid isPermaLink="false">http://www.yoursearchbuddy.com/?p=6921</guid>
		<description><![CDATA[Mobiola is a Trail Software that convert or Turn your iPhone, BlackBerry, Windows Mobile or Symbian (Nokia only) smartphone into a high-quality wireless webcam. Mobiola WebCamera is a great way... <a class="meta-more" href="http://www.yoursearchbuddy.com/connect-mobile-ipad-camera-webcam">Read more <span class="meta-nav">&#187;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Mobiola is a Trail Software that convert or Turn your iPhone, BlackBerry, Windows Mobile or Symbian (Nokia only) smartphone into a high-quality wireless webcam.</p>
<p>Mobiola WebCamera is a great way to share what cannot be recorded with a built-in laptop camera, as it is wireless and can be easily moved around. Imagine talking to your mother on Skype and showing her her grandson taking his first steps. Or sitting in a WiFi hotspot near the Eiffel Tower, and sharing this moment with your friend while giving him a virtual tour of this famous attraction. With Mobiola WebCamera, anything can be shared wirelessly in a simple and fun way.</p>
<p>WebCamera works with Skype, Google+, Yahoo!, Windows Live Messenger, AIM, ICQ and many other messaging applications, just as you can with a standard USB webcam. It also works with video production software such as Boinx TV, CamTwist, and Camtasia.</p>
<p>Mobiola WebCamera captures video in three different resolutions: 192×144, 480×360, and 1280×720. You may capture either individual frames or the whole video stream.</p>
<p><a target="_blank" href="http://www.warelex.com/mobiola-web-camera">Download the Trail Version</a> and Test it to find whether it will works in your mobile or not , You can also use Time Stopper software to use this Mobiola software  for free.</p>
<p><a target="_blank" href="http://timestopper.yolasite.com/" title="Time Stopper">Time Stopper</a> – Using this software you can stop the time for exe and start the exe specified date. When you stop the time of any exe using this Time Stopper it works via this Time Stopper. Real time &#038; date runs normally on your system.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.yoursearchbuddy.com/connect-mobile-ipad-camera-webcam/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Display recent Twitter tweets using PHP</title>
		<link>http://www.yoursearchbuddy.com/display-twitter-tweets-php</link>
		<comments>http://www.yoursearchbuddy.com/display-twitter-tweets-php#comments</comments>
		<pubDate>Wed, 11 Jan 2012 19:40:46 +0000</pubDate>
		<dc:creator>techno</dc:creator>
				<category><![CDATA[How to?]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[TipnTricks]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[recent tweets using php]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.yoursearchbuddy.com/?p=6918</guid>
		<description><![CDATA[Here is a code to display recent twitter tweets using PHP: $doc = new DOMDocument(); # load the RSS document, edit this line to include your username or user id... <a class="meta-more" href="http://www.yoursearchbuddy.com/display-twitter-tweets-php">Read more <span class="meta-nav">&#187;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>Here is a code to display recent twitter tweets using PHP</strong>:</p>
<pre>
$doc = new DOMDocument();

<strong># load the RSS document, edit this line to include your username or user id</strong>

if($doc-&gt;load('http://twitter.com/statuses/user_timeline/username.rss')) {

<strong>        # specify the number of tweets to display, max is 20</strong>
        $max_tweets = 20;

        $i = 1;
        foreach ($doc-&gt;getElementsByTagName('item') as $node) {
               <strong> # fetch the title from the RSS feed.
                # Note: 'pubDate' and 'link' are also useful (I use them in the sidebar of this blog)</strong>
                $tweet = $node-&gt;getElementsByTagName('title')-&gt;item(0)-&gt;nodeValue;

<strong>                # the title of each tweet starts with "username: " which I want to remove</strong>
                $tweet = substr($tweet, stripos($tweet, ':') + 1);

<strong>                # OPTIONAL: turn URLs into links</strong>
                $tweet = preg_replace('@(https?://([-\w\.]+)+(:\d+)?(/([\w/_\.]*(\?\S+)?)?)?)@', '&lt;a href="$1"&gt;$1&lt;/a&gt;', $tweet);

<strong>                # OPTIONAL: turn @replies into links</strong>
                $tweet = preg_replace("/@([0-9a-zA-Z]+)/", "&lt;a href=\"http://twitter.com/$1\"&gt;@$1&lt;/a&gt;", $tweet);

                echo "&lt;li&gt;".$tweet."&lt;/li&gt;";

                if ($i++ &gt;= $max_tweets)
                        break;
        }
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.yoursearchbuddy.com/display-twitter-tweets-php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Program to find Anagrams</title>
		<link>http://www.yoursearchbuddy.com/program-to-find-anagram</link>
		<comments>http://www.yoursearchbuddy.com/program-to-find-anagram#comments</comments>
		<pubDate>Tue, 20 Dec 2011 22:32:05 +0000</pubDate>
		<dc:creator>techno</dc:creator>
				<category><![CDATA[How to?]]></category>
		<category><![CDATA[Interview]]></category>
		<category><![CDATA[puzzle]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[TipnTricks]]></category>
		<category><![CDATA[anagram]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[c++ anagram finder]]></category>

		<guid isPermaLink="false">http://www.yoursearchbuddy.com/?p=6886</guid>
		<description><![CDATA[An anagram of a word or phrase is the result of rearranging its letters to form another meaningful word or phrase. For example, an anagram of “anagram finder” is “garden... <a class="meta-more" href="http://www.yoursearchbuddy.com/program-to-find-anagram">Read more <span class="meta-nav">&#187;</span></a>]]></description>
			<content:encoded><![CDATA[<p>An anagram of a word or phrase is the result of rearranging its letters to form another meaningful word or phrase. For example, an anagram of “anagram finder” is “garden in a farm”</p>
<p>Here is a program that will find if a word is anagram of other or not.</p>
<pre>
public static boolean isAnagram(String str1, String str2) {
	char[] str1_chars = str1.toCharArray();
	char[] str2_chars = str2.toCharArray();
	HashMap<character , Integer> str1_map = new HashMap</character><character , Integer>();
	for (Character c : str1_chars) {
		if (!str1_map.containsKey(c)) {
			str1_map.put(c, 1);
		} else {
			str1_map.put(c, str1_map.get(c) + 1);
		}
	}
	HashMap</character><character , Integer> str2_map = new HashMap</character><character , Integer>();
	for (Character c : str2_chars) {
		if (!str2_map.containsKey(c)) {
			str2_map.put(c, 1);
		} else {
			str2_map.put(c, str2_map.get(c) + 1);
		}
	}
	if (str1_map.size() != str2_map.size()) {
		return false;
	} else {
		for (Character c : str2_map.keySet()) {
			if (str1_map.containsKey(c) &#038;&#038; (str1_map.get(c) == str2_map.get(c))) {
				continue;
			} else {
				return false;
			}
		}
		return true;
	}
}
</character></pre>
]]></content:encoded>
			<wfw:commentRss>http://www.yoursearchbuddy.com/program-to-find-anagram/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remove Duplicates from a String</title>
		<link>http://www.yoursearchbuddy.com/remove-duplicates-from-string</link>
		<comments>http://www.yoursearchbuddy.com/remove-duplicates-from-string#comments</comments>
		<pubDate>Tue, 20 Dec 2011 10:38:23 +0000</pubDate>
		<dc:creator>silly</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[TipnTricks]]></category>
		<category><![CDATA[Remove Duplicates]]></category>

		<guid isPermaLink="false">http://www.yoursearchbuddy.com/?p=6880</guid>
		<description><![CDATA[Here is a small snippet to remove duplicate from a string: If input is aaabbbccccdddeee then output should be abcde or if input is abceebc then output should be abce:... <a class="meta-more" href="http://www.yoursearchbuddy.com/remove-duplicates-from-string">Read more <span class="meta-nav">&#187;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Here is a small snippet to remove duplicate from a string:</p>
<p>If input is aaabbbccccdddeee then output should be abcde or if input is abceebc then output should be abce:</p>
<pre>
string str = "aaabbbcccdddhaad";
List&lt;char&gt; chars = new List&lt;char&gt;();
foreach (char c in str.ToCharArray())
{
	if (chars.Contains(c))
	{ continue; }
	else
	{
		Console.Write(c);
		chars.Add(c);
	}
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.yoursearchbuddy.com/remove-duplicates-from-string/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Identify the points of diagonal of a rectangle</title>
		<link>http://www.yoursearchbuddy.com/identify-points-diagonal-rectangle</link>
		<comments>http://www.yoursearchbuddy.com/identify-points-diagonal-rectangle#comments</comments>
		<pubDate>Thu, 17 Nov 2011 07:17:18 +0000</pubDate>
		<dc:creator>silly</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[TipnTricks]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[diagonal]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[points. line]]></category>

		<guid isPermaLink="false">http://www.yoursearchbuddy.com/?p=6741</guid>
		<description><![CDATA[This JavaScript will find the points of diagonal of a rectangle and draw a line on it. // display line between graph function drawLine( Ax, Ay, Bx, By) { Ax... <a class="meta-more" href="http://www.yoursearchbuddy.com/identify-points-diagonal-rectangle">Read more <span class="meta-nav">&#187;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This JavaScript will find the points of diagonal of a rectangle and draw a line on it.</p>
<pre>
// display line between graph
function drawLine( Ax, Ay, Bx, By)
{
	Ax += 2;
	Ay -= 2;
	Bx += 2;
	By -= 2;

	var docbody = $('body');
	var origAx = Ax;
	var origAy = Ay;
	var origBx = Bx;
	var origBy = By;
	var
		xMin        = Math.min( Ax, Bx ),
		yMin        = Math.min( Ay, By ),
		xMax        = Math.max( Ax, Bx ),
		yMax        = Math.max( Ay, By ),
		boxWidth    = Math.max( xMax-xMin, 1 ),
		boxHeight   = Math.max( yMax-yMin, 1 );
	console.log(Ax, Ay, Bx, By, boxWidth, boxHeight);

	var continueLopping = true;
	var i = 1;
	if(boxWidth &gt; boxHeight)
	{
		if(Ay &lt; By)
		{
			while(Ay &lt; By)
			{
				var lineChartImgElement = $('&lt;img src="http://insilicogenomics.in/IMAGES/black%20dot.gif" style="width:1px;height:1px;position:absolute;left:' + Ax + 'px;top:' + Ay + 'px;"/&gt;')

				lineChartImgElement.appendTo(docbody);
				Ax++;
				Ay = origAy + ((boxHeight/boxWidth) * i);
				i++;
			}
		}
		else if (Ay &gt; By)
		{
			while(Ay &gt; By)
			{
				var lineChartImgElement = $('&lt;img src="http://insilicogenomics.in/IMAGES/black%20dot.gif" style="width:1px;height:1px;position:absolute;left:' + Ax + 'px;top:' + Ay + 'px;"/&gt;')

				lineChartImgElement.appendTo(docbody);
				Ax++;
				Ay = origAy - ((boxHeight/boxWidth) * i);
				i++;
			}
		}
		else if(Ay == By)
		{
			while(Ax &lt; Bx)
			{
				var lineChartImgElement = $('&lt;img src="http://insilicogenomics.in/IMAGES/black%20dot.gif" style="width:1px;height:1px;position:absolute;left:' + Ax + 'px;top:' + Ay + 'px;"/&gt;')

				lineChartImgElement.appendTo(docbody);
				Ax++;
				Ay = origAy;
				i++;
			}
		}

	}
	else
	{
		if(Ay &lt; By)
		{
			while(Ay &lt; By)
			{
				var lineChartImgElement = $('&lt;img src="http://insilicogenomics.in/IMAGES/black%20dot.gif" style="width:1px;height:1px;position:absolute;left:' + Ax + 'px;top:' + Ay + 'px;"/&gt;')

				lineChartImgElement.appendTo(docbody);
				Ay++;
				Ax = origAx + ((boxWidth/boxHeight) * i);
				i++;
			}
		}
		else if(Ay &gt; By)
		{
			while(Ay &gt; By)
			{
				var lineChartImgElement = $('&lt;img src="http://insilicogenomics.in/IMAGES/black%20dot.gif" style="width:1px;height:1px;position:absolute;left:' + Ax + 'px;top:' + Ay + 'px;"/&gt;')

				lineChartImgElement.appendTo(docbody);
				Ay--;
				Ax = origAx + ((boxWidth/boxHeight) * i);

				i++;
			}
		}
		else if(Ay == By)
		{
			while(Ax &lt; Bx)
			{
				var lineChartImgElement = $('&lt;img src="http://insilicogenomics.in/IMAGES/black%20dot.gif" style="width:1px;height:1px;position:absolute;left:' + Ax + 'px;top:' + Ay + 'px;"/&gt;')

				lineChartImgElement.appendTo(docbody);
				Ax++;
				Ay = origAy;
				i++;
			}
		}
	}
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.yoursearchbuddy.com/identify-points-diagonal-rectangle/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Create Custom Colored QR Codes With Brand Logo</title>
		<link>http://www.yoursearchbuddy.com/create-custom-colored-qr-codes-brand-logo</link>
		<comments>http://www.yoursearchbuddy.com/create-custom-colored-qr-codes-brand-logo#comments</comments>
		<pubDate>Tue, 25 Oct 2011 22:43:59 +0000</pubDate>
		<dc:creator>vishal</dc:creator>
				<category><![CDATA[How to?]]></category>
		<category><![CDATA[TipnTricks]]></category>
		<category><![CDATA[create QR Code]]></category>
		<category><![CDATA[Custom QR Codes]]></category>
		<category><![CDATA[QR Codes]]></category>

		<guid isPermaLink="false">http://www.yoursearchbuddy.com/?p=6640</guid>
		<description><![CDATA[Creating and sharing QR codes with call to action is now the popular means of brand promotion. QR codes can be added to any printed media which enables the user... <a class="meta-more" href="http://www.yoursearchbuddy.com/create-custom-colored-qr-codes-brand-logo">Read more <span class="meta-nav">&#187;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Creating and sharing QR codes with call to action is now the popular means of brand promotion. QR codes can be added to any printed media which enables the user to learn more about your product or watch a video all by scanning codes using a camera phone. It is often debated that black and white QR codes as such doesn’t provide any information to the on looker. And there is this new service called SnapTag looking forward to fill this gap. SnapTags are basically a circular tag with a brand logo in the center that throws some light about the promoter or service.</p>
<p>With&nbsp;<a target="_blank" href="http://en.unitag.fr/qrcode" rel="nofollow" title="Unitag">Unitag custom QR code generator</a> you can now quickly create colored QR codes for your brand or company. Also you can add colored logo without altering the QR code structure there by branding it. With Unitag generator you can easily create QR codes for text, websites, SMS, Email, Geolocation and WiFi network. The design section of the tool lets you add shadow and from color section the QR code background color, gradient etc can be tweaked. While tweaking the background and code color make sure to maintain a strong contrast level or else the QR code readers might not be able to decode it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.yoursearchbuddy.com/create-custom-colored-qr-codes-brand-logo/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Boost WiFi signal with a Soda Can</title>
		<link>http://www.yoursearchbuddy.com/boost-wifi-signal-soda-can</link>
		<comments>http://www.yoursearchbuddy.com/boost-wifi-signal-soda-can#comments</comments>
		<pubDate>Thu, 13 Oct 2011 18:35:46 +0000</pubDate>
		<dc:creator>techno</dc:creator>
				<category><![CDATA[How to?]]></category>
		<category><![CDATA[TipnTricks]]></category>
		<category><![CDATA[boost WiFi Signal]]></category>
		<category><![CDATA[boost WiFi Signal Soda Can]]></category>

		<guid isPermaLink="false">http://www.yoursearchbuddy.com/?p=6532</guid>
		<description><![CDATA[Nothing can be more easier and cheaper to boost your WiFi Signals, than just empty soda cans. You start by removing the tab, making some markings, cutting the can in... <a class="meta-more" href="http://www.yoursearchbuddy.com/boost-wifi-signal-soda-can">Read more <span class="meta-nav">&#187;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Nothing can be more easier and cheaper to boost your WiFi Signals, than just empty soda cans. </p>
<p>You start by removing the tab, making some markings, cutting the can in half from top to bottom, punching a hole for your WiFi router/AP’s antenna, and then putting the antenna through the hole. There is a recommendation of using a marker to make the cans uniformly black, but I don’t think that matters.</p>
<div align="center">
<img src="http://farm7.static.flickr.com/6232/6241487220_1b5e6f9517.jpg" alt="bosst WiFi signal with a Soda Can" title="Boost WiFi signal with a Soda Can" />
</div>
<p><strong>Here is a video</strong>:</p>
<div align="center">
<iframe width="450" height="259" src="http://www.youtube.com/embed/ZrHvtPM8wHI" frameborder="0" allowfullscreen></iframe>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.yoursearchbuddy.com/boost-wifi-signal-soda-can/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Direct Download Links for iOS 5 Firmware Update</title>
		<link>http://www.yoursearchbuddy.com/direct-download-links-ios-5-firmware-update</link>
		<comments>http://www.yoursearchbuddy.com/direct-download-links-ios-5-firmware-update#comments</comments>
		<pubDate>Thu, 13 Oct 2011 18:26:03 +0000</pubDate>
		<dc:creator>vishal</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[TipnTricks]]></category>
		<category><![CDATA[iOS 5]]></category>
		<category><![CDATA[iOS 5 download links]]></category>
		<category><![CDATA[iOS 5 Firmware Update]]></category>

		<guid isPermaLink="false">http://www.yoursearchbuddy.com/?p=6529</guid>
		<description><![CDATA[You can grab the IPSW files from the direct download links mentioned below and update your iDevice to iOS 5 by hitting Shift+Restore on Windows or Option+restore on Mac and... <a class="meta-more" href="http://www.yoursearchbuddy.com/direct-download-links-ios-5-firmware-update">Read more <span class="meta-nav">&#187;</span></a>]]></description>
			<content:encoded><![CDATA[<p>You can grab the IPSW files from the direct download links mentioned below and update your iDevice to iOS 5 by hitting Shift+Restore on Windows or Option+restore on Mac and then selecting the IPSW file you just downloaded.</p>
<p>The iOS 5 update is available for iPhone 3GS, 4 (GSM, CDMA), iPad 1, 2 (Wi-Fi, GSM, CDMA), iPod Touch 3G, 4G devices.</p>
<div align="center">
<img src="http://farm7.static.flickr.com/6060/6241465556_1d48b8ac12.jpg" alt="ios 5 download links" title="Direct Download Links for iOS 5 Firmware Update" />
</div>
<p><strong>Direct Download Links for iOS 5</strong>:</p>
<ul>
<li><a target="_blank" href="http://appldnld.apple.com/iPhone4/041-8356.20111012.SQRDT/iPhone2,1_5.0_9A334_Restore.ipsw" rel="nofollow">Download iOS 5 for iPhone 3GS</a></li>
<li><a target="_blank" href="http://appldnld.apple.com/iPhone4/041-8358.20111012.FFc34/iPhone3,1_5.0_9A334_Restore.ipsw" rel="nofollow">Download iOS 5 for iPhone 4 (GSM)</a></li>
<li><a target="_blank" href="http://appldnld.apple.com/iPhone4/041-9743.20111012.vjhfp/iPhone3,3_5.0_9A334_Restore.ipsw" rel="nofollow">Download iOS 5 for iPhone 4 (CDMA)</a></li>
<li><a target="_blank" href="http://appldnld.apple.com/iPhone4/041-8357.20111012.DTOrM/iPad1,1_5.0_9A334_Restore.ipsw" rel="nofollow">Download iOS 5 for iPad 1</a></li>
<li><a target="_blank" href="http://appldnld.apple.com/iPhone4/041-9618.20111012.Zxb22/iPad2,1_5.0_9A334_Restore.ipsw" rel="nofollow">Download iOS 5 for iPad 2 (WiFi)</a></li>
<li><a target="_blank" href="http://appldnld.apple.com/iPhone4/041-9619.20111012.y34Nx/iPad2,2_5.0_9A334_Restore.ipsw" rel="nofollow">Download iOS 5 for iPad 2 (GSM)</a></li>
<li><a target="_blank" href="http://appldnld.apple.com/iPhone4/041-9620.20111012.pnB4r/iPad2,3_5.0_9A334_Restore.ipsw" rel="nofollow">Download iOS 5 for iPad 2 (CDMA)</a></li>
<li><a target="_blank" href="http://appldnld.apple.com/iPhone4/061-8360.20111012.New3w/iPod3,1_5.0_9A334_Restore.ipsw" rel="nofollow">Download iOS 5 for iPod Touch 3G</a></li>
<li><a target="_blank" href="http://appldnld.apple.com/iPhone4/061-9622.20111012.Evry3/iPod4,1_5.0_9A334_Restore.ipsw" rel="nofollow">Download iOS 5 for iPod Touch 4G</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.yoursearchbuddy.com/direct-download-links-ios-5-firmware-update/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

