<?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>ByteChip - The Complete Technology Blog</title>
	<atom:link href="http://www.bytechip.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bytechip.com</link>
	<description>The Complete Technlogy blog with updated news in the industry covering everything from software,hardwares,gadgets...</description>
	<lastBuildDate>Thu, 11 Mar 2010 02:57:51 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Display sidebar contents only on a particular page &#8211; Wordpress</title>
		<link>http://www.bytechip.com/2010/03/wordpress-page-display/</link>
		<comments>http://www.bytechip.com/2010/03/wordpress-page-display/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 07:31:51 +0000</pubDate>
		<dc:creator>Ramkumar</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[change]]></category>
		<category><![CDATA[edit]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[sidebar]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.bytechip.com/?p=3267</guid>
		<description><![CDATA[
			
				
			
		
You would have come across many websites that uses the same sidebar in all its pages. For example in Wordpress, you would have noticed that the same sidebar content is displayed in the following pages.

Page.php
Single.php
Index.php
Search.php
Category.php etc 

But it is not a good methodology to display the same content in sidebar over and over again. The [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.bytechip.com%2F2010%2F03%2Fwordpress-page-display%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.bytechip.com%2F2010%2F03%2Fwordpress-page-display%2F&amp;source=bytechip&amp;style=normal&amp;service=bit.ly" height="61" width="50" title="Display sidebar contents only on a particular page   Wordpress" alt=" Display sidebar contents only on a particular page   Wordpress" /><br />
			</a>
		</div>
<p>You would have come across many websites that uses the same sidebar in all its pages. For example in Wordpress, you would have noticed that the same sidebar content is displayed in the following pages.</p>
<ol>
<li><strong>Page.php</strong></li>
<li><strong>Single.php</strong></li>
<li><strong>Index.php</strong></li>
<li><strong>Search.php</strong></li>
<li><strong>Category.php etc </strong></li>
</ol>
<p>But it is not a good methodology to display the same content in sidebar over and over again. The reader must be exposed to a variety of good articles in your website, to do this you got to display more.</p>
<p>Another case that you justify the use of different content sidebar is that , the height of the index page will be very less than that of the single page. In that case you can see a lot of white space being left blank in the sidebar. We can actually capitalize this free space and turn it into an assert for us. Every amount of space that you leave blank can actually be modified into something very useful, provided you don&#8217;t bring down the look of the theme.</p>
<p>There are two ways of getting this problem solved.</p>
<h2><span style="color: #800000;"><span style="text-decoration: underline;">Using a Different Sidebar for single.php</span></span></h2>
<p>A simple solution, isn&#8217;t it. Just make a copy of the file &#8220;<strong>sidebar.php</strong>&#8221; and save it in some other name say &#8220;<strong>sidebar_single.php</strong>&#8221; make the changes in the file, add new contents that you would want. Now navigate to your <strong>single.php</strong> file and in the sidebar calling function,<strong> replace &#8220;sidebar.php&#8221; with &#8220;sidebar_single.php&#8221;.</strong></p>
<p><strong>Requirement:</strong></p>
<p>This method will only work if the single.php uses the &#8220;INCLUDE&#8221; function to call the sidebar. However for themes that doesn&#8217;t use include method and calls the function directly, you got to follow the other method.</p>
<div id="attachment_3269" class="wp-caption aligncenter" style="width: 557px"><a href="http://www.bytechip.com/wp-content/uploads/2010/03/single-sidebar.jpg"><img class="size-full wp-image-3269" title="single sidebar" src="http://www.bytechip.com/wp-content/uploads/2010/03/single-sidebar.jpg" alt="Single Sidebar" width="547" height="125" /></a><p class="wp-caption-text">Single Sidebar</p></div>
<h2><span style="color: #800000;"><span style="text-decoration: underline;">Using a IF condition in sidebar.php</span></span></h2>
<p>In this method, one common sidebar php file is used for all the pages, however we decide what content should be displayed by introducing a &#8220;IF&#8221; condition. This will be the syntax for the if Condition.</p>
<p><strong><span style="color: #008000;"><em>&lt;?php  if (is_single( )) </em></span></strong></p>
<p><strong><span style="color: #008000;"><em>{ //Statements here } </em></span></strong></p>
<p><strong><span style="color: #008000;"><em>?&gt;</em></span></strong></p>
<h2>Example</h2>
<p>Say you want display 10 posts from a particular category only on the &#8220;<strong>single</strong>&#8221;  page. Then you got to use the following code syntax.</p>
<p><strong><em><span style="color: #008000;">&lt;?php if (is_single( ))<br />
{     ?&gt;<br />
&lt;div id=&#8221;sidebar_box&#8221;&gt;&lt;h3&gt;Our Best&lt;/h3&gt; &lt;div&gt; &lt;ul&gt;<br />
&lt;?php $my_query = new WP_Query(&#8220;cat=180&amp;showposts=10&#8243;);<br />
while ($my_query-&gt;have_posts()) : $my_query-&gt;the_post();?&gt;<br />
&lt;li&gt;&lt;a href=&#8221;&lt;?php the_permalink(); ?&gt;&#8221;&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/li&gt;<br />
&lt;?php endwhile; ?&gt;<br />
&lt;/ul&gt;&lt;/div&gt;&lt;/div&gt;<br />
&lt;?php } ?&gt;</span></em></strong></p>
<p>Here I have specified my <strong>category ID as 180</strong> and <strong>Number of posts as 10</strong>, you should modify the code according to the category you want to display.</p>
<h2><span style="color: #800000;">Finding the Category ID in Wordpress</span></h2>
<p>To find the category, since browse to Dashboard ,<strong> Posts-&gt; Categories</strong> and they move your mouse to the category text displayed in the right, that will show you the category ID, in the status bar.</p>
<div id="attachment_3272" class="wp-caption aligncenter" style="width: 158px"><a href="http://www.bytechip.com/wp-content/uploads/2010/03/category.jpg"><img class="size-full wp-image-3272" title="category" src="http://www.bytechip.com/wp-content/uploads/2010/03/category.jpg" alt="DashBoard Category Option" width="148" height="143" /></a><p class="wp-caption-text">DashBoard Category Option</p></div>
<div id="attachment_3273" class="wp-caption aligncenter" style="width: 395px"><a href="http://www.bytechip.com/wp-content/uploads/2010/03/category-id.jpg"><img class="size-full wp-image-3273" title="category id" src="http://www.bytechip.com/wp-content/uploads/2010/03/category-id.jpg" alt="Status Bar Showing the Category ID" width="385" height="56" /></a><p class="wp-caption-text">Status Bar Showing the Category ID</p></div>
<p><strong>Note: Please do feel free to comment in case you face any problem adding this feature.<br />
</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bytechip.com/2010/03/wordpress-page-display/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Check if a Website is down</title>
		<link>http://www.bytechip.com/2010/03/check-website-down/</link>
		<comments>http://www.bytechip.com/2010/03/check-website-down/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 18:08:55 +0000</pubDate>
		<dc:creator>Ramkumar</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[downtime]]></category>
		<category><![CDATA[list]]></category>
		<category><![CDATA[online]]></category>
		<category><![CDATA[webmaster]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://www.bytechip.com/?p=3254</guid>
		<description><![CDATA[
			
				
			
		
Today I have collected a list of sites that could be tell you &#8220;if a website is really down&#8221; or &#8220;website doesn&#8217;t load just for you&#8221;. Out of the below listed websites my favorite is &#8220;DownForEveryoneOrJustMe&#8221;. Although the other websites cannot be under-estimated, some of them have really cool interfaces. Rather than installing softwares like [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.bytechip.com%2F2010%2F03%2Fcheck-website-down%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.bytechip.com%2F2010%2F03%2Fcheck-website-down%2F&amp;source=bytechip&amp;style=normal&amp;service=bit.ly" height="61" width="50" title="Check if a Website is down" alt=" Check if a Website is down" /><br />
			</a>
		</div>
<p>Today I have collected a list of sites that could be tell you <strong>&#8220;if a website is really down&#8221; </strong>or <strong>&#8220;website doesn&#8217;t load just for you&#8221;</strong>. Out of the below listed websites my favorite is &#8220;<strong>DownForEveryoneOrJustMe&#8221;. </strong>Although the other websites cannot be under-estimated, some of them have really cool interfaces. Rather than installing softwares like <strong>Pingdom </strong>to check for availability of a website, using these online services are more precise methods.</p>
<h2><a href="http://downforeveryoneorjustme.com/" target="_blank">DownForEveryoneOrJustMe</a></h2>
<p>Uff, pretty long name isn&#8217;t it, but you don&#8217;t need to remember it, because whenever you search for websites to check downtime, this site is going to be in the top of search result. This is such a popular and widely used service to check website availability. Check out the site <a href="http://downforeveryoneorjustme.com/" target="_blank">here.</a></p>
<p style="text-align: left;">
<div id="attachment_3255" class="wp-caption aligncenter" style="width: 562px"><a href="http://downforeveryoneorjustme.com/"><img class="size-full wp-image-3255  " title="downforeveryoneorjustme" src="http://www.bytechip.com/wp-content/uploads/2010/03/downforeveryoneorjustme.jpg" alt="Down for Everyone or Just me" width="552" height="46" /></a><p class="wp-caption-text">Down for Everyone or Just me</p></div>
<div id="attachment_3256" class="wp-caption aligncenter" style="width: 546px"><a href="http://downforeveryoneorjustme.com/"><img class="size-full wp-image-3256 " title="downforeveryoneorjustme logo" src="http://www.bytechip.com/wp-content/uploads/2010/03/downforeveryoneorjustme-logo.jpg" alt="downforeveryoneorjustme " width="536" height="119" /></a><p class="wp-caption-text">Results</p></div>
<h2><a href="http://www.downorjustforme.com/" target="_blank">DownOrJustForMe</a></h2>
<p>Yet another same kind of service with almost the same name. Down Or Just For Me, although is not the most visited site, it still preferred by some of the people. The site looks almost like a clone of the previous site but with a background and a flash button. The site however has another advantage, it doesn&#8217;t redirect you to another page to show the result, it displays in the same page. <a href="http://downorjustforme.com/" target="_blank">Check out the site here.</a></p>
<p style="text-align: center;">
<div id="attachment_3257" class="wp-caption aligncenter" style="width: 479px"><a href="http://downorjustforme.com/"><img class="size-full wp-image-3257 " title="downorjustforme" src="http://www.bytechip.com/wp-content/uploads/2010/03/downorjustforme.jpg" alt="Down Or Just For Me" width="469" height="407" /></a><p class="wp-caption-text">Down Or Just For Me</p></div>
<h2><a href="http://isthatsitedown.com/" target="_blank">IsThatSiteDown</a></h2>
<p>Apart from just a single website downtime checker, this site has added a new but not so interesting feature. You can check the availability of popular sites in one button click , the sites included in that one click check are Youtube, Google, Facebook, Yahoo, Wikipedia, Twitter, Ask, Wordpress, Blogger and Rapidshare. <a href="http://isthatsitedown.com/" target="_blank">Check out the site here.</a></p>
<div id="attachment_3258" class="wp-caption aligncenter" style="width: 242px"><a href="http://isthatsitedown.com/"><img class="size-full wp-image-3258 " title="isthatsitedown" src="http://www.bytechip.com/wp-content/uploads/2010/03/isthatsitedown.jpg" alt="IsThatSiteDown" width="232" height="227" /></a><p class="wp-caption-text">IsThatSiteDown</p></div>
<div id="attachment_3259" class="wp-caption aligncenter" style="width: 471px"><a href="http://isthatsitedown.com/"><img class="size-full wp-image-3259 " title="is that site down" src="http://www.bytechip.com/wp-content/uploads/2010/03/is-that-site-down.jpg" alt="is that site down" width="461" height="119" /></a><p class="wp-caption-text">is that site down</p></div>
<div id="attachment_3260" class="wp-caption aligncenter" style="width: 465px"><a href="http://isthatsitedown.com/"><img class="size-full wp-image-3260 " title="is that site down group" src="http://www.bytechip.com/wp-content/uploads/2010/03/is-that-site-down-group.jpg" alt="One Click Check" width="455" height="328" /></a><p class="wp-caption-text">One Click Check</p></div>
<h2><a href="http://www.checksite.us" target="_blank">CheckSite.us</a></h2>
<p>Another clean and simple interface service to check your website downtime, not much features included in it, but the advantage is that it does not navigate to a new page to show the results, loved the Ajax effect. <a href="http://www.checksite.us" target="_blank">Check out the site here.</a></p>
<p style="text-align: center;">
<div id="attachment_3262" class="wp-caption aligncenter" style="width: 544px"><a href="http://www.checksite.us"><img class="size-full wp-image-3262  " title="checksite" src="http://www.bytechip.com/wp-content/uploads/2010/03/checksite.jpg" alt="CheckSite.us" width="534" height="166" /></a><p class="wp-caption-text">CheckSite.us</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.bytechip.com/2010/03/check-website-down/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Online Interface Designer</title>
		<link>http://www.bytechip.com/2010/03/online-interface-designer/</link>
		<comments>http://www.bytechip.com/2010/03/online-interface-designer/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 16:30:11 +0000</pubDate>
		<dc:creator>Ramkumar</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[designer]]></category>
		<category><![CDATA[flowchart]]></category>
		<category><![CDATA[gliffy]]></category>
		<category><![CDATA[interface]]></category>
		<category><![CDATA[uml]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://www.bytechip.com/?p=3232</guid>
		<description><![CDATA[
			
				
			
		
Are you still using Microsoft Office to create Flow charts or Rational Rose to make UML Diagrams, well learn to do it online for a change. Gliffy.com has now combined all the features required for Interface designing in their web-application together. And that means you could generate interfaces online without using any softwares.
The best part [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.bytechip.com%2F2010%2F03%2Fonline-interface-designer%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.bytechip.com%2F2010%2F03%2Fonline-interface-designer%2F&amp;source=bytechip&amp;style=normal&amp;service=bit.ly" height="61" width="50" title="Online Interface Designer" alt=" Online Interface Designer" /><br />
			</a>
		</div>
<p>Are you still using Microsoft Office to create Flow charts or Rational Rose to make UML Diagrams, well learn to do it online for a change. <strong>Gliffy.com</strong> has now combined all the features required for Interface designing in their web-application together. And that means you could <strong>generate interfaces online without using any softwares.</strong></p>
<p>The best part is that they provide you<strong> free 30 days trial of Premium Service</strong>, but who cares as long as you can create any number of accounts <img src='http://www.bytechip.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' title="Online Interface Designer" /> .   But I&#8217;m sure for people in designing area, this is a must visit website, that you cannot afford to miss.</p>
<div id="attachment_3233" class="wp-caption aligncenter" style="width: 433px"><a href="http://www.bytechip.com/wp-content/uploads/2010/03/gliffy.jpg"><img class="size-full wp-image-3233" title="Gliffy Online Interface Generator" src="http://www.bytechip.com/wp-content/uploads/2010/03/gliffy.jpg" alt="Gliffy Online Interface Generator" width="423" height="206" /></a><p class="wp-caption-text">Gliffy Online Interface Generator</p></div>
<h2><strong>Features of Gliffy</strong></h2>
<p>Gliffy has a wide range of designer choices. Here are some of the controls you can find on Gliffy, I have displayed them as image for a better understanding.</p>
<div id="attachment_3234" class="wp-caption aligncenter" style="width: 465px"><a href="http://www.bytechip.com/wp-content/uploads/2010/03/gliffy-flowchart.jpg"><img class="size-full wp-image-3234" title="gliffy flowchart" src="http://www.bytechip.com/wp-content/uploads/2010/03/gliffy-flowchart.jpg" alt="Online FlowChart controls" width="455" height="241" /></a><p class="wp-caption-text"> FlowChart controls</p></div>
<div id="attachment_3236" class="wp-caption aligncenter" style="width: 466px"><a href="http://www.bytechip.com/wp-content/uploads/2010/03/Gliffy-Strcutures.jpg"><img class="size-full wp-image-3236" title="Gliffy Strcutures" src="http://www.bytechip.com/wp-content/uploads/2010/03/Gliffy-Strcutures.jpg" alt="Structure Editor" width="456" height="241" /></a><p class="wp-caption-text">Structure Editor</p></div>
<div id="attachment_3237" class="wp-caption aligncenter" style="width: 467px"><a href="http://www.bytechip.com/wp-content/uploads/2010/03/gliffy-uml.jpg"><img class="size-full wp-image-3237" title="gliffy uml" src="http://www.bytechip.com/wp-content/uploads/2010/03/gliffy-uml.jpg" alt="UML Editor" width="457" height="244" /></a><p class="wp-caption-text">UML Editor</p></div>
<h2>Size &amp; Shape Editor</h2>
<div id="attachment_3235" class="wp-caption alignleft" style="width: 215px"><a href="http://www.bytechip.com/wp-content/uploads/2010/03/gliffy-size-editor.jpg"><img class="size-full wp-image-3235" title="gliffy size editor" src="http://www.bytechip.com/wp-content/uploads/2010/03/gliffy-size-editor.jpg" alt="Size Editor" width="205" height="298" /></a><p class="wp-caption-text">Size Editor</p></div>
<p>The Size Editor allows you to modify the dimensions of the components , such as the height, width and the position. The features could be either specified this way or we can simply drag and use your mouse controls to change them.  Apart from these features, Gliffy also allows the user to export his work to various formats  and to print them.</p>
<h2><a href="http://www.gliffy.com" target="_blank">Visit Gliffy.com Here</a></h2>
]]></content:encoded>
			<wfw:commentRss>http://www.bytechip.com/2010/03/online-interface-designer/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>gagets??</title>
		<link>http://www.bytechip.com/2010/03/gagets/</link>
		<comments>http://www.bytechip.com/2010/03/gagets/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 11:59:05 +0000</pubDate>
		<dc:creator>neo</dc:creator>
				<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.bytechip.com/?p=3224</guid>
		<description><![CDATA[
			
				
			
		
OK GO is a pop band who made something very innovative for their new music video which is being already watched by millions of people over the web and around the world  in the past few days, they worked really hard and finally did pull it out with the help of a group of very [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.bytechip.com%2F2010%2F03%2Fgagets%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.bytechip.com%2F2010%2F03%2Fgagets%2F&amp;source=bytechip&amp;style=normal&amp;service=bit.ly" height="61" width="50" title="gagets??" alt=" gagets??" /><br />
			</a>
		</div>
<p>OK GO is a pop band who made something very innovative for their new music video which is being already watched by millions of people over the web and around the world  in the past few days, they worked really hard and finally did pull it out with the help of a group of very talented engineers after a long hard retakes and repositioning the things.</p>
<p>The video run for nearly 4 minuets and it’s a continuous shot without any break in the middle where objects are rolled trowed and launched across the room which involves accuracy and precision to pull the kind of stuff like those.</p>
<p>The builders were from Syyn Labs, a Los Angeles-based arts and technology collective ,famous for entertaining science and tech projects that involve crowds of people, at a monthly gathering called Mindshare LA.</p>
<p>It was a really time consuming project and see for your self why 6 million people have already watched this video in so little time.</p>
<p><!-- Smart Youtube --><span class="youtube"><object width="425" height="373"><param name="movie" value="http://www.youtube.com/v/qybUFnY7Y8w&amp;rel=1&amp;color1=d6d6d6&amp;color2=f0f0f0&amp;border=1&amp;fs=1&amp;hl=en&amp;autoplay=0&amp;showinfo=0&amp;iv_load_policy=3&amp;showsearch=0" /><param name="allowFullScreen" value="true" /><embed wmode="transparent" src="http://www.youtube.com/v/qybUFnY7Y8w&amp;rel=1&amp;color1=d6d6d6&amp;color2=f0f0f0&amp;border=1&amp;fs=1&amp;hl=en&amp;autoplay=0&amp;showinfo=0&amp;iv_load_policy=3&amp;showsearch=0" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="373" ></embed><param name="wmode" value="transparent" /></object></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bytechip.com/2010/03/gagets/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Apple Vs HTC</title>
		<link>http://www.bytechip.com/2010/03/apple-vs-htc/</link>
		<comments>http://www.bytechip.com/2010/03/apple-vs-htc/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 11:37:32 +0000</pubDate>
		<dc:creator>neo</dc:creator>
				<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.bytechip.com/?p=3215</guid>
		<description><![CDATA[
			
				
			
		
A few days back, March the 2nd to be accurate, Apple filed a lawsuit against HTC for infringing on 20 Apple patents related to the iPhone’s user interface, underlying architecture and hardware. This now is one of the biggest problems among touch screens mobiles that everything looks the same. The lawsuit was filed in the [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.bytechip.com%2F2010%2F03%2Fapple-vs-htc%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.bytechip.com%2F2010%2F03%2Fapple-vs-htc%2F&amp;source=bytechip&amp;style=normal&amp;service=bit.ly" height="61" width="50" title="Apple Vs HTC" alt=" Apple Vs HTC" /><br />
			</a>
		</div>
<p>A few days back, March the 2nd to be accurate, <strong>Apple filed a lawsuit against HTC</strong> for infringing on 20 Apple patents related to the iPhone’s user interface, underlying architecture and hardware. This now is one of the biggest problems among touch screens mobiles that everything looks the same. The lawsuit was filed in the <strong>U.S. International Trade Commission (ITC) </strong>and in <strong>U.S. District Court in Delaware </strong>on 2<sup>nd</sup> of March.</p>
<h6>Statement Made by Steve Jobs</h6>
<p><strong>“We can sit by and watch competitors steal our patented inventions, or we can do something about it. We’ve decided to do something about it”. “We think competition is healthy, but competitors should create their own original technology, not steal ours.”</strong> said the CEO of Apple &#8211; <strong>Steve Jobs</strong>.</p>
<p>Since the release of Apple mobile in 2007, Apple stood out to be one of the best from the rest in the mobile industry by selling Over 40 million iPhones worldwide. In the past few years and now, Other Mobile Makers are trying to surpass them. This  might be the only reason for Apple to file a case on HTC and to make a statement about their dominance…and also the 20 apple patents related to their model..(oops)</p>
<div id="attachment_3222" class="wp-caption aligncenter" style="width: 410px"><a href="http://www.bytechip.com/wp-content/uploads/2010/03/steve-jobs.jpg"><img class="size-full wp-image-3222" title="Steve Jobs , CEO of Apple" src="http://www.bytechip.com/wp-content/uploads/2010/03/steve-jobs.jpg" alt="Steve Jobs , CEO of Apple" width="400" height="291" /></a><p class="wp-caption-text">Steve Jobs , CEO of Apple</p></div>
<h1 style="text-align: center;">Vs</h1>
<div id="attachment_3225" class="wp-caption aligncenter" style="width: 460px"><a href="http://www.bytechip.com/wp-content/uploads/2010/03/Peter-Chou.jpg"><img class="size-full wp-image-3225" title="Peter Chou , CEO of HTC" src="http://www.bytechip.com/wp-content/uploads/2010/03/Peter-Chou.jpg" alt="Peter Chou , CEO of HTC" width="450" height="302" /></a><p class="wp-caption-text">Peter Chou , CEO of HTC</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.bytechip.com/2010/03/apple-vs-htc/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to Speed up Start Menu in Windows</title>
		<link>http://www.bytechip.com/2010/03/speed-up-start-menu/</link>
		<comments>http://www.bytechip.com/2010/03/speed-up-start-menu/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 06:01:40 +0000</pubDate>
		<dc:creator>Ramkumar</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[regedit]]></category>
		<category><![CDATA[speed]]></category>
		<category><![CDATA[startmenu]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.bytechip.com/?p=3204</guid>
		<description><![CDATA[
			
				
			
		
Windows by default imposes a delay period when the users navigate through the start menu. You have have experience a delay while pointing to &#8220;All Programs&#8221; (Program Files) in Start Menu. This is only due to the default delay. However this delay can be removed by editing an entry in the Windows Registry. Simply follow [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.bytechip.com%2F2010%2F03%2Fspeed-up-start-menu%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.bytechip.com%2F2010%2F03%2Fspeed-up-start-menu%2F&amp;source=bytechip&amp;style=normal&amp;service=bit.ly" height="61" width="50" title="How to Speed up Start Menu in Windows" alt=" How to Speed up Start Menu in Windows" /><br />
			</a>
		</div>
<p>Windows by default imposes a delay period when the users navigate through the start menu. You have have experience a delay while pointing to &#8220;All Programs&#8221; (Program Files) in Start Menu. This is only due to the default delay. However this delay can be removed by editing an entry in the Windows Registry. Simply follow the below steps to change the delay in navigation.</p>
<h2>Speed Up Start Menu Using Registry</h2>
<ol>
<li>Open <strong>&#8220;Run&#8221;</strong> command (<strong>Start Menu -&gt; Run</strong>) or Press (<strong>Windows Key + R</strong>) .
<p><div id="attachment_3205" class="wp-caption aligncenter" style="width: 357px"><a href="http://www.bytechip.com/wp-content/uploads/2010/03/regedit.jpg"><img class="size-full wp-image-3205" title="regedit" src="http://www.bytechip.com/wp-content/uploads/2010/03/regedit.jpg" alt="Registy Editor" width="347" height="186" /></a><p class="wp-caption-text">Registy Editor</p></div></li>
<li>Enter &#8220;<strong>regedit</strong>&#8221; in the Textbox and press &#8220;<strong>Enter</strong>&#8221; key. This will open the Windows Registry Editor.</li>
<li>Now in the Left Side Panel , Open the Hive &#8220;<strong>HKEY_CURRENT_USER</strong>&#8220;, then select the option <strong>&#8220;Control Panel&#8221; </strong>and then choose &#8220;<strong>Desktop</strong>&#8220;.</li>
<li>Now in the right side panel check if there exists any key by the name <strong>&#8220;MenuShowDelay&#8221;.</strong> If it exists then double click on that key and chage the value to <strong>&#8220;0&#8243; </strong>and Skip to Step 7.</li>
<li>Incase the key does not exists then in the <strong>Menu Bar</strong> choose<strong> &#8220;Edit -&gt; New -&gt; String value&#8221;.</strong></li>
<li>A  new string value will be added, Name the value as <strong>&#8220;MenuShowDelay&#8221; , </strong>double click on the value to change it to <strong>&#8220;0&#8243;</strong>.
<p><div id="attachment_3206" class="wp-caption aligncenter" style="width: 589px"><a href="http://www.bytechip.com/wp-content/uploads/2010/03/menu-speed-registry.jpg"><img class="size-full wp-image-3206 " title="Speed up Start Menu with Registry Editor" src="http://www.bytechip.com/wp-content/uploads/2010/03/menu-speed-registry.jpg" alt="Speed up Start Menu with Registry Editor" width="579" height="400" /></a><p class="wp-caption-text">Speed up Start Menu with Registry Editor</p></div></li>
<li>Close the Registry Editor, the changes will now take place, in some computer you got to restart for the changes to take place.</li>
</ol>
<p>This is applicable to all the version of Windows higher than Windows XP.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bytechip.com/2010/03/speed-up-start-menu/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Weekly Statistics March &#8211; 200 Posts Milestone</title>
		<link>http://www.bytechip.com/2010/03/weekly-statistics-march-7/</link>
		<comments>http://www.bytechip.com/2010/03/weekly-statistics-march-7/#comments</comments>
		<pubDate>Sat, 06 Mar 2010 18:41:53 +0000</pubDate>
		<dc:creator>neo</dc:creator>
				<category><![CDATA[Statistics]]></category>
		<category><![CDATA[200]]></category>

		<guid isPermaLink="false">http://www.bytechip.com/?p=3168</guid>
		<description><![CDATA[
			
				
			
		
Hi all, this is Neo , the Co-Editor of ByteChip. This week we has crossed another milestone. This is the 200th post on ByteChip. We are on the sixth month of Blogging, since then we could achieve this mark. However Ramkumar felt the number is less and hereforth he is seriously going to work on [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.bytechip.com%2F2010%2F03%2Fweekly-statistics-march-7%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.bytechip.com%2F2010%2F03%2Fweekly-statistics-march-7%2F&amp;source=bytechip&amp;style=normal&amp;service=bit.ly" height="61" width="50" title="Weekly Statistics March   200 Posts Milestone" alt=" Weekly Statistics March   200 Posts Milestone" /><br />
			</a>
		</div>
<p>Hi all, this is Neo , the Co-Editor of ByteChip. This week we has crossed another milestone. This is the <strong>200th post on ByteChip</strong>. We are on the sixth month of Blogging, since then we could achieve this mark. However Ramkumar felt the number is less and hereforth he is seriously going to work on it. Nevertheless we hope you have  enjoyed our articles and we will continue to deliver to the best we could.</p>
<div id="attachment_3178" class="wp-caption aligncenter" style="width: 402px"><a href="http://www.bytechip.com/wp-content/uploads/2010/03/stats.jpg"><img class="size-full wp-image-3178" title="ByteChip DashBoard" src="http://www.bytechip.com/wp-content/uploads/2010/03/stats.jpg" alt="ByteChip DashBoard" width="392" height="289" /></a><p class="wp-caption-text">ByteChip DashBoard</p></div>
<p>The above image shows our dashboard, you could see that our comments is also reaching that 2k mark.  While Im writing this article, the rest of the team of ByteChip is editing the old articles to be SEO friendly. These days we get a huge traffic from Search Engines, and we thought we could optimize the old posts too. Talking about the theme, I guess everyone are satisfied with our new theme, We have made many modifications to it , inorder to improve our site loading time. Also the font-size has been optimized for better viewing, Incase if you have any suggestion to be made for the theme or on our posting, You are most welcome, we would be glad to hear your suggestions , feedbacks and implement them on ByteChip.</p>
<h2>Posts</h2>
<h3><a href="../2010/03/ipad-launch-date-and-prices/">iPad  Launch Date and Prices</a></h3>
<h3><a href="../2010/03/sony-vaio-vpc-eb16/">Sony Vaio E  Series VPC EB16</a></h3>
<h3><a href="../2010/03/sony-vaio-vpc-eb14/">Sony Vaio E  Series VPC EB14</a></h3>
<h3><a href="../2010/03/sony-vaio-e-series/">Sony Vaio E  Series VPC EB12</a></h3>
<h3><a href="../2010/03/vpceb1agg/">Sony Vaio E Series VPC  EB1AGG BI</a></h3>
<h3><a href="../2010/03/review-grooveshark/">Review  GrooveShark – Free Online Songs | Radio</a></h3>
<h3><a href="../2010/03/wordpress-thread-comment/">Wordpress  Thread Comment</a></h3>
<h3><a href="../2010/03/block-websites-using-dns/">Block  Websites using DNS</a></h3>
<h3><a href="../2010/03/monthly-stats-feb2010/">Monthly  Statistics February 2010</a></h3>
<h3><a href="../2010/03/find-ifsc-code/">Find IFSC code of  a Bank</a></h3>
<h2><strong>Top Commentators</strong></h2>
<ol>
<li><strong>TechChunks (<a href="http://www.techchunks.com" target="_blank">http://www.TechChunks.com</a>)</strong></li>
<li><strong>Pubudu Kodikara (<a href="http://www.techhamlet.com" target="_blank">http://www.TechHamlet.com</a>)</strong></li>
<li><strong>Anish K.S  (<a href="http://www.technicstoday.com" target="_blank">http://www.TechnicsToday.com</a>)</strong></li>
<li><strong>NavaPavan (<a href="http://www.NavaPavan.com" target="_blank">http://www.NavaPavan.com</a>)</strong></li>
<li><strong>Rohit Sane (<a href="http://www.techfreakstuff.com/" target="_blank">http://www.techfreakstuff.com)</a></strong></li>
</ol>
<h2><strong>Like Our posts ? Do<a href="http://www.bytechip.com/feed" target="_blank"> Subscribe to our Feeds .</a></strong></h2>
<p><a href="http://www.bytechip.com/feed"><img class="aligncenter size-full wp-image-3173" title="rss" src="http://www.bytechip.com/wp-content/uploads/2010/03/rss.png" alt="Click to Subscribe to Our Feeds" width="280" height="280" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bytechip.com/2010/03/weekly-statistics-march-7/feed/</wfw:commentRss>
		<slash:comments>23</slash:comments>
		</item>
		<item>
		<title>iPad Launch Date and Prices</title>
		<link>http://www.bytechip.com/2010/03/ipad-launch-date-and-prices/</link>
		<comments>http://www.bytechip.com/2010/03/ipad-launch-date-and-prices/#comments</comments>
		<pubDate>Sat, 06 Mar 2010 12:35:40 +0000</pubDate>
		<dc:creator>Ramkumar</dc:creator>
				<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[3g]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[wifi]]></category>

		<guid isPermaLink="false">http://www.bytechip.com/?p=3160</guid>
		<description><![CDATA[
			
				
			
		
Apple&#8217;s much awaited and finally much criticized product iPad will now be available for sale in United States from April 3rd onwards. The Wifi with 3G model is however expected to hit the market by the end of April .  Inspite of the criticism by others, iPad will be a sure hit.
Meanwhile Sony has planned [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.bytechip.com%2F2010%2F03%2Fipad-launch-date-and-prices%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.bytechip.com%2F2010%2F03%2Fipad-launch-date-and-prices%2F&amp;source=bytechip&amp;style=normal&amp;service=bit.ly" height="61" width="50" title="iPad Launch Date and Prices" alt=" iPad Launch Date and Prices" /><br />
			</a>
		</div>
<p>Apple&#8217;s much awaited and finally much criticized product iPad will now be available for sale in United States from April 3rd onwards. The Wifi with 3G model is however expected to hit the market by the end of April .  Inspite of the criticism by others, iPad will be a sure hit.</p>
<p>Meanwhile Sony has planned to develop an alternative for iPad. The date of completion of their project is not officially been announced. But by that time they could release the product, atleast a million copies of iPad will be sold out.</p>
<h2>Prices of Ipad Wifi without 3G</h2>
<table border="1">
<tbody>
<tr>
<td><strong>Storage Capacity</strong></td>
<td><strong>Price</strong></td>
</tr>
<tr>
<td>16 GB</td>
<td>USD 499$</td>
</tr>
<tr>
<td>32 GB</td>
<td>USD 599$</td>
</tr>
<tr>
<td>64 GB</td>
<td>USD 699$</td>
</tr>
</tbody>
</table>
<h2>Prices of Ipad Wifi with 3G</h2>
<table border="1">
<tbody>
<tr>
<td><strong>Storage Capacity</strong></td>
<td><strong>Price</strong></td>
</tr>
<tr>
<td>16 GB</td>
<td>USD 629$</td>
</tr>
<tr>
<td>32 GB</td>
<td>USD 729$</td>
</tr>
<tr>
<td>64 GB</td>
<td>USD 829$</td>
</tr>
</tbody>
</table>
<h2>
<div id="attachment_3161" class="wp-caption aligncenter" style="width: 425px"><a href="http://www.bytechip.com/2010/01/apple-ipad/"><img class="size-full wp-image-3161 " title="itunes_20100127" src="http://www.bytechip.com/wp-content/uploads/2010/03/itunes_20100127.jpg" alt="iPad iTunes" width="415" height="410" /></a><p class="wp-caption-text">iPad </p></div>
<div id="attachment_3162" class="wp-caption aligncenter" style="width: 415px"><a href="http://www.bytechip.com/2010/01/apple-ipad/"><img class="size-full wp-image-3162   " title="ipad" src="http://www.bytechip.com/wp-content/uploads/2010/03/ipad.jpg" alt="iPad" width="405" height="559" /></a><p class="wp-caption-text">iPad</p></div></h2>
<h2>Features &amp; Specification of iPad: <a href="http://www.bytechip.com/2010/01/apple-ipad/">Click here</a>.</h2>
<p>Also Check out Sony Dash , Personal Internet Viewer -  one amongst the latest product of Sony, which starts at 199 USD, almost the price of an iPod Touch. <a href="http://www.bytechip.com/2010/02/sony-dash/">Click here for more details</a></p>
<p style="text-align: center;">
<p><div id="attachment_3163" class="wp-caption aligncenter" style="width: 422px"><a href="http://www.bytechip.com/2010/01/apple-ipad/"><img class="size-full wp-image-3163 " title="sony_dash personal Internet viewer" src="http://www.bytechip.com/wp-content/uploads/2010/03/sony_dash.jpg" alt="Sony Dash - Personal Internet Viewer" width="412" height="500" /></a><p class="wp-caption-text">Sony Dash - Personal Internet Viewer</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.bytechip.com/2010/03/ipad-launch-date-and-prices/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
	</channel>
</rss>
