<?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>Technobuz</title>
	<atom:link href="http://technobuz.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://technobuz.com</link>
	<description>For blog tips,Templates ,hacks ,programming fun and tweaks.</description>
	<lastBuildDate>Sat, 03 Jul 2010 12:51:34 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Spicing Up FeedBurner Form Looks for Better Results</title>
		<link>http://technobuz.com/2010/07/customizing-feedburner-form-looks/</link>
		<comments>http://technobuz.com/2010/07/customizing-feedburner-form-looks/#comments</comments>
		<pubDate>Sat, 03 Jul 2010 12:51:34 +0000</pubDate>
		<dc:creator>Shunmugha</dc:creator>
				<category><![CDATA[Blog Tips]]></category>
		<category><![CDATA[customizing FeedBurner]]></category>
		<category><![CDATA[customizing FeedBurner  form]]></category>
		<category><![CDATA[customizing FeedBurner subscription form]]></category>
		<category><![CDATA[How to Customize your Feedburner Email Subscription Form]]></category>

		<guid isPermaLink="false">http://technobuz.com/?p=2400</guid>
		<description><![CDATA[
			
				
			
		

Any blogger strives to write quality content there by driving good traffic to his/her site.Writing quality contents is bound to convert causal  readers in to regular readers making them subscribe to the site feed.
But its always said looks do matter it can bring even more better results.Rightly placed Subscription form and Beautifully designed Subscription [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Ftechnobuz.com%2F2010%2F07%2Fcustomizing-feedburner-form-looks%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Ftechnobuz.com%2F2010%2F07%2Fcustomizing-feedburner-form-looks%2F&amp;source=shamrocksu88&amp;style=normal" height="61" width="50" title="Spicing Up FeedBurner Form Looks for Better Results" alt=" Spicing Up FeedBurner Form Looks for Better Results" /><br />
			</a>
		</div>
<p><img class="alignright" src="http://img195.imageshack.us/img195/474/feedburner256x256.png" alt="feedburner form customization" width="256" height="256" title="Spicing Up FeedBurner Form Looks for Better Results" /></p>
<p>Any blogger strives to write quality content there by driving good traffic to his/her site.Writing quality contents is bound to convert causal  readers in to regular readers making them subscribe to the site feed.<br />
But its always said looks do matter it can bring even more better results.Rightly placed Subscription form and Beautifully designed Subscription form can impact a huge difference in results.In this post lets see how to spice up looks and gracefulness of your FeedBurner Email Subscription Forms.</p>
<h4><span style="color: #000000;"><strong>1.Background</strong></span></h4>
<p><span style="color: #3366ff;"><strong>Background Color</strong>:</span>To change background color of your Feed Burner all you need is to add this line in your Css.</p>
<pre class="brush: php;">
.formcolor{

background:#Color-code none repeat scroll 0 0;

}
</pre>
<p>And wrap your form code with div tag.</p>
<pre class="brush: xml;">
&lt;div class=&quot;formcolor&quot;&gt;Feedburner Form code&lt;/div&gt;
</pre>
<p><span style="color: #3366ff;"><strong>Background Image</strong>:</span>To change background image  of your Feed Burner all you need is to add this line in your Css.</p>
<pre class="brush: xml;">
.formbkg{

background-image: url(image url);

}
</pre>
<p>And wrap your form code with div tag.</p>
<pre class="brush: xml;">
&lt;div class=&quot;formbkg&quot;&gt;Feedburner Form code&lt;/div&gt;
</pre>
<p><strong><br />
</strong></p>
<h4><strong>2.Rounded Edges and Borders</strong></h4>
<p><strong> </strong></p>
<p>Round Edges add more grace to your form.Lets see how to do it.</p>
<p>Add the below code to your CSS</p>
<pre class="brush: xml;">
.rounded{
-moz-background-clip:border;
-moz-background-inline-policy:continuous;
-moz-background-origin:padding;
-moz-border-radius-bottomleft:8px;
-moz-border-radius-bottomright:8px;
-moz-border-radius-topleft:8px;
-moz-border-radius-topright:8px;
border:5px solid #000000;
margin:6px 0 20px;
padding:20px;
}
</pre>
<p>And wrap the div tag around Feed burner code.</p>
<h4><span style="color: #000000;"> </span></h4>
<p><span style="color: #000000;"><strong><br />
</strong></span></p>
<h4><strong>3.OnFocus</strong></h4>
<p><strong> </strong></p>
<p><strong><span style="color: #3366ff;">Emptying TextArea:</span></strong></p>
<p>Initially you can assign text to textarea which can be emptied once user click on the TextBox using the following code.</p>
<pre class="brush: xml;">
&lt;input name=&quot;email&quot; type=&quot;text&quot; &lt;strong&gt; onfocus=&quot;this.value=''&quot; &lt;/strong&gt; value=&quot;Enter your email id..&quot;/&gt;
</pre>
<p><span style="color: #3366ff;"><strong>Highlighting TextBox onFoucus:</strong></span></p>
<p>Text area can be Highlighted on Focus this the below code in CSS.</p>
<pre class="brush: xml;">
#highlight  textarea:focus, #sign input:focus {
border:2px ridge #990000;
}
</pre>
<p>And wrapping div tag around Form Code.</p>
<pre class="brush: xml;">&lt;div id=&quot;highlight&quot;&gt;Feedburner code&lt;/div&gt;</pre>
<p><strong><br />
</strong></p>
<h4><strong>4.Hover Effects</strong></h4>
<p><strong> </strong></p>
<p>You can change the color off the subscribe button by using the following code in CSS.</p>
<pre class="brush: xml;">
.button:hover {
-moz-background-clip:border;
-moz-background-inline-policy:continuous;
-moz-background-origin:padding;
background:#Color-Code none repeat scroll 0 0;
}
</pre>
<p>And <strong>wrap the button field </strong>with div tag as usual.</p>
<p><strong><br />
</strong></p>
<h4><strong>Hope the tutorial was useful.Start customizing you feedburner Form from now on.Share your thoughts .How useful was it to you?</strong></h4>
<p><strong> </strong></p>
<hr/>Copyright &copy; 2010 <strong><a href="http://technobuz.com">Technobuz</a></strong>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please contact legal@technobuz.com so we can take legal action immediately.<br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">Plugin</a> by <a href="http://www.taragana.com/">Taragana</a></span>

<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-center sexy-bookmarks-bg-love">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://delicious.com/post?url=http://technobuz.com/2010/07/customizing-feedburner-form-looks/&amp;title=Spicing+Up+FeedBurner+Form+Looks+for+Better+Results" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://technobuz.com/2010/07/customizing-feedburner-form-looks/&amp;title=Spicing+Up+FeedBurner+Form+Looks+for+Better+Results" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://technobuz.com/2010/07/customizing-feedburner-form-looks/&amp;title=Spicing+Up+FeedBurner+Form+Looks+for+Better+Results" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://technobuz.com/2010/07/customizing-feedburner-form-looks/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Spicing+Up+FeedBurner+Form+Looks+for+Better+Results+-+http://b2l.me/8hxsm+(via+@shamrocksu88)&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://technobuz.com/2010/07/customizing-feedburner-form-looks/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://technobuz.com/2010/07/customizing-feedburner-form-looks/&amp;title=Spicing+Up+FeedBurner+Form+Looks+for+Better+Results" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://technobuz.com/2010/07/customizing-feedburner-form-looks/&amp;title=Spicing+Up+FeedBurner+Form+Looks+for+Better+Results&amp;summary=%0D%0A%0D%0AAny%20blogger%20strives%20to%20write%20quality%20content%20there%20by%20driving%20good%20traffic%20to%20his%2Fher%20site.Writing%20quality%20contents%20is%20bound%20to%20convert%20causal%20%20readers%20in%20to%20regular%20readers%20making%20them%20subscribe%20to%20the%20site%20feed.%0D%0ABut%20its%20always%20said%20looks%20do%20matter%20it%20can%20bring%20even%20more%20better%20results.Rightly&amp;source=Technobuz" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="sexy-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://technobuz.com/2010/07/customizing-feedburner-form-looks/&amp;title=Spicing+Up+FeedBurner+Form+Looks+for+Better+Results" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="sexy-tipd">
			<a href="http://tipd.com/submit.php?url=http://technobuz.com/2010/07/customizing-feedburner-form-looks/" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="sexy-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=Spicing+Up+FeedBurner+Form+Looks+for+Better+Results&amp;du=http://technobuz.com/2010/07/customizing-feedburner-form-looks/&amp;cn=%0D%0A%0D%0AAny%20blogger%20strives%20to%20write%20quality%20content%20there%20by%20driving%20good%20traffic%20to%20his%2Fher%20site.Writing%20quality%20contents%20is%20bound%20to%20convert%20causal%20%20readers%20in%20to%20regular%20readers%20making%20them%20subscribe%20to%20the%20site%20feed.%0D%0ABut%20its%20always%20said%20looks%20do%20matter%20it%20can%20bring%20even%20more%20better%20results.Rightly" rel="nofollow" class="external" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
		<li class="sexy-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://technobuz.com/2010/07/customizing-feedburner-form-looks/&amp;n=Spicing+Up+FeedBurner+Form+Looks+for+Better+Results&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://technobuz.com/2010/07/customizing-feedburner-form-looks/&amp;title=Spicing+Up+FeedBurner+Form+Looks+for+Better+Results&amp;desc=%0D%0A%0D%0AAny%20blogger%20strives%20to%20write%20quality%20content%20there%20by%20driving%20good%20traffic%20to%20his%2Fher%20site.Writing%20quality%20contents%20is%20bound%20to%20convert%20causal%20%20readers%20in%20to%20regular%20readers%20making%20them%20subscribe%20to%20the%20site%20feed.%0D%0ABut%20its%20always%20said%20looks%20do%20matter%20it%20can%20bring%20even%20more%20better%20results.Rightly" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://technobuz.com/2010/07/customizing-feedburner-form-looks/&amp;title=Spicing+Up+FeedBurner+Form+Looks+for+Better+Results" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://technobuz.com/2010/07/customizing-feedburner-form-looks/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://technobuz.com/2010/07/customizing-feedburner-form-looks/&amp;bm_description=Spicing+Up+FeedBurner+Form+Looks+for+Better+Results&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://technobuz.com/2010/07/customizing-feedburner-form-looks/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How to Watch Streaming Online Videos on Java Powered Mobile Phones?</title>
		<link>http://technobuz.com/2010/05/java-mobile-browser-with-flash-player/</link>
		<comments>http://technobuz.com/2010/05/java-mobile-browser-with-flash-player/#comments</comments>
		<pubDate>Sun, 16 May 2010 13:50:18 +0000</pubDate>
		<dc:creator>Shunmugha</dc:creator>
				<category><![CDATA[How's]]></category>
		<category><![CDATA[Useful Links]]></category>
		<category><![CDATA[ee youtube videos on nokia mobile]]></category>
		<category><![CDATA[j2me mobile browser]]></category>
		<category><![CDATA[j2me mobile browser with flash]]></category>
		<category><![CDATA[j2me mobile browser with flash player]]></category>
		<category><![CDATA[j2me mobile browser with flash player support]]></category>
		<category><![CDATA[j2me mobile browser with flash support]]></category>
		<category><![CDATA[java mobile broswer with flash support]]></category>
		<category><![CDATA[java mobile browser with flash player]]></category>
		<category><![CDATA[Play youtube in java mobile]]></category>
		<category><![CDATA[see online videos on mobile]]></category>
		<category><![CDATA[see streaming videos on java mobile browser]]></category>
		<category><![CDATA[see youtube videos on java mobiles]]></category>

		<guid isPermaLink="false">http://technobuz.com/?p=2592</guid>
		<description><![CDATA[
			
				
			
		
Having low-end java powered mobile phone but want to see online video streaming websites like youtube,metacafe etc ., ?This post provides answer to your worries.
Most of the times the mobile browser which allows us to see online videos does not come in .jar format.In case of Nokia phones it comes in .sis format which is [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Ftechnobuz.com%2F2010%2F05%2Fjava-mobile-browser-with-flash-player%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Ftechnobuz.com%2F2010%2F05%2Fjava-mobile-browser-with-flash-player%2F&amp;source=shamrocksu88&amp;style=normal" height="61" width="50" title="How to Watch Streaming Online Videos on Java Powered Mobile Phones?" alt=" How to Watch Streaming Online Videos on Java Powered Mobile Phones?" /><br />
			</a>
		</div>
<p><img class="alignright" src="http://img33.imageshack.us/img33/5443/boltlogo.jpg" alt="bolt browser flash support" width="185" height="59" title="How to Watch Streaming Online Videos on Java Powered Mobile Phones?" />Having <strong>low-end java powered mobile phone</strong> but want to see<strong> online video streaming websites like youtube,metacafe</strong> etc ., ?This post provides answer to your worries.</p>
<p>Most of the times the mobile browser which allows us to see online videos does not come in .jar format.In case of Nokia phones it comes in .sis format which is not supported in most of the lower end models.In order to see online video ,browser needs to have <strong>flash support</strong>.Even i faced the same problem and finally ended up finding solution to this problem.</p>
<p>The answer is<a href="http://boltbrowser.com"> <strong>Bolt Browser</strong>(Java Mobile Browser with Flash Support) </a> Read on this article for <strong>in depth information and features about Bolt Browser</strong>.</p>
<p>It is one of the best browsers that supports flash even <strong>Opera Mini Browser  does not offer this feature! But this browser does it! </strong>Mostly importantly it comes in <strong>.JAR format  and Free of Cost </strong> <img src='http://technobuz.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' title="How to Watch Streaming Online Videos on Java Powered Mobile Phones?" /> </p>
<p><strong><br />
</strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong></p>
<h4>Some Features of Bolt Browser</h4>
<p></strong></p>
<p><strong>LIGHTNING FAST MOBILE BROWSING</strong></p>
<p>-Loads complete web pages in seconds<br />
-Patented navigation and display technologies get you where you&#8217;re going faster</p>
<p><strong>WATCH,CONNECT and SURF</strong><br />
-View streaming videos from sites like YouTube, MySpace and Google<br />
-Enjoy full desktop PC-style Facebook and social media functionality<br />
-BOLT Widgets beta allows streamlined access to web apps<br />
-Tweet directly from BOLT while you browse<br />
-Shop securely</p>
<p><strong>UNCOMPROMISED WEB EXPERIENCE</strong><br />
-Full desktop PC-style browsing on all types of mobile phones<br />
-Web content is never reformatted, repurposed, or removed<br />
-Browse any site with the best page rendering available</p>
<p><strong><br />
</strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong></p>
<h4>Key Striking Features Of Bolt Browser</h4>
<p></strong></p>
<p>-<strong>Full desktop PC-style browsing </strong>on all types of mobile phones<br />
-Provides <strong>flash support</strong> to see streaming videos from sites like YouTube, MySpace and Google<br />
-Supports <strong> Rss Feed</strong><br />
-<strong>Bookmark  and Download manager</strong><br />
-<strong>Grab URL of online videos in 3GP Format</strong>.(Any queries regarding this do post in comments)<br />
-<strong>Copy and Paste Text Option</strong>.</p>
<p>In addition to seeing online streaming videos in sites like youtube, myspace.You can even see<strong> Google Documents uploaded in Google Docs! Indirectly using it as Powerpoint viewer ,Ms Word viewer  <img src='http://technobuz.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' title="How to Watch Streaming Online Videos on Java Powered Mobile Phones?" /> </strong>Because doc viewer available for Java Powered Mobiles are very few ,So we can  use bolt browser for this purpose.</p>
<p><strong><br />
</strong></p>
<p><strong> </strong></p>
<p><strong> </strong><br />
<strong><br />
</strong></p>
<p><strong></p>
<h4>Setting up Bolt Browser to see Online Videos</h4>
<p></strong></p>
<p>Initially for the first time on seeing online video you will be run through a <strong>wizard </strong>in that select appropriate video mode.<strong>The third mode lets you grab online video and download it to your mobile! </strong><br />
<strong> </strong></p>
<p><strong></p>
<h4>Bolt Browser in action:</h4>
<p></strong></p>
<p>1.<strong>Youtube</strong></p>
<h4><img src="http://img245.imageshack.us/img245/6277/youtubejavabrowser.jpg" alt="see youtube in java mobile browser" width="216" height="444" title="How to Watch Streaming Online Videos on Java Powered Mobile Phones?" /><img class="alignright" src="http://img6.imageshack.us/img6/7193/javamobilebrowserwithfl.jpg" alt="see youtube in java mobile browser" width="216" height="444" title="How to Watch Streaming Online Videos on Java Powered Mobile Phones?" /></h4>
<p>2.<strong>Google Docs</strong><br />
<img src="http://img375.imageshack.us/img375/2106/boltbrowsergoogledoc.jpg" alt=" java mobile browser with flash" title="How to Watch Streaming Online Videos on Java Powered Mobile Phones?" /></p>
<p>I guess i have put forth  features of Bolt Browser in detail.It is a must have for all.In short Bolt Browser is a Little Dynamite <img src='http://technobuz.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' title="How to Watch Streaming Online Videos on Java Powered Mobile Phones?" /> </p>
<p><strong><br />
</strong></p>
<p><strong></p>
<h4>If you found this post useful , do retweet or stumble and spread it across.Cheers!</h4>
<p></strong></p>
<hr/>Copyright &copy; 2010 <strong><a href="http://technobuz.com">Technobuz</a></strong>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please contact legal@technobuz.com so we can take legal action immediately.<br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">Plugin</a> by <a href="http://www.taragana.com/">Taragana</a></span>

<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-center sexy-bookmarks-bg-love">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://delicious.com/post?url=http://technobuz.com/2010/05/java-mobile-browser-with-flash-player/&amp;title=How+to+Watch+Streaming+Online+Videos+on+Java+Powered+Mobile+Phones%3F" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://technobuz.com/2010/05/java-mobile-browser-with-flash-player/&amp;title=How+to+Watch+Streaming+Online+Videos+on+Java+Powered+Mobile+Phones%3F" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://technobuz.com/2010/05/java-mobile-browser-with-flash-player/&amp;title=How+to+Watch+Streaming+Online+Videos+on+Java+Powered+Mobile+Phones%3F" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://technobuz.com/2010/05/java-mobile-browser-with-flash-player/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=How+to+Watch+Streaming+Online+Videos+on+Java+Powered+Mobile+Phones%3F+-+http://b2l.me/uu2rb+(via+@shamrocksu88)&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://technobuz.com/2010/05/java-mobile-browser-with-flash-player/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://technobuz.com/2010/05/java-mobile-browser-with-flash-player/&amp;title=How+to+Watch+Streaming+Online+Videos+on+Java+Powered+Mobile+Phones%3F" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://technobuz.com/2010/05/java-mobile-browser-with-flash-player/&amp;title=How+to+Watch+Streaming+Online+Videos+on+Java+Powered+Mobile+Phones%3F&amp;summary=Having%20low-end%20java%20powered%20mobile%20phone%20but%20want%20to%20see%20online%20video%20streaming%20websites%20like%20youtube%2Cmetacafe%20etc%20.%2C%20%3FThis%20post%20provides%20answer%20to%20your%20worries.%0D%0A%0D%0AMost%20of%20the%20times%20the%20mobile%20browser%20which%20allows%20us%20to%20see%20online%20videos%20does%20not%20come%20in%20.jar%20format.In%20case%20of%20Nokia%20phones%20it%20comes&amp;source=Technobuz" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="sexy-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://technobuz.com/2010/05/java-mobile-browser-with-flash-player/&amp;title=How+to+Watch+Streaming+Online+Videos+on+Java+Powered+Mobile+Phones%3F" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="sexy-tipd">
			<a href="http://tipd.com/submit.php?url=http://technobuz.com/2010/05/java-mobile-browser-with-flash-player/" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="sexy-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=How+to+Watch+Streaming+Online+Videos+on+Java+Powered+Mobile+Phones%3F&amp;du=http://technobuz.com/2010/05/java-mobile-browser-with-flash-player/&amp;cn=Having%20low-end%20java%20powered%20mobile%20phone%20but%20want%20to%20see%20online%20video%20streaming%20websites%20like%20youtube%2Cmetacafe%20etc%20.%2C%20%3FThis%20post%20provides%20answer%20to%20your%20worries.%0D%0A%0D%0AMost%20of%20the%20times%20the%20mobile%20browser%20which%20allows%20us%20to%20see%20online%20videos%20does%20not%20come%20in%20.jar%20format.In%20case%20of%20Nokia%20phones%20it%20comes" rel="nofollow" class="external" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
		<li class="sexy-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://technobuz.com/2010/05/java-mobile-browser-with-flash-player/&amp;n=How+to+Watch+Streaming+Online+Videos+on+Java+Powered+Mobile+Phones%3F&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://technobuz.com/2010/05/java-mobile-browser-with-flash-player/&amp;title=How+to+Watch+Streaming+Online+Videos+on+Java+Powered+Mobile+Phones%3F&amp;desc=Having%20low-end%20java%20powered%20mobile%20phone%20but%20want%20to%20see%20online%20video%20streaming%20websites%20like%20youtube%2Cmetacafe%20etc%20.%2C%20%3FThis%20post%20provides%20answer%20to%20your%20worries.%0D%0A%0D%0AMost%20of%20the%20times%20the%20mobile%20browser%20which%20allows%20us%20to%20see%20online%20videos%20does%20not%20come%20in%20.jar%20format.In%20case%20of%20Nokia%20phones%20it%20comes" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://technobuz.com/2010/05/java-mobile-browser-with-flash-player/&amp;title=How+to+Watch+Streaming+Online+Videos+on+Java+Powered+Mobile+Phones%3F" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://technobuz.com/2010/05/java-mobile-browser-with-flash-player/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://technobuz.com/2010/05/java-mobile-browser-with-flash-player/&amp;bm_description=How+to+Watch+Streaming+Online+Videos+on+Java+Powered+Mobile+Phones%3F&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://technobuz.com/2010/05/java-mobile-browser-with-flash-player/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>How to Restore Any Missing Windows System32 Files like Calc,Ms paint etc.,</title>
		<link>http://technobuz.com/2010/04/how-to-replace-missing-windows-system32-files/</link>
		<comments>http://technobuz.com/2010/04/how-to-replace-missing-windows-system32-files/#comments</comments>
		<pubDate>Sat, 10 Apr 2010 16:29:14 +0000</pubDate>
		<dc:creator>Shunmugha</dc:creator>
				<category><![CDATA[How's]]></category>
		<category><![CDATA[T'tips]]></category>
		<category><![CDATA[How to Restore Any Missing Windows System32 Files]]></category>
		<category><![CDATA[Replace Missing Windows System32 Files]]></category>
		<category><![CDATA[Restore  Missing Windows System32 Files]]></category>
		<category><![CDATA[restore system 32 files]]></category>
		<category><![CDATA[Restore Windows System32 Files]]></category>

		<guid isPermaLink="false">http://technobuz.com/?p=2540</guid>
		<description><![CDATA[
			
				
			
		
Though many don&#8217;t like Windows OS ,it still remaining the world&#8217;s widely used OS especially Win XP .It is an undeniable fact!
For many Windows user the application provided by it becomes inevitable.Ones like calc ,mspaint are some of them.
Some times we might land up deleting them or uninstalling them.
Here is a simple fix to restore [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Ftechnobuz.com%2F2010%2F04%2Fhow-to-replace-missing-windows-system32-files%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Ftechnobuz.com%2F2010%2F04%2Fhow-to-replace-missing-windows-system32-files%2F&amp;source=shamrocksu88&amp;style=normal" height="61" width="50" title="How to Restore Any Missing Windows System32 Files like Calc,Ms paint etc.," alt=" How to Restore Any Missing Windows System32 Files like Calc,Ms paint etc.," /><br />
			</a>
		</div>
<p><img class="alignright" src="http://img682.imageshack.us/img682/2843/windowsrestoreicon.jpg" alt="restore system32 files" width="256" height="256" title="How to Restore Any Missing Windows System32 Files like Calc,Ms paint etc.," />Though many don&#8217;t like Windows OS ,it still remaining the world&#8217;s widely used OS especially Win XP .It is an undeniable fact!</p>
<p>For many Windows user the application provided by it becomes inevitable.Ones like calc ,mspaint are some of them.</p>
<p>Some times we might land up <strong>deleting</strong> them or <strong>uninstalling</strong> them.</p>
<p>Here is a simple fix to restore the deleted files.<strong>Importantly you need not have Windows Os backup to restore the files!</strong></p>
<p>All you need is to navigate to the following location:</p>
<div class="round-a-ok">
<div><strong>c :\WINDOWS\system32\dllcache</strong></div>
</div>
<p><a href="http://technobuz.com/wp-content/uploads/2010/04/dllcache-Windows-Xp.JPG"><img src="http://technobuz.com/wp-content/uploads/2010/04/dllcache-Windows-Xp.JPG" alt="dllcache Windows " width="523" height="335" title="How to Restore Any Missing Windows System32 Files like Calc,Ms paint etc.," /></a></p>
<p>Now search and find the deleted or uninstalled exe and then copy them back to System32 folder located @</p>
<div class="round-a-ok">
<div>c :\WINDOWS\system32\</div>
</div>
<p>Now the application will be back ,up and running. As usual you can run them using short cut command at <strong>Run window.</strong></p>
<p>This might be a simple solution but comes in pretty handy.Hope it was useful <img src='http://technobuz.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' title="How to Restore Any Missing Windows System32 Files like Calc,Ms paint etc.," /> </p>
<hr/>Copyright &copy; 2010 <strong><a href="http://technobuz.com">Technobuz</a></strong>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please contact legal@technobuz.com so we can take legal action immediately.<br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">Plugin</a> by <a href="http://www.taragana.com/">Taragana</a></span>

<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-center sexy-bookmarks-bg-love">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://delicious.com/post?url=http://technobuz.com/2010/04/how-to-replace-missing-windows-system32-files/&amp;title=How+to+Restore+Any+Missing+Windows+System32+Files+like+Calc%2CMs+paint+etc.%2C" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://technobuz.com/2010/04/how-to-replace-missing-windows-system32-files/&amp;title=How+to+Restore+Any+Missing+Windows+System32+Files+like+Calc%2CMs+paint+etc.%2C" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://technobuz.com/2010/04/how-to-replace-missing-windows-system32-files/&amp;title=How+to+Restore+Any+Missing+Windows+System32+Files+like+Calc%2CMs+paint+etc.%2C" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://technobuz.com/2010/04/how-to-replace-missing-windows-system32-files/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=How+to+Restore+Any+Missing+Windows+System32+Files+like+Calc%2CMs+paint+etc.%2C+-+http://b2l.me/uu2rc+(via+@shamrocksu88)&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://technobuz.com/2010/04/how-to-replace-missing-windows-system32-files/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://technobuz.com/2010/04/how-to-replace-missing-windows-system32-files/&amp;title=How+to+Restore+Any+Missing+Windows+System32+Files+like+Calc%2CMs+paint+etc.%2C" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://technobuz.com/2010/04/how-to-replace-missing-windows-system32-files/&amp;title=How+to+Restore+Any+Missing+Windows+System32+Files+like+Calc%2CMs+paint+etc.%2C&amp;summary=Though%20many%20don%27t%20like%20Windows%20OS%20%2Cit%20still%20remaining%20the%20world%27s%20widely%20used%20OS%20especially%20Win%20XP%20.It%20is%20an%20undeniable%20fact%21%0D%0A%0D%0AFor%20many%20Windows%20user%20the%20application%20provided%20by%20it%20becomes%20inevitable.Ones%20like%20calc%20%2Cmspaint%20are%20some%20of%20them.%0D%0A%0D%0ASome%20times%20we%20might%20land%20up%20deleting%20them%20or%20uninstall&amp;source=Technobuz" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="sexy-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://technobuz.com/2010/04/how-to-replace-missing-windows-system32-files/&amp;title=How+to+Restore+Any+Missing+Windows+System32+Files+like+Calc%2CMs+paint+etc.%2C" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="sexy-tipd">
			<a href="http://tipd.com/submit.php?url=http://technobuz.com/2010/04/how-to-replace-missing-windows-system32-files/" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="sexy-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=How+to+Restore+Any+Missing+Windows+System32+Files+like+Calc%2CMs+paint+etc.%2C&amp;du=http://technobuz.com/2010/04/how-to-replace-missing-windows-system32-files/&amp;cn=Though%20many%20don%27t%20like%20Windows%20OS%20%2Cit%20still%20remaining%20the%20world%27s%20widely%20used%20OS%20especially%20Win%20XP%20.It%20is%20an%20undeniable%20fact%21%0D%0A%0D%0AFor%20many%20Windows%20user%20the%20application%20provided%20by%20it%20becomes%20inevitable.Ones%20like%20calc%20%2Cmspaint%20are%20some%20of%20them.%0D%0A%0D%0ASome%20times%20we%20might%20land%20up%20deleting%20them%20or%20uninstall" rel="nofollow" class="external" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
		<li class="sexy-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://technobuz.com/2010/04/how-to-replace-missing-windows-system32-files/&amp;n=How+to+Restore+Any+Missing+Windows+System32+Files+like+Calc%2CMs+paint+etc.%2C&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://technobuz.com/2010/04/how-to-replace-missing-windows-system32-files/&amp;title=How+to+Restore+Any+Missing+Windows+System32+Files+like+Calc%2CMs+paint+etc.%2C&amp;desc=Though%20many%20don%27t%20like%20Windows%20OS%20%2Cit%20still%20remaining%20the%20world%27s%20widely%20used%20OS%20especially%20Win%20XP%20.It%20is%20an%20undeniable%20fact%21%0D%0A%0D%0AFor%20many%20Windows%20user%20the%20application%20provided%20by%20it%20becomes%20inevitable.Ones%20like%20calc%20%2Cmspaint%20are%20some%20of%20them.%0D%0A%0D%0ASome%20times%20we%20might%20land%20up%20deleting%20them%20or%20uninstall" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://technobuz.com/2010/04/how-to-replace-missing-windows-system32-files/&amp;title=How+to+Restore+Any+Missing+Windows+System32+Files+like+Calc%2CMs+paint+etc.%2C" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://technobuz.com/2010/04/how-to-replace-missing-windows-system32-files/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://technobuz.com/2010/04/how-to-replace-missing-windows-system32-files/&amp;bm_description=How+to+Restore+Any+Missing+Windows+System32+Files+like+Calc%2CMs+paint+etc.%2C&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://technobuz.com/2010/04/how-to-replace-missing-windows-system32-files/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>The Next Little Sachin Tendulkar or Don Bradman? &#124;Must Watch Video!</title>
		<link>http://technobuz.com/2010/03/best-kid-cricketer/</link>
		<comments>http://technobuz.com/2010/03/best-kid-cricketer/#comments</comments>
		<pubDate>Fri, 19 Mar 2010 08:18:13 +0000</pubDate>
		<dc:creator>Shunmugha</dc:creator>
				<category><![CDATA[Chill Out]]></category>
		<category><![CDATA[best kid cricketer]]></category>
		<category><![CDATA[best young cricketer]]></category>

		<guid isPermaLink="false">http://technobuz.com/?p=2532</guid>
		<description><![CDATA[
			
				
			
		
I came upon this video in one of my friends profile.Thought i can share with you people.I am sure it will keep you occupied for some time without moving away from your seats. This video is sure to make few Jaws drop   Look at this Four Year old kid with Amazing Range of [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Ftechnobuz.com%2F2010%2F03%2Fbest-kid-cricketer%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Ftechnobuz.com%2F2010%2F03%2Fbest-kid-cricketer%2F&amp;source=shamrocksu88&amp;style=normal" height="61" width="50" title="The Next Little Sachin Tendulkar or Don Bradman? |Must Watch Video!" alt=" The Next Little Sachin Tendulkar or Don Bradman? |Must Watch Video!" /><br />
			</a>
		</div>
<p>I came upon this video in one of my friends profile.Thought i can share with you people.I am sure it will keep you occupied for some time without moving away from your seats. This video is sure to make few Jaws drop <img src='http://technobuz.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' title="The Next Little Sachin Tendulkar or Don Bradman? |Must Watch Video!" />  <strong>Look at this Four Year old kid with Amazing Range of Shots</strong>.The video speaks for itself have a look !</p>
<h4>Do share your views via Comment!</h4>
<p><object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/IFIV0T6lycQ&#038;hl=en_US&#038;fs=1&#038;color1=0x3a3a3a&#038;color2=0x999999"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/IFIV0T6lycQ&#038;hl=en_US&#038;fs=1&#038;color1=0x3a3a3a&#038;color2=0x999999" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object></p>
<hr/>Copyright &copy; 2010 <strong><a href="http://technobuz.com">Technobuz</a></strong>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please contact legal@technobuz.com so we can take legal action immediately.<br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">Plugin</a> by <a href="http://www.taragana.com/">Taragana</a></span>

<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-center sexy-bookmarks-bg-love">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://delicious.com/post?url=http://technobuz.com/2010/03/best-kid-cricketer/&amp;title=The+Next+Little+Sachin+Tendulkar+or+Don+Bradman%3F+%7CMust+Watch+Video%21" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://technobuz.com/2010/03/best-kid-cricketer/&amp;title=The+Next+Little+Sachin+Tendulkar+or+Don+Bradman%3F+%7CMust+Watch+Video%21" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://technobuz.com/2010/03/best-kid-cricketer/&amp;title=The+Next+Little+Sachin+Tendulkar+or+Don+Bradman%3F+%7CMust+Watch+Video%21" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://technobuz.com/2010/03/best-kid-cricketer/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=The+Next+Little+Sachin+Tendulkar+or+Don+Bradman%3F+%7CMust+Watch+Video%21+-+http://b2l.me/uu2rd+(via+@shamrocksu88)&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://technobuz.com/2010/03/best-kid-cricketer/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://technobuz.com/2010/03/best-kid-cricketer/&amp;title=The+Next+Little+Sachin+Tendulkar+or+Don+Bradman%3F+%7CMust+Watch+Video%21" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://technobuz.com/2010/03/best-kid-cricketer/&amp;title=The+Next+Little+Sachin+Tendulkar+or+Don+Bradman%3F+%7CMust+Watch+Video%21&amp;summary=I%20came%20upon%20this%20video%20in%20one%20of%20my%20friends%20profile.Thought%20i%20can%20share%20with%20you%20people.I%20am%20sure%20it%20will%20keep%20you%20occupied%20for%20some%20time%20without%20moving%20away%20from%20your%20seats.%20This%20video%20is%20sure%20to%20make%20few%20Jaws%20drop%20%3A%29%20Look%20at%20this%20Four%20Year%20old%20kid%20with%20Amazing%20Range%20of%20Shots.The%20video%20speaks%20for%20i&amp;source=Technobuz" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="sexy-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://technobuz.com/2010/03/best-kid-cricketer/&amp;title=The+Next+Little+Sachin+Tendulkar+or+Don+Bradman%3F+%7CMust+Watch+Video%21" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="sexy-tipd">
			<a href="http://tipd.com/submit.php?url=http://technobuz.com/2010/03/best-kid-cricketer/" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="sexy-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=The+Next+Little+Sachin+Tendulkar+or+Don+Bradman%3F+%7CMust+Watch+Video%21&amp;du=http://technobuz.com/2010/03/best-kid-cricketer/&amp;cn=I%20came%20upon%20this%20video%20in%20one%20of%20my%20friends%20profile.Thought%20i%20can%20share%20with%20you%20people.I%20am%20sure%20it%20will%20keep%20you%20occupied%20for%20some%20time%20without%20moving%20away%20from%20your%20seats.%20This%20video%20is%20sure%20to%20make%20few%20Jaws%20drop%20%3A%29%20Look%20at%20this%20Four%20Year%20old%20kid%20with%20Amazing%20Range%20of%20Shots.The%20video%20speaks%20for%20i" rel="nofollow" class="external" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
		<li class="sexy-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://technobuz.com/2010/03/best-kid-cricketer/&amp;n=The+Next+Little+Sachin+Tendulkar+or+Don+Bradman%3F+%7CMust+Watch+Video%21&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://technobuz.com/2010/03/best-kid-cricketer/&amp;title=The+Next+Little+Sachin+Tendulkar+or+Don+Bradman%3F+%7CMust+Watch+Video%21&amp;desc=I%20came%20upon%20this%20video%20in%20one%20of%20my%20friends%20profile.Thought%20i%20can%20share%20with%20you%20people.I%20am%20sure%20it%20will%20keep%20you%20occupied%20for%20some%20time%20without%20moving%20away%20from%20your%20seats.%20This%20video%20is%20sure%20to%20make%20few%20Jaws%20drop%20%3A%29%20Look%20at%20this%20Four%20Year%20old%20kid%20with%20Amazing%20Range%20of%20Shots.The%20video%20speaks%20for%20i" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://technobuz.com/2010/03/best-kid-cricketer/&amp;title=The+Next+Little+Sachin+Tendulkar+or+Don+Bradman%3F+%7CMust+Watch+Video%21" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://technobuz.com/2010/03/best-kid-cricketer/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://technobuz.com/2010/03/best-kid-cricketer/&amp;bm_description=The+Next+Little+Sachin+Tendulkar+or+Don+Bradman%3F+%7CMust+Watch+Video%21&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://technobuz.com/2010/03/best-kid-cricketer/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Decorate Your Friends Desktop With Falling Snow This Christmas And Impress Them</title>
		<link>http://technobuz.com/2009/12/decorate-desktop-with-falling-snow/</link>
		<comments>http://technobuz.com/2009/12/decorate-desktop-with-falling-snow/#comments</comments>
		<pubDate>Fri, 25 Dec 2009 09:02:07 +0000</pubDate>
		<dc:creator>Shunmugha</dc:creator>
				<category><![CDATA[Chill Out]]></category>

		<guid isPermaLink="false">http://technobuz.com/?p=2506</guid>
		<description><![CDATA[
			
				
			
		
After a long break i am writing this post on this special occasion.Feel Happy to share my views with you people again. In first place wishing all a Happy Christmas and a prosperous new year.
In this post let us see how to amaze your friends on this special occasion and make them even happier with [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Ftechnobuz.com%2F2009%2F12%2Fdecorate-desktop-with-falling-snow%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Ftechnobuz.com%2F2009%2F12%2Fdecorate-desktop-with-falling-snow%2F&amp;source=shamrocksu88&amp;style=normal" height="61" width="50" title="Decorate Your Friends Desktop With Falling Snow This Christmas And Impress Them" alt=" Decorate Your Friends Desktop With Falling Snow This Christmas And Impress Them" /><br />
			</a>
		</div>
<p><img class="alignright" src="http://img406.imageshack.us/img406/4739/merrychristmasbybloodof.jpg" alt="Christmas Tree" width="240" height="320" title="Decorate Your Friends Desktop With Falling Snow This Christmas And Impress Them" />After a long break i am writing this post on this special occasion.Feel Happy to share my views with you people again. In first place wishing all a <strong><span style="color: #0000ff;">Happy Christmas</span> </strong>and <span style="color: #0000ff;"><strong>a prosperous new year</strong></span>.</p>
<p>In this post let us see how to amaze your friends on this special occasion and make them even happier with this simple trick which will decorate your friends desktop will beautiful falling snow flakes.Sure its gonna please many of your friends. It involves a simple registry tweak and a tiny software.</p>
<p>Lets see the steps required to do this.</p>
<div id="message" class="updated fade below-h2" style="background-color: #fffbcc;"><strong>How to decorate desktop with falling snow ?</strong></div>
<p>1. Download the Software<a rel="nofollow" href="http://www.ziddu.com/download/7884067/DesktopSnow.zip.html"> Desktop Snow </a>(A product by Itsamples.com)</p>
<p>2.In absence of your friend ,Unzip and cut and paste the file <strong>snow.exe </strong> in a secret place out your friends visual.For example @ <strong>C:\Program Files</strong></p>
<p>3.Now open <strong>Run</strong> (Win + R) and type <strong>regedit</strong></p>
<p>4.Navigate to <strong>HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run</strong>.</p>
<p>5.<strong>Right Click</strong> the<strong> Default Key</strong> on the right and click <strong>Modify</strong> and enter the location of the <strong>snow.exe</strong> file in our case its <strong>C:\Program Files\snow.exe</strong> and click <strong>ok</strong>.<img src="http://img138.imageshack.us/img138/8678/runregistrytweak.jpg" alt="run registry" title="Decorate Your Friends Desktop With Falling Snow This Christmas And Impress Them" /></p>
<p>6.Click on <strong>F5</strong>.And close the <strong>Registry Editor</strong>. And Turn off the System.<br />
<strong></strong></p>
<p><strong>The next time your friends starts the system they will find Beautiful Snow Flakes falling gracefully on their desktop!</strong><br />
<img src="http://img268.imageshack.us/img268/6890/fallingsnowdesktop.jpg" alt="desktop snow" width="388" height="413" title="Decorate Your Friends Desktop With Falling Snow This Christmas And Impress Them" /><br />
<strong>Note</strong>:To stop it from functioning all your need is to right -click and delete the key you created.</p>
<h4><strong>Again Wishing all a <span style="color: #0000ff;"><blink>Happy Christmas</blink> </span>and a <span style="color: #0000ff;"><blink>Prosperous New year!</blink></span></strong>Have a blast <img src='http://technobuz.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' title="Decorate Your Friends Desktop With Falling Snow This Christmas And Impress Them" /> </h4>
<hr/>Copyright &copy; 2010 <strong><a href="http://technobuz.com">Technobuz</a></strong>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please contact legal@technobuz.com so we can take legal action immediately.<br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">Plugin</a> by <a href="http://www.taragana.com/">Taragana</a></span>

<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-center sexy-bookmarks-bg-love">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://delicious.com/post?url=http://technobuz.com/2009/12/decorate-desktop-with-falling-snow/&amp;title=Decorate+Your+Friends+Desktop+With+Falling+Snow+This+Christmas+And+Impress+Them" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://technobuz.com/2009/12/decorate-desktop-with-falling-snow/&amp;title=Decorate+Your+Friends+Desktop+With+Falling+Snow+This+Christmas+And+Impress+Them" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://technobuz.com/2009/12/decorate-desktop-with-falling-snow/&amp;title=Decorate+Your+Friends+Desktop+With+Falling+Snow+This+Christmas+And+Impress+Them" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://technobuz.com/2009/12/decorate-desktop-with-falling-snow/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Decorate+Your+Friends+Desktop+With+Falling+Snow+This+Christmas+And+Impress+Them+-+http://b2l.me/uu2re+(via+@shamrocksu88)&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://technobuz.com/2009/12/decorate-desktop-with-falling-snow/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://technobuz.com/2009/12/decorate-desktop-with-falling-snow/&amp;title=Decorate+Your+Friends+Desktop+With+Falling+Snow+This+Christmas+And+Impress+Them" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://technobuz.com/2009/12/decorate-desktop-with-falling-snow/&amp;title=Decorate+Your+Friends+Desktop+With+Falling+Snow+This+Christmas+And+Impress+Them&amp;summary=After%20a%20long%20break%20i%20am%20writing%20this%20post%20on%20this%20special%20occasion.Feel%20Happy%20to%20share%20my%20views%20with%20you%20people%20again.%20In%20first%20place%20wishing%20all%20a%20Happy%20Christmas%20and%20a%20prosperous%20new%20year.%0D%0A%0D%0AIn%20this%20post%20let%20us%20see%20how%20to%20amaze%20your%20friends%20on%20this%20special%20occasion%20and%20make%20them%20even%20happier%20with&amp;source=Technobuz" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="sexy-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://technobuz.com/2009/12/decorate-desktop-with-falling-snow/&amp;title=Decorate+Your+Friends+Desktop+With+Falling+Snow+This+Christmas+And+Impress+Them" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="sexy-tipd">
			<a href="http://tipd.com/submit.php?url=http://technobuz.com/2009/12/decorate-desktop-with-falling-snow/" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="sexy-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=Decorate+Your+Friends+Desktop+With+Falling+Snow+This+Christmas+And+Impress+Them&amp;du=http://technobuz.com/2009/12/decorate-desktop-with-falling-snow/&amp;cn=After%20a%20long%20break%20i%20am%20writing%20this%20post%20on%20this%20special%20occasion.Feel%20Happy%20to%20share%20my%20views%20with%20you%20people%20again.%20In%20first%20place%20wishing%20all%20a%20Happy%20Christmas%20and%20a%20prosperous%20new%20year.%0D%0A%0D%0AIn%20this%20post%20let%20us%20see%20how%20to%20amaze%20your%20friends%20on%20this%20special%20occasion%20and%20make%20them%20even%20happier%20with" rel="nofollow" class="external" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
		<li class="sexy-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://technobuz.com/2009/12/decorate-desktop-with-falling-snow/&amp;n=Decorate+Your+Friends+Desktop+With+Falling+Snow+This+Christmas+And+Impress+Them&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://technobuz.com/2009/12/decorate-desktop-with-falling-snow/&amp;title=Decorate+Your+Friends+Desktop+With+Falling+Snow+This+Christmas+And+Impress+Them&amp;desc=After%20a%20long%20break%20i%20am%20writing%20this%20post%20on%20this%20special%20occasion.Feel%20Happy%20to%20share%20my%20views%20with%20you%20people%20again.%20In%20first%20place%20wishing%20all%20a%20Happy%20Christmas%20and%20a%20prosperous%20new%20year.%0D%0A%0D%0AIn%20this%20post%20let%20us%20see%20how%20to%20amaze%20your%20friends%20on%20this%20special%20occasion%20and%20make%20them%20even%20happier%20with" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://technobuz.com/2009/12/decorate-desktop-with-falling-snow/&amp;title=Decorate+Your+Friends+Desktop+With+Falling+Snow+This+Christmas+And+Impress+Them" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://technobuz.com/2009/12/decorate-desktop-with-falling-snow/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://technobuz.com/2009/12/decorate-desktop-with-falling-snow/&amp;bm_description=Decorate+Your+Friends+Desktop+With+Falling+Snow+This+Christmas+And+Impress+Them&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://technobuz.com/2009/12/decorate-desktop-with-falling-snow/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>#2-How To Make Free International Phone Calls and Local Calls Within India</title>
		<link>http://technobuz.com/2009/11/free-international-calls-and-local-calls-in-india/</link>
		<comments>http://technobuz.com/2009/11/free-international-calls-and-local-calls-in-india/#comments</comments>
		<pubDate>Fri, 27 Nov 2009 09:14:52 +0000</pubDate>
		<dc:creator>Shunmugha</dc:creator>
				<category><![CDATA[How's]]></category>
		<category><![CDATA[Useful Links]]></category>
		<category><![CDATA[free calls from pc to mobile]]></category>
		<category><![CDATA[free calls in india]]></category>
		<category><![CDATA[free calls in india from internet]]></category>
		<category><![CDATA[free calls in india from pc]]></category>
		<category><![CDATA[free calls in india from pc to mobile]]></category>
		<category><![CDATA[free calls in india through internet]]></category>
		<category><![CDATA[free calls online]]></category>
		<category><![CDATA[free calls to india]]></category>
		<category><![CDATA[free calls to india from pc]]></category>
		<category><![CDATA[free calls to india from us]]></category>
		<category><![CDATA[free calls to usa from india]]></category>
		<category><![CDATA[free calls to usa from pc]]></category>
		<category><![CDATA[free calls within india]]></category>
		<category><![CDATA[free calls within us]]></category>
		<category><![CDATA[free calls within usa]]></category>
		<category><![CDATA[free international calls]]></category>
		<category><![CDATA[free local calls ind india]]></category>
		<category><![CDATA[free local calls within india]]></category>
		<category><![CDATA[free mobile international calls]]></category>
		<category><![CDATA[free mobile to mobile international calls]]></category>
		<category><![CDATA[free pc to phone calls to india]]></category>
		<category><![CDATA[free phone calls from pc to mobile]]></category>
		<category><![CDATA[how to make free calls from your computer]]></category>
		<category><![CDATA[how to make free calls in india]]></category>
		<category><![CDATA[how to make free calls within usa]]></category>
		<category><![CDATA[how to make free calls within usa fromk PC]]></category>
		<category><![CDATA[how to make free mobile calls]]></category>
		<category><![CDATA[how to make free mobile calls from internet]]></category>
		<category><![CDATA[make free calls in india through internet]]></category>
		<category><![CDATA[make free mobile calls from pc]]></category>
		<category><![CDATA[make free phone calls in india]]></category>
		<category><![CDATA[make free phone calls in USA]]></category>

		<guid isPermaLink="false">http://technobuz.com/?p=2460</guid>
		<description><![CDATA[
			
				
			
		
As i said in one of my old posts Free Calls Within India i would be writing series of posts telling how to make Free Calls within India.This is one such post in that series.But additionally you can also make Free International Calls too!This is one of the working methods to make free International Calls [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Ftechnobuz.com%2F2009%2F11%2Ffree-international-calls-and-local-calls-in-india%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Ftechnobuz.com%2F2009%2F11%2Ffree-international-calls-and-local-calls-in-india%2F&amp;source=shamrocksu88&amp;style=normal" height="61" width="50" title="#2 How To Make Free International Phone Calls and Local Calls Within India" alt=" #2 How To Make Free International Phone Calls and Local Calls Within India" /><br />
			</a>
		</div>
<p><img class="alignright" src="http://img515.imageshack.us/img515/7384/freecallsinindial.jpg" alt="free calls within india" width="320" height="213" title="#2 How To Make Free International Phone Calls and Local Calls Within India" />As i said in one of my old posts <a href="http://technobuz.com/2009/06/free-calls-in-india/"><strong>Free Calls Within India</strong></a> i would be writing series of posts telling how to make <strong>Free Calls within India</strong>.This is one such post in that series.But additionally you can also make <strong>Free International Calls</strong> too!This is one of the working methods to make <strong>free International Calls and also free calls anywhere inside India</strong> it can help you cut down your mobile bills.</p>
<p>Just follow the below steps.<br />
<strong>Note:</strong>You would need to verify the identity of your mobile so have it near by you.</p>
<div id="message" class="updated fade below-h2" style="background-color: #fffbcc;"><strong><br />
</strong></p>
<h4><strong>How to make Free International calls and Free local Calls Within India?</strong></h4>
<p><strong> </strong></p>
</div>
<p>1.Register a account @ <a href="http://www.ibibo.com/">Ibibo</a>.Provide valid Email Id and Mobile Number.</p>
<p>2.Go to your <strong>Dashboard</strong>.</p>
<p>3.Click on <strong>Free Sms Link</strong> at the <strong>Top of your Screen</strong>.</p>
<p><img src="http://img264.imageshack.us/img264/1552/freecallinindia.jpg" alt="Free International Calls" title="#2 How To Make Free International Phone Calls and Local Calls Within India" /></p>
<p>4.Now click  <strong>Call For Free</strong> link.</p>
<p><img src="http://img402.imageshack.us/img402/9672/freecallwithinindia.jpg" alt="free international calls and free call in India" title="#2 How To Make Free International Phone Calls and Local Calls Within India" /></p>
<p>5.Select your <strong>country</strong> and enter your <strong>Mobile Number</strong> and <strong>Verify</strong> it.</p>
<p><img src="http://img42.imageshack.us/img42/6858/callanywhereinworldforf.jpg" alt="free international calls from pc" width="556" height="231" title="#2 How To Make Free International Phone Calls and Local Calls Within India" /></p>
<p>6.Now you will be given<strong> initial balance</strong> (In case of India it&#8217;s 3 rupees ).For each friend you<strong> invite </strong> little amount(3 rupees) will be <strong>added to your account</strong>.So the <strong>more you invite</strong> the <strong>more calls </strong>you can make.<br />
<img src="http://img341.imageshack.us/img341/9937/freecallsinindia.jpg" alt="free international calls" title="#2 How To Make Free International Phone Calls and Local Calls Within India" /></p>
<p>7.<strong>In order to call a person they should be your friends</strong>. So invite the person whom you want to call to register an account @ <strong><a href="http://www.ibibo.com/">IBIBO</a></strong></p>
<p><img src="http://img28.imageshack.us/img28/5015/freelocalcallsindia.jpg" alt="free calls to india" width="545" height="302" title="#2 How To Make Free International Phone Calls and Local Calls Within India" /></p>
<p>Hope it helped you. So start <strong>Enjoying Free Calls</strong>!</p>
<p><strong><em><br />
<h4>How useful was it to you?Did it work for you ?</h4>
<p></em></strong></p>
<h4><span style="color: rgb(0, 0, 255);">For regular updates on Tricks like this,do subscribe to our site</span><br />
<a href="http://feedburner.google.com/fb/a/mailverify?uri=technobuz/shunmugha/new">Email Newsletter</a></h4>
<hr/>Copyright &copy; 2010 <strong><a href="http://technobuz.com">Technobuz</a></strong>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please contact legal@technobuz.com so we can take legal action immediately.<br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">Plugin</a> by <a href="http://www.taragana.com/">Taragana</a></span>

<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-center sexy-bookmarks-bg-love">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://delicious.com/post?url=http://technobuz.com/2009/11/free-international-calls-and-local-calls-in-india/&amp;title=%232-How+To+Make+Free+International+Phone+Calls+and+Local+Calls+Within+India" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://technobuz.com/2009/11/free-international-calls-and-local-calls-in-india/&amp;title=%232-How+To+Make+Free+International+Phone+Calls+and+Local+Calls+Within+India" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://technobuz.com/2009/11/free-international-calls-and-local-calls-in-india/&amp;title=%232-How+To+Make+Free+International+Phone+Calls+and+Local+Calls+Within+India" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://technobuz.com/2009/11/free-international-calls-and-local-calls-in-india/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=%232-How+To+Make+Free+International+Phone+Calls+and+Local+Calls+Within+India+-+http://b2l.me/uu2rg+(via+@shamrocksu88)&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://technobuz.com/2009/11/free-international-calls-and-local-calls-in-india/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://technobuz.com/2009/11/free-international-calls-and-local-calls-in-india/&amp;title=%232-How+To+Make+Free+International+Phone+Calls+and+Local+Calls+Within+India" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://technobuz.com/2009/11/free-international-calls-and-local-calls-in-india/&amp;title=%232-How+To+Make+Free+International+Phone+Calls+and+Local+Calls+Within+India&amp;summary=As%20i%20said%20in%20one%20of%20my%20old%20posts%20Free%20Calls%20Within%20India%20i%20would%20be%20writing%20series%20of%20posts%20telling%20how%20to%20make%20Free%20Calls%20within%20India.This%20is%20one%20such%20post%20in%20that%20series.But%20additionally%20you%20can%20also%20make%20Free%20International%20Calls%20too%21This%20is%20one%20of%20the%20working%20methods%20to%20make%20free%20International%20C&amp;source=Technobuz" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="sexy-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://technobuz.com/2009/11/free-international-calls-and-local-calls-in-india/&amp;title=%232-How+To+Make+Free+International+Phone+Calls+and+Local+Calls+Within+India" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="sexy-tipd">
			<a href="http://tipd.com/submit.php?url=http://technobuz.com/2009/11/free-international-calls-and-local-calls-in-india/" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="sexy-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=%232-How+To+Make+Free+International+Phone+Calls+and+Local+Calls+Within+India&amp;du=http://technobuz.com/2009/11/free-international-calls-and-local-calls-in-india/&amp;cn=As%20i%20said%20in%20one%20of%20my%20old%20posts%20Free%20Calls%20Within%20India%20i%20would%20be%20writing%20series%20of%20posts%20telling%20how%20to%20make%20Free%20Calls%20within%20India.This%20is%20one%20such%20post%20in%20that%20series.But%20additionally%20you%20can%20also%20make%20Free%20International%20Calls%20too%21This%20is%20one%20of%20the%20working%20methods%20to%20make%20free%20International%20C" rel="nofollow" class="external" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
		<li class="sexy-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://technobuz.com/2009/11/free-international-calls-and-local-calls-in-india/&amp;n=%232-How+To+Make+Free+International+Phone+Calls+and+Local+Calls+Within+India&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://technobuz.com/2009/11/free-international-calls-and-local-calls-in-india/&amp;title=%232-How+To+Make+Free+International+Phone+Calls+and+Local+Calls+Within+India&amp;desc=As%20i%20said%20in%20one%20of%20my%20old%20posts%20Free%20Calls%20Within%20India%20i%20would%20be%20writing%20series%20of%20posts%20telling%20how%20to%20make%20Free%20Calls%20within%20India.This%20is%20one%20such%20post%20in%20that%20series.But%20additionally%20you%20can%20also%20make%20Free%20International%20Calls%20too%21This%20is%20one%20of%20the%20working%20methods%20to%20make%20free%20International%20C" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://technobuz.com/2009/11/free-international-calls-and-local-calls-in-india/&amp;title=%232-How+To+Make+Free+International+Phone+Calls+and+Local+Calls+Within+India" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://technobuz.com/2009/11/free-international-calls-and-local-calls-in-india/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://technobuz.com/2009/11/free-international-calls-and-local-calls-in-india/&amp;bm_description=%232-How+To+Make+Free+International+Phone+Calls+and+Local+Calls+Within+India&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://technobuz.com/2009/11/free-international-calls-and-local-calls-in-india/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>How To Resolve Memory Card Is In Use By Another Application Problem</title>
		<link>http://technobuz.com/2009/11/memory-card-is-in-use-by-another-application/</link>
		<comments>http://technobuz.com/2009/11/memory-card-is-in-use-by-another-application/#comments</comments>
		<pubDate>Sat, 21 Nov 2009 14:00:42 +0000</pubDate>
		<dc:creator>Shunmugha</dc:creator>
				<category><![CDATA[How's]]></category>
		<category><![CDATA[T'tips]]></category>
		<category><![CDATA[Memory Card Is In Use By Another Application]]></category>
		<category><![CDATA[memory card is in use by another application please wait]]></category>
		<category><![CDATA[Memory Card Is In Use By Another Application Problem]]></category>
		<category><![CDATA[memory card is in use please wait]]></category>

		<guid isPermaLink="false">http://technobuz.com/?p=2437</guid>
		<description><![CDATA[
			
				
			
		
Mobile phone have become integral part of our day today life.So does the memory card for mobile phones.Mobile Phones internal memory cannot hold large amount of data thats were memory cards becomes inevitable.Most often we transfer our data to our PC and free up occupied space in memory card.
Are you facing this problem where your [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Ftechnobuz.com%2F2009%2F11%2Fmemory-card-is-in-use-by-another-application%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Ftechnobuz.com%2F2009%2F11%2Fmemory-card-is-in-use-by-another-application%2F&amp;source=shamrocksu88&amp;style=normal" height="61" width="50" title="How To Resolve Memory Card Is In Use By Another Application Problem" alt=" How To Resolve Memory Card Is In Use By Another Application Problem" /><br />
			</a>
		</div>
<p><img class="alignright" src="http://img89.imageshack.us/img89/4541/memorycardf.jpg" alt="memory card" width="240" height="180" title="How To Resolve Memory Card Is In Use By Another Application Problem" />Mobile phone have become integral part of our day today life.So does the memory card for mobile phones.Mobile Phones internal memory cannot hold large amount of data thats were memory cards becomes inevitable.Most often we transfer our data to our PC and free up occupied space in memory card.</p>
<p>Are you facing this problem where your mobile phone flashes &#8220;<strong>Memory Card Is In Use By Another Application </strong>&#8221; whenever you connect your mobile to PC in <strong>Data Storage mode</strong> via <strong>USB port</strong>? Lets see how to resolve this problem..</p>
<h4>What is the reason behind this &#8220;<strong>Memory Card Is In Use By Another Application</strong>&#8221; problem?</h4>
<div class="round-a-ok">
<div>The simple reason behind this is you are using a <strong>theme that is residing in your memory card as the current theme.</strong></div>
</div>
<p><strong><br />
</strong></p>
<h4><strong>So how to resolve it?</strong></h4>
<p><strong> </strong></p>
<div class="round-a-ok">
<div>All you need is to <strong>move the current theme</strong> you are using to <strong>mobile memory</strong> preferably to themes folder and start using it from there.</div>
</div>
<p>This should resolve your problem!</p>
<p><strong><br />
</strong></p>
<h4><strong><em>Was it useful?Did this solve your problem?</em></strong></h4>
<p><strong> </strong></p>
<p><span style="color: #0000ff;">For regular updates on topics like this do subscribe to our site</span> <a href="http://feedburner.google.com/fb/a/mailverify?uri=technobuz/shunmugha/new">Email Newsletter</a>.</p>
<p><small>[via Nokia forums]</small></p>
<hr/>Copyright &copy; 2010 <strong><a href="http://technobuz.com">Technobuz</a></strong>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please contact legal@technobuz.com so we can take legal action immediately.<br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">Plugin</a> by <a href="http://www.taragana.com/">Taragana</a></span>

<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-center sexy-bookmarks-bg-love">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://delicious.com/post?url=http://technobuz.com/2009/11/memory-card-is-in-use-by-another-application/&amp;title=How+To+Resolve+Memory+Card+Is+In+Use+By+Another+Application+Problem" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://technobuz.com/2009/11/memory-card-is-in-use-by-another-application/&amp;title=How+To+Resolve+Memory+Card+Is+In+Use+By+Another+Application+Problem" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://technobuz.com/2009/11/memory-card-is-in-use-by-another-application/&amp;title=How+To+Resolve+Memory+Card+Is+In+Use+By+Another+Application+Problem" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://technobuz.com/2009/11/memory-card-is-in-use-by-another-application/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=How+To+Resolve+Memory+Card+Is+In+Use+By+Another+Application+Problem+-+http://b2l.me/uu2rk+(via+@shamrocksu88)&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://technobuz.com/2009/11/memory-card-is-in-use-by-another-application/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://technobuz.com/2009/11/memory-card-is-in-use-by-another-application/&amp;title=How+To+Resolve+Memory+Card+Is+In+Use+By+Another+Application+Problem" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://technobuz.com/2009/11/memory-card-is-in-use-by-another-application/&amp;title=How+To+Resolve+Memory+Card+Is+In+Use+By+Another+Application+Problem&amp;summary=Mobile%20phone%20have%20become%20integral%20part%20of%20our%20day%20today%20life.So%20does%20the%20memory%20card%20for%20mobile%20phones.Mobile%20Phones%20internal%20memory%20cannot%20hold%20large%20amount%20of%20data%20thats%20were%20memory%20cards%20becomes%20inevitable.Most%20often%20we%20transfer%20our%20data%20to%20our%20PC%20and%20free%20up%20occupied%20space%20in%20memory%20card.%0D%0A%0D%0AAre&amp;source=Technobuz" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="sexy-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://technobuz.com/2009/11/memory-card-is-in-use-by-another-application/&amp;title=How+To+Resolve+Memory+Card+Is+In+Use+By+Another+Application+Problem" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="sexy-tipd">
			<a href="http://tipd.com/submit.php?url=http://technobuz.com/2009/11/memory-card-is-in-use-by-another-application/" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="sexy-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=How+To+Resolve+Memory+Card+Is+In+Use+By+Another+Application+Problem&amp;du=http://technobuz.com/2009/11/memory-card-is-in-use-by-another-application/&amp;cn=Mobile%20phone%20have%20become%20integral%20part%20of%20our%20day%20today%20life.So%20does%20the%20memory%20card%20for%20mobile%20phones.Mobile%20Phones%20internal%20memory%20cannot%20hold%20large%20amount%20of%20data%20thats%20were%20memory%20cards%20becomes%20inevitable.Most%20often%20we%20transfer%20our%20data%20to%20our%20PC%20and%20free%20up%20occupied%20space%20in%20memory%20card.%0D%0A%0D%0AAre" rel="nofollow" class="external" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
		<li class="sexy-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://technobuz.com/2009/11/memory-card-is-in-use-by-another-application/&amp;n=How+To+Resolve+Memory+Card+Is+In+Use+By+Another+Application+Problem&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://technobuz.com/2009/11/memory-card-is-in-use-by-another-application/&amp;title=How+To+Resolve+Memory+Card+Is+In+Use+By+Another+Application+Problem&amp;desc=Mobile%20phone%20have%20become%20integral%20part%20of%20our%20day%20today%20life.So%20does%20the%20memory%20card%20for%20mobile%20phones.Mobile%20Phones%20internal%20memory%20cannot%20hold%20large%20amount%20of%20data%20thats%20were%20memory%20cards%20becomes%20inevitable.Most%20often%20we%20transfer%20our%20data%20to%20our%20PC%20and%20free%20up%20occupied%20space%20in%20memory%20card.%0D%0A%0D%0AAre" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://technobuz.com/2009/11/memory-card-is-in-use-by-another-application/&amp;title=How+To+Resolve+Memory+Card+Is+In+Use+By+Another+Application+Problem" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://technobuz.com/2009/11/memory-card-is-in-use-by-another-application/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://technobuz.com/2009/11/memory-card-is-in-use-by-another-application/&amp;bm_description=How+To+Resolve+Memory+Card+Is+In+Use+By+Another+Application+Problem&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://technobuz.com/2009/11/memory-card-is-in-use-by-another-application/feed/</wfw:commentRss>
		<slash:comments>26</slash:comments>
		</item>
		<item>
		<title>Technobuz is PR 2 blog now</title>
		<link>http://technobuz.com/2009/11/technobuz-page-rank-2/</link>
		<comments>http://technobuz.com/2009/11/technobuz-page-rank-2/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 11:13:35 +0000</pubDate>
		<dc:creator>Shunmugha</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[technobuz google pagerank]]></category>
		<category><![CDATA[technobuz pr update]]></category>

		<guid isPermaLink="false">http://technobuz.com/?p=2417</guid>
		<description><![CDATA[
			
				
			
		
Recently Google Updated the PRfor many blogs.It was a long awaited one.Many of my friends&#8217; blog got a Page Rank lift.But sadly Technobuz did not get any PR lift it stayed at Zero.To be frank i was really dejected that all my hard work did not pay.Thankfully i had good friends who helped me come [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Ftechnobuz.com%2F2009%2F11%2Ftechnobuz-page-rank-2%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Ftechnobuz.com%2F2009%2F11%2Ftechnobuz-page-rank-2%2F&amp;source=shamrocksu88&amp;style=normal" height="61" width="50" title="Technobuz is PR 2 blog now" alt=" Technobuz is PR 2 blog now" /><br />
			</a>
		</div>
<p><img class="alignright" src="http://img163.imageshack.us/img163/3945/reapingfruit.jpg" alt="reapingfruit Technobuz is PR 2 blog now" width="210" height="315" title="Technobuz is PR 2 blog now" />Recently <strong>Google Updated the PR</strong>for many blogs.It was a long awaited one.Many of my friends&#8217; blog got a Page Rank lift.But sadly <a href="http://technobuz.com">Technobuz</a> did not get any PR lift it stayed at Zero.To be frank i was really dejected that all my hard work did not pay.Thankfully i had good friends who helped me come out of it.But like bolt from the sky when i was checking my email today i got a notification mail stating that there was PR change.It was from <strong>Zero</strong> to <strong>Two</strong>!</p>
<p>But the interestingly part was that there was spike in <strong>subscriber stats</strong> though site stayed at Zero during last PR update. It <strong> clearly shows that readers respect the content and not the PR</strong>.Thanks to all those lovable readers.<br />
<img src="http://img691.imageshack.us/img691/4638/technobuzpagerank.jpg" alt="technobuz pagerank" width="294" height="104" title="Technobuz is PR 2 blog now" /><br />
<strong><br />
</strong></p>
<h4><strong><span style="text-decoration: underline;">Lessons learned:</span></strong></h4>
<p><strong> </strong></p>
<p><span style="color: #0000ff;">*</span>Don&#8217;t loose heart when there is a <strong>PR fall</strong>.Keep writing quality content.Be patient.<br />
<span style="color: #0000ff;">*</span>Don&#8217;t strive to get PR via illegal means.<br />
<span style="color: #0000ff;">*</span>Follow Basic SEO tips.</p>
<p><strong><br />
<h4>Thanks for the support!</h4>
<p></strong></p>
<hr/>Copyright &copy; 2010 <strong><a href="http://technobuz.com">Technobuz</a></strong>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please contact legal@technobuz.com so we can take legal action immediately.<br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">Plugin</a> by <a href="http://www.taragana.com/">Taragana</a></span>

<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-center sexy-bookmarks-bg-love">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://delicious.com/post?url=http://technobuz.com/2009/11/technobuz-page-rank-2/&amp;title=Technobuz+is+PR+2+blog+now" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://technobuz.com/2009/11/technobuz-page-rank-2/&amp;title=Technobuz+is+PR+2+blog+now" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://technobuz.com/2009/11/technobuz-page-rank-2/&amp;title=Technobuz+is+PR+2+blog+now" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://technobuz.com/2009/11/technobuz-page-rank-2/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Technobuz+is+PR+2+blog+now+-+http://b2l.me/uu2rn+(via+@shamrocksu88)&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://technobuz.com/2009/11/technobuz-page-rank-2/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://technobuz.com/2009/11/technobuz-page-rank-2/&amp;title=Technobuz+is+PR+2+blog+now" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://technobuz.com/2009/11/technobuz-page-rank-2/&amp;title=Technobuz+is+PR+2+blog+now&amp;summary=Recently%20Google%20Updated%20the%20PRfor%20many%20blogs.It%20was%20a%20long%20awaited%20one.Many%20of%20my%20friends%27%20blog%20got%20a%20Page%20Rank%20lift.But%20sadly%20Technobuz%20did%20not%20get%20any%20PR%20lift%20it%20stayed%20at%20Zero.To%20be%20frank%20i%20was%20really%20dejected%20that%20all%20my%20hard%20work%20did%20not%20pay.Thankfully%20i%20had%20good%20friends%20who%20helped%20me%20come%20out%20&amp;source=Technobuz" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="sexy-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://technobuz.com/2009/11/technobuz-page-rank-2/&amp;title=Technobuz+is+PR+2+blog+now" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="sexy-tipd">
			<a href="http://tipd.com/submit.php?url=http://technobuz.com/2009/11/technobuz-page-rank-2/" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="sexy-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=Technobuz+is+PR+2+blog+now&amp;du=http://technobuz.com/2009/11/technobuz-page-rank-2/&amp;cn=Recently%20Google%20Updated%20the%20PRfor%20many%20blogs.It%20was%20a%20long%20awaited%20one.Many%20of%20my%20friends%27%20blog%20got%20a%20Page%20Rank%20lift.But%20sadly%20Technobuz%20did%20not%20get%20any%20PR%20lift%20it%20stayed%20at%20Zero.To%20be%20frank%20i%20was%20really%20dejected%20that%20all%20my%20hard%20work%20did%20not%20pay.Thankfully%20i%20had%20good%20friends%20who%20helped%20me%20come%20out%20" rel="nofollow" class="external" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
		<li class="sexy-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://technobuz.com/2009/11/technobuz-page-rank-2/&amp;n=Technobuz+is+PR+2+blog+now&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://technobuz.com/2009/11/technobuz-page-rank-2/&amp;title=Technobuz+is+PR+2+blog+now&amp;desc=Recently%20Google%20Updated%20the%20PRfor%20many%20blogs.It%20was%20a%20long%20awaited%20one.Many%20of%20my%20friends%27%20blog%20got%20a%20Page%20Rank%20lift.But%20sadly%20Technobuz%20did%20not%20get%20any%20PR%20lift%20it%20stayed%20at%20Zero.To%20be%20frank%20i%20was%20really%20dejected%20that%20all%20my%20hard%20work%20did%20not%20pay.Thankfully%20i%20had%20good%20friends%20who%20helped%20me%20come%20out%20" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://technobuz.com/2009/11/technobuz-page-rank-2/&amp;title=Technobuz+is+PR+2+blog+now" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://technobuz.com/2009/11/technobuz-page-rank-2/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://technobuz.com/2009/11/technobuz-page-rank-2/&amp;bm_description=Technobuz+is+PR+2+blog+now&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://technobuz.com/2009/11/technobuz-page-rank-2/feed/</wfw:commentRss>
		<slash:comments>28</slash:comments>
		</item>
		<item>
		<title>Two Easy Ways to Send Executable Files Via Gmail</title>
		<link>http://technobuz.com/2009/11/send-exe-files-via-gmail/</link>
		<comments>http://technobuz.com/2009/11/send-exe-files-via-gmail/#comments</comments>
		<pubDate>Sun, 15 Nov 2009 07:04:49 +0000</pubDate>
		<dc:creator>Shunmugha</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Hacking]]></category>
		<category><![CDATA[how to send exe file in gmail]]></category>
		<category><![CDATA[how to send exe file through gmail]]></category>
		<category><![CDATA[how to send exe file via gmail]]></category>
		<category><![CDATA[how to send executable files in gmail]]></category>
		<category><![CDATA[how to send executable files through gmail]]></category>
		<category><![CDATA[how to send executable files with gmail]]></category>
		<category><![CDATA[send exe file through gmail]]></category>
		<category><![CDATA[send exe files gmail]]></category>
		<category><![CDATA[send exe files in gmail]]></category>
		<category><![CDATA[send exe files via gmail]]></category>
		<category><![CDATA[send exe files with gmail]]></category>
		<category><![CDATA[send exe gmail]]></category>
		<category><![CDATA[send exe through gmail]]></category>
		<category><![CDATA[send executable file gmail]]></category>
		<category><![CDATA[send executable gmail]]></category>
		<category><![CDATA[send executable through gmail]]></category>
		<category><![CDATA[send executable via gmail]]></category>
		<category><![CDATA[send executable with gmail]]></category>

		<guid isPermaLink="false">http://technobuz.com/?p=2386</guid>
		<description><![CDATA[
			
				
			
		
We all love Gmail for its amazing set of features and storage ability. But when it comes to security they take strict measures which might sometimes hinder our normal activity too.One such thing is thatGmail does not allow us to send EXE files as attachment.Let us see simple ways to overcome this.
It&#8217;s believed that Gmail [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Ftechnobuz.com%2F2009%2F11%2Fsend-exe-files-via-gmail%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Ftechnobuz.com%2F2009%2F11%2Fsend-exe-files-via-gmail%2F&amp;source=shamrocksu88&amp;style=normal" height="61" width="50" title="Two Easy Ways to Send Executable Files Via Gmail" alt=" Two Easy Ways to Send Executable Files Via Gmail" /><br />
			</a>
		</div>
<p><img class="alignright" src="http://img198.imageshack.us/img198/4645/gmailstamp.png" alt="Gmail Stamp" width="128" height="128" title="Two Easy Ways to Send Executable Files Via Gmail" />We all love Gmail for its amazing set of features and storage ability. But when it comes to security they take strict measures which might sometimes hinder our normal activity too.One such thing is that<strong>Gmail does not allow us to send EXE files as attachment</strong>.Let us see simple ways to overcome this.</p>
<p>It&#8217;s believed that Gmail actually does not scan the nature of the file but only checks for file extension.So many exploit this by <strong>renaming the file extension </strong>but it poses threat of corrupting the file itself, so lets see other alternatives to <strong>send exe files via Gmail.<br />
</strong></p>
<p>1.
<div id="message" class="updated fade below-h2" style="background-color: rgb(255, 251, 204);">
<h4><strong><u>Via Ms-Word Document:</u></strong></h4>
</div>
<p><strong>Open Microsoft Word</strong> now <strong>drag and drop your exe file</strong> into the <strong>document</strong>.It will be embedded as an object.Now save the document as usual and send the document as attachment to your recipient.</p>
<p>At the receiving end all you need to do is <strong>open the document</strong> and <strong>double click the embedded object </strong>this will run your <strong>EXE </strong>file!</p>
<p>2.
<div id="message" class="updated fade below-h2" style="background-color: rgb(255, 251, 204);">
<h4><strong><u>Via WinRar</u></strong></h4>
</div>
<p>Download <a href="http://www.rarlab.com/download.htm"><strong>WinRAR</strong></a> and zip your EXE using Winrar.Now attach the zipped document .You should be able to send without any problem.</p>
<p><strong><br />
<h4>
<em>Was it useful?Did it work for you ?Share your thoughts!</em></h4>
<p></strong></p>
<hr/>Copyright &copy; 2010 <strong><a href="http://technobuz.com">Technobuz</a></strong>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please contact legal@technobuz.com so we can take legal action immediately.<br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">Plugin</a> by <a href="http://www.taragana.com/">Taragana</a></span>

<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-center sexy-bookmarks-bg-love">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://delicious.com/post?url=http://technobuz.com/2009/11/send-exe-files-via-gmail/&amp;title=Two+Easy+Ways+to+Send+Executable+Files+Via+Gmail" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://technobuz.com/2009/11/send-exe-files-via-gmail/&amp;title=Two+Easy+Ways+to+Send+Executable+Files+Via+Gmail" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://technobuz.com/2009/11/send-exe-files-via-gmail/&amp;title=Two+Easy+Ways+to+Send+Executable+Files+Via+Gmail" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://technobuz.com/2009/11/send-exe-files-via-gmail/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Two+Easy+Ways+to+Send+Executable+Files+Via+Gmail+-+http://b2l.me/uu2rp+(via+@shamrocksu88)&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://technobuz.com/2009/11/send-exe-files-via-gmail/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://technobuz.com/2009/11/send-exe-files-via-gmail/&amp;title=Two+Easy+Ways+to+Send+Executable+Files+Via+Gmail" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://technobuz.com/2009/11/send-exe-files-via-gmail/&amp;title=Two+Easy+Ways+to+Send+Executable+Files+Via+Gmail&amp;summary=We%20all%20love%20Gmail%20for%20its%20amazing%20set%20of%20features%20and%20storage%20ability.%20But%20when%20it%20comes%20to%20security%20they%20take%20strict%20measures%20which%20might%20sometimes%20hinder%20our%20normal%20activity%20too.One%20such%20thing%20is%20thatGmail%20does%20not%20allow%20us%20to%20send%20EXE%20files%20as%20attachment.Let%20us%20see%20simple%20ways%20to%20overcome%20this.%0D%0A&amp;source=Technobuz" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="sexy-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://technobuz.com/2009/11/send-exe-files-via-gmail/&amp;title=Two+Easy+Ways+to+Send+Executable+Files+Via+Gmail" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="sexy-tipd">
			<a href="http://tipd.com/submit.php?url=http://technobuz.com/2009/11/send-exe-files-via-gmail/" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="sexy-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=Two+Easy+Ways+to+Send+Executable+Files+Via+Gmail&amp;du=http://technobuz.com/2009/11/send-exe-files-via-gmail/&amp;cn=We%20all%20love%20Gmail%20for%20its%20amazing%20set%20of%20features%20and%20storage%20ability.%20But%20when%20it%20comes%20to%20security%20they%20take%20strict%20measures%20which%20might%20sometimes%20hinder%20our%20normal%20activity%20too.One%20such%20thing%20is%20thatGmail%20does%20not%20allow%20us%20to%20send%20EXE%20files%20as%20attachment.Let%20us%20see%20simple%20ways%20to%20overcome%20this.%0D%0A" rel="nofollow" class="external" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
		<li class="sexy-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://technobuz.com/2009/11/send-exe-files-via-gmail/&amp;n=Two+Easy+Ways+to+Send+Executable+Files+Via+Gmail&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://technobuz.com/2009/11/send-exe-files-via-gmail/&amp;title=Two+Easy+Ways+to+Send+Executable+Files+Via+Gmail&amp;desc=We%20all%20love%20Gmail%20for%20its%20amazing%20set%20of%20features%20and%20storage%20ability.%20But%20when%20it%20comes%20to%20security%20they%20take%20strict%20measures%20which%20might%20sometimes%20hinder%20our%20normal%20activity%20too.One%20such%20thing%20is%20thatGmail%20does%20not%20allow%20us%20to%20send%20EXE%20files%20as%20attachment.Let%20us%20see%20simple%20ways%20to%20overcome%20this.%0D%0A" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://technobuz.com/2009/11/send-exe-files-via-gmail/&amp;title=Two+Easy+Ways+to+Send+Executable+Files+Via+Gmail" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://technobuz.com/2009/11/send-exe-files-via-gmail/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://technobuz.com/2009/11/send-exe-files-via-gmail/&amp;bm_description=Two+Easy+Ways+to+Send+Executable+Files+Via+Gmail&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://technobuz.com/2009/11/send-exe-files-via-gmail/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>[Geek Fun] Bush Shoe Attack Version Of Kaspersky</title>
		<link>http://technobuz.com/2009/11/the-bush-shoe-attack-version-of-kaspersky/</link>
		<comments>http://technobuz.com/2009/11/the-bush-shoe-attack-version-of-kaspersky/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 10:57:39 +0000</pubDate>
		<dc:creator>Shunmugha</dc:creator>
				<category><![CDATA[Chill Out]]></category>
		<category><![CDATA[Bush Shoe Attack Version Of Kaspersky]]></category>
		<category><![CDATA[kaspersky funny video]]></category>

		<guid isPermaLink="false">http://technobuz.com/?p=2371</guid>
		<description><![CDATA[
			
				
			
		
I recently came across this funny video of Kaspersky thought of sharing with you all.I guess most of us should be aware of ugly Bush shoe attack incident .This video is Kaspersky version of it claiming why they are best in the business .Hope you have fun watching it!  

The Bush Shoe Attack Version [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Ftechnobuz.com%2F2009%2F11%2Fthe-bush-shoe-attack-version-of-kaspersky%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Ftechnobuz.com%2F2009%2F11%2Fthe-bush-shoe-attack-version-of-kaspersky%2F&amp;source=shamrocksu88&amp;style=normal" height="61" width="50" title="[Geek Fun] Bush Shoe Attack Version Of Kaspersky" alt=" [Geek Fun] Bush Shoe Attack Version Of Kaspersky" /><br />
			</a>
		</div>
<p><strong>I recently came across this funny video of Kaspersky thought of sharing with you all.I guess most of us should be aware of ugly <a href="http://news.bbc.co.uk/2/hi/7938947.stm">Bush shoe attack incident </a>.This video is Kaspersky version of it claiming why they are best in the business .Hope you have fun watching it!</strong> <img src='http://technobuz.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' title="[Geek Fun] Bush Shoe Attack Version Of Kaspersky" /> </p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="400" height="345" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="name" value="Metacafe_3484053" /><param name="src" value="http://www.metacafe.com/fplayer/3484053/the_bush_shoe_attack_version_of_kaspersky.swf" /><param name="wmode" value="transparent" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="400" height="345" src="http://www.metacafe.com/fplayer/3484053/the_bush_shoe_attack_version_of_kaspersky.swf" allowfullscreen="true" wmode="transparent" name="Metacafe_3484053"></embed></object><br />
<span style="font-size: xx-small;"><a href="http://www.metacafe.com/watch/3484053/the_bush_shoe_attack_version_of_kaspersky/">The Bush Shoe Attack Version of Kaspersky</a></span></p>
<hr/>Copyright &copy; 2010 <strong><a href="http://technobuz.com">Technobuz</a></strong>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please contact legal@technobuz.com so we can take legal action immediately.<br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">Plugin</a> by <a href="http://www.taragana.com/">Taragana</a></span>

<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-center sexy-bookmarks-bg-love">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://delicious.com/post?url=http://technobuz.com/2009/11/the-bush-shoe-attack-version-of-kaspersky/&amp;title=%5BGeek+Fun%5D+Bush+Shoe+Attack+Version+Of+Kaspersky" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://technobuz.com/2009/11/the-bush-shoe-attack-version-of-kaspersky/&amp;title=%5BGeek+Fun%5D+Bush+Shoe+Attack+Version+Of+Kaspersky" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://technobuz.com/2009/11/the-bush-shoe-attack-version-of-kaspersky/&amp;title=%5BGeek+Fun%5D+Bush+Shoe+Attack+Version+Of+Kaspersky" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://technobuz.com/2009/11/the-bush-shoe-attack-version-of-kaspersky/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=%5BGeek+Fun%5D+Bush+Shoe+Attack+Version+Of+Kaspersky+-+http://b2l.me/uu2rq+(via+@shamrocksu88)&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://technobuz.com/2009/11/the-bush-shoe-attack-version-of-kaspersky/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://technobuz.com/2009/11/the-bush-shoe-attack-version-of-kaspersky/&amp;title=%5BGeek+Fun%5D+Bush+Shoe+Attack+Version+Of+Kaspersky" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://technobuz.com/2009/11/the-bush-shoe-attack-version-of-kaspersky/&amp;title=%5BGeek+Fun%5D+Bush+Shoe+Attack+Version+Of+Kaspersky&amp;summary=I%20recently%20came%20across%20this%20funny%20video%20of%20Kaspersky%20thought%20of%20sharing%20with%20you%20all.I%20guess%20most%20of%20us%20should%20be%20aware%20of%20ugly%20Bush%20shoe%20attack%20incident%20.This%20video%20is%20Kaspersky%20version%20of%20it%20claiming%20why%20they%20are%20best%20in%20the%20business%20.Hope%20you%20have%20fun%20watching%20it%21%20%3B%29%0D%0A%0D%0A%0D%0AThe%20Bush%20Shoe%20Attack%20Ver&amp;source=Technobuz" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="sexy-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://technobuz.com/2009/11/the-bush-shoe-attack-version-of-kaspersky/&amp;title=%5BGeek+Fun%5D+Bush+Shoe+Attack+Version+Of+Kaspersky" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="sexy-tipd">
			<a href="http://tipd.com/submit.php?url=http://technobuz.com/2009/11/the-bush-shoe-attack-version-of-kaspersky/" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="sexy-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=%5BGeek+Fun%5D+Bush+Shoe+Attack+Version+Of+Kaspersky&amp;du=http://technobuz.com/2009/11/the-bush-shoe-attack-version-of-kaspersky/&amp;cn=I%20recently%20came%20across%20this%20funny%20video%20of%20Kaspersky%20thought%20of%20sharing%20with%20you%20all.I%20guess%20most%20of%20us%20should%20be%20aware%20of%20ugly%20Bush%20shoe%20attack%20incident%20.This%20video%20is%20Kaspersky%20version%20of%20it%20claiming%20why%20they%20are%20best%20in%20the%20business%20.Hope%20you%20have%20fun%20watching%20it%21%20%3B%29%0D%0A%0D%0A%0D%0AThe%20Bush%20Shoe%20Attack%20Ver" rel="nofollow" class="external" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
		<li class="sexy-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://technobuz.com/2009/11/the-bush-shoe-attack-version-of-kaspersky/&amp;n=%5BGeek+Fun%5D+Bush+Shoe+Attack+Version+Of+Kaspersky&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://technobuz.com/2009/11/the-bush-shoe-attack-version-of-kaspersky/&amp;title=%5BGeek+Fun%5D+Bush+Shoe+Attack+Version+Of+Kaspersky&amp;desc=I%20recently%20came%20across%20this%20funny%20video%20of%20Kaspersky%20thought%20of%20sharing%20with%20you%20all.I%20guess%20most%20of%20us%20should%20be%20aware%20of%20ugly%20Bush%20shoe%20attack%20incident%20.This%20video%20is%20Kaspersky%20version%20of%20it%20claiming%20why%20they%20are%20best%20in%20the%20business%20.Hope%20you%20have%20fun%20watching%20it%21%20%3B%29%0D%0A%0D%0A%0D%0AThe%20Bush%20Shoe%20Attack%20Ver" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://technobuz.com/2009/11/the-bush-shoe-attack-version-of-kaspersky/&amp;title=%5BGeek+Fun%5D+Bush+Shoe+Attack+Version+Of+Kaspersky" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://technobuz.com/2009/11/the-bush-shoe-attack-version-of-kaspersky/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://technobuz.com/2009/11/the-bush-shoe-attack-version-of-kaspersky/&amp;bm_description=%5BGeek+Fun%5D+Bush+Shoe+Attack+Version+Of+Kaspersky&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://technobuz.com/2009/11/the-bush-shoe-attack-version-of-kaspersky/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.889 seconds -->
<!-- Cached page generated by WP-Super-Cache on 2010-07-30 22:49:18 -->
