<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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:series="http://organizeseries.com/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Byteindia</title>
	
	<link>http://www.byteindia.com</link>
	<description>Technology Tips, Wordpress Tips and Optimization, Thesis Theme Tutorials</description>
	<lastBuildDate>Thu, 02 May 2013 14:43:09 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/byteindia" /><feedburner:info uri="byteindia" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>byteindia</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Responsive Web Design and Google Adsense</title>
		<link>http://feedproxy.google.com/~r/byteindia/~3/BmkdwAGlvQQ/</link>
		<comments>http://www.byteindia.com/internet/responsive-web-design-and-google-adsense/865/#comments</comments>
		<pubDate>Thu, 02 May 2013 14:43:09 +0000</pubDate>
		<dc:creator>Vijay Sharma</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Ads]]></category>
		<category><![CDATA[google adsense]]></category>
		<category><![CDATA[responsive web design]]></category>

		<guid isPermaLink="false">http://www.byteindia.com/?p=865</guid>
		<description><![CDATA[Responsive Web Design is a simple CSS techniques which displays the same page based on the width of the client screen. Learn how you can use a small JavaScript code to make google adsense responsive as well.<p>Read Original post here : <a href="http://www.byteindia.com/internet/responsive-web-design-and-google-adsense/865/">Responsive Web Design and Google Adsense</a><p><span class="intro"><em>Like us on <strong><a href="http://www.facebook.com/byteindia" target="_blank">Facebook</a></strong> for the latest about the technology, tips and tricks as well as our top social media and technology updates.</em> </span></p>
<p>You can also follow <a href="http://www.byteindia.com">Byteindia</a> at <a href="http://twitter.com/byteindia">Twitter</a> or Subscribe to <a href="http://feeds.feedburner.com/byteindia">RSS</a></p></p>
]]></description>
				<content:encoded><![CDATA[<p></p><p>These days lot of people access website on smartphones and tablets, which has made the life of the web designers and developers more difficult, thanks to Apple and Google for giving smartphone and tablets in almost every hand. A recent survey mentions that 35% of American adults have smartphones and 87% of them access internet on their phones. That is the reason most of the big websites are working on responsive web designs.</p>
<p>Google has also officially recommended that website owners use the responsive design approach instead of maintaining separate mobile and desktop website as responsive design <strong>“keeps your desktop and mobile content on a single URL.”</strong></p>
<h3>Google Adsense And Responsive Layouts</h3>
<p>Its likely that you use Adsense to monetize the content on your website but the problem is that ads delivered by adsense are not responsive, which means that if a user visits a responsive website on a smartphone all the Adsense ads will be delivered of the same size. Lets take an example to make things more clear, if a website is using 728&#215;90 banner and you are viewing the website on a mobile phone, the webpage might extend beyond the screen. That being said, how can we deliver ads of different size based on the viewer screen. Google Adsense is not responsive by design, but can be made to work with your responsive design with a simple Javascript code.</p>
<pre class="brush: javascript; gutter: true">&lt;!-- You can add multiple Adsense Ad units --&gt;
&lt;!-- Just change the ad on Line #4 and Line #7 --&gt;
 
&lt;div id=&quot;google-ads-1&quot;&gt;
 &lt;script type=&quot;text/javascript&quot;&gt;
 
	adUnit   = document.getElementById(&quot;google-ads-1&quot;);
	adWidth  = adUnit.offsetWidth;
 
	/* Replace this with your AdSense Publisher ID */
	google_ad_client = &quot;ca-pub-1234567890&quot;;
 
	if ( adWidth &gt;= 768 ) {
	  /* Leaderboard 728x90 */
	  google_ad_slot	= &quot;AAA&quot;;
	  google_ad_width	= 768;
	  google_ad_height 	= 90;
	} else if ( adWidth &gt;= 468 ) {
	  /* Banner (468 x 60) */
	  google_ad_slot	= &quot;BBB&quot;;
	  google_ad_width 	= 468;
	  google_ad_height 	= 60;
	} else if ( adWidth &gt;= 336 ) {
	  /* Large Rectangle (336 x 280) */
	  google_ad_slot 	= &quot;CCC&quot;;
	  google_ad_width 	= 336;
	  google_ad_height 	= 280;
	} else if ( adWidth &gt;= 300 ) {
	  /* Medium Rectangle (300 x 250) */
	  google_ad_slot 	= &quot;DDD&quot;;
	  google_ad_width 	= 300;
	  google_ad_height 	= 250;
	} else if ( adWidth &gt;= 250 ) {
	  /* Square (250 x 250) */
	  google_ad_slot	= &quot;EEE&quot;;
	  google_ad_width 	= 250;
	  google_ad_height 	= 250;
	} else if ( adWidth &gt;= 200 ) {
	  /* Ad Link Unit (200 x 90) */
	  google_ad_slot 	= &quot;FFF&quot;;
	  google_ad_width 	= 200;
	  google_ad_height 	= 90;
	} else {
	  /* Do not display the Google Ad */
	  google_ad_slot		= &quot;0&quot;;
	  adUnit.style.display	= &quot;none&quot;;
	}
 &lt;/script&gt;
 
 &lt;script type=&quot;text/javascript&quot;    
   src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
 &lt;/script&gt;
&lt;/div&gt;</pre>
<p>Thanks to <a href="http://www.labnol.org">Amit</a> from Digital Insipiration for this awesome code.</p>
<p>Lets make our hands dirty and try to understand this code. We are basically using the javascript offsetwidth property to get the width of the div element which encloses the google ad and based on the width we are delivering different ad banners and if the screen width is too small we are not displaying the ad at all.</p>
<p>To get started, create multiple ad units (say 768×90, 468×60 and 300×250) inside your AdSense dashbaord and replace the relevant google_ad_client (ca-pub-1234) and google_ad_slot (AAA, BBB, etc.) identifiers in the code with your own values.</p>
<p>Let me know how this goes. Until next time..!!!</p>
<p>Read Original post here : <a href="http://www.byteindia.com/internet/responsive-web-design-and-google-adsense/865/">Responsive Web Design and Google Adsense</a><p><span class="intro"><em>Like us on <strong><a href="http://www.facebook.com/byteindia" target="_blank">Facebook</a></strong> for the latest about the technology, tips and tricks as well as our top social media and technology updates.</em> </span></p>
<p>You can also follow <a href="http://www.byteindia.com">Byteindia</a> at <a href="http://twitter.com/byteindia">Twitter</a> or Subscribe to <a href="http://feeds.feedburner.com/byteindia">RSS</a></p></p>
<img src="http://feeds.feedburner.com/~r/byteindia/~4/BmkdwAGlvQQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.byteindia.com/internet/responsive-web-design-and-google-adsense/865/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.byteindia.com/internet/responsive-web-design-and-google-adsense/865/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=responsive-web-design-and-google-adsense</feedburner:origLink></item>
		<item>
		<title>Ten Worst Security Threats in the World of Digital Satellite Television</title>
		<link>http://feedproxy.google.com/~r/byteindia/~3/rlqJxgWytsA/</link>
		<comments>http://www.byteindia.com/technology/ten-worst-security-threats-in-the-world-of-digital-satellite-television/876/#comments</comments>
		<pubDate>Tue, 30 Apr 2013 09:23:53 +0000</pubDate>
		<dc:creator>rosette</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[sattelite tv]]></category>
		<category><![CDATA[ten threats satellite tv]]></category>

		<guid isPermaLink="false">http://www.byteindia.com/?p=876</guid>
		<description><![CDATA[The modern technological era has its bright side and its dark side. We know all about the bright side and how it has improved our lives. The advancements being made today are unprecedented and it seems as if this is only the beginning. With time we will reach newer heights and a global expansion will [...]<p>Read Original post here : <a href="http://www.byteindia.com/technology/ten-worst-security-threats-in-the-world-of-digital-satellite-television/876/">Ten Worst Security Threats in the World of Digital Satellite Television</a><p><span class="intro"><em>Like us on <strong><a href="http://www.facebook.com/byteindia" target="_blank">Facebook</a></strong> for the latest about the technology, tips and tricks as well as our top social media and technology updates.</em> </span></p>
<p>You can also follow <a href="http://www.byteindia.com">Byteindia</a> at <a href="http://twitter.com/byteindia">Twitter</a> or Subscribe to <a href="http://feeds.feedburner.com/byteindia">RSS</a></p></p>
]]></description>
				<content:encoded><![CDATA[<p></p><p>The modern technological era has its bright side and its dark side. We know all about the bright side and how it has improved our lives. The advancements being made today are unprecedented and it seems as if this is only the beginning. With time we will reach newer heights and a global expansion will take place, but for now let’s also consider the dark side. These are the threats we face on an everyday basis. These aren’t health risks but are possibly even more dangerous.<br />
In this time of digital satellite television we are faced with unseen challenges. These are risks to our safety and security. Both intellectual and personal security is being targeted by unknown forces. All measures taken to stop these attacks have limited impact. We are totally exposed to these hackers who want to steal our personal data. These people have actually become intruders in our lives and their attacks malign us day by day. Let’s take a detailed look at the worst security threats in the world of digital satellite television.</p>
<p><strong>Hacking</strong></p>
<p>Well we all have heard of hacking across dish network. This is nothing new and it seems that it will continue to torment us. Hackers are now coming up with more advanced methods to steal information. All protective shields seem useless. Anything connected with your digital satellite TV will be accessible to the hacker. He can steal vital information and misuse it. A lot of people don’t realize the risk of hacking and are then exposed to it. In this digital age we need to take counteractive measures to stop this growing menace.</p>
<p><strong>Software Attacks</strong></p>
<p>These digital satellite TV’s are very advanced. They are programmed with software that keep them running. Another security threat is software attack. These attacks are very frequent and can be quite damaging to your television. They can corrupt the system leaving you unable to access files and folders stored on the hard drive.</p>
<p><strong>Viruses and Malware</strong></p>
<p>Viruses and malware can be even more lethal. It not only corrupts your data but destroys it as well. These viruses can infect the system and leave it incapable of doing its tasks. The malware content can enter the system through other software and then take away your key data.</p>
<p><strong>Illegal Sharing</strong></p>
<p>These hackers have developed systems so that they don’t have to pay for content. They hack the system and then use it illegally to watch content on their system at your expense. You will not know what hit you because the impact will be sudden and devastating. These non-paying users enjoy free service after they break the encryption codes in your system.</p>
<p><strong>Hijacking of TV</strong></p>
<p>The security threats to digital satellite TV keep on rising. Hackers can hijack the system and control your TV. They can alter programming patterns and make your life miserable on a dish network. Once you lose control you are helpless and you can’t even tell the source of the attack.</p>
<p><strong>Distribution of Content</strong></p>
<p>Once your data is exposed the hackers can do anything they want with it. Your personal photos, videos and files are now their property. They can put them up on the internet and use them to blackmail you and damage your reputation.</p>
<p><strong>Loss of Money</strong></p>
<p>High class content that is classed as premium and is only available to specific people will now become public property. These hackers will not pay a penny for misusing these services. They will enjoy at your expense. All you can do is sit and watch as your bills rise without you even knowing.</p>
<p><strong>Passwords Leaked</strong></p>
<p>The hackers can break the security chain and even gain access to your passwords. Once they are in the system they can access personal information. Your social security code and any other files, let’s say bank account numbers, will be affected by this security breach.</p>
<p><strong>Unhealthy Content</strong></p>
<p>By changing the content type on your satellite TV system, these hackers can expose your children to unhealthy content. This may include extreme violence or porn.</p>
<p><strong>Damage your System</strong></p>
<p>Lastly the viruses and malware at times can be so deadly that it can completely damage the system. Your TV set will be rendered useless after a while and you will need replacements.<br />
<strong></strong></p>
<p><strong>About Author</strong></p>
<p>Rosette is a technology expert with years of experience under her belt. She has written numerous articles and blogs over the years with regards to dish network security. She believes <a href="http://www.broadbandexpert.com/">Broadband Expert</a> has become a viable alternative to any other cable service providers. She advises to compare the services of both cable and satellite TV efficiently at Broadband Expert.</p>
<p>&nbsp;</p>
<p>Read Original post here : <a href="http://www.byteindia.com/technology/ten-worst-security-threats-in-the-world-of-digital-satellite-television/876/">Ten Worst Security Threats in the World of Digital Satellite Television</a><p><span class="intro"><em>Like us on <strong><a href="http://www.facebook.com/byteindia" target="_blank">Facebook</a></strong> for the latest about the technology, tips and tricks as well as our top social media and technology updates.</em> </span></p>
<p>You can also follow <a href="http://www.byteindia.com">Byteindia</a> at <a href="http://twitter.com/byteindia">Twitter</a> or Subscribe to <a href="http://feeds.feedburner.com/byteindia">RSS</a></p></p>
<img src="http://feeds.feedburner.com/~r/byteindia/~4/rlqJxgWytsA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.byteindia.com/technology/ten-worst-security-threats-in-the-world-of-digital-satellite-television/876/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.byteindia.com/technology/ten-worst-security-threats-in-the-world-of-digital-satellite-television/876/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=ten-worst-security-threats-in-the-world-of-digital-satellite-television</feedburner:origLink></item>
		<item>
		<title>Import Contacts from iPhone to Android</title>
		<link>http://feedproxy.google.com/~r/byteindia/~3/KGUJ8Mxitmg/</link>
		<comments>http://www.byteindia.com/technology/import-contacts-from-iphone-to-android/873/#comments</comments>
		<pubDate>Tue, 30 Apr 2013 04:16:46 +0000</pubDate>
		<dc:creator>Vijay Sharma</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[iOS android migration]]></category>

		<guid isPermaLink="false">http://www.byteindia.com/?p=873</guid>
		<description><![CDATA[After 4 years of loyalty with Apple I finally decided to move to Android and bought my new shiny Samsung Galaxy Note II. I was impressed with the device as soon as I got it in my hands. After a few minutes I realized that I have a few hundred contacts in my iPhone which [...]<p>Read Original post here : <a href="http://www.byteindia.com/technology/import-contacts-from-iphone-to-android/873/">Import Contacts from iPhone to Android</a><p><span class="intro"><em>Like us on <strong><a href="http://www.facebook.com/byteindia" target="_blank">Facebook</a></strong> for the latest about the technology, tips and tricks as well as our top social media and technology updates.</em> </span></p>
<p>You can also follow <a href="http://www.byteindia.com">Byteindia</a> at <a href="http://twitter.com/byteindia">Twitter</a> or Subscribe to <a href="http://feeds.feedburner.com/byteindia">RSS</a></p></p>
]]></description>
				<content:encoded><![CDATA[<p></p><p>After 4 years of loyalty with Apple I finally decided to move to Android and bought my new shiny <a href="http://www.amazon.com/s/?url=search-alias%3Daps&#038;field-keywords=Samsung+Galaxy+Note+II&#038;tag=deal0b2-20">Samsung Galaxy Note II</a>. I was impressed with the device as soon as I got it in my hands. After a few minutes I realized that I have a few hundred contacts in my iPhone which needs to be migrated to the new Android device. After some research I figured that there are indeed a couple of ways to do the same and I will list down 3 ways, which can be used  to achieve the same.</p>
<h3><span style="line-height: 13px;">1. Using iPhone and Google Sync </span></h3>
<p>Migrating contacts and calendars from iPhone to Android is really simple. It just needs active google/gmail account and iOS 3.0 or later.</p>
<ul>
<li data-textannotation-id="b63e6cefa83c039681619ec85c6de417">On your iPhone select Settings -&gt; Mail, Contacts, Calendars.</li>
<li data-textannotation-id="835c005a9dd14e4850fb208b4bc6e418">Set up a new &#8220;Microsoft Exchange&#8221; account (yes, even if you&#8217;re trying to import from Gmail).</li>
<li data-textannotation-id="213849dd111e25728913e70fd1d0ea41">Input your email address and login info. Enter a domain if you have one for an actual ME server; Gmail users can leave it blank.</li>
<li data-textannotation-id="68808c60fc1f5015d5f9c85093247d9e">Select &#8220;Server&#8221; then either input the ME server address or &#8220;m.google.com&#8221; for Gmail.</li>
<li data-textannotation-id="abdd10ff38718021074d0388fe10bbd2">On the final screen, select what you want to import—Mail, Contacts, Calendars, and/or Reminders—then hit Accept.</li>
</ul>
<h3>2. Using iTunes</h3>
<p>You can actually use iTunes also for moving your contacts from iPhone to Android.</p>
<ul>
<li data-textannotation-id="36eb8f7b8c99c9e84e74bfd5cac994f0">Mount your iPhone onto your computer as an external drive using a USB cable and open iTunes</li>
<li data-textannotation-id="82ccbeb0e8a949c4727d5a69b9f7318c">Select your iPhone from the list on the left pane and select the &#8220;Info&#8221; tab</li>
<li data-textannotation-id="0e657565935b97c2afe4da55ad765004">Select &#8220;Sync Contacts With&#8221; and then choose &#8220;Google Contacts&#8221; from the drop-down</li>
<li data-textannotation-id="a296dfe3411520ac6b73eef490700f25">Enter your Google log-in info when prompted then hit Apply to sync</li>
</ul>
<h3>3. Using iCloud</h3>
<p>You can also use iCloud if you have been backing up your iPhone you can actually easily sync up your contacts with gmail.</p>
<ul>
<li><span style="line-height: 13px;">Login to you iCloud account <a href="http://www.icloud.com" target="_blank">here</a>.</span></li>
<li>Click on Contacts and then select the contacts you want to export.</li>
<li>Click on the Settings icon on the bottom left and select export vCard. A file will be downloaded to your computer.</li>
<li>Login to your Gmail account and go to contacts and then select import and upload the file you just downloaded from iCloud.</li>
</ul>
<p>Whatever method you choose, in a few minutes the contacts will be synced to your new shiny android device and you are good to go. Let me know if you have any concerns and keep the comments coming.</p>
<p>Until next time&#8230;..!!</p>
<p>Read Original post here : <a href="http://www.byteindia.com/technology/import-contacts-from-iphone-to-android/873/">Import Contacts from iPhone to Android</a><p><span class="intro"><em>Like us on <strong><a href="http://www.facebook.com/byteindia" target="_blank">Facebook</a></strong> for the latest about the technology, tips and tricks as well as our top social media and technology updates.</em> </span></p>
<p>You can also follow <a href="http://www.byteindia.com">Byteindia</a> at <a href="http://twitter.com/byteindia">Twitter</a> or Subscribe to <a href="http://feeds.feedburner.com/byteindia">RSS</a></p></p>
<img src="http://feeds.feedburner.com/~r/byteindia/~4/KGUJ8Mxitmg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.byteindia.com/technology/import-contacts-from-iphone-to-android/873/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.byteindia.com/technology/import-contacts-from-iphone-to-android/873/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=import-contacts-from-iphone-to-android</feedburner:origLink></item>
		<item>
		<title>How Can EyeTV Mobile for iPhones and iPads Rule the Android Industry?</title>
		<link>http://feedproxy.google.com/~r/byteindia/~3/5a1ISlM1Mis/</link>
		<comments>http://www.byteindia.com/technology/how-can-eyetv-mobile-for-iphones-and-ipads-rule-the-android-industry/870/#comments</comments>
		<pubDate>Wed, 13 Mar 2013 12:42:12 +0000</pubDate>
		<dc:creator>rosette</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Ipads]]></category>
		<category><![CDATA[iphone]]></category>

		<guid isPermaLink="false">http://www.byteindia.com/?p=870</guid>
		<description><![CDATA[The last century has witnessed a remarkable revolution in terms of technology. The progress graph shapes steeply upwards and can even become an almost vertical line in a short span of time. This is because advancements are taking up at a very rapid pace and it is becoming all the more difficult to keep pace [...]<p>Read Original post here : <a href="http://www.byteindia.com/technology/how-can-eyetv-mobile-for-iphones-and-ipads-rule-the-android-industry/870/">How Can EyeTV Mobile for iPhones and iPads Rule the Android Industry?</a><p><span class="intro"><em>Like us on <strong><a href="http://www.facebook.com/byteindia" target="_blank">Facebook</a></strong> for the latest about the technology, tips and tricks as well as our top social media and technology updates.</em> </span></p>
<p>You can also follow <a href="http://www.byteindia.com">Byteindia</a> at <a href="http://twitter.com/byteindia">Twitter</a> or Subscribe to <a href="http://feeds.feedburner.com/byteindia">RSS</a></p></p>
]]></description>
				<content:encoded><![CDATA[<p></p><p>The last century has witnessed a remarkable revolution in terms of technology. The progress graph shapes steeply upwards and can even become an almost vertical line in a short span of time. This is because advancements are taking up at a very rapid pace and it is becoming all the more difficult to keep pace with them.</p>
<p>Apple launched its range of iDevices and set new standards in the industry. Many companies followed suit and started launching their own versions of iPhone, iPod, iPad and the rest. The most noticeable of these are perhaps the Android devices, which offer quite a high level of competition to Apple. All these devices have different features, but one thing that is shared by most of them is access to an online store that sells a wide range of applications ranging from just fun to completely professional. Every manufacturer has a store with a different name, and may offer slightly varying applications to its users. However, beneath the surface, they are all just the same with only minute differences.</p>
<p>Mobile apps comprise of many categories such as education, games, news, utilities and entertainment. The most popular of these are usually games, mp3 players, word processors and cloud storage apps. Among these pretty similar apps, there is one that recently received a lot of attention because it is aimed at being massively different from the crowd. Launched by Elagato, this app is called EyeTV. This incredibly smart software package promises to provide entertainment, knowledge and convenience to all its users no matter what their age is or where their interests lie. And all this is offered without any disruptions or complexities of any sort. In other words, EyeTV gives its users everything that they want in this world through a just a single device.<br />
<strong></strong></p>
<p><strong>Main Features</strong></p>
<p>An EyeTV mobile is very similar to a standard USB device. You can just plug it into your PC and let it play any channel that you want to see. Prior to this, you will have to subscribe to a company that offers dish and channel packages such as Directv. The device also lets you view a list of programs that will be telecasted in the current week on all channels.</p>
<p>The best part about EyeTV is that you require no internet connection while using this device. This is because EyeTV functions on the new Satellite TV technology, which is gradually acquiring popularity. According to a research, 22% of people have subscribed to satellite internet in America, and this figure is rapidly rising as the advantages are being realized. Using pretty much the same technology, Directv now offers more HD channels and movies than ever before.</p>
<p>EyeTV does not need an internet connection for operation, but it can let you get connected to it anytime that you want. Thus, you can surf your favorite sites and play your favorite games online. So you can get full entertainment in a flexible way.<br />
<strong></strong></p>
<p><strong>Effect on the Android Industry</strong></p>
<p>EyeTV is definitely going to revolutionize the world starting with the Android industry. As of now, android devices are generally being used for playing games or utilizing flash applications. However, EyeTV can now let you watch live television on your Android device as well. You love watching television, and many of you will probably own Android devices.</p>
<p>If you make your devices compatible with EyeTV as well, then you can get the best entertainment ever on just your mobile device. This is an enticing feature and will let you make the switch to EyeTV. Similarly, many other people will follow suit so that they can avail flexibility, convenience and fun through just that one single device that they always have upon them. And remember, this does not require internet connections so you do not have to be in the range of a Wi-Fi network.<br />
<strong></strong></p>
<p><strong>The Bottom Line</strong></p>
<p>The EyeTV has created a storm in just its initial phases of release. This will probably grow with time, making it a replacement for all other related technology.</p>
<p><strong>Author Bio</strong></p>
<p>Rosette is an avid TV watcher and uses services from Google TV as well as <a href="http://www.sattvdirect.net/">Sat TV Direct</a> to access the best content available across the world. She writes frequently about new developments in the TV world.</p>
<p>Read Original post here : <a href="http://www.byteindia.com/technology/how-can-eyetv-mobile-for-iphones-and-ipads-rule-the-android-industry/870/">How Can EyeTV Mobile for iPhones and iPads Rule the Android Industry?</a><p><span class="intro"><em>Like us on <strong><a href="http://www.facebook.com/byteindia" target="_blank">Facebook</a></strong> for the latest about the technology, tips and tricks as well as our top social media and technology updates.</em> </span></p>
<p>You can also follow <a href="http://www.byteindia.com">Byteindia</a> at <a href="http://twitter.com/byteindia">Twitter</a> or Subscribe to <a href="http://feeds.feedburner.com/byteindia">RSS</a></p></p>
<img src="http://feeds.feedburner.com/~r/byteindia/~4/5a1ISlM1Mis" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.byteindia.com/technology/how-can-eyetv-mobile-for-iphones-and-ipads-rule-the-android-industry/870/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.byteindia.com/technology/how-can-eyetv-mobile-for-iphones-and-ipads-rule-the-android-industry/870/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=how-can-eyetv-mobile-for-iphones-and-ipads-rule-the-android-industry</feedburner:origLink></item>
		<item>
		<title>How to Make Outlook As Default Mail Client in Mac OS X</title>
		<link>http://feedproxy.google.com/~r/byteindia/~3/yetVlakoZFU/</link>
		<comments>http://www.byteindia.com/technology/make-outlook-default-mail-client-mac-osx/857/#comments</comments>
		<pubDate>Wed, 13 Feb 2013 04:21:26 +0000</pubDate>
		<dc:creator>Vijay Sharma</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[default email clients]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[mactips]]></category>
		<category><![CDATA[outlook]]></category>

		<guid isPermaLink="false">http://www.byteindia.com/?p=857</guid>
		<description><![CDATA[If you install multiple e-mail programs on the same computer, you can ensure that Microsoft Outlook is used when you send e-mail messages from any non-mail program.<p>Read Original post here : <a href="http://www.byteindia.com/technology/make-outlook-default-mail-client-mac-osx/857/">How to Make Outlook As Default Mail Client in Mac OS X</a><p><span class="intro"><em>Like us on <strong><a href="http://www.facebook.com/byteindia" target="_blank">Facebook</a></strong> for the latest about the technology, tips and tricks as well as our top social media and technology updates.</em> </span></p>
<p>You can also follow <a href="http://www.byteindia.com">Byteindia</a> at <a href="http://twitter.com/byteindia">Twitter</a> or Subscribe to <a href="http://feeds.feedburner.com/byteindia">RSS</a></p></p>
]]></description>
				<content:encoded><![CDATA[<p></p><p>If you are have moved from Windows to Mac but still are using Microsoft Outlook as your Email Client. This tip might be helpful for you. You might be wondering why do you  need to setup Outlook as default email client, rather you can just open MS Outlook and send, receive your emails.</p>
<p>For example, one of the following scenarios can occur if Office Outlook is not your default e-mail program:</p>
<ul type="disc">
<li>If you try to send a spreadsheet to a mail recipient from Microsoft Office Excel that is on a computer that has Office Outlook and Outlook Express installed, Office Outlook might not be used to send the e-mail message.</li>
<li>If you click a link on a Web page that is intended to open a new message window, your computer might not open the Outlook new e-mail message window, or it might use a mail program other than Outlook.</li>
<li>When you send a file from a program by pointing to <b>Send To</b> on the <b>File</b> menu, and then clicking <b>Mail Recipient</b>, the e-mail program that is set as your default mail client is used to send the file.</li>
</ul>
<h3>How to Set Outlook as Default Mail Client</h3>
<ol>
<li>Launch Microsoft Outlook program and click on Preferences in Outlook Menu</li>
<li>On the next screen select General.<br />
<img class="alignnone size-large wp-image-859" alt="Outlook Preference Screen Mac" src="http://www.byteindia.com/wp-content/uploads/2013/02/Outlook-Preferences-Screen-600x338.png" width="600" height="338" /></li>
<li>On the General Screen, check <strong>&#8220;Make Outlook the default application for e-mail, contacts, and calendar&#8221;</strong><br />
<img class="alignnone size-large wp-image-860" alt="Outlook General Settings" src="http://www.byteindia.com/wp-content/uploads/2013/02/Outlook-General-Settings-600x212.png" width="600" height="212" /></li>
</ol>
<p><strong>Note: </strong>Setting Microsoft Outlook as default application will not setup or import email accounts from another email clients.</p>
<p>Let me know if you face any issues with setting this up. Until next time..!!!</p>
<p>Read Original post here : <a href="http://www.byteindia.com/technology/make-outlook-default-mail-client-mac-osx/857/">How to Make Outlook As Default Mail Client in Mac OS X</a><p><span class="intro"><em>Like us on <strong><a href="http://www.facebook.com/byteindia" target="_blank">Facebook</a></strong> for the latest about the technology, tips and tricks as well as our top social media and technology updates.</em> </span></p>
<p>You can also follow <a href="http://www.byteindia.com">Byteindia</a> at <a href="http://twitter.com/byteindia">Twitter</a> or Subscribe to <a href="http://feeds.feedburner.com/byteindia">RSS</a></p></p>
<img src="http://feeds.feedburner.com/~r/byteindia/~4/yetVlakoZFU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.byteindia.com/technology/make-outlook-default-mail-client-mac-osx/857/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.byteindia.com/technology/make-outlook-default-mail-client-mac-osx/857/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=make-outlook-default-mail-client-mac-osx</feedburner:origLink></item>
		<item>
		<title>Make Unlimited Free International Calls with Skype for a Month</title>
		<link>http://feedproxy.google.com/~r/byteindia/~3/_w1InQSkEIE/</link>
		<comments>http://www.byteindia.com/technology/free-international-calls-skype-one-month/843/#comments</comments>
		<pubDate>Tue, 18 Dec 2012 11:48:15 +0000</pubDate>
		<dc:creator>Vijay Sharma</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[deals]]></category>
		<category><![CDATA[free calling]]></category>
		<category><![CDATA[skype]]></category>
		<category><![CDATA[skype premium trial]]></category>

		<guid isPermaLink="false">http://www.byteindia.com/?p=843</guid>
		<description><![CDATA[Holiday Season is here and its that time of the year when every one is busy calling their families and friends. This year is special as you can call your far-away relatives and friends without worrying about the international call bills. Isn&#8217;t that a good news? Skype to Skype calls have been free from the [...]<p>Read Original post here : <a href="http://www.byteindia.com/technology/free-international-calls-skype-one-month/843/">Make Unlimited Free International Calls with Skype for a Month</a><p><span class="intro"><em>Like us on <strong><a href="http://www.facebook.com/byteindia" target="_blank">Facebook</a></strong> for the latest about the technology, tips and tricks as well as our top social media and technology updates.</em> </span></p>
<p>You can also follow <a href="http://www.byteindia.com">Byteindia</a> at <a href="http://twitter.com/byteindia">Twitter</a> or Subscribe to <a href="http://feeds.feedburner.com/byteindia">RSS</a></p></p>
]]></description>
				<content:encoded><![CDATA[<p></p><p>Holiday Season is here and its that time of the year when every one is busy calling their families and friends. This year is special as you can call your far-away relatives and friends without worrying about the international call bills. Isn&#8217;t that a good news?</p>
<p>Skype to Skype calls have been free from the inception of Skype but this holiday season Team @Skype is offering Skype premium w/ Unlimited World Free calling absolutely Free for one full month.</p>
<p><a href="http://bit.ly/VNgtls"><img class="alignnone size-full wp-image-846 frame" alt="Free International calls for one month" src="http://www.byteindia.com/wp-content/uploads/2012/12/skype-premium-header-3.jpg" width="600" height="325" /></a></p>
<h3>How to Get this Offer</h3>
<ol>
<li>Signup/Login with<a title="Signup/Login with Skype to get Free calling" href="http://bit.ly/VNgtls"> Skype</a> and enter your credit card or PayPal details (you won&#8217;t be charged) and complete the signup process.</li>
<li>Once the premium service is activated you can start making international calls and you can cancel the premium subscription any time within 30 days.</li>
</ol>
<p>One thing to note though is the world in Skype&#8217;s terminology is smaller than the real world and you can make <strong>calls to landlines</strong> in these countries: <em>Argentina, Australia, Austria, Belgium, Chile, Croatia, Czech Republic, Denmark, Estonia, Finland, France, Germany, Greece, Hungary, Ireland, Israel, Italy, Japan, South Korea, Luxembourg, Malaysia, Netherlands, New Zealand, Norway, Poland, Portugal, Russia (Moscow and St. Petersburg only), Slovakia, Spain, Sweden, Switzerland, Taiwan, United Kingdom and Venezuela.</em></p>
<p>You can make <strong>calls to landlines and mobiles</strong> in these countries: <em>Canada, Guam, Hong Kong S.A.R., Puerto Rico, Singapore, Thailand and United States.</em></p>
<p class="alert"><strong>Hint:</strong> You can cancel the premium service immediately after activation, however your premium services will continue to work for 30 days.</p>
<p>Read Original post here : <a href="http://www.byteindia.com/technology/free-international-calls-skype-one-month/843/">Make Unlimited Free International Calls with Skype for a Month</a><p><span class="intro"><em>Like us on <strong><a href="http://www.facebook.com/byteindia" target="_blank">Facebook</a></strong> for the latest about the technology, tips and tricks as well as our top social media and technology updates.</em> </span></p>
<p>You can also follow <a href="http://www.byteindia.com">Byteindia</a> at <a href="http://twitter.com/byteindia">Twitter</a> or Subscribe to <a href="http://feeds.feedburner.com/byteindia">RSS</a></p></p>
<img src="http://feeds.feedburner.com/~r/byteindia/~4/_w1InQSkEIE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.byteindia.com/technology/free-international-calls-skype-one-month/843/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.byteindia.com/technology/free-international-calls-skype-one-month/843/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=free-international-calls-skype-one-month</feedburner:origLink></item>
		<item>
		<title>Thesis 2.0 is Available for Download</title>
		<link>http://feedproxy.google.com/~r/byteindia/~3/xsxmQQyN7lI/</link>
		<comments>http://www.byteindia.com/internet/thesis-2-available-for-download/838/#comments</comments>
		<pubDate>Tue, 02 Oct 2012 15:59:15 +0000</pubDate>
		<dc:creator>Vijay Sharma</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[thesis]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress themes]]></category>

		<guid isPermaLink="false">http://www.byteindia.com/?p=838</guid>
		<description><![CDATA[Long awaited Thesis 2.0 theme is available for download since October 1, 2012 and comes packed with a bunch of new features, actually let me correct myself the whole theme itself has changed and new thesis theme has been designed to make customizing the theme as easy as possible (no coding required). The best three [...]<p>Read Original post here : <a href="http://www.byteindia.com/internet/thesis-2-available-for-download/838/">Thesis 2.0 is Available for Download</a><p><span class="intro"><em>Like us on <strong><a href="http://www.facebook.com/byteindia" target="_blank">Facebook</a></strong> for the latest about the technology, tips and tricks as well as our top social media and technology updates.</em> </span></p>
<p>You can also follow <a href="http://www.byteindia.com">Byteindia</a> at <a href="http://twitter.com/byteindia">Twitter</a> or Subscribe to <a href="http://feeds.feedburner.com/byteindia">RSS</a></p></p>
]]></description>
				<content:encoded><![CDATA[<p></p><p>Long awaited Thesis 2.0 theme is available for download since October 1, 2012 and comes packed with a bunch of new features, actually let me correct myself the whole theme itself has changed and new thesis theme has been designed to make customizing the theme as easy as possible (<strong>no coding required</strong>).</p>
<p>The best three things are:</p>
<ol>
<li><strong>Pixel-perfect typography</strong> &#8211; We all know that typography is one of the key ingredients of the design and the content should be easy to read and scan.</li>
<li><strong>Custom 404 Page </strong>-<strong> </strong>The importance of 404 page can’t go unnoticed and has been emphasized enough by everyone and Google even recommends making your 404 page as useful as possible. Now making custom 404 page using Thesis theme is a piece of cake.</li>
<li><strong>Landing Pages – </strong>Landing pages are a must have for converting leads into sales. ( that’s the bottom line isn’t it)</li>
</ol>
<p>Prior to Thesis 2.0 all these tasks were possible but required a considerable amount of developer time and if you are not a programmer yourself, every time you need a change you will have to invest money and time in hiring a developer. With Thesis 2.0 you can do all this using your browser and few mouse clicks.</p>
<p>If you don’t own a Thesis theme license it’s time to get one <a href="http://www.byteindia.com/go/thesis" rel="nofollow" target="_blank">here</a>.</p>
<p>Stay tuned for more tips and tricks on Thesis 2.0.</p>
<p>Read Original post here : <a href="http://www.byteindia.com/internet/thesis-2-available-for-download/838/">Thesis 2.0 is Available for Download</a><p><span class="intro"><em>Like us on <strong><a href="http://www.facebook.com/byteindia" target="_blank">Facebook</a></strong> for the latest about the technology, tips and tricks as well as our top social media and technology updates.</em> </span></p>
<p>You can also follow <a href="http://www.byteindia.com">Byteindia</a> at <a href="http://twitter.com/byteindia">Twitter</a> or Subscribe to <a href="http://feeds.feedburner.com/byteindia">RSS</a></p></p>
<img src="http://feeds.feedburner.com/~r/byteindia/~4/xsxmQQyN7lI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.byteindia.com/internet/thesis-2-available-for-download/838/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.byteindia.com/internet/thesis-2-available-for-download/838/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=thesis-2-available-for-download</feedburner:origLink></item>
		<item>
		<title>Improved Ad Targeting and Relevancy using Robots.txt</title>
		<link>http://feedproxy.google.com/~r/byteindia/~3/iiKm0kkNhXg/</link>
		<comments>http://www.byteindia.com/internet/show-relevant-ads/830/#comments</comments>
		<pubDate>Tue, 02 Oct 2012 07:15:29 +0000</pubDate>
		<dc:creator>Vijay Sharma</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[google adsense]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[robots.txt]]></category>
		<category><![CDATA[tips and tricks]]></category>

		<guid isPermaLink="false">http://www.byteindia.com/?p=830</guid>
		<description><![CDATA[A simple text file called robots.txt can lead disastrous results for your website if not configured properly. Know how can you provide access to google adsense web crawler to show relevant ads and maximize the adsense revenue from your website.<p>Read Original post here : <a href="http://www.byteindia.com/internet/show-relevant-ads/830/">Improved Ad Targeting and Relevancy using Robots.txt</a><p><span class="intro"><em>Like us on <strong><a href="http://www.facebook.com/byteindia" target="_blank">Facebook</a></strong> for the latest about the technology, tips and tricks as well as our top social media and technology updates.</em> </span></p>
<p>You can also follow <a href="http://www.byteindia.com">Byteindia</a> at <a href="http://twitter.com/byteindia">Twitter</a> or Subscribe to <a href="http://feeds.feedburner.com/byteindia">RSS</a></p></p>
]]></description>
				<content:encoded><![CDATA[<p></p><p>As a website publisher you must have been looking for ways to optimize Google AdSense to monetize your content. There are a bunch of ways for that namely using standard ad formats, using mix of rich and text ads and most importantly writing unique and relevant content.</p>
<p>we all know that content is the king however you may not be reaping the best rewards with your content if your robots.txt is not configured properly.</p>
<h3>What is Robots.txt?</h3>
<p>It is a text file and usually found in the root of the website e.g. <a href="http://www.byteindia.com/robots.txt">http://www.byteindia.com/robots.txt</a> robots.txt is like a gatekeeper for your website which controls the access to your website for the web crawlers, search engines and web robots. It controls which pages of your website can be viewed and indexed by the search engines. Apparently it is a very important and useful piece of your website and appropriately configured robots.txt along with great content can deliver amazing results for your website however, a misconfigured robots.txt can block your website from being listed in search engines, show completely irrelevant ads.</p>
<h3>Modify Robots.txt to allow AdSense Web Crawler</h3>
<p>Google AdSense ads are displayed through the use of an <a href="http://www.google.com/adsense/support/as/bin/answer.py?answer=99376&amp;sourceid=aso&amp;subid=ww-en-et-asblog_2011-11-17&amp;medium=link">AdSense web crawler</a>. That crawler scans your page’s content and determines which ads to display, according to specific keywords. If our AdSense crawler is being blocked by your robots.txt file, we’re going to have a difficult time displaying relevant ads on your site. As a result, your users may see less relevant ads, which can lead to a lower CTR.</p>
<p>Google suggests that you allow access of your website to AdSense crawler and you can do that by adding the following two lines to your robots.txt</p>
<pre class="brush: text; gutter: false">User-agent: Mediapartners-Google
Disallow:</pre>
<p>This will ensure that our AdSense ad crawler can access your site and will help display more relevant ads. As a result, you can potentially benefit from increased ad revenue. Please note that making this change will not impact your Google search rankings. Adding these two lines to yourrobots.txt file will only help to deliver better, more relevant ads to pages with AdSense code already on them. Pages that don’t have AdSense ad code will not be affected.</p>
<p>Read Original post here : <a href="http://www.byteindia.com/internet/show-relevant-ads/830/">Improved Ad Targeting and Relevancy using Robots.txt</a><p><span class="intro"><em>Like us on <strong><a href="http://www.facebook.com/byteindia" target="_blank">Facebook</a></strong> for the latest about the technology, tips and tricks as well as our top social media and technology updates.</em> </span></p>
<p>You can also follow <a href="http://www.byteindia.com">Byteindia</a> at <a href="http://twitter.com/byteindia">Twitter</a> or Subscribe to <a href="http://feeds.feedburner.com/byteindia">RSS</a></p></p>
<img src="http://feeds.feedburner.com/~r/byteindia/~4/iiKm0kkNhXg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.byteindia.com/internet/show-relevant-ads/830/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.byteindia.com/internet/show-relevant-ads/830/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=show-relevant-ads</feedburner:origLink></item>
		<item>
		<title>How to Enable Private Browsing in Firefox automatically</title>
		<link>http://feedproxy.google.com/~r/byteindia/~3/dkQLUle8j-E/</link>
		<comments>http://www.byteindia.com/internet/private-browsing-firefox/826/#comments</comments>
		<pubDate>Thu, 06 Sep 2012 13:18:07 +0000</pubDate>
		<dc:creator>Vijay Sharma</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[firefox tips]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[private browsing]]></category>

		<guid isPermaLink="false">http://www.byteindia.com/?p=826</guid>
		<description><![CDATA[If you like Mozilla Firefox’s private browsing mode and want to enable it by default. Here are few simple steps to do the same. Launch Firefox and type “about:config”  in the address bar. You will get a warning to be careful as any wrong setting change could cause your Firefox to misbehave. On the next [...]<p>Read Original post here : <a href="http://www.byteindia.com/internet/private-browsing-firefox/826/">How to Enable Private Browsing in Firefox automatically</a><p><span class="intro"><em>Like us on <strong><a href="http://www.facebook.com/byteindia" target="_blank">Facebook</a></strong> for the latest about the technology, tips and tricks as well as our top social media and technology updates.</em> </span></p>
<p>You can also follow <a href="http://www.byteindia.com">Byteindia</a> at <a href="http://twitter.com/byteindia">Twitter</a> or Subscribe to <a href="http://feeds.feedburner.com/byteindia">RSS</a></p></p>
]]></description>
				<content:encoded><![CDATA[<p></p><p>If you like Mozilla Firefox’s private browsing mode and want to enable it by default. Here are few simple steps to do the same.</p>
<ol>
<li>Launch Firefox and type <em>“about:config”</em>  in the address bar. You will get a warning to be careful as any wrong setting change could cause your Firefox to misbehave.<a href="http://www.byteindia.com/wp-content/uploads/2012/09/image.png"><img style="background-image: none; padding-top: 0px; padding-left: 0px; display: inline; padding-right: 0px; border: 0px;" title="image" src="http://www.byteindia.com/wp-content/uploads/2012/09/image_thumb.png" alt="image" width="604" height="204" border="0" /></a></li>
<li>On the next screen type “private” in the search box and hit enter<br />
<a href="http://www.byteindia.com/wp-content/uploads/2012/09/image1.png"><img style="background-image: none; padding-top: 0px; padding-left: 0px; display: inline; padding-right: 0px; border: 0px;" title="image" src="http://www.byteindia.com/wp-content/uploads/2012/09/image_thumb1.png" alt="image" width="604" height="89" border="0" /></a></li>
<li>Change <em>“browser.privatebrowsing.autostart”<strong>  </strong></em>from false to true and restart the browser and you are all set.</li>
</ol>
<p>Read Original post here : <a href="http://www.byteindia.com/internet/private-browsing-firefox/826/">How to Enable Private Browsing in Firefox automatically</a><p><span class="intro"><em>Like us on <strong><a href="http://www.facebook.com/byteindia" target="_blank">Facebook</a></strong> for the latest about the technology, tips and tricks as well as our top social media and technology updates.</em> </span></p>
<p>You can also follow <a href="http://www.byteindia.com">Byteindia</a> at <a href="http://twitter.com/byteindia">Twitter</a> or Subscribe to <a href="http://feeds.feedburner.com/byteindia">RSS</a></p></p>
<img src="http://feeds.feedburner.com/~r/byteindia/~4/dkQLUle8j-E" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.byteindia.com/internet/private-browsing-firefox/826/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.byteindia.com/internet/private-browsing-firefox/826/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=private-browsing-firefox</feedburner:origLink></item>
		<item>
		<title>Gmail Advanced Search Gets Autocomplete in ‘To’ and ‘From’ Fields</title>
		<link>http://feedproxy.google.com/~r/byteindia/~3/teXcp2hHBQg/</link>
		<comments>http://www.byteindia.com/internet/gmail-advanced-search-autocomplete/813/#comments</comments>
		<pubDate>Sat, 01 Sep 2012 12:27:19 +0000</pubDate>
		<dc:creator>Vijay Sharma</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[advanced gmail search gets autocomplete]]></category>
		<category><![CDATA[Gmail]]></category>
		<category><![CDATA[gmail lab features]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://www.byteindia.com/?p=813</guid>
		<description><![CDATA[Google is committed to make the life simpler by adding more and more features to its products. While lot of people are still accustoming to the new look and feel of Google products. Last Week Google announced additional language support in Gmail search and now they have released autocomplete for the Gmail Advanced search in [...]<p>Read Original post here : <a href="http://www.byteindia.com/internet/gmail-advanced-search-autocomplete/813/">Gmail Advanced Search Gets Autocomplete in &lsquo;To&rsquo; and &lsquo;From&rsquo; Fields</a><p><span class="intro"><em>Like us on <strong><a href="http://www.facebook.com/byteindia" target="_blank">Facebook</a></strong> for the latest about the technology, tips and tricks as well as our top social media and technology updates.</em> </span></p>
<p>You can also follow <a href="http://www.byteindia.com">Byteindia</a> at <a href="http://twitter.com/byteindia">Twitter</a> or Subscribe to <a href="http://feeds.feedburner.com/byteindia">RSS</a></p></p>
]]></description>
				<content:encoded><![CDATA[<p></p><p>Google is committed to make the life simpler by adding more and more features to its products. While lot of people are still accustoming to the new look and feel of Google products. Last Week Google announced additional language support in Gmail search and now they have released autocomplete for the Gmail Advanced search in addition to graduating three lab products <strong>Refresh POP accounts</strong>, <strong>Filter import/export </strong>and <strong>Navbar drag and drop</strong>.</p>
<p><a href="http://www.byteindia.com/wp-content/uploads/2012/09/advancedautocomplete.png"><img style="background-image: none; padding-top: 0px; padding-left: 0px; display: inline; padding-right: 0px; border: 0px;" title="advancedautocomplete" src="http://www.byteindia.com/wp-content/uploads/2012/09/advancedautocomplete_thumb.png" alt="advancedautocomplete" width="604" height="426" border="0" /></a></p>
<p>Advanced search, which can be accessed by clicking on the arrow in the search box, now supports autocomplete predictions in the <strong>From:</strong> and <strong>To:</strong> fields, making it easier to find mail from or to a specific person.</p>
<p>With the graduation of <strong>Refresh POP accounts</strong>, clicking the refresh link at the top of your inbox will now not only update your inbox with your new Gmail messages, but will also fetch messages from any other POP accounts which you have set up.</p>
<p>From the <strong>Settings &gt; Filters</strong> page you can download a file containing some or all of your filters or upload a file to create a set of filters all in one go.  This makes it easy to share filters with friends, backup filters for later and more.</p>
<p>Lastly, if you use gadgets on the left-hand side of Gmail, you can now rearrange them with drag n&#8217; drop.</p>
<p><em>Source : </em><a href="https://plus.google.com/u/1/+Gmail/posts/bXwp1oGp31G" rel="nofollow" target="_blank"><em>Google+</em></a></p>
<p>Read Original post here : <a href="http://www.byteindia.com/internet/gmail-advanced-search-autocomplete/813/">Gmail Advanced Search Gets Autocomplete in &lsquo;To&rsquo; and &lsquo;From&rsquo; Fields</a><p><span class="intro"><em>Like us on <strong><a href="http://www.facebook.com/byteindia" target="_blank">Facebook</a></strong> for the latest about the technology, tips and tricks as well as our top social media and technology updates.</em> </span></p>
<p>You can also follow <a href="http://www.byteindia.com">Byteindia</a> at <a href="http://twitter.com/byteindia">Twitter</a> or Subscribe to <a href="http://feeds.feedburner.com/byteindia">RSS</a></p></p>
<img src="http://feeds.feedburner.com/~r/byteindia/~4/teXcp2hHBQg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.byteindia.com/internet/gmail-advanced-search-autocomplete/813/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.byteindia.com/internet/gmail-advanced-search-autocomplete/813/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=gmail-advanced-search-autocomplete</feedburner:origLink></item>
	</channel>
</rss><!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

 Served from: www.byteindia.com @ 2013-05-02 10:43:23 by W3 Total Cache -->
