<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:blogger='http://schemas.google.com/blogger/2008' xmlns:georss='http://www.georss.org/georss' xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-3089783965945150690</id><updated>2024-11-01T03:41:11.634-07:00</updated><category term="Tech"/><category term="CSS"/><category term="How To&#39;s"/><category term="HTML"/><category term="Java Script"/><category term="CSS3"/><category term="HTML5"/><category term="SEO"/><title type='text'>Web i Hawk - Complete Design Solution</title><subtitle type='html'>Web Design Company India - We are the Best Website Design Company &amp;amp; Web Development Company, we are listed in Top Web Design Companies in the world</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://webihawk.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3089783965945150690/posts/default'/><link rel='alternate' type='text/html' href='http://webihawk.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><link rel='next' type='application/atom+xml' href='http://www.blogger.com/feeds/3089783965945150690/posts/default?start-index=26&amp;max-results=25'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/13108193973311904698</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>42</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-3089783965945150690.post-8141456316311875212</id><published>2011-12-28T23:03:00.000-08:00</published><updated>2011-12-29T00:12:59.786-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="How To&#39;s"/><category scheme="http://www.blogger.com/atom/ns#" term="Java Script"/><title type='text'>Add New Year Count Down To Blog</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhStIfG-6M0XPOY0zOlvUQXPHYw622kb78FmQcZZl6Yib_jlNWFhbJ1HaGtmklVzltpAjTBvTF2eTsnRmMnFtIKl4emfKQueRiihwbujKJGKmUawuAkWZRNJzF51mHeehfXFKgkCC61eL0/s1600/happy+new+year.jpg&quot; imageanchor=&quot;1&quot; style=&quot;clear: left; float: left; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;150&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhStIfG-6M0XPOY0zOlvUQXPHYw622kb78FmQcZZl6Yib_jlNWFhbJ1HaGtmklVzltpAjTBvTF2eTsnRmMnFtIKl4emfKQueRiihwbujKJGKmUawuAkWZRNJzF51mHeehfXFKgkCC61eL0/s200/happy+new+year.jpg&quot; width=&quot;200&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Year 2012 is pretty very near so let us add New Year widget that shows how many days, hours, minutes and seconds are left celebrate New Year 2012. One thing that I have noticed in most of the widgets is that, it displays a message when it reaches its target. Like on 01.01.2012 my widget will display &quot; Wish You all a Very Prosporous and Happy New Year&quot;.&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
This widget uses a simple javascript to display count down based on the Users system time.&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span style=&quot;font-size: large;&quot;&gt;&lt;b&gt;Happy New Year Count Down Demo. &lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;div id=&quot;bp_count_down_div&quot;&gt;
&lt;/div&gt;
&lt;script language=&quot;JavaScript&quot;&gt;
var bp_date_target = new Date(&quot;January 1, 2012 00:00:00&quot;);
var bp_date_now = new Date();
var bp_count_down_complete_message = &quot;Wish You all a Very Prosporous and Happy New Year&quot;;
if (bp_date_now &gt;= bp_date_target) {
 document.getElementById(&quot;bp_count_down_div&quot;).innerHTML = bp_count_down_complete_message;
} else {
 bp_time_difference = Math.floor(((bp_date_target - bp_date_now).valueOf()) / 1000);
 display_time_difference(bp_time_difference);
}
function display_time_difference(bp_time_difference) {
 if (bp_time_difference &lt;= 0) {
 document.getElementById(&quot;bp_count_down_div&quot;).innerHTML = bp_count_down_complete_message;
 return;
 }
 bp_count_down_message = bp_format_seconds(bp_time_difference, 86400, 100000) + &quot; Days &quot; + bp_format_seconds(bp_time_difference, 3600, 24) + &quot; Hours &quot; + bp_format_seconds(bp_time_difference, 60, 60) + &quot; Minutes &quot; + bp_format_seconds(bp_time_difference, 1, 60) + &quot; Seconds for New Year&quot;;
 document.getElementById(&quot;bp_count_down_div&quot;).innerHTML = bp_count_down_message;
 setTimeout(&quot;display_time_difference(&quot; + (bp_time_difference - 1) + &quot;)&quot;, 1000);
}
function bp_format_seconds(secs, num1, num2) {
 num = ((Math.floor(secs / num1)) % num2).toString();
 if (num.length &lt; 2) s = &quot;0&quot; + num;
  return &quot;&lt;b&gt;&quot; + num + &quot;&lt;/b&gt;&quot;;
}
&lt;/script&gt;
&lt;br /&gt;
&lt;b&gt;&lt;span style=&quot;font-size: large;&quot;&gt;How To Add New Year Count Down Demo To Blog.&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
1. Go to Design Tab in your Blog &amp;gt; Page Element Tab.&lt;br /&gt;
2. Click on &quot;add a widget&quot; then select &quot;HTML/Javascript&quot; Widget.&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
3.Paste below Javascript code to it. &lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;div class=&quot;codebg&quot;&gt;
&amp;lt;div id=&quot;bp_count_down_div&quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;script language=&quot;JavaScript&quot;&amp;gt;&lt;br /&gt;
var bp_date_target = new Date(&quot;January 1, 2012 00:00:00&quot;);&lt;br /&gt;
var bp_date_now = new Date();&lt;br /&gt;
var bp_count_down_complete_message = &quot;Wish You all a Very Prosporous and Happy New Year&quot;;&lt;br /&gt;
if (bp_date_now &amp;gt;= bp_date_target) {&lt;br /&gt;
&amp;nbsp;document.getElementById(&quot;bp_count_down_div&quot;).innerHTML = bp_count_down_complete_message;&lt;br /&gt;
} else {&lt;br /&gt;
&amp;nbsp;bp_time_difference = Math.floor(((bp_date_target - bp_date_now).valueOf()) / 1000);&lt;br /&gt;
&amp;nbsp;display_time_difference(bp_time_difference);&lt;br /&gt;
}&lt;br /&gt;
function display_time_difference(bp_time_difference) {&lt;br /&gt;
&amp;nbsp;if (bp_time_difference &amp;lt;= 0) {&lt;br /&gt;
&amp;nbsp;document.getElementById(&quot;bp_count_down_div&quot;).innerHTML = bp_count_down_complete_message;&lt;br /&gt;
&amp;nbsp;return;&lt;br /&gt;
&amp;nbsp;}&lt;br /&gt;
&amp;nbsp;bp_count_down_message = bp_format_seconds(bp_time_difference, 86400, 100000) + &quot; Days &quot; + bp_format_seconds(bp_time_difference, 3600, 24) + &quot; Hours &quot; + bp_format_seconds(bp_time_difference, 60, 60) + &quot; Minutes &quot; + bp_format_seconds(bp_time_difference, 1, 60) + &quot; Seconds for New Year&quot;;&lt;br /&gt;
&amp;nbsp;document.getElementById(&quot;bp_count_down_div&quot;).innerHTML = bp_count_down_message;&lt;br /&gt;
&amp;nbsp;setTimeout(&quot;display_time_difference(&quot; + (bp_time_difference - 1) + &quot;)&quot;, 1000);&lt;br /&gt;
}&lt;br /&gt;
function bp_format_seconds(secs, num1, num2) {&lt;br /&gt;
&amp;nbsp;num = ((Math.floor(secs / num1)) % num2).toString();&lt;br /&gt;
&amp;nbsp;if (num.length &amp;lt; 2) s = &quot;0&quot; + num;&lt;br /&gt;
&amp;nbsp; return &quot;&amp;lt;b&amp;gt;&quot; + num + &quot;&amp;lt;/b&amp;gt;&quot;;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/script&amp;gt;
&lt;br /&gt;
&lt;div&gt;
&lt;/div&gt;

&lt;/div&gt;
&lt;/div&gt;
&lt;/br&gt;
4. Save your widget and view your Blog.
&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webihawk.blogspot.com/feeds/8141456316311875212/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webihawk.blogspot.com/2011/12/add-new-year-count-down-to-blog.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3089783965945150690/posts/default/8141456316311875212'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3089783965945150690/posts/default/8141456316311875212'/><link rel='alternate' type='text/html' href='http://webihawk.blogspot.com/2011/12/add-new-year-count-down-to-blog.html' title='Add New Year Count Down To Blog'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/13108193973311904698</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhStIfG-6M0XPOY0zOlvUQXPHYw622kb78FmQcZZl6Yib_jlNWFhbJ1HaGtmklVzltpAjTBvTF2eTsnRmMnFtIKl4emfKQueRiihwbujKJGKmUawuAkWZRNJzF51mHeehfXFKgkCC61eL0/s72-c/happy+new+year.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3089783965945150690.post-2503234452428860397</id><published>2011-10-13T05:39:00.000-07:00</published><updated>2011-10-13T05:40:01.270-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="CSS"/><category scheme="http://www.blogger.com/atom/ns#" term="CSS3"/><category scheme="http://www.blogger.com/atom/ns#" term="HTML"/><category scheme="http://www.blogger.com/atom/ns#" term="HTML5"/><title type='text'>HTML5 File Upload with Drag &amp; Drop</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;b&gt;Dragging and dropping files from your desktop to a browser is one of 
the ultimate goals for web application integration. This is the first in
 a four-part series of posts from SitePoint which describes how to:&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg5eecAGBv4juguwzTsjFWD-7rfNVI0-RFkN7Xmbseq0ivD7GeKLbeZhGymVEx7F41AE1oA9BAxUTUA01yxZTDVwnhqwieTnme4WlpD63vfI4Z6-ulcXE8QRtx58ugSEs5azrt5JxnZzZE/s1600/html5-drag-and-drop.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg5eecAGBv4juguwzTsjFWD-7rfNVI0-RFkN7Xmbseq0ivD7GeKLbeZhGymVEx7F41AE1oA9BAxUTUA01yxZTDVwnhqwieTnme4WlpD63vfI4Z6-ulcXE8QRtx58ugSEs5azrt5JxnZzZE/s1600/html5-drag-and-drop.jpg&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;ol&gt;
&lt;li&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;Enable file dragging and dropping onto a web page element&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;Analyze dropped files in JavaScript&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;Load and parse files on the client&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;Asynchronously upload files to the server using XMLHttpRequest2&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;Show a graphical progress bar while the upload occurs&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;Use progressive enhancement to ensure your file upload form works in any browser&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;Code it in plain ol’ JavaScript without a library.&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;div&gt;
&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;Step:1&amp;nbsp;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-color: white; color: #333333; line-height: 18px;&quot;&gt;Copy and Paste&lt;/span&gt;&amp;nbsp;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-color: white; color: #333333; line-height: 18px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;b&gt;File Name: filedrag.js&lt;/b&gt;&amp;nbsp;(you must use this filename exactly)&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;codebg&quot;&gt;
(function() {&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;// getElementById&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;function $id(id) {&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;  &lt;/span&gt;return document.getElementById(id);&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;}&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;// output information&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;function Output(msg) {&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;  &lt;/span&gt;var m = $id(&quot;messages&quot;);&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;  &lt;/span&gt;m.innerHTML = msg + m.innerHTML;&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;}&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;// file drag hover&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;function FileDragHover(e) {&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;  &lt;/span&gt;e.stopPropagation();&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;  &lt;/span&gt;e.preventDefault();&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;  &lt;/span&gt;e.target.className = (e.type == &quot;dragover&quot; ? &quot;hover&quot; : &quot;&quot;);&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;}&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;// file selection&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;function FileSelectHandler(e) {&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;  &lt;/span&gt;// cancel event and hover styling&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;  &lt;/span&gt;FileDragHover(e);&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;  &lt;/span&gt;// fetch FileList object&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;  &lt;/span&gt;var files = e.target.files || e.dataTransfer.files;&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;  &lt;/span&gt;// process all File objects&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;  &lt;/span&gt;for (var i = 0, f; f = files[i]; i++) {&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;   &lt;/span&gt;ParseFile(f);&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;  &lt;/span&gt;}&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;}&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;// output file information&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;function ParseFile(file) {&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;  &lt;/span&gt;Output(&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;   &lt;/span&gt;&quot;&amp;lt;p&amp;gt;File information: &amp;lt;strong&amp;gt;&quot; + file.name +&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;   &lt;/span&gt;&quot;&amp;lt;/strong&amp;gt; type: &amp;lt;strong&amp;gt;&quot; + file.type +&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;   &lt;/span&gt;&quot;&amp;lt;/strong&amp;gt; size: &amp;lt;strong&amp;gt;&quot; + file.size +&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;   &lt;/span&gt;&quot;&amp;lt;/strong&amp;gt; bytes&amp;lt;/p&amp;gt;&quot;&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;  &lt;/span&gt;);&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;}&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;// initialize&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;function Init() {&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;  &lt;/span&gt;var fileselect = $id(&quot;fileselect&quot;),&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;   &lt;/span&gt;filedrag = $id(&quot;filedrag&quot;),&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;   &lt;/span&gt;submitbutton = $id(&quot;submitbutton&quot;);&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;  &lt;/span&gt;// file select&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;  &lt;/span&gt;fileselect.addEventListener(&quot;change&quot;, FileSelectHandler, false);&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;  &lt;/span&gt;// is XHR2 available?&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;  &lt;/span&gt;var xhr = new XMLHttpRequest();&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;  &lt;/span&gt;if (xhr.upload) {&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;   &lt;/span&gt;// file drop&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;   &lt;/span&gt;filedrag.addEventListener(&quot;dragover&quot;, FileDragHover, false);&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;   &lt;/span&gt;filedrag.addEventListener(&quot;dragleave&quot;, FileDragHover, false);&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;   &lt;/span&gt;filedrag.addEventListener(&quot;drop&quot;, FileSelectHandler, false);&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;   &lt;/span&gt;filedrag.style.display = &quot;block&quot;;&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;   &lt;/span&gt;// remove submit button&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;   &lt;/span&gt;submitbutton.style.display = &quot;none&quot;;&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;  &lt;/span&gt;}&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;}&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;// call initialization file&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;if (window.File &amp;amp;&amp;amp; window.FileList &amp;amp;&amp;amp; window.FileReader) {&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;  &lt;/span&gt;Init();&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;}&lt;br /&gt;
})();&lt;/div&gt;
&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;b&gt;Step:2 Copy and Paste &lt;br /&gt;File Name: styles.css (you must use this filename exactly)
&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div class=&quot;codebg&quot;&gt;
body&lt;br /&gt;
{&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;font-family: &quot;Segoe UI&quot;, Tahoma, Helvetica, freesans, sans-serif;&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;font-size: 90%;&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;margin: 10px;&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;color: #333;&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;background-color: #fff;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
h1, h2&lt;br /&gt;
{&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;font-size: 1.5em;&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;font-weight: normal;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
h2&lt;br /&gt;
{&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;font-size: 1.3em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
legend&lt;br /&gt;
{&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;font-weight: bold;&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;color: #333;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#filedrag&lt;br /&gt;
{&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;display: none;&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;font-weight: bold;&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;text-align: center;&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;padding: 1em 0;&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;margin: 1em 0;&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;color: #555;&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;border: 2px dashed #555;&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;border-radius: 7px;&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;cursor: default;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#filedrag.hover&lt;br /&gt;
{&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;color: #f00;&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;border-color: #f00;&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;border-style: solid;&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;box-shadow: inset 0 3px 4px #888;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
img&lt;br /&gt;
{&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;max-width: 100%;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
pre&lt;br /&gt;
{&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;width: 95%;&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;height: 8em;&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;font-family: monospace;&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;font-size: 0.9em;&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;padding: 1px 2px;&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;margin: 0 0 1em auto;&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;border: 1px inset #666;&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;background-color: #eee;&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;overflow: auto;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#messages&lt;br /&gt;
{&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;padding: 0 10px;&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;margin: 1em 0;&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;border: 1px solid #999;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#progress p&lt;br /&gt;
{&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;display: block;&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;width: 240px;&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;padding: 2px 5px;&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;margin: 2px 0;&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;border: 1px inset #446;&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;border-radius: 5px;&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;background: #eee url(&quot;progress.png&quot;) 100% 0 repeat-y;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#progress p.success&lt;br /&gt;
{&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;background: #0c0 none 0 0 no-repeat;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#progress p.failed&lt;br /&gt;
{&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;background: #c00 none 0 0 no-repeat;&lt;br /&gt;
}&lt;/div&gt;
&lt;br /&gt;
&lt;b style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;Step:3 Copy and Paste&amp;nbsp;&lt;/b&gt;&lt;br /&gt;&lt;b style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;File Name: drag.htm &lt;/b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;(&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-color: white; color: #333333; line-height: 18px;&quot;&gt;you can change the filename to anything you like&lt;/span&gt;)&lt;/span&gt;&lt;br /&gt;
&lt;div class=&quot;codebg&quot;&gt;
&amp;lt;!DOCTYPE html&amp;gt;&lt;br /&gt;
&amp;lt;html lang=&quot;en&quot;&amp;gt;&amp;lt;head&amp;gt;&lt;br /&gt;
&amp;lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=UTF-8&quot;&amp;gt;&lt;br /&gt;
&amp;lt;meta charset=&quot;UTF-8&quot;&amp;gt;&lt;br /&gt;
&amp;lt;title&amp;gt;HTML5 File Drag &amp;amp;amp; Drop API&amp;lt;/title&amp;gt;&lt;br /&gt;
&amp;lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; media=&quot;all&quot; href=&quot;index_files/styles.css&quot;&amp;gt;&lt;br /&gt;
&amp;lt;style type=&quot;text/css&quot; charset=&quot;utf-8&quot;&amp;gt;/* See license.txt for terms of usage */&lt;br /&gt;
&lt;br /&gt;
/** reset styling **/&lt;br /&gt;
.firebugResetStyles {&lt;br /&gt;
&amp;nbsp; &amp;nbsp; z-index: 2147483646 !important;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; top: 0 !important;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; left: 0 !important;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; display: block !important;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; border: 0 none !important;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; margin: 0 !important;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; padding: 0 !important;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; outline: 0 !important;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; min-width: 0 !important;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; max-width: none !important;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; min-height: 0 !important;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; max-height: none !important;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; position: fixed !important;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; -moz-transform: rotate(0deg) !important;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; -moz-transform-origin: 50% 50% !important;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; -moz-border-radius: 0 !important;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; -moz-box-shadow: none !important;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; background: transparent none !important;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; pointer-events: none !important;&lt;br /&gt;
}&lt;br /&gt;
.firebugBlockBackgroundColor {&lt;br /&gt;
&amp;nbsp; &amp;nbsp; background-color: transparent !important;&lt;br /&gt;
}&lt;br /&gt;
.firebugResetStyles:before, .firebugResetStyles:after {&lt;br /&gt;
&amp;nbsp; &amp;nbsp; content: &quot;&quot; !important;&lt;br /&gt;
}&lt;br /&gt;
/**actual styling to be modified by firebug theme**/&lt;br /&gt;
.firebugCanvas {&lt;br /&gt;
&amp;nbsp; &amp;nbsp; display: none !important;&lt;br /&gt;
}&lt;br /&gt;
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */&lt;br /&gt;
.firebugLayoutBox {&lt;br /&gt;
&amp;nbsp; &amp;nbsp; width: auto !important;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; position: static !important;&lt;br /&gt;
}&lt;br /&gt;
.firebugLayoutBoxOffset {&lt;br /&gt;
&amp;nbsp; &amp;nbsp; opacity: 0.8 !important;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; position: fixed !important;&lt;br /&gt;
}&lt;br /&gt;
.firebugLayoutLine {&lt;br /&gt;
&amp;nbsp; &amp;nbsp; opacity: 0.4 !important;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; background-color: #000000 !important;&lt;br /&gt;
}&lt;br /&gt;
.firebugLayoutLineLeft, .firebugLayoutLineRight {&lt;br /&gt;
&amp;nbsp; &amp;nbsp; width: 1px !important;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; height: 100% !important;&lt;br /&gt;
}&lt;br /&gt;
.firebugLayoutLineTop, .firebugLayoutLineBottom {&lt;br /&gt;
&amp;nbsp; &amp;nbsp; width: 100% !important;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; height: 1px !important;&lt;br /&gt;
}&lt;br /&gt;
.firebugLayoutLineTop {&lt;br /&gt;
&amp;nbsp; &amp;nbsp; margin-top: -1px !important;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; border-top: 1px solid #999999 !important;&lt;br /&gt;
}&lt;br /&gt;
.firebugLayoutLineRight {&lt;br /&gt;
&amp;nbsp; &amp;nbsp; border-right: 1px solid #999999 !important;&lt;br /&gt;
}&lt;br /&gt;
.firebugLayoutLineBottom {&lt;br /&gt;
&amp;nbsp; &amp;nbsp; border-bottom: 1px solid #999999 !important;&lt;br /&gt;
}&lt;br /&gt;
.firebugLayoutLineLeft {&lt;br /&gt;
&amp;nbsp; &amp;nbsp; margin-left: -1px !important;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; border-left: 1px solid #999999 !important;&lt;br /&gt;
}&lt;br /&gt;
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */&lt;br /&gt;
.firebugLayoutBoxParent {&lt;br /&gt;
&amp;nbsp; &amp;nbsp; border-top: 0 none !important;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; border-right: 1px dashed #E00 !important;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; border-bottom: 1px dashed #E00 !important;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; border-left: 0 none !important;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; position: fixed !important;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; width: auto !important;&lt;br /&gt;
}&lt;br /&gt;
.firebugRuler{&lt;br /&gt;
&amp;nbsp; &amp;nbsp; position: absolute !important;&lt;br /&gt;
}&lt;br /&gt;
.firebugRulerH {&lt;br /&gt;
&amp;nbsp; &amp;nbsp; top: -15px !important;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; left: 0 !important;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; width: 100% !important;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; height: 14px !important;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; border-top: 1px solid #BBBBBB !important;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; border-right: 1px dashed #BBBBBB !important;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; border-bottom: 1px solid #000000 !important;&lt;br /&gt;
}&lt;br /&gt;
.firebugRulerV {&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; top: 0 !important;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; left: -15px !important;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; width: 14px !important;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; height: 100% !important;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;border-left: 1px solid #BBBBBB !important;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; border-right: 1px solid #000000 !important;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; border-bottom: 1px dashed #BBBBBB !important;&lt;br /&gt;
}&lt;br /&gt;
.overflowRulerX &amp;gt; .firebugRulerV {&lt;br /&gt;
&amp;nbsp; &amp;nbsp; left: 0 !important;&lt;br /&gt;
}&lt;br /&gt;
.overflowRulerY &amp;gt; .firebugRulerH {&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; top: 0 !important;&lt;br /&gt;
}&lt;br /&gt;
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */&lt;br /&gt;
&lt;br /&gt;
.fbProxyElement {&lt;br /&gt;
&amp;nbsp; &amp;nbsp; position: fixed !important;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; pointer-events: auto !important;&lt;br /&gt;
}&amp;lt;/style&amp;gt;&amp;lt;/head&amp;gt;&lt;br /&gt;
&amp;lt;body&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h1&amp;gt;HTML5 File Drag &amp;amp;amp; Drop API&amp;lt;/h1&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;This is a demonstration of the HTML5 drag &amp;amp;amp; drop API which retrieves file information.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;&amp;lt;a href=&quot;http://www.webihawk.com&quot;&amp;gt;Web i HawK&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;form id=&quot;upload&quot; action=&quot;index.html&quot; method=&quot;POST&quot; enctype=&quot;multipart/form-data&quot;&amp;gt;&lt;br /&gt;
&amp;lt;fieldset&amp;gt;&lt;br /&gt;
&amp;lt;legend&amp;gt;HTML File Upload&amp;lt;/legend&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;input id=&quot;MAX_FILE_SIZE&quot; name=&quot;MAX_FILE_SIZE&quot; value=&quot;300000&quot; type=&quot;hidden&quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div&amp;gt;&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;&amp;lt;label for=&quot;fileselect&quot;&amp;gt;Files to upload:&amp;lt;/label&amp;gt;&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;&amp;lt;input id=&quot;fileselect&quot; name=&quot;fileselect[]&quot; multiple=&quot;multiple&quot; type=&quot;file&quot;&amp;gt;&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;&amp;lt;div style=&quot;display: block;&quot; id=&quot;filedrag&quot;&amp;gt;or drop files here&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&quot;display: none;&quot; id=&quot;submitbutton&quot;&amp;gt;&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;&amp;lt;button type=&quot;submit&quot;&amp;gt;Upload Files&amp;lt;/button&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/fieldset&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/form&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&quot;messages&quot;&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Status Messages&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h2&amp;gt;&amp;lt;script src=&quot;index_files/filedrag.js&quot;&amp;gt;&amp;lt;/script&amp;gt;&lt;br /&gt;
&amp;lt;/h2&amp;gt;&lt;br /&gt;
&amp;lt;/body&amp;gt;&amp;lt;/html&amp;gt;&lt;/div&gt;
&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webihawk.blogspot.com/feeds/2503234452428860397/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webihawk.blogspot.com/2011/10/html5-file-upload-with-drag-drop.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3089783965945150690/posts/default/2503234452428860397'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3089783965945150690/posts/default/2503234452428860397'/><link rel='alternate' type='text/html' href='http://webihawk.blogspot.com/2011/10/html5-file-upload-with-drag-drop.html' title='HTML5 File Upload with Drag &amp; Drop'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/13108193973311904698</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg5eecAGBv4juguwzTsjFWD-7rfNVI0-RFkN7Xmbseq0ivD7GeKLbeZhGymVEx7F41AE1oA9BAxUTUA01yxZTDVwnhqwieTnme4WlpD63vfI4Z6-ulcXE8QRtx58ugSEs5azrt5JxnZzZE/s72-c/html5-drag-and-drop.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3089783965945150690.post-4341848440208006736</id><published>2011-10-10T22:35:00.000-07:00</published><updated>2011-10-11T10:28:39.008-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="CSS"/><title type='text'>Circle Navigation Effect with CSS3</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;Today &lt;strong&gt;Codrops&lt;/strong&gt; want to show you how to create a 
beautiful hover effect for an image navigation using CSS3. The idea is 
to expand a circular navigation with an arrow and make a bubble with a 
thumbnail appear. In our example we will be showing the thumbnail of the
 next and previous slider image on hovering the arrows. The &lt;a href=&quot;http://tympanus.net/codrops/2011/10/10/circle-navigation-effect-with-css3/&quot;&gt;effect is done with CSS3 transitions&lt;/a&gt;.&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;http://tympanus.net/Tutorials/CircleNavigationEffect/&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgamTwycRqhG_ro4UJsRWztICRFEpcpJfM7PfKufKQvHbpMkdQ4orbTfWneCuhddjMipzOK3QEySOjr-KdFdEMApIOWiR39RTkOhsplhorfieHkOh_uA05bHLNxyQNLat6Nu5JKNpOQg78/s1600/circle-navigation-effect-css3.jpg&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;width: 200px;&quot;&gt;
&lt;a class=&quot;readmore&quot; href=&quot;http://tympanus.net/codrops/2011/10/10/circle-navigation-effect-with-css3/&quot; target=&quot;_blank&quot; tympanus.net=&quot;&quot;&gt;View Demo &amp;amp; Download Source&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://webihawk.blogspot.com/feeds/4341848440208006736/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webihawk.blogspot.com/2011/10/circle-navigation-effect-with-css3.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3089783965945150690/posts/default/4341848440208006736'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3089783965945150690/posts/default/4341848440208006736'/><link rel='alternate' type='text/html' href='http://webihawk.blogspot.com/2011/10/circle-navigation-effect-with-css3.html' title='Circle Navigation Effect with CSS3'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/13108193973311904698</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgamTwycRqhG_ro4UJsRWztICRFEpcpJfM7PfKufKQvHbpMkdQ4orbTfWneCuhddjMipzOK3QEySOjr-KdFdEMApIOWiR39RTkOhsplhorfieHkOh_uA05bHLNxyQNLat6Nu5JKNpOQg78/s72-c/circle-navigation-effect-css3.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3089783965945150690.post-9077037715076893835</id><published>2011-10-03T02:36:00.000-07:00</published><updated>2011-10-03T02:36:23.029-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Java Script"/><title type='text'>Java Script Image Slider</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; float: left; text-align: left;&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgW692T2FV06ERou20o9QxtkWUG34M4MyCHtJqZvJ8-2eswNAPA_OHQJth90RfrAaoZJPMfkgw3nZpLH7oNLdJmSRN98RNfTdFbIJV6FqRTZiLUReUYobDdRNPi-yy_n0-zJfcYJls8okE/s1600/javascript_logo1.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgW692T2FV06ERou20o9QxtkWUG34M4MyCHtJqZvJ8-2eswNAPA_OHQJth90RfrAaoZJPMfkgw3nZpLH7oNLdJmSRN98RNfTdFbIJV6FqRTZiLUReUYobDdRNPi-yy_n0-zJfcYJls8okE/s1600/javascript_logo1.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: large;&quot;&gt;Java Script Image Slider&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;b&gt;&lt;strong&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;Step 1: &lt;/strong&gt;Insert the below into the
&amp;lt;head&amp;gt; section of your page:&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div style=&quot;background-color: #f4f4f4; padding: 10px;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&amp;lt;script language=&quot;JavaScript1.1&quot;&amp;gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;var slideimages=new Array()&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;var slidelinks=new Array()&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;function slideshowimages(){&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;for (i=0;i&amp;lt;slideshowimages.arguments.length;i++){&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;slideimages[i]=new Image()&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;slideimages[i].src=slideshowimages.arguments[i]&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;}&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;function slideshowlinks(){&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;for (i=0;i&amp;lt;slideshowlinks.arguments.length;i++)&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;slidelinks[i]=slideshowlinks.arguments[i]&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;}&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;function gotoshow(){&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;if (!window.winslide||winslide.closed)&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;winslide=window.open(slidelinks[whichlink])&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;else&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;winslide.location=slidelinks[whichlink]&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;winslide.focus()&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;}&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&amp;lt;/script&amp;gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;b&gt;&lt;strong&gt;Step 2: &lt;/strong&gt;Insert the below
into the &amp;lt;body&amp;gt; section of your page where you wish the slideshow to appear:&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;b&gt;&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div style=&quot;background-color: #f4f4f4; padding: 10px;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&amp;lt;a href=&quot;javascript:gotoshow()&quot;&amp;gt;&amp;lt;img src=&quot;webihawk1.jpg&quot; name=&quot;slide&quot; border=0 width=300 height=375&amp;gt;&amp;lt;/a&amp;gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&amp;lt;script&amp;gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&amp;lt;!--&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;//configure the paths of the images, plus corresponding target links&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;slideshowimages(&quot;webihawk1.jpg&quot;,&quot;webihawk2.jpg&quot;,&quot;webihawk3.jpg&quot;,&quot;webihawk4.jpg&quot;,&quot;webihawk5.jpg&quot;)&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;slideshowlinks(&quot;http://webihawk.com/&quot;,&quot;http://webihawk.com/&quot;,&quot;http://webihawk.com/&quot;,&quot;http://webihawk.com/&quot;,&quot;http://webihawk.com/&quot;)&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;//configure the speed of the slideshow, in miliseconds&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;var slideshowspeed=2000&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;var whichlink=0&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;var whichimage=0&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;function slideit(){&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;if (!document.images)&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;return&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;document.images.slide.src=slideimages[whichimage].src&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;whichlink=whichimage&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;if (whichimage&amp;lt;slideimages.length-1)&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;whichimage++&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;else&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;whichimage=0&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;setTimeout(&quot;slideit()&quot;,slideshowspeed)&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;}&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;slideit()&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;//--&amp;gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&amp;lt;/script&amp;gt;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://webihawk.blogspot.com/feeds/9077037715076893835/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webihawk.blogspot.com/2011/10/java-script-image-slider.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3089783965945150690/posts/default/9077037715076893835'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3089783965945150690/posts/default/9077037715076893835'/><link rel='alternate' type='text/html' href='http://webihawk.blogspot.com/2011/10/java-script-image-slider.html' title='Java Script Image Slider'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/13108193973311904698</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgW692T2FV06ERou20o9QxtkWUG34M4MyCHtJqZvJ8-2eswNAPA_OHQJth90RfrAaoZJPMfkgw3nZpLH7oNLdJmSRN98RNfTdFbIJV6FqRTZiLUReUYobDdRNPi-yy_n0-zJfcYJls8okE/s72-c/javascript_logo1.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3089783965945150690.post-2637669669540124616</id><published>2011-10-02T10:06:00.000-07:00</published><updated>2011-10-04T21:52:04.655-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Tech"/><title type='text'>Microsoft security update identifies Chrome as malware</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; float: left; text-align: left;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgn1pdhdFiUvkPNLp4b_5XRXvKE3jVl5VtFFQxezBXPzhFTqH4YgyamNBoVExZ_m2wBqSWAWegPQBbGHpuDej6k3G4Z95WhA1W2ILD3uYuZjI1S6czr6eyuiaQgvlrm35-4CkZ_ZvQoIaE/s1600/IE-in-Google-Chrome.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgn1pdhdFiUvkPNLp4b_5XRXvKE3jVl5VtFFQxezBXPzhFTqH4YgyamNBoVExZ_m2wBqSWAWegPQBbGHpuDej6k3G4Z95WhA1W2ILD3uYuZjI1S6czr6eyuiaQgvlrm35-4CkZ_ZvQoIaE/s1600/IE-in-Google-Chrome.jpg&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;font-family: Arial,Helvetica,sans-serif;&quot;&gt;
&lt;span style=&quot;font-size: small;&quot;&gt;&lt;a href=&quot;http://webihawk.blogspot.com/2011/09/windows-8.html&quot;&gt;Microsoft&lt;/a&gt; and &lt;a href=&quot;http://webihawk.blogspot.com/2011/09/google-wallet-launches-say-goodbye-to.html&quot;&gt;Google&lt;/a&gt; war is getting dirtier day by day. From past few months Microsoft is struggling in the browser wars getting stiff competition form Google Chrome. But, now the search giant has found the way to fend off the competition.&lt;br /&gt;&lt;br /&gt;According to a latest report, Microsoft issued an update to its security software that mistakenly marked Google Chrome as malware and deleted it from users&#39; systems accordingly. Though the glitch has been fixed, it has left Google stubbed.&amp;nbsp; &lt;br /&gt;&lt;br /&gt;The gaffe comes after it was reported that Chrome is on track to overtake Firefox by year’s end. Buzz too is referring the faux pas to the battle between Microsoft&#39;s Internet Explorer (IE) and Chrome, for usage share.&lt;br /&gt;&lt;br /&gt;Sources cited that users witnessed a Windows Security box that said there is security issue which needs to be removed. While users took the required action, Chrome was eliminated form their PC.&lt;br /&gt;&lt;br /&gt;However, Microsoft soon posted an alert of its own, regretting the error. The software titan later on offered new Security Essentials and asked users to reinstall Chrome.&lt;br /&gt;&lt;br /&gt;It is reported that approximately 3,000 users were affected.&lt;br /&gt;&lt;br /&gt;While most of the users are seeing this as an unintentional error, some are suspicious that it could be a dirty trick from Microsoft’s end.&lt;br /&gt;&lt;br /&gt;Microsoft refused to comment on this error.&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://webihawk.blogspot.com/feeds/2637669669540124616/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webihawk.blogspot.com/2011/10/microsoft-security-update-identifies.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3089783965945150690/posts/default/2637669669540124616'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3089783965945150690/posts/default/2637669669540124616'/><link rel='alternate' type='text/html' href='http://webihawk.blogspot.com/2011/10/microsoft-security-update-identifies.html' title='Microsoft security update identifies Chrome as malware'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/13108193973311904698</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgn1pdhdFiUvkPNLp4b_5XRXvKE3jVl5VtFFQxezBXPzhFTqH4YgyamNBoVExZ_m2wBqSWAWegPQBbGHpuDej6k3G4Z95WhA1W2ILD3uYuZjI1S6czr6eyuiaQgvlrm35-4CkZ_ZvQoIaE/s72-c/IE-in-Google-Chrome.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3089783965945150690.post-4731065613358466320</id><published>2011-10-02T09:22:00.000-07:00</published><updated>2011-10-04T21:52:12.881-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="How To&#39;s"/><title type='text'>Search Engine Optimization[SEO] Tools,Tips and Techniques</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;b&gt;&lt;span style=&quot;font-size: x-large;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;What is SEO?&amp;nbsp; Why SEO?&amp;nbsp; How SEO?&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: small;&quot;&gt;&lt;b&gt;&quot;Search engine optimization ,known as SEO , is a a process and art of obtaining ranking for a site under relevant keyword phrases. Search engine optimization (SEO) includes the choice of keywords used in the text paragraphs and the placement of those words on the page, both visible and hidden inside meta tags.&quot;&amp;nbsp; &lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgYywWCGj4oJBIkj6H-Jk5U8tKnBAmcezjgVrII_KIgtGPC2pa1EaHrGTl6Pl88dpJZhcHSW2r5M8LfNpEkmFLrV1ligcq1-toZhzSq6lSWRuFr9lzCpcYF1JurwsCoZN0oayqPcNA16Ow/s1600/search-engine-optimization-seo-process-PRomotingwebs.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgYywWCGj4oJBIkj6H-Jk5U8tKnBAmcezjgVrII_KIgtGPC2pa1EaHrGTl6Pl88dpJZhcHSW2r5M8LfNpEkmFLrV1ligcq1-toZhzSq6lSWRuFr9lzCpcYF1JurwsCoZN0oayqPcNA16Ow/s1600/search-engine-optimization-seo-process-PRomotingwebs.jpg&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;b&gt;&lt;span style=&quot;font-size: x-large;&quot;&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;b&gt;&lt;span style=&quot;font-size: x-large;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;Four Key Steps to Increase SEO:&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;ul style=&quot;font-family: Arial,Helvetica,sans-serif; text-align: justify;&quot;&gt;
&lt;li&gt;&lt;span style=&quot;font-size: small;&quot;&gt;The
 first step is to any effort to obtain ranking is to do keyword 
research. Key research is the process of mining data to determine the 
extract phrase. These extracted phrases are then updated on your sites.&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;div style=&quot;font-family: Arial,Helvetica,sans-serif; text-align: justify;&quot;&gt;
&lt;span style=&quot;font-size: small;&quot;&gt;&lt;/span&gt;&lt;/div&gt;
&lt;ul style=&quot;font-family: Arial,Helvetica,sans-serif; text-align: justify;&quot;&gt;
&lt;li&gt;&lt;span style=&quot;font-size: small;&quot;&gt;The
 second step is building the pages that the Search Engine Optimization 
India robots can actually read. Millions and millions of sites are 
unable to do this. Simple and Easy rule of KISS(keep it short and 
simple) should be applied.&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;ul style=&quot;font-family: Arial,Helvetica,sans-serif; text-align: justify;&quot;&gt;
&lt;li&gt;&lt;span style=&quot;font-size: small;&quot;&gt;Third
 step is to tie the phrases in Second. Different strategies should be 
used to focus on how to place relevant key phrases in the text. Key 
phrases should be placed in first two lines.&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;ul style=&quot;text-align: justify;&quot;&gt;
&lt;li&gt;&lt;span style=&quot;font-size: x-small;&quot;&gt;&lt;span style=&quot;font-size: small;&quot;&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;Fourth
 step is getting indexed in Search Engine. A better approach is to trade
 a few links or write an article and submit it to article directories. 
The SEO India&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;span style=&quot;font-size: small;&quot;&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt; robots will find your site naturally &amp;amp; index it within a reasonable amount of time &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;span style=&quot;font-size: x-small;&quot;&gt;&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;span style=&quot;font-size: small;&quot;&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;Our
 friends over at Search Engine Land  released an awesome new  
infographic that uses the periodic table format  to explain all of the  
SEO ranking factors. Two versions of the  infographic are below, but you
  can &lt;/span&gt;&lt;a href=&quot;http://searchengineland.com/seotable/download-periodic-table-of-seo&quot; style=&quot;font-family: Arial,Helvetica,sans-serif;&quot; target=&quot;_blank&quot; title=&quot;download the full-sized verion from Search Engine Land&quot;&gt;download the full-sized version from Search Engine Land&lt;/a&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;.&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiBPxPX2wbGqQfEaq_ioJC32hkznse1D7I1bjudalyvclDtPnrTV9PrQ8Ivf0Eq7wavyKYnihBnHK7vyWXfidAvk8-RnWH3xKPG3jbud7fWjU0_NL7urH1-xz_kdpBvn2qIqp5-zrHvcY8/s1600/Periodic-Table-of-SEO-condensed-large-resized-600-CodeImagine.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiBPxPX2wbGqQfEaq_ioJC32hkznse1D7I1bjudalyvclDtPnrTV9PrQ8Ivf0Eq7wavyKYnihBnHK7vyWXfidAvk8-RnWH3xKPG3jbud7fWjU0_NL7urH1-xz_kdpBvn2qIqp5-zrHvcY8/s1600/Periodic-Table-of-SEO-condensed-large-resized-600-CodeImagine.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhKBl7XBPYnTnVl4jtajCOffT9d58NdkBXwSmj-W4XGcRB-kqdXaGqZCesmmhacKbC5_S5V-FIL8lbCrZjUne1qXT1bUf_wfYwiJuOuBlmKoaxI3XpbIHCZfOGYNKVAcqQjQR_YrUHDMOw/s1600/SEO%252BRanking%252BFactors-resized-600-Codeimagine.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhKBl7XBPYnTnVl4jtajCOffT9d58NdkBXwSmj-W4XGcRB-kqdXaGqZCesmmhacKbC5_S5V-FIL8lbCrZjUne1qXT1bUf_wfYwiJuOuBlmKoaxI3XpbIHCZfOGYNKVAcqQjQR_YrUHDMOw/s1600/SEO%252BRanking%252BFactors-resized-600-Codeimagine.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;span style=&quot;font-size: x-small;&quot;&gt;&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;b&gt;&lt;span style=&quot;font-size: small;&quot;&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;Marketing Takeaway:&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;span style=&quot;font-size: small;&quot;&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;SEO
 has a lot of ranking factors.  Examine the information in this  
infographic to understand the elements  that might currently be missing 
 from your search engine marketing  strategy. Understand that SEO today 
is  about far more than keyword  stuffing and link building.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;br /&gt;
&lt;div style=&quot;font-family: Arial,Helvetica,sans-serif; text-align: justify;&quot;&gt;
&lt;span style=&quot;font-size: small;&quot;&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;font-family: Arial,Helvetica,sans-serif; text-align: justify;&quot;&gt;
&lt;span style=&quot;font-size: small;&quot;&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;font-family: Arial,Helvetica,sans-serif; text-align: justify;&quot;&gt;
&lt;span style=&quot;font-size: small;&quot;&gt;&lt;/span&gt;&lt;/div&gt;
&lt;span style=&quot;font-size: small;&quot;&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;/span&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;b&gt;Free Download - Improving SEO: A Practical Guide:&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-size: small;&quot;&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;Use SEO to drive more visitors to your site.&lt;/span&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;/span&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-weight: normal;&quot;&gt;&lt;a href=&quot;http://www.hubspot.com/ebooks/seo-ebook-improving-seo-a-practical-guide/&quot;&gt;&lt;br /&gt;Download this free eBook for tutorials on keyword research, on-page SEO, link-building, and tips for ongoing SEO improvement!&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;font-family: Arial,Helvetica,sans-serif; text-align: left;&quot;&gt;
&lt;div style=&quot;color: black;&quot;&gt;
&lt;span style=&quot;font-size: small;&quot;&gt;&lt;b&gt;SEO Advantage:&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;color: black;&quot;&gt;
&lt;ul style=&quot;font-family: Arial,Helvetica,sans-serif; text-align: justify;&quot;&gt;
&lt;li&gt;&lt;span style=&quot;font-size: small;&quot;&gt;Cost effectiveness&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;font-size: small;&quot;&gt;Online reputation management and Competitive advantages&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;font-size: small;&quot;&gt;Pulling market&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;font-size: small;&quot;&gt;Meeting buyers requirement&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;font-size: small;&quot;&gt;Improved customer service&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;font-size: small;&quot;&gt;Risk monitoring&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;font-size: small;&quot;&gt;Long lasting results&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;font-size: small;&quot;&gt;Information marketing&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;font-size: small;&quot;&gt;Brand awareness and perceptions&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;font-size: small;&quot;&gt;Dramatic increase in brand visibility&lt;/span&gt;&lt;span style=&quot;font-size: small;&quot;&gt;&lt;b&gt;&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://webihawk.blogspot.com/feeds/4731065613358466320/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webihawk.blogspot.com/2011/10/search-engine-optimizationseo-toolstips.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3089783965945150690/posts/default/4731065613358466320'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3089783965945150690/posts/default/4731065613358466320'/><link rel='alternate' type='text/html' href='http://webihawk.blogspot.com/2011/10/search-engine-optimizationseo-toolstips.html' title='Search Engine Optimization[SEO] Tools,Tips and Techniques'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/13108193973311904698</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgYywWCGj4oJBIkj6H-Jk5U8tKnBAmcezjgVrII_KIgtGPC2pa1EaHrGTl6Pl88dpJZhcHSW2r5M8LfNpEkmFLrV1ligcq1-toZhzSq6lSWRuFr9lzCpcYF1JurwsCoZN0oayqPcNA16Ow/s72-c/search-engine-optimization-seo-process-PRomotingwebs.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3089783965945150690.post-8860063147330276523</id><published>2011-10-01T12:45:00.000-07:00</published><updated>2011-10-04T21:52:26.494-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Tech"/><title type='text'>Government To Launch $35 Tablet PC On Oct 5</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: large;&quot;&gt;&lt;b&gt;&quot;World&#39;s Cheapest Computer is Ready to launch by Indian Government within next week&quot;&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; float: left; text-align: left;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi1fMk4KaIF1cEfGGojdHAa9oQZoDvVknA9l8jzqgBDf9-jOQWdPtZdrmJdqPzDNdD2gxWms6Tp4kDylFlexgdY0CXIytJtv6bOhtnuJzZydWE7I2nkmo6tDIC5FCFv87W0kBJjY6Y9pEs/s1600/%25252435-tablet-india-launch.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi1fMk4KaIF1cEfGGojdHAa9oQZoDvVknA9l8jzqgBDf9-jOQWdPtZdrmJdqPzDNdD2gxWms6Tp4kDylFlexgdY0CXIytJtv6bOhtnuJzZydWE7I2nkmo6tDIC5FCFv87W0kBJjY6Y9pEs/s1600/%25252435-tablet-india-launch.jpg&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;The long awaited $35 (Rs 1735) dream tablet promised by the Indian government will finally see the light of the day as &lt;a href=&quot;http://timesofindia.indiatimes.com/tech/news/hardware/Govt-to-launch-35-computer-on-Oct-5/articleshow/10157877.cms&quot;&gt;the launch date has been fixed for October 5&lt;/a&gt;.
 The low cost computing device touted to be the cheapest in the world, 
has been a project drawn on lines similar to the OLPC, with the students
 being the target beneficiaries.&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;HRD
 Minister Kapil Sibal said at a function, &quot;The computer will be launched
 next month. This is not just a dream, it is a reality&quot;. While he said 
that the name for the device has been finalised and will be announced at
 the time of the launch, he declined to elaborate further. He stated 
that this computer will prove to be a very useful tool for students 
because it can do everything expected of a computer with internet 
connectivity.&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;
&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&quot;Sibal said that the tablet has been developed through public-private association. It would be quite interesting to see how the new device boosts the learning abilities of children. We’re quite optimistic about adoption of the new tablet. However, it’s quite amusing to know why all Indian MPs were given iPad 2 for personal use by Indian Government. What do you think?&quot;&lt;/span&gt;&lt;/b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;“Soon,
 a $35 computer will be made available to every child in school. The 
tablet shall help enhance the quality of learning of children,” said 
Sibal.&lt;/span&gt;&lt;/div&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;b&gt;Features:&lt;/b&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;ul&gt;
&lt;li&gt;Touchscreen&amp;nbsp;&lt;/li&gt;
&lt;li&gt;In-built keyboard&amp;nbsp;&lt;/li&gt;
&lt;li&gt;Video conferencing facility&amp;nbsp;&lt;/li&gt;
&lt;li&gt;Multimedia content&amp;nbsp;&lt;/li&gt;
&lt;li&gt;Wi-Fi&lt;/li&gt;
&lt;li&gt;USB port&lt;/li&gt;
&lt;li&gt;32GB hard drive&lt;/li&gt;
&lt;li&gt;2GB RAM&lt;/li&gt;
&lt;li&gt;Web-conferencing&lt;/li&gt;
&lt;li&gt;PDF reader unzip.&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Sibal
 had unveiled the prototype of this device in July last year. It is 
expected to have a 5 \ 7 \ 9 &quot; touch screen with an internet browser, 
PDF reader, video conferencing facilities, Open Office, Sci-lab, media 
player, remote device management capability, multimedia input-output 
options, and multiple format file viewer. The actual specifications 
still remain under the covers and will be revealed only when it is 
actually launched. However, it was reported not long back on this 
website that the name of the tablet is Sakshat and its specs were also 
revealed along with the news that it will be launched in June, which 
never happened. We don&#39;t have any reason to believe that it is not the 
same tablet that is going to be launched on October 5.&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
The
 HR ministry has stated that the device will be launched with a 
considerably low $35 (Rs 1735) price tag at the start, which will 
eventually be slashed to $20 (Rs 990), and finally to $10 (Rs 495) over a
 period of time. Let&#39;s hope that the government delivers something real 
on October 5.&lt;/div&gt;
&lt;/div&gt;
&lt;/span&gt;&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://webihawk.blogspot.com/feeds/8860063147330276523/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webihawk.blogspot.com/2011/10/government-to-launch-35-tablet-pc-on.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3089783965945150690/posts/default/8860063147330276523'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3089783965945150690/posts/default/8860063147330276523'/><link rel='alternate' type='text/html' href='http://webihawk.blogspot.com/2011/10/government-to-launch-35-tablet-pc-on.html' title='Government To Launch $35 Tablet PC On Oct 5'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/13108193973311904698</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi1fMk4KaIF1cEfGGojdHAa9oQZoDvVknA9l8jzqgBDf9-jOQWdPtZdrmJdqPzDNdD2gxWms6Tp4kDylFlexgdY0CXIytJtv6bOhtnuJzZydWE7I2nkmo6tDIC5FCFv87W0kBJjY6Y9pEs/s72-c/%25252435-tablet-india-launch.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3089783965945150690.post-7332414748105308102</id><published>2011-09-30T08:45:00.000-07:00</published><updated>2011-10-04T21:52:37.314-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Tech"/><title type='text'>Great Website for Developers &amp; Programmers</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;If you are a programmer or a web developer who often needs to shuffle between writing code in multiple languages, check out &lt;a href=&quot;http://searchco.de/&quot;&gt;searchco.de&lt;/a&gt; – this is an instant search engine for all programming related documentation and nothing else.&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjFpaGzHDjLcz_1SQ4tkVIN_ql3Uu8dYF3D5H-Pps-7n4ptGwVoelSQOI8JoPjDSiZFlquAgK3F4Rr5CAGsN4Oiy3DoPkSQPHmJTVpmMSIwd8K48qn_ocvu98FEUc2xlb4fqeX7o24x83U/s1600/search%252Bcode.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjFpaGzHDjLcz_1SQ4tkVIN_ql3Uu8dYF3D5H-Pps-7n4ptGwVoelSQOI8JoPjDSiZFlquAgK3F4Rr5CAGsN4Oiy3DoPkSQPHmJTVpmMSIwd8K48qn_ocvu98FEUc2xlb4fqeX7o24x83U/s1600/search%252Bcode.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;You type a function name and searchco.de will pull a list of all languages where that function is available along with the syntax and description. Alternately, you may prefix the function name with the language name – like jquery slide - to limit your search results to a particular language.&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;In addition to regular programming languages, &lt;a href=&quot;http://searchco.de/&quot;&gt;searchco.de&lt;/a&gt; also indexes documentation for Windows and Linux commands.&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;However, if you are looking to search for code snippets or to debug problems in your existing code, Google’s Code Search is still your best friend. You can even find code using regular expressions, a feature that is not available inside Google&#39;s web search.&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;b&gt;&lt;a href=&quot;http://code.google.com/&quot;&gt;Google Code&lt;/a&gt; Search is part of Google Labs so am not too sure if it will survive once Google retires the Labs section altogether.&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgiOnEElrpltnwQKkubQczKF3cP85zbHC8o3bs3vXnlN1zABGOFFu_1bdWeETtp4F56QTR9L9gkDFX3BOkdec0-_inVnw6_wTmylNGO-OjpY9B0Y3GATYKCbQEXHkaiY0cX5j033lpZuIA/s1600/code_search.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgiOnEElrpltnwQKkubQczKF3cP85zbHC8o3bs3vXnlN1zABGOFFu_1bdWeETtp4F56QTR9L9gkDFX3BOkdec0-_inVnw6_wTmylNGO-OjpY9B0Y3GATYKCbQEXHkaiY0cX5j033lpZuIA/s1600/code_search.png&quot; /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://webihawk.blogspot.com/feeds/7332414748105308102/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webihawk.blogspot.com/2011/09/great-website-for-developers.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3089783965945150690/posts/default/7332414748105308102'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3089783965945150690/posts/default/7332414748105308102'/><link rel='alternate' type='text/html' href='http://webihawk.blogspot.com/2011/09/great-website-for-developers.html' title='Great Website for Developers &amp; Programmers'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/13108193973311904698</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjFpaGzHDjLcz_1SQ4tkVIN_ql3Uu8dYF3D5H-Pps-7n4ptGwVoelSQOI8JoPjDSiZFlquAgK3F4Rr5CAGsN4Oiy3DoPkSQPHmJTVpmMSIwd8K48qn_ocvu98FEUc2xlb4fqeX7o24x83U/s72-c/search%252Bcode.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3089783965945150690.post-1447217458420168623</id><published>2011-09-28T13:04:00.000-07:00</published><updated>2011-10-04T21:52:47.738-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Tech"/><title type='text'>Amazon’s Kindle fire launched for $199</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgNl_l1XiNU09TmObZDpIuBnrToOd7e-fZzVMu6ZsYCyUqcAxDOrh-K7ApsAy1s0nBTOB0ybE_beNGQvtuXPmK1VKNN3NQMAmoCWJAdmYy3r2dxEfaJwngA3b_jWiF0AlJGXKnho8_CLB4/s1600/Amazon-Kindle-Fire-625x415.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;400&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgNl_l1XiNU09TmObZDpIuBnrToOd7e-fZzVMu6ZsYCyUqcAxDOrh-K7ApsAy1s0nBTOB0ybE_beNGQvtuXPmK1VKNN3NQMAmoCWJAdmYy3r2dxEfaJwngA3b_jWiF0AlJGXKnho8_CLB4/s640/Amazon-Kindle-Fire-625x415.jpg&quot; width=&quot;590&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Looks like Amazon has hit the sweet spot once again, this time with it’s Android based Tablet called the Kindle Fire. Amazon’s CEO Jeff Bazos unveiled the Kindle Fire tablet at one of the company’s press events and said that the Amazon’s e-commerce power will very well help the Kindle Fire tablet sales to go high and provide Apple’s iPad a tough competition.&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Prior to this launch Amazon has already launched many versions of it’s now very famous and sought after reading device – The Kindle. So, going by this the company already has a lot of market experience when it comes to selling Tablets and as our gut feeling tells us – this new tablet from Amazon – “Kindle Fire” is here to stay. Now lets take a quick look at the specs and the features of the Amazon Kindle Fire tablet:&lt;br /&gt;
&lt;br /&gt;
Now lets take a quick look at the specs and the features of the Amazon Kindle Fire tablet:&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg472yFQsEpZ3MG3i96TFaLTS6OeOcBPTnbbpFo3Hbk3AesrrxKiwKEZue3CYoQPlkjp9My4SlfUTXSO8AObGZYc27qPcbZBsQsizqFzJ_rRn1CgVMUqnkv_c3ijJjf-tvLqLd4veNDsuQ/s1600/am.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg472yFQsEpZ3MG3i96TFaLTS6OeOcBPTnbbpFo3Hbk3AesrrxKiwKEZue3CYoQPlkjp9My4SlfUTXSO8AObGZYc27qPcbZBsQsizqFzJ_rRn1CgVMUqnkv_c3ijJjf-tvLqLd4veNDsuQ/s1600/am.jpg&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;ul&gt;
&lt;li style=&quot;text-align: left;&quot;&gt;7-inch IPS panel / display with multi-touch support&amp;nbsp;&lt;/li&gt;
&lt;li style=&quot;text-align: left;&quot;&gt;1024 x 600 pixel resolution at 169 ppi and 16 million colors&amp;nbsp;&lt;/li&gt;
&lt;li style=&quot;text-align: left;&quot;&gt;Gorilla Glass coating that gives that extra protection to the screen&lt;/li&gt;
&lt;li style=&quot;text-align: left;&quot;&gt;&amp;nbsp;dual-core CPU Storage:&lt;/li&gt;
&lt;li style=&quot;text-align: left;&quot;&gt;&amp;nbsp;8GB internal memory Weight: 14.6 ounces (Approx. 410 grams)&amp;nbsp;&lt;/li&gt;
&lt;li style=&quot;text-align: left;&quot;&gt;Runs on Android but has a really refreshing and different User Interface&amp;nbsp;&lt;/li&gt;
&lt;li style=&quot;text-align: left;&quot;&gt;Wi-Fi connectivity with Amazon Silkcloud accelerated browser.&amp;nbsp;&lt;/li&gt;
&lt;li style=&quot;text-align: left;&quot;&gt;Battery Life: Up to 8 hours of continuous reading or 7.5 hours of video playback in Wi-Fi off mode and requires 4 hours for a full battery charge&amp;nbsp;&lt;/li&gt;
&lt;li style=&quot;text-align: left;&quot;&gt;USB 2.0 Micro B Connector, 3.5 mm Audio Jack&amp;nbsp;&lt;/li&gt;
&lt;li style=&quot;text-align: left;&quot;&gt;30 Day free trial of Amazon Prime which includes video streaming&amp;nbsp;&lt;/li&gt;
&lt;li style=&quot;text-align: left;&quot;&gt;Free 2 day shipping&amp;nbsp;&lt;/li&gt;
&lt;li style=&quot;text-align: left;&quot;&gt;Free Amazon Cloud storage – store all your books, music, magazines for free and delete when you are done with them.&lt;/li&gt;
&lt;/ul&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
However, on the down-side the Kindle Fire does not have a camera or a microphone. Also, the current version of the tablet does not have 3G but we are sure Amazon would be launching the 3G version soon! &lt;br /&gt;
&lt;br /&gt;
The Kindle Fire tablet from Amazon costs US $199 which is just about Rs. 9600/- in Indian currency plus the shipping charges from US to India. The tablet will be available for everyone to buy from November 15th 2011. However, the pre-orders have already started.&lt;br /&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;iframe allowfullscreen=&#39;allowfullscreen&#39; webkitallowfullscreen=&#39;webkitallowfullscreen&#39; mozallowfullscreen=&#39;mozallowfullscreen&#39; width=&#39;320&#39; height=&#39;266&#39; src=&#39;https://www.youtube.com/embed/jUtmOApIslE?feature=player_embedded&#39; frameborder=&#39;0&#39;&gt;&lt;/iframe&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;http://webihawk.com/&quot;&gt;Web i Hawk&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://webihawk.blogspot.com/feeds/1447217458420168623/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webihawk.blogspot.com/2011/09/amazons-kindle-fire-launched-for-199.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3089783965945150690/posts/default/1447217458420168623'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3089783965945150690/posts/default/1447217458420168623'/><link rel='alternate' type='text/html' href='http://webihawk.blogspot.com/2011/09/amazons-kindle-fire-launched-for-199.html' title='Amazon’s Kindle fire launched for $199'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/13108193973311904698</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgNl_l1XiNU09TmObZDpIuBnrToOd7e-fZzVMu6ZsYCyUqcAxDOrh-K7ApsAy1s0nBTOB0ybE_beNGQvtuXPmK1VKNN3NQMAmoCWJAdmYy3r2dxEfaJwngA3b_jWiF0AlJGXKnho8_CLB4/s72-c/Amazon-Kindle-Fire-625x415.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3089783965945150690.post-3553283869023177236</id><published>2011-09-27T22:18:00.000-07:00</published><updated>2011-10-04T21:52:56.449-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="How To&#39;s"/><title type='text'>How to Make Windows startup Faster</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-color: white; font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; float: left; text-align: justify;&quot;&gt;
&amp;nbsp;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh8ByHXlMfCgoHfWlovkKoRhmXS7r9OGuCyWnxHnoK9qsV50PA3E6ziJsnN2mMxTrb9N0kwhv9FZrM_PEw7gGeF4tJaN3ZEdWbpNCRhV8ndBWLKtEMshibBkoXuAH9oPkNHoHML7nehOj8/s1600/15-tips-faster-windows-boot-0.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh8ByHXlMfCgoHfWlovkKoRhmXS7r9OGuCyWnxHnoK9qsV50PA3E6ziJsnN2mMxTrb9N0kwhv9FZrM_PEw7gGeF4tJaN3ZEdWbpNCRhV8ndBWLKtEMshibBkoXuAH9oPkNHoHML7nehOj8/s1600/15-tips-faster-windows-boot-0.jpg&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: large;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 20px;&quot;&gt;&lt;b&gt;Make your PC smart and fast&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: large;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 20px;&quot;&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;If &amp;nbsp;your Windows take really long to start-up, make Your windows startup faster by using some techniques. As you &amp;nbsp;know very well this problem mainly occurs regularly with windows&amp;nbsp;&lt;a href=&quot;http://windows.microsoft.com/en-IN/windows/products/windows-xp&quot;&gt;XP&lt;/a&gt;&amp;nbsp;as well as with Windows&amp;nbsp;&lt;a href=&quot;http://windows.microsoft.com/en-IN/windows-vista/products/home&quot;&gt;Vista&lt;/a&gt;.&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;Well, you are not alone with this problem but fortunately, with some minor tweaks, you can get your sluggish Windows to start much faster without re-installing Windows or adding any new hardware.&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;The logic is fairly simple. Your computer loads quite a few software programs and services during start-up (look at all the icons in your Windows System tray). If you can trim this list, your computer’s boot time will increase.&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;float: left; font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiy0-XJTbDK3KeOfYwC8JugOuk76_hwx2artLW7YqZzDVmmb2b3JnHRUdlx1nRWqNIiV4EVxZ_OIxuA0YDofzFzKYEW8phLtKokkXLEE6XVU1AmULZpCT7x6eIcnCF0wr025eXGHTlMuPM/s1600/energy-flow-windows-7-by-gyppi.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;201&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiy0-XJTbDK3KeOfYwC8JugOuk76_hwx2artLW7YqZzDVmmb2b3JnHRUdlx1nRWqNIiV4EVxZ_OIxuA0YDofzFzKYEW8phLtKokkXLEE6XVU1AmULZpCT7x6eIcnCF0wr025eXGHTlMuPM/s320/energy-flow-windows-7-by-gyppi.jpg&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;b&gt;Windows Dusting and Cleaning&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;This is the best way to increase startup time by using &amp;nbsp;following steps:&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;b&gt;1.&amp;nbsp;&lt;/b&gt;Clean out the Registry: The larger your Windows Registry, the longer the OS will take to boot. My favorite Registry cleaner is ChemTable&#39;s $30 Reg Organizer, which is both a powerful Registry editor and a general Windows maintenance tool. If you don&#39;t want to pay to put things in order, try the less-powerful Easy Cleaner from ToniArts.&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;b&gt;2.&lt;/b&gt;&amp;nbsp;Use fewer fonts: Loading hundreds of system fonts takes time. If you have more than 500 fonts on your PC, remove a few. Sue Fisher&#39;s free &lt;a href=&quot;http://members.ozemail.com.au/~scef/tft.html&quot;&gt;The Font&lt;/a&gt; Thing utility will help you whittle your font selection down to size.&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;b&gt;3.&lt;/b&gt;&amp;nbsp;Add RAM&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;b&gt;4.&lt;/b&gt;&amp;nbsp;&amp;nbsp;Click on Start, then Run, and type &quot;msconfig&quot;&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;b&gt;5.&lt;/b&gt;&amp;nbsp;&amp;nbsp;Look under the boot.&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;b&gt;6.&lt;/b&gt;&amp;nbsp;&amp;nbsp;Uninstall all unrequired programs.&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;b&gt;7.&lt;/b&gt;&amp;nbsp;Delete tthe temporary files periodically from your computer to make the application run &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;faster.&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;b&gt;8.&lt;/b&gt;&amp;nbsp;Perform a scandisk to see that your computer hard drive is in healthy condition.&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;b&gt;9.&lt;/b&gt;&amp;nbsp;Always perform a Disk Defragmentation at least once a month.&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: large;&quot;&gt;&lt;b&gt;&quot;By Using an Utility Program&quot;&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;You can use a free utility called Soluto and it helped&amp;nbsp;&lt;b&gt;reduce the start-up time of my Windows computer from 3.15 minutes to around 1.25 minutes.&lt;/b&gt;&amp;nbsp;All this with a few easy clicks and without confusing the user with any technical jargon.&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;After Soluto &amp;nbsp;installation, it sorts your start-up programs list into three categories:&lt;/span&gt;&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-color: white;&quot;&gt;&lt;b style=&quot;border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; font-style: inherit; font-weight: bold; line-height: 20px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;&quot;&gt;No-brainer&amp;nbsp;&lt;/b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 20px;&quot;&gt;– remove these programs from start-up with giving a second thought.&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 20px;&quot;&gt;&lt;b style=&quot;border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; font-style: inherit; font-weight: bold; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;&quot;&gt;Potentially removable&amp;nbsp;&lt;/b&gt;– another list of start-up programs that may also be removed &amp;nbsp; provided you know what these programs do.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 20px;&quot;&gt;&lt;b style=&quot;border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; font-style: inherit; font-weight: bold; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;&quot;&gt;Required&amp;nbsp;&lt;/b&gt;– Certain programs and services are required to run Windows properly and therefore should not be removed.&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjjf-KSy0acneSorHCmmPaE_nHiHIZV3_WXZkUxbwWm2M13YkWxiaJBgT5EBbkUnz3b1AxPDUTwiMaTHaCWFTCIcFk2cQKBpKnsxBrFcVc8SDtwueMEBBdPM81ZshF-Oy8Fj6M9jDhCq9Y/s1600/soluto_minizmie_start_up_programs_windows.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjjf-KSy0acneSorHCmmPaE_nHiHIZV3_WXZkUxbwWm2M13YkWxiaJBgT5EBbkUnz3b1AxPDUTwiMaTHaCWFTCIcFk2cQKBpKnsxBrFcVc8SDtwueMEBBdPM81ZshF-Oy8Fj6M9jDhCq9Y/s1600/soluto_minizmie_start_up_programs_windows.jpg&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 20px;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-color: white;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div style=&quot;border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; margin-bottom: 20px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify;&quot;&gt;
&lt;div style=&quot;border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; margin-bottom: 20px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-color: white;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 20px;&quot;&gt;Depending upon the software app, you may then either choose “Pause” to completely remove that app from the start-up queue or choose “Delay” when you want the app to run automatically but not immediately at start-up. Soluto will launch the “delayed” app once the boot up is over and your system is idle.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; margin-bottom: 20px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-color: white;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 20px;&quot;&gt;You can also hover the mouse over any program name and Soluto will display the number of seconds that the app adds to the start-up time. And don&#39;t bother about making mistakes because Soluto has a useful &quot;Undo all&quot; feature that will restore the start-up list to the original state with a click.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; margin-bottom: 20px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-color: white;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 20px;&quot;&gt;Once you are done classifying your start-up programs list, reboot the computer and you should notice a difference between the start-up time.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; margin-bottom: 20px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-color: white;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 20px;&quot;&gt;&lt;b&gt;Where to download Soluto?&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; margin-bottom: 20px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-color: white;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 20px;&quot;&gt;The official site for Soluto is&lt;a href=&quot;http://www.soluto.com/&quot;&gt; soluto.com&lt;/a&gt; but in order to download the program, you should head over to &lt;a href=&quot;http://mysoluto.com/&quot;&gt;mysoluto.com&lt;/a&gt;.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; margin-bottom: 20px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-color: white;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 20px;&quot;&gt;&lt;b&gt;Alternatives to Soluto&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; margin-bottom: 20px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-color: white;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 20px;&quot;&gt;If you are tech-savvy, you can also use a utility like Sysinternals Autoruns to manually prevent all the non-essential Windows processes and programs from running at start-up.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; margin-bottom: 20px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-color: white;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 20px;&quot;&gt;Just uncheck all the Autorun entries and Services that you don&#39;t wish to load at startup and reboot your system. You’ll however need a separate program to get the “delay” feature which is so handy in Solute.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-color: white;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 20px;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-color: white;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://webihawk.blogspot.com/feeds/3553283869023177236/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webihawk.blogspot.com/2011/09/make-your-pc-smart-and-fast-if-windows.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3089783965945150690/posts/default/3553283869023177236'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3089783965945150690/posts/default/3553283869023177236'/><link rel='alternate' type='text/html' href='http://webihawk.blogspot.com/2011/09/make-your-pc-smart-and-fast-if-windows.html' title='How to Make Windows startup Faster'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/13108193973311904698</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh8ByHXlMfCgoHfWlovkKoRhmXS7r9OGuCyWnxHnoK9qsV50PA3E6ziJsnN2mMxTrb9N0kwhv9FZrM_PEw7gGeF4tJaN3ZEdWbpNCRhV8ndBWLKtEMshibBkoXuAH9oPkNHoHML7nehOj8/s72-c/15-tips-faster-windows-boot-0.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3089783965945150690.post-5121045337297365912</id><published>2011-09-26T12:58:00.000-07:00</published><updated>2011-10-04T21:53:37.719-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Tech"/><title type='text'>Happy Birthday Google - 13th Birthday</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: #474747; font-family: Arial, Helvetica, sans-serif; line-height: 17px;&quot;&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; float: left; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhFDHvfz-QjcRRXACtJxMH-LQ1buFuHD3Z26FJaGB2vWgBXR2dTV310_Z3rELBJJY6AECZweQdtKGLWyyz1MPtO1qfg8LhZ8Sp8VOE82ZCejjTwkCBLKdob8GKCMZXQaWHpPJNIdCq5HWU/s1600/search.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;180&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhFDHvfz-QjcRRXACtJxMH-LQ1buFuHD3Z26FJaGB2vWgBXR2dTV310_Z3rELBJJY6AECZweQdtKGLWyyz1MPtO1qfg8LhZ8Sp8VOE82ZCejjTwkCBLKdob8GKCMZXQaWHpPJNIdCq5HWU/s320/search.jpg&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; color: #474747; line-height: 21px; margin-bottom: 18px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;
&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: large;&quot;&gt;Happy Birthday Google&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; color: #474747; line-height: 21px; margin-bottom: 18px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;What were&amp;nbsp;&lt;em style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;you&lt;/em&gt;&amp;nbsp;up to 13 years ago? Maybe you were perfecting the ideal AIM screen name. Or you might have been surfing the “WestHollywood” neighborhood of GeoCities. Chances are, you had been using Yahoo! or AOL as your primary search engines. But Google’s debut on this day in&lt;a href=&quot;http://www.youtube.com/user/DiamondGB#p/search/0/hWq4DWfrpu8&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; color: #1e598e; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none; vertical-align: baseline;&quot; target=&quot;_blank&quot;&gt;1998&lt;/a&gt;&amp;nbsp;would change the World Wide Web forever.&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; color: #474747; line-height: 21px; margin-bottom: 18px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;On September 4, 1998, Larry Page and Sergey Brin filed for incorporation as&amp;nbsp;&lt;a href=&quot;http://mashable.com/category/google/&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; color: #1e598e; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none; vertical-align: baseline;&quot;&gt;Google&lt;/a&gt;&amp;nbsp;Inc. — they had received a&amp;nbsp;&lt;a href=&quot;http://www.wired.com/science/discoveries/news/2007/09/dayintech_0907&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; color: #1e598e; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none; vertical-align: baseline;&quot; target=&quot;_blank&quot;&gt;$100,000 check&lt;/a&gt;&amp;nbsp;from an investor made out to Google, Inc., and needed to incorporate that name so they could legally deposit the check.&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; color: #474747; line-height: 21px; margin-bottom: 18px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;Prior to the launch, Page and Brin met at Stanford in 1995, and soon decided to launch a search service called&amp;nbsp;&lt;a href=&quot;http://www.google.com/corporate/timeline/#start&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; color: #1e598e; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none; vertical-align: baseline;&quot; target=&quot;_blank&quot;&gt;BackRub&lt;/a&gt;&amp;nbsp;in January 1996. They soon reevaluated the name (and the creepy logo) in favor of Google, a play on the mathematical figure, “googol,” which represents the number 1 followed by 100 zeroes. The name embodied their mission to create an infinite amount of web resources. And that they did.&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; color: #474747; line-height: 21px; margin-bottom: 18px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;Since then, Google has become a household name to billions of people worldwide. You’ll overhear senior citizens command their grandchildren to “google” the price of foot cream. You’ll witness toddlers punching the screen of the latest Android phone. And chances are, you’ve navigated the circles of Google+ (if not, let’s get you an invite already).&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; color: #474747; line-height: 21px; margin-bottom: 18px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;
&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: #474747; font-family: Arial, Helvetica, sans-serif; line-height: 21px;&quot;&gt;We’d like to guide you on a trip down Google lane, presenting the key products and acquisitions that were born in the first Google garage office, and innovated in the&amp;nbsp;Googleplex. In the comments below, please share how Google has had an impact on your life, and join us in wishing Google a happy birthday!&lt;/span&gt;&lt;/div&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: #474747; font-family: Arial, Helvetica, sans-serif; font-size: x-small;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 21px;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjT9yDgFa7kt4qNJn8oMvjcc68jZP1yqmWJWzb_csIt0FQHoZtc4mt7BRVmfylGDjRTFgjaKPszEY_05-ic7s9Amr_ScpGmM4ZcgVmccSZKBk-Q06v4qfssvaupl5ydJLOF6Kd105K8Muw/s1600/2594848213_8e67372e13.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;395&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjT9yDgFa7kt4qNJn8oMvjcc68jZP1yqmWJWzb_csIt0FQHoZtc4mt7BRVmfylGDjRTFgjaKPszEY_05-ic7s9Amr_ScpGmM4ZcgVmccSZKBk-Q06v4qfssvaupl5ydJLOF6Kd105K8Muw/s400/2594848213_8e67372e13.jpg&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 21px;&quot;&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;a class=&quot;readmore&quot; href=&quot;http://azziet.blogspot.com/&quot; style=&quot;width: 90px;&quot; target=&quot;_blank&quot;&gt;Website Source&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://webihawk.blogspot.com/feeds/5121045337297365912/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webihawk.blogspot.com/2011/09/happy-birthday-google-13th-birthday.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3089783965945150690/posts/default/5121045337297365912'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3089783965945150690/posts/default/5121045337297365912'/><link rel='alternate' type='text/html' href='http://webihawk.blogspot.com/2011/09/happy-birthday-google-13th-birthday.html' title='Happy Birthday Google - 13th Birthday'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/13108193973311904698</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhFDHvfz-QjcRRXACtJxMH-LQ1buFuHD3Z26FJaGB2vWgBXR2dTV310_Z3rELBJJY6AECZweQdtKGLWyyz1MPtO1qfg8LhZ8Sp8VOE82ZCejjTwkCBLKdob8GKCMZXQaWHpPJNIdCq5HWU/s72-c/search.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3089783965945150690.post-1592146134619290536</id><published>2011-09-25T05:31:00.000-07:00</published><updated>2011-10-04T21:53:47.950-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Tech"/><title type='text'>Google&#39;s green: energy efficient computing</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; float: left; text-align: left;&quot;&gt;
&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjR_iRGCRJm1l3rh25c_LwpkrB0wuqvoMyfzMyJ3IYsuDQYtoutig3EDA2BCfAB9z7IGzvtxdnXTX9ngbjGWyiFKOwSYZFT99pSVfXe17pwVWKUw9gIhYldEnx4fCFat2awjqF9oLj-qcI/s1600/google-green.jpg&quot; /&gt;&lt;/div&gt;
&lt;div style=&quot;margin-left: 1em; margin-right: 1em; text-align: justify;&quot;&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;b&gt;&quot;Better web and Better for the environment&quot;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;b&gt;&lt;span style=&quot;color: #666666;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;b&gt;&quot;Google
 prides itself on its green operations and puts great effort into 
cutting down energy use as much as possible and using renewable energy 
for the power it does need.&quot;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;Google efforts for Green:&amp;nbsp;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;ul&gt;
&lt;li style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;
 Google spent €200 million ($273 million) for its new data center and 
two years converting an old paper mill factory into a state-of-the-art 
data center.&lt;/span&gt;&lt;/li&gt;
&lt;li style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;And
 it was well worth it, the company will save a lot of money on energy 
bills thanks to the use of seawater for the cooling and the colder 
climate in the area&lt;a href=&quot;http://www.blogger.com/goog_794464568&quot;&gt;.&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;Google
 chose the site of an old paper mill that shut down in 2008 due to lack 
of demand. The mill already had a huge seawater cooling system built, to
 keep the machinery cold.&lt;/span&gt;&lt;/li&gt;
&lt;li style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;Now,
 Google has converted the cooling system to keep its thousands of 
servers from overheating. Google used a water-to-water exchange in the 
data center and relies on the low ambient temperature to do most of the 
cooling.&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;a href=&quot;http://www.blogger.com/goog_794464562&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;
&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;margin-left: 1em; margin-right: 1em; text-align: justify;&quot;&gt;
&lt;/div&gt;
&lt;div style=&quot;margin-left: 1em; margin-right: 1em; text-align: left;&quot;&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;Google&#39;ve
 worked hard to reduce the amount of energy our services use. In fact, 
to provide you with Google products for a month—not just search, but 
Google+, Gmail, YouTube and everything else they have to offer—our 
servers use less energy per user than a light left on for three hours.&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgQwY5XjdVeCNC3eSCpVQnZ9KA7C3TvlbIzsakE8qDZowfO2Ny50LzRc0b3lurfFEacRpQEPGz6k2NSDYUe0JQX0sD2mrvvuJcV9Xlfh4weYYhuH6mZQk7y0YjFpchcrK4CPVX-EjXzO2c/s1600/google-green-codeimagine.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;br /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgQwY5XjdVeCNC3eSCpVQnZ9KA7C3TvlbIzsakE8qDZowfO2Ny50LzRc0b3lurfFEacRpQEPGz6k2NSDYUe0JQX0sD2mrvvuJcV9Xlfh4weYYhuH6mZQk7y0YjFpchcrK4CPVX-EjXzO2c/s1600/google-green-codeimagine.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgQwY5XjdVeCNC3eSCpVQnZ9KA7C3TvlbIzsakE8qDZowfO2Ny50LzRc0b3lurfFEacRpQEPGz6k2NSDYUe0JQX0sD2mrvvuJcV9Xlfh4weYYhuH6mZQk7y0YjFpchcrK4CPVX-EjXzO2c/s1600/google-green-codeimagine.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: justify;&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;They’ve learned a lot in the process of reducing our environmental impact, so they’ve added a new section called “The Big Picture” to our Google Green site with numbers on our annual energy use and carbon footprint.&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;Whenever possible, They use renewable energy. We have a large solar panel installation at our Mountain View campus, and we’ve purchased the output of two wind farms to power our data centers. For the greenhouse gas emissions they can’t eliminate, they purchase high-quality carbon offsets.&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgrkc0KpRO5oP1oXwStfXa8c2BBnn0siYL7zlWOd-k8gIAj6PI9qrTdGM1oxDt4wSpSqwsRZoo1OEMGBQgxxlcejolo4cFPWOABSVUWak3fHNCAHJhDv7r5MJkVXbmk1CnSbfBpBzpB6C8/s1600/google%25252520green-carbonoffsets-.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgrkc0KpRO5oP1oXwStfXa8c2BBnn0siYL7zlWOd-k8gIAj6PI9qrTdGM1oxDt4wSpSqwsRZoo1OEMGBQgxxlcejolo4cFPWOABSVUWak3fHNCAHJhDv7r5MJkVXbmk1CnSbfBpBzpB6C8/s1600/google%25252520green-carbonoffsets-.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;By investing hundreds of millions of dollars in renewable energy projects and companies, we’re helping to create 1.7 GW of renewable power. That’s the same amount of energy used to power over 350,000 homes, and far more than what their operations consume(Says Google).&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;Finally, Their products can help people reduce their own carbon footprints. The study (PDF) we released yesterday on Gmail is just one example of how cloud-based services can be much more energy efficient than locally hosted services helping businesses cut their electricity bills.&amp;nbsp;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;margin-left: 1em; margin-right: 1em; text-align: left;&quot;&gt;
&lt;/div&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://webihawk.blogspot.com/feeds/1592146134619290536/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webihawk.blogspot.com/2011/09/googles-green-energy-efficient.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3089783965945150690/posts/default/1592146134619290536'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3089783965945150690/posts/default/1592146134619290536'/><link rel='alternate' type='text/html' href='http://webihawk.blogspot.com/2011/09/googles-green-energy-efficient.html' title='Google&#39;s green: energy efficient computing'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/13108193973311904698</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjR_iRGCRJm1l3rh25c_LwpkrB0wuqvoMyfzMyJ3IYsuDQYtoutig3EDA2BCfAB9z7IGzvtxdnXTX9ngbjGWyiFKOwSYZFT99pSVfXe17pwVWKUw9gIhYldEnx4fCFat2awjqF9oLj-qcI/s72-c/google-green.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3089783965945150690.post-8625296029943789096</id><published>2011-09-23T12:40:00.000-07:00</published><updated>2011-10-04T21:53:55.319-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Tech"/><title type='text'>502 Google Sever Error</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhbKCMTmBTv3TsHXr5VadSsRuMCos9Pz0jhHcGxt3IDBgCkioXdpPiJ23n8MJ8xPGKTWiFXPsIKa-4T7iPX_fCvI2HzC8uOolxqZ-cOLsrLa93clTuEZSqVONSFacCr8KzX91Rn3f1p00A/s1600/gmail-down.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;330&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhbKCMTmBTv3TsHXr5VadSsRuMCos9Pz0jhHcGxt3IDBgCkioXdpPiJ23n8MJ8xPGKTWiFXPsIKa-4T7iPX_fCvI2HzC8uOolxqZ-cOLsrLa93clTuEZSqVONSFacCr8KzX91Rn3f1p00A/s400/gmail-down.jpg&quot; width=&quot;600&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
Google has been down. It will rise again soon, but if you are also 
getting a 502 error message then you may be wait for such a time.&lt;br /&gt;
&lt;br /&gt;
Many of us are getting 502 or 503 error screens. Some users are also 
reporting that their Google Apps accounts have also been reduced. Other 
products such as Google Chat, appear to be affected by rolling cuts.&lt;br /&gt;
&lt;br /&gt;
&lt;div dir=&quot;ltr&quot; id=&quot;result_box&quot;&gt;
&lt;div class=&quot;dhtmlgoodies_aTab&quot;&gt;
&lt;div id=&quot;result2&quot;&gt;
&lt;b&gt;NO NEED TO WORRY ABOUT YOUR EMAILS &amp;amp; DATA ITZ SAFE&lt;/b&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://webihawk.blogspot.com/feeds/8625296029943789096/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webihawk.blogspot.com/2011/09/502-google-sever-error.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3089783965945150690/posts/default/8625296029943789096'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3089783965945150690/posts/default/8625296029943789096'/><link rel='alternate' type='text/html' href='http://webihawk.blogspot.com/2011/09/502-google-sever-error.html' title='502 Google Sever Error'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/13108193973311904698</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhbKCMTmBTv3TsHXr5VadSsRuMCos9Pz0jhHcGxt3IDBgCkioXdpPiJ23n8MJ8xPGKTWiFXPsIKa-4T7iPX_fCvI2HzC8uOolxqZ-cOLsrLa93clTuEZSqVONSFacCr8KzX91Rn3f1p00A/s72-c/gmail-down.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3089783965945150690.post-9132568725153471078</id><published>2011-09-22T22:23:00.000-07:00</published><updated>2011-10-04T21:54:01.378-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Tech"/><title type='text'>Google Plus covering the social market</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;br /&gt;
&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; float: left; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhDJ3bpk5Vqi_ES1ZZVtQCy4ulhyHakufcJBctDabylUo-bWlI-giQfRT4SqOiiwlmyo3ROaavLKuGL8SPYyxUb4DDijn_OU6DDe8cL-I-5IQQL2zZT0Cfd4PYTQiaSJg7mWVns9nXhXuI/s1600/google-plus%252Bvideo%252Btutorials.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;213&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhDJ3bpk5Vqi_ES1ZZVtQCy4ulhyHakufcJBctDabylUo-bWlI-giQfRT4SqOiiwlmyo3ROaavLKuGL8SPYyxUb4DDijn_OU6DDe8cL-I-5IQQL2zZT0Cfd4PYTQiaSJg7mWVns9nXhXuI/s320/google-plus%252Bvideo%252Btutorials.jpg&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;Google&#39;s latest offering &#39; &lt;a href=&quot;http://webihawk.blogspot.com/2011/09/google-plus-is-now-open-for-everyone.html&quot;&gt;Google Plus&lt;/a&gt;&#39;
 is steadily gaining ground in  the social networking space, so far 
dominated by Facebook , with the  internet giant&#39;s social network 
attracting about 20 million visitors in  the initial three weeks and 
nearly half of these visitors hailing from  US and India .&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;According to estimates by research firm 
ComScore, Google Plus had 19.93  million unique visitors between June 29
 and July 19 period.       &lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;The top two countries in this estimate 
are the US and India. Of the  19.93 million visitors, 5.31 million were 
from the US and 2.85 million  from India.&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;Another 0.87 million users came from the UK, 0.71 million from Germany and 0.50 million from France.&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&quot;I have never seen anything grow this quickly,&quot; vice president of industry analysis at ComScore Andrew Lipsman said.&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;a href=&quot;http://webihawk.blogspot.com/2011/09/google-plus-is-now-open-for-everyone.html&quot;&gt;Google Plus&lt;/a&gt;, launched on June 28, is Google&#39;s answer to rival Facebook.&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;It lets users post photos, messages, comments and other content from a selected groups of friends.&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;The service was started as a field trial
 and the project is by  invitation only, which means people can join 
only if a current member  invites them.&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;Eventually, Google plans to incorporate features of Google Plus in its other services, such as its YouTube video site.&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;Google CEO &lt;a href=&quot;http://www.google.com/url?sa=t&amp;amp;source=web&amp;amp;cd=1&amp;amp;ved=0CC0QFjAA&amp;amp;url=http%3A%2F%2Fen.wikipedia.org%2Fwiki%2FLarry_Page&amp;amp;rct=j&amp;amp;q=larry%20page&amp;amp;ei=wgAtTqaxDcSIrAffoaCyDQ&amp;amp;usg=AFQjCNFXg1aRbed4DBOJwd1L6SRdpgLm8g&amp;amp;sig2=kf9seB8bhWkXZ50GyfEe3Q&amp;amp;cad=rja&quot;&gt;Larry Page&lt;/a&gt; had last week said that&amp;nbsp;&lt;a href=&quot;http://webihawk.blogspot.com/2011/09/preview-of-new-gmail-sign-in-page.html&quot;&gt;Google&lt;/a&gt;&lt;a href=&quot;http://azziet.blogspot.com/2011/06/multiple-sign-in-with-google-accounts.html&quot;&gt; &lt;/a&gt;Plus had more than 10 million users.&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;Page said there are &quot;more opportunities for Google today than ever before&quot;.&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;It will be some time before Google 
catches up with Facebook&#39;s scale of  more than 750 million users. The 
other popular micro-blogging site  Twitter has more than 200 million 
registered accounts.&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;Through &#39;Google Plus&#39;, the internet 
giant aims to garner a share in the  lucrative social networking space 
that has so far been dominated by the &lt;a href=&quot;http://www.google.com/url?sa=t&amp;amp;source=web&amp;amp;cd=1&amp;amp;sqi=2&amp;amp;ved=0CCYQFjAA&amp;amp;url=http%3A%2F%2Fen.wikipedia.org%2Fwiki%2FMark_Zuckerberg&amp;amp;rct=j&amp;amp;q=Mark%20Zuckerberg&amp;amp;ei=1wAtTpajJIfLrQeOzu2xDQ&amp;amp;usg=AFQjCNGYFPdTW6iqbe9bF89gyT7i_Trrxg&amp;amp;sig2=A8qgNuJ6Z3mYXLGdoUyyxg&amp;amp;cad=rja&quot;&gt;Mark Zuckerberg&lt;/a&gt; led popular site.&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;The service has features like &#39;Circles&#39;, &#39;Sparks&#39;, &#39;Hangouts&#39; and &#39;mobile&#39;.&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;Through Circles, Google targets 
Facebook&#39;s features in which a user&#39;s  information is shared by default 
with a large number of his or her  friends including their work 
colleagues and acquaintances, rather than  only their close personal 
friends.&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;Its &quot;Huddle&quot; feature lets users send text messages to several different people at once, known as group texting. &amp;nbsp;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://webihawk.blogspot.com/feeds/9132568725153471078/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webihawk.blogspot.com/2011/09/google-plus-covering-social-market.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3089783965945150690/posts/default/9132568725153471078'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3089783965945150690/posts/default/9132568725153471078'/><link rel='alternate' type='text/html' href='http://webihawk.blogspot.com/2011/09/google-plus-covering-social-market.html' title='Google Plus covering the social market'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/13108193973311904698</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhDJ3bpk5Vqi_ES1ZZVtQCy4ulhyHakufcJBctDabylUo-bWlI-giQfRT4SqOiiwlmyo3ROaavLKuGL8SPYyxUb4DDijn_OU6DDe8cL-I-5IQQL2zZT0Cfd4PYTQiaSJg7mWVns9nXhXuI/s72-c/google-plus%252Bvideo%252Btutorials.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3089783965945150690.post-5243614208189716211</id><published>2011-09-21T11:09:00.000-07:00</published><updated>2011-10-04T21:54:08.440-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Tech"/><title type='text'>India offers billion dollar opportunity for Apple</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; float: left; text-align: justify;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhX-rS807eNtuizvaPXPgr9qpMxCjBGiBPPoLElnzDdsduBX3oqRGr8YMQ_YuBOYAo8hQpTZVbAZJPthpfmmUcit3rJyzl9qm_KQoz_Ra3ifg-i63Lz8tCDaWDGZWuZLEaZosNRcbCebXs/s1600/apple.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;248&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhX-rS807eNtuizvaPXPgr9qpMxCjBGiBPPoLElnzDdsduBX3oqRGr8YMQ_YuBOYAo8hQpTZVbAZJPthpfmmUcit3rJyzl9qm_KQoz_Ra3ifg-i63Lz8tCDaWDGZWuZLEaZosNRcbCebXs/s320/apple.jpg&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
India is a hub of nearly all the big players of tech industry. But &lt;a href=&quot;http://webihawk.blogspot.com/2011/09/apple-becomes-worlds-second-most.html&quot;&gt;Apple&lt;/a&gt;
 still has to gain ground over here. While iPad is creating ripples all 
over the world, India is gradually warming up to tablets.&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Analysts
 are estimating that India can be one of the biggest emerging market 
opportunities for the iconic iPad and iPhone maker in near future. &lt;strong&gt;Analysts believe that India is a $9.4 billion opportunity for &lt;a href=&quot;http://webihawk.blogspot.com/2011/09/apple-becomes-worlds-second-most.html&quot;&gt;Apple&lt;/a&gt; in four years. &lt;/strong&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;strong&gt;Budding
 markets, including India, could add up to 63 per cent of Apple’s 
mounting sales between now and 2015, representing as much as $70 billion
 in additional revenue.&lt;/strong&gt;&lt;strong&gt;Over $9 billion revenue milestone in 
India signals Apple selling 98 lakh iPhones, 57 lakh iPads, a little 
over 3 lakh Mac desktop computers and nearly 5 lakh Mac laptops, 
according to a source.&lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;&lt;br /&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;a href=&quot;http://webihawk.blogspot.com/2011/09/apple-becomes-worlds-second-most.html&quot;&gt;Apple&lt;/a&gt; will also benefit from its 
relationship with telecom carriers in India. It currently share 
relationship with Bharti Airtel having 156 million subscribers and 
Vodafone with about 130 million subscribers. Interestingly, these 
carriers together can offer &lt;a href=&quot;http://webihawk.blogspot.com/2011/09/apple-becomes-worlds-second-most.html&quot;&gt;Apple&lt;/a&gt; access to nearly 300 million mobile 
phone subscribers, who could be potential owners of &lt;a href=&quot;http://www.apple.com/&quot;&gt;Apple products.&lt;/a&gt;&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;&lt;br /&gt;&lt;/strong&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;strong&gt;However, some analysts are arguing that the estimation is grossly excessive.&lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;&lt;br /&gt;&lt;/strong&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;a href=&quot;http://www.apple.com/&quot;&gt;Apple&lt;/a&gt; targets a niche audience and has not yet been successful with its tablet PC, iPad.&lt;br /&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Now,
 &lt;a href=&quot;http://www.apple.com/&quot;&gt;Apple&lt;/a&gt; is going more aggressive in its approach and is planning to 
launch cheaper products aimed purposely at emerging markets. Let’s hope,
 unlike in past, &lt;a href=&quot;http://www.apple.com/&quot;&gt;Apple&lt;/a&gt; doesn’t ignore India in its future big launches.&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;a class=&quot;readmore&quot; href=&quot;http://itvoir.com/&quot; style=&quot;width: 90px;&quot; target=&quot;_blank&quot;&gt;Website Source&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://webihawk.blogspot.com/feeds/5243614208189716211/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webihawk.blogspot.com/2011/09/india-offers-billion-dollar-opportunity.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3089783965945150690/posts/default/5243614208189716211'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3089783965945150690/posts/default/5243614208189716211'/><link rel='alternate' type='text/html' href='http://webihawk.blogspot.com/2011/09/india-offers-billion-dollar-opportunity.html' title='India offers billion dollar opportunity for Apple'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/13108193973311904698</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhX-rS807eNtuizvaPXPgr9qpMxCjBGiBPPoLElnzDdsduBX3oqRGr8YMQ_YuBOYAo8hQpTZVbAZJPthpfmmUcit3rJyzl9qm_KQoz_Ra3ifg-i63Lz8tCDaWDGZWuZLEaZosNRcbCebXs/s72-c/apple.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3089783965945150690.post-8141544261646590695</id><published>2011-09-21T00:48:00.000-07:00</published><updated>2011-10-04T21:54:14.683-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Tech"/><title type='text'>Google Plus is now open for everyone</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; float: left; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi7wfwYC91eK_1tgc3y5u8e9sRmgVzZWCaFxDRqAX158znV8JXK-iXZyseZRAyMHNCNccSaSKFjfTWWSsKu0d-QMhlSg1g59fxnyLvgPM0Tb88soFSiG9aeVVEfwNiiUsOpzqXAlkOQ4rU/s1600/google%25252B.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi7wfwYC91eK_1tgc3y5u8e9sRmgVzZWCaFxDRqAX158znV8JXK-iXZyseZRAyMHNCNccSaSKFjfTWWSsKu0d-QMhlSg1g59fxnyLvgPM0Tb88soFSiG9aeVVEfwNiiUsOpzqXAlkOQ4rU/s1600/google%25252B.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
After being invite-only for nearly three months, &lt;a href=&quot;https://plus.google.com/&quot;&gt;Google+ &lt;/a&gt;is opening up to everyone.&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Writing on its official company blog about the 99 improvements that have been made to the product since launching, Google’s Vic Gundotra wrote, “We’re ready to move from field trial to beta, and introduce our 100th feature: open signups.”&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Today’s update also comes with big improvements to Google+ Hangouts, including the ability to use them on Android devices (version 2.3 and higher). It also includes search, which is a hybrid of content shared on Google+ and results from around the web. “Just type what you’re looking for into the Google+ search box, and we’ll return relevant people and posts, as well as popular content from around the web,” Gundotra wrote.&lt;/div&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;b&gt;SEE ALSO: &lt;a href=&quot;http://azziet.blogspot.com/2011/09/google-launches-hangout-api-for.html&quot;&gt;Google+ Hangouts API for Developers&lt;/a&gt;&lt;/b&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Google+ invites were in high demand when the service first launched in July, and the service attracted 20 million visitors in its first month. Since then, however, the service seems to have lost some of its luster, with a controversy around brand pages fanning the flames.&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Facebook has also launched a number of features that challenge what were initially selling points of Google’s offering. The leading social network revamped Friend Lists and made changes to the News Feed, both of which bring Google+ Circles-like functionality to the site.&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Now that Google+ is open to everyone, we’ll see if the service can regain the momentum it had earlier this summer.&lt;/div&gt;
&lt;br /&gt;
&lt;b&gt;Google Indication to Launch of Google Plus to everyone.&lt;/b&gt;&lt;br /&gt;
&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiA4AmS6VCZrHFLy2ih_CrKgyBIwxaKqs-w42WtTVwWWpqWyjdQpMVIUDwRtcTq3XmMJkjsrnnAHuWPK6b5Zt1OGtdXJchIgtPJ9IhbAxpC722yemDVWYCaYItNYN-hjvfexUyImxPvIpU/s1600/google%252Bshowing%252Blanunch%252Bof%252Bgoogle%25252B.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;257&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiA4AmS6VCZrHFLy2ih_CrKgyBIwxaKqs-w42WtTVwWWpqWyjdQpMVIUDwRtcTq3XmMJkjsrnnAHuWPK6b5Zt1OGtdXJchIgtPJ9IhbAxpC722yemDVWYCaYItNYN-hjvfexUyImxPvIpU/s640/google%252Bshowing%252Blanunch%252Bof%252Bgoogle%25252B.png&quot; width=&quot;600&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;br /&gt;
&lt;div&gt;
&lt;a class=&quot;readmore&quot; href=&quot;http://azziet.blogspot.com/&quot; style=&quot;width: 90px;&quot; target=&quot;_blank&quot;&gt;Website Source&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://webihawk.blogspot.com/feeds/8141544261646590695/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webihawk.blogspot.com/2011/09/google-plus-is-now-open-for-everyone.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3089783965945150690/posts/default/8141544261646590695'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3089783965945150690/posts/default/8141544261646590695'/><link rel='alternate' type='text/html' href='http://webihawk.blogspot.com/2011/09/google-plus-is-now-open-for-everyone.html' title='Google Plus is now open for everyone'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/13108193973311904698</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi7wfwYC91eK_1tgc3y5u8e9sRmgVzZWCaFxDRqAX158znV8JXK-iXZyseZRAyMHNCNccSaSKFjfTWWSsKu0d-QMhlSg1g59fxnyLvgPM0Tb88soFSiG9aeVVEfwNiiUsOpzqXAlkOQ4rU/s72-c/google%25252B.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3089783965945150690.post-500977381441525450</id><published>2011-09-20T06:02:00.000-07:00</published><updated>2011-10-04T21:54:21.823-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Tech"/><title type='text'>Google Wallet launches: Say goodbye to traditional wallets</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; float: left; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj8YHglp2U8CFaJfA04Bnk72xPamY_j7cyOGvXh3F9vseUKLuG_9A_y0ViPQIrnLHc4AbbWbDwzCHtb_PwT0qqwifaSiIGuw2UpU-HQ7BtWn0qNMMcfgyOYQDks0nVBvGrJPlw2qYwqH4w/s1600/google-wallet.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;175&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj8YHglp2U8CFaJfA04Bnk72xPamY_j7cyOGvXh3F9vseUKLuG_9A_y0ViPQIrnLHc4AbbWbDwzCHtb_PwT0qqwifaSiIGuw2UpU-HQ7BtWn0qNMMcfgyOYQDks0nVBvGrJPlw2qYwqH4w/s320/google-wallet.jpg&quot; width=&quot;250&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;b&gt;Google has officially launched &#39;Wallet&#39;, the first pay by phone service&lt;/b&gt;&amp;nbsp;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Google Wallet is an Android app that makes your phone your wallet. It stores virtual versions of your existing plastic cards on your phone. Simply tap your phone to pay and redeem offers using near field communication, or NFC. &lt;br /&gt;
&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif; line-height: 25px;&quot;&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;
Ahead of other companies, Google Wallet launched first on the Samsung Nexus S on the Sprint Nextel network. Also partnered in the initial scheme are Citibank and Mastercard.&lt;/div&gt;
&lt;div style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;
As other Android phones are fitted with the NFC (near field communication) technology, more like services will appear on the market.&lt;/div&gt;
&lt;div style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;
Google also said today that it has licensed NFC technology from other major credit card companies: American Express, Visa, and Discover. This means that upcoming versions of &lt;a href=&quot;http://www.google.com/wallet/&quot;&gt;Google Wallet&lt;/a&gt; will support those credit cards as well.&lt;/div&gt;
&lt;div style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;
&quot;In the future, our goal is to make it possible for you to add all of your payment cards to Google Wallet, so you can say goodbye to even the biggest traditional wallets,&quot; said Osama Bedier, vice president of payments at &lt;a href=&quot;http://google./&quot;&gt;Google.&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;
&lt;b&gt;&lt;a href=&quot;http://www.google.com/wallet/how-it-works.html&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: large;&quot;&gt;How It works&lt;/span&gt;&lt;/a&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjoy8MJSoslgzPBoxV3ZDE0m_hDQZgif-Wr95mwka4d8BImK8k6FvFqyPAL2HqMU5LeIIG6stZbLEvwOy6ZyiMTP8SHgUHVUui4ECAIIwPZ3NE3Ps7p6JZbVIDc4OZAhlDv_cLyrlZRQ0A/s1600/google-wallet-work.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;205&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjoy8MJSoslgzPBoxV3ZDE0m_hDQZgif-Wr95mwka4d8BImK8k6FvFqyPAL2HqMU5LeIIG6stZbLEvwOy6ZyiMTP8SHgUHVUui4ECAIIwPZ3NE3Ps7p6JZbVIDc4OZAhlDv_cLyrlZRQ0A/s640/google-wallet-work.jpg&quot; width=&quot;600&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://webihawk.blogspot.com/feeds/500977381441525450/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webihawk.blogspot.com/2011/09/google-wallet-launches-say-goodbye-to.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3089783965945150690/posts/default/500977381441525450'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3089783965945150690/posts/default/500977381441525450'/><link rel='alternate' type='text/html' href='http://webihawk.blogspot.com/2011/09/google-wallet-launches-say-goodbye-to.html' title='Google Wallet launches: Say goodbye to traditional wallets'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/13108193973311904698</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj8YHglp2U8CFaJfA04Bnk72xPamY_j7cyOGvXh3F9vseUKLuG_9A_y0ViPQIrnLHc4AbbWbDwzCHtb_PwT0qqwifaSiIGuw2UpU-HQ7BtWn0qNMMcfgyOYQDks0nVBvGrJPlw2qYwqH4w/s72-c/google-wallet.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3089783965945150690.post-1312227072564342804</id><published>2011-09-20T05:29:00.000-07:00</published><updated>2011-10-04T21:50:12.958-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="How To&#39;s"/><title type='text'>Think Web Colors in Hexa-decimal Numbers with RGB</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; float: left; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiY9ledgt_CDqdzMAoR2lqVDzog1iGYzDjGI6LeE5bJBLXNQd7PDTrZuhoZ1R7CfC7Oog5AEJk_x4X73yH2T6IXWb_ldDiBSihjGh1rsw2m5yd2YwS49yDzY7qhdMERj1NmdrBtDzpcnwU/s1600/RGB+Picture.gif&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;200&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiY9ledgt_CDqdzMAoR2lqVDzog1iGYzDjGI6LeE5bJBLXNQd7PDTrZuhoZ1R7CfC7Oog5AEJk_x4X73yH2T6IXWb_ldDiBSihjGh1rsw2m5yd2YwS49yDzY7qhdMERj1NmdrBtDzpcnwU/s200/RGB+Picture.gif&quot; width=&quot;200&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
If you&#39;ve ever customized the design of your blog, social network profile or a widget, you&#39;ve probably encountered HTML Hexadecimal color codes.&amp;nbsp;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Here is a simple guide to help you recognize web colors more quickly from their RGB codes.&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
In a typical web representation #RRGGBB, the first 2 digits denote red, the second 2 digital are for green and while the last 2 digit represent the blue shade.&amp;nbsp;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Each number denotes the strength of that particular color - FF0000 is only red (no green, no blue), 00FF00 only green (no red, no blue). If all colors are present in equal strength FFFFFF, you get white, if no color is present 000000, black.&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiBJlpqZTYwFAupKkCdEptPO0pH1HluCizbMO6561odQzCyYTUhtMKLMmA35ORbd3Kok-9jN6H-kY5q9x-opvAi8F0woPcgytVvYc3xwYREU30XjB7Ctn9CABIyC76VY0VC6sjPZJlBLeg/s1600/hex-basics.gif&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiBJlpqZTYwFAupKkCdEptPO0pH1HluCizbMO6561odQzCyYTUhtMKLMmA35ORbd3Kok-9jN6H-kY5q9x-opvAi8F0woPcgytVvYc3xwYREU30XjB7Ctn9CABIyC76VY0VC6sjPZJlBLeg/s1600/hex-basics.gif&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
If you want to &quot;darken&quot; a color, you need to move the color towards black 000000. That means880000 is darker than BB0000 that is darker than FF0000.&lt;/div&gt;
&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiCksSLajWEB7hGeLo1iXhBKcVPPj5F0PAYnKBpG6yXLQNyJfLaYDreuiO7a5I6mbSs-kRNA3zE6Ndc1mAlvZiN_6cQ_VIARHeN0yLv1eigdi2JRSVY84HCIACYHnxZrhhBSnHAXUZeVfY/s1600/hex-combo.gif&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiCksSLajWEB7hGeLo1iXhBKcVPPj5F0PAYnKBpG6yXLQNyJfLaYDreuiO7a5I6mbSs-kRNA3zE6Ndc1mAlvZiN_6cQ_VIARHeN0yLv1eigdi2JRSVY84HCIACYHnxZrhhBSnHAXUZeVfY/s1600/hex-combo.gif&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Similarly, if you want to &quot;lighten&quot; a color, move towards white FFFFFF. So, FF8888 is lighter thanFF4444 that is lighter than FF0000.&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjioVexCwF21Umzp6i_QSaMPzJ1NLBEoBFRQKq1Ua2V6dCAeYleTcwsNfsOkhC1mSTgy41VUX336K2qjcfxDezprGn8A7FYZu_kSOgd3UEjFvk8toXqbypvDfAWf385FVwNQJRyLXCqE3Y/s1600/hex-darker.gif&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjioVexCwF21Umzp6i_QSaMPzJ1NLBEoBFRQKq1Ua2V6dCAeYleTcwsNfsOkhC1mSTgy41VUX336K2qjcfxDezprGn8A7FYZu_kSOgd3UEjFvk8toXqbypvDfAWf385FVwNQJRyLXCqE3Y/s1600/hex-darker.gif&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Color combinations are dictated by the &quot;strongest&quot; color. So BB8844 is a reddish shade, 33CC00would be a little green, and 777777 gray (since it has no strongest color).&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiMCqwmUg6ATXUODq_YsKeuDJvwQgxT6mZAJDcLmRCx5hqe-QReh6dBfnYhDiE3ncOHFsKVtpZ-S4YGLNxBl9PvyNuSS3alevrhSynigUk8pVd1IdR23eK-2oAWmtl3Vwa2FciXEe4n80Q/s1600/hex-lighter1.gif&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiMCqwmUg6ATXUODq_YsKeuDJvwQgxT6mZAJDcLmRCx5hqe-QReh6dBfnYhDiE3ncOHFsKVtpZ-S4YGLNxBl9PvyNuSS3alevrhSynigUk8pVd1IdR23eK-2oAWmtl3Vwa2FciXEe4n80Q/s1600/hex-lighter1.gif&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
If you&#39;re uncomfortable with *Hexadecimal arithmetic, you could use the standard Windows calculator in scientific mode to perform such calculations.&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
*Hexadecimal numbers use 16 unique symbols (0-F) as opposed to the Decimal number system&#39;s 10 (0-9), and to make up for the extra 6 characters, the English alphabets A-F are used.&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: large;&quot;&gt;&lt;b&gt;RGB Color Model&amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
The &lt;a href=&quot;http://en.wikipedia.org/wiki/RGB_color_model&quot;&gt;RGB &lt;/a&gt;color model is an additive color model in which red, green, and blue light is added together in various ways to reproduce a broad array of colors. The name of the model comes from the initials of the three additive primary colors, red, green, and blue.&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
The main purpose of the RGB color model is for the sensing, representation, and display of images in electronic systems, such as televisions and computers, though it has also been used in conventional photography. Before the electronic age, the RGB color model already had a solid theory behind it, based in human perception of colors.&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
RGB is a device-dependent color model: different devices detect or reproduce a given RGB value differently, since the color elements (such as phosphors or dyes) and their response to the individual R, G, and B levels vary from manufacturer to manufacturer, or even in the same device over time. Thus an RGB value does not define the same color across devices without some kind of color management.&lt;br /&gt;
&lt;br /&gt;
&lt;a class=&quot;readmore&quot; href=&quot;http://azziet.blogspot.com/2011/09/think-web-colors-in-hexa-decimal.html&quot; style=&quot;width: 90px;&quot; target=&quot;_blank&quot;&gt;Website Source&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://webihawk.blogspot.com/feeds/1312227072564342804/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webihawk.blogspot.com/2011/09/think-web-colors-in-hexa-decimal.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3089783965945150690/posts/default/1312227072564342804'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3089783965945150690/posts/default/1312227072564342804'/><link rel='alternate' type='text/html' href='http://webihawk.blogspot.com/2011/09/think-web-colors-in-hexa-decimal.html' title='Think Web Colors in Hexa-decimal Numbers with RGB'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/13108193973311904698</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiY9ledgt_CDqdzMAoR2lqVDzog1iGYzDjGI6LeE5bJBLXNQd7PDTrZuhoZ1R7CfC7Oog5AEJk_x4X73yH2T6IXWb_ldDiBSihjGh1rsw2m5yd2YwS49yDzY7qhdMERj1NmdrBtDzpcnwU/s72-c/RGB+Picture.gif" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3089783965945150690.post-351757967126572197</id><published>2011-09-19T00:02:00.000-07:00</published><updated>2011-10-04T21:54:28.472-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Tech"/><title type='text'>Apple Becomes World’s Second Most Valuable Brand — After Google [STUDY]</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjUNoxkmIkd0vYEPeD6MMfBbJg3_d2vIzrXVIlkUAlHXa0kBzkwzn5VisFWX60A9aqBMdjf5D5_oPVbaRxTJlb0KJVRcgxuo7eVtHxICshf-3r9xwkapY4iaNOAqkxY6njcZOfrvlO849c/s1600/apple.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjUNoxkmIkd0vYEPeD6MMfBbJg3_d2vIzrXVIlkUAlHXa0kBzkwzn5VisFWX60A9aqBMdjf5D5_oPVbaRxTJlb0KJVRcgxuo7eVtHxICshf-3r9xwkapY4iaNOAqkxY6njcZOfrvlO849c/s1600/apple.jpg&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Apple‘s brand is worth $39.3 billion, or 33% more than it was at the start of the year, according to a study from consulting firm Brand Finance.&lt;/div&gt;
&lt;div style=&quot;background-color: transparent; border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; margin-bottom: 18px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify; vertical-align: baseline;&quot;&gt;
The London-based company looks at a company’s cash flow and other financial metrics to assess the worth of its trademarks and other intellectual property. At the top of the heap is Google, whose IP is worth $48.3 billion — and likely more after Thursday, when the search giant bought another treasure trove of patents from IBM. (Big Blue itself is currently in fourth place.)&lt;br /&gt;
Microsoft slipped to third place, a hair’s breadth below Apple at $39 billion — although Windows 8 may change that equation.&lt;br /&gt;
This marks the first time, according to the report, that the world’s top four most valuable brands are all tech companies. Coming in just below them: Walmart, GE, AT&amp;amp;T and Coca-Cola. A couple of banks with slipping reputations — Wells Fargo and Bank of America — round out the top 10.&lt;/div&gt;
&lt;div style=&quot;background-color: transparent; border-bottom-width: 0px; border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; line-height: 21px; margin-bottom: 18px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify; vertical-align: baseline;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: normal;&quot;&gt;&lt;a class=&quot;readmore&quot; href=&quot;http://azziet.blogspot.com/2011/09/apple-becomes-worlds-second-most.html&quot; style=&quot;width: 90px;&quot; target=&quot;_blank&quot;&gt;Website Source&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://webihawk.blogspot.com/feeds/351757967126572197/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webihawk.blogspot.com/2011/09/apple-becomes-worlds-second-most.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3089783965945150690/posts/default/351757967126572197'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3089783965945150690/posts/default/351757967126572197'/><link rel='alternate' type='text/html' href='http://webihawk.blogspot.com/2011/09/apple-becomes-worlds-second-most.html' title='Apple Becomes World’s Second Most Valuable Brand — After Google [STUDY]'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/13108193973311904698</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjUNoxkmIkd0vYEPeD6MMfBbJg3_d2vIzrXVIlkUAlHXa0kBzkwzn5VisFWX60A9aqBMdjf5D5_oPVbaRxTJlb0KJVRcgxuo7eVtHxICshf-3r9xwkapY4iaNOAqkxY6njcZOfrvlO849c/s72-c/apple.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3089783965945150690.post-1241106832165196863</id><published>2011-09-18T13:57:00.000-07:00</published><updated>2011-10-04T21:54:34.721-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Tech"/><title type='text'>Top 10 Browsers</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiq4fsGdNWHssbwOgwZbVZybJmv5-6CkTnhykesjvezMF3QRE3tCLPV4cJNcTFIutx1tIzLYNpgnDKSPu2u2sYwfFQcSkbHuvKPchQP8_Asl3b7OhOdkaYKa2SPhMc9PjngGWb9MGicA_8/s1600/top-best-browsers.jpg&quot; imageanchor=&quot;1&quot; style=&quot;clear: left; float: left; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;203&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiq4fsGdNWHssbwOgwZbVZybJmv5-6CkTnhykesjvezMF3QRE3tCLPV4cJNcTFIutx1tIzLYNpgnDKSPu2u2sYwfFQcSkbHuvKPchQP8_Asl3b7OhOdkaYKa2SPhMc9PjngGWb9MGicA_8/s320/top-best-browsers.jpg&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
If you are surfing Net &amp;amp; require to make use of feature rich browser then you have so lots of options to select from.Choosing the best for great experience, you will must know about all browsers.To help you select best, today we have come up with the list of top ten browsers with their features.&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;b&gt;1. Mozilla Firefox&lt;/b&gt; :&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
This browser is perhaps the world’s favorite browser. The top 
multinationals have decided to keep it as their default. It is open 
source browser with the worldwide support from a community of developers
 and testers. The main features of this browser are:&lt;/div&gt;
&lt;ul&gt;
&lt;li&gt; Private Browsing&lt;/li&gt;
&lt;li&gt; Instant Web Site ID&lt;/li&gt;
&lt;li&gt; Built-in Spell Checker&lt;/li&gt;
&lt;li&gt; Customization with around a million themes available for free from its official website&lt;/li&gt;
&lt;li&gt; Ships with almost all linux distributions&lt;/li&gt;
&lt;/ul&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgdBDVnRAdV0KyQQa7hYwhxRuBWaU471jfeNqzem5QwEeBeQtdNwGmMzmHGza3e42cyaQY0YZOwnRQ8fApf9L_NEOLhEGc8EIfJUMzkL5rTPEhV0AEelUWluYMlord6Ue7Cu3Xb29e22Zk/s1600/mozilla-firefox.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgdBDVnRAdV0KyQQa7hYwhxRuBWaU471jfeNqzem5QwEeBeQtdNwGmMzmHGza3e42cyaQY0YZOwnRQ8fApf9L_NEOLhEGc8EIfJUMzkL5rTPEhV0AEelUWluYMlord6Ue7Cu3Xb29e22Zk/s1600/mozilla-firefox.jpg&quot; /&gt;&amp;nbsp;&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;b&gt;&lt;br /&gt;2. Chrome&lt;/b&gt; :&lt;br /&gt;
This is managed by Google. It is fastest of all browsers that are available today. It main features are:&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;Flexible Tabs which can be placed anywhere&lt;/li&gt;
&lt;li&gt; In Built Download Manager&lt;/li&gt;
&lt;li&gt;Private Browsing&lt;/li&gt;
&lt;li&gt;Online Task Manager&lt;/li&gt;
&lt;li&gt;More Secure&lt;/li&gt;
&lt;li&gt;Webshots of last websites visited&lt;/li&gt;
&lt;/ul&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgKszdV2so0lwH6lTd2PhyATj_r_pOq1y-Gt2uANbhqRdo2lXZyMJrw88U1CxTzpJaxGQ2NzrS44g-92u17S5PLUGSxwIFt9UXFcMR8YrrIjXUrcQz4flYhHSKkHBC7yCGV6BpzCgO7zdU/s1600/google-chrome-wide-150x150.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgKszdV2so0lwH6lTd2PhyATj_r_pOq1y-Gt2uANbhqRdo2lXZyMJrw88U1CxTzpJaxGQ2NzrS44g-92u17S5PLUGSxwIFt9UXFcMR8YrrIjXUrcQz4flYhHSKkHBC7yCGV6BpzCgO7zdU/s1600/google-chrome-wide-150x150.jpg&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;b&gt;&lt;br /&gt;3. Internet Explorer &lt;/b&gt;:&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
This is perhaps our first web browser that we might have experienced.
 It is maintained and developed by Microsoft. The main features of this 
are:&lt;/div&gt;
&lt;div&gt;
&lt;/div&gt;
&lt;ul style=&quot;text-align: left;&quot;&gt;
&lt;li&gt;Compatibility with older versions so that the visibility is not an issue&lt;/li&gt;
&lt;li&gt;Grouped Tabs&lt;/li&gt;
&lt;li&gt;Private Browsing&lt;/li&gt;
&lt;li&gt; Grouped Tabs&lt;/li&gt;
&lt;li&gt;Web Slices &lt;/li&gt;
&lt;/ul&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgf0J6TjktoSf9FKz_4n-M3DEkmqKY_MmC09ggA1W-o5CKeQGUMBhrz4VkoGfiPYCTidjeB3nG3wkgA6ojzpeBqspLFoiyUEyIcLkF_0oPa_gGrARLpU6JgI0fDz-sX8NHDjGA4IXKfb20/s1600/ie.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgf0J6TjktoSf9FKz_4n-M3DEkmqKY_MmC09ggA1W-o5CKeQGUMBhrz4VkoGfiPYCTidjeB3nG3wkgA6ojzpeBqspLFoiyUEyIcLkF_0oPa_gGrARLpU6JgI0fDz-sX8NHDjGA4IXKfb20/s1600/ie.jpg&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;b&gt;&lt;br /&gt;4. Opera &lt;/b&gt;:
&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
This browser is claimed to be the fastest on the planet. This was 
developed by the telecom company Telenor. The main features of this 
browser is:&lt;/div&gt;
&lt;ul&gt;
&lt;li&gt;Visual Tabs&lt;/li&gt;
&lt;li&gt; A number of Addons are available on its official website&lt;/li&gt;
&lt;li&gt;Faster internet surfing even on slow connections&lt;/li&gt;
&lt;li&gt;Content Blocker for young and sensitive audience&lt;/li&gt;
&lt;li&gt;Download Manger with Torrent support&lt;/li&gt;
&lt;/ul&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiUFMe_V-qWGkihNm7mUS1jojUTEBzEfd2PxDLEKV8_SIsCQNscQEtrOTaat9f2iriqfxaD7_NrBiHM89QsiJMgCWOKAJ_0VSHRXqS8jDZtIMOdGm9t60qbHajZqYK1CCbMNmIcL0hiv6Y/s1600/opera.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiUFMe_V-qWGkihNm7mUS1jojUTEBzEfd2PxDLEKV8_SIsCQNscQEtrOTaat9f2iriqfxaD7_NrBiHM89QsiJMgCWOKAJ_0VSHRXqS8jDZtIMOdGm9t60qbHajZqYK1CCbMNmIcL0hiv6Y/s1600/opera.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&amp;nbsp;&lt;b&gt;&lt;br /&gt;5. Safari&lt;/b&gt; :&lt;br /&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
This is developed by Apple for its macintosh Operating System. Some of the features are:&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;Private Browsing&lt;/li&gt;
&lt;li&gt; Bookmark Integration with Address Book&lt;/li&gt;
&lt;li&gt;Built in password management feature which is only available in Mac only&lt;/li&gt;
&lt;li&gt;Mail integration&lt;/li&gt;
&lt;li&gt;Inline PDF Viewer&lt;/li&gt;
&lt;li&gt;Tabbed browsing&lt;/li&gt;
&lt;/ul&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjVMzYk5lmu66cHbptuCCHCMxZ-uCOAc2mJP_egDT-V1YK9uo7gsht_Zv9qCfHNKu8XZnQ_zKq6iA5Gp9EfM5ravPXNP7bPdHcCTYBXS2Y9VTzn3urwYYVV1JE0ytWId5yU6M5rSP3q-VM/s1600/safari-browser-150x150.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjVMzYk5lmu66cHbptuCCHCMxZ-uCOAc2mJP_egDT-V1YK9uo7gsht_Zv9qCfHNKu8XZnQ_zKq6iA5Gp9EfM5ravPXNP7bPdHcCTYBXS2Y9VTzn3urwYYVV1JE0ytWId5yU6M5rSP3q-VM/s1600/safari-browser-150x150.jpg&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;b&gt;6. Maxthon&lt;/b&gt; :&lt;br /&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
It is a freeware software that is developed by some firm in China. It
 was developed mainly for Microsoft Windows. Its main features are:&lt;/div&gt;
&lt;ul&gt;
&lt;li&gt;Link Validator&lt;/li&gt;
&lt;li&gt; Tabbed Surfing&lt;/li&gt;
&lt;li&gt;Adobe Flash and ActiveX object support&lt;/li&gt;
&lt;li&gt;Programmable mouse gestures and mouse chording.&lt;/li&gt;
&lt;li&gt;RSS Reader&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhvJrEJLnK3tOT7Jwaa-xbM-NpHHaydnJImfmfW-9j6WvO1zCBxWsH7Jn3RWcgTDyH6sqZV6Yn2puBFLM1EiHkJCdAs-SmzKU9MlYt7GuAqcSr19fvbcyEJBTJ3QIinW6ZRIAtcaz5DOxA/s1600/maxthon1.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhvJrEJLnK3tOT7Jwaa-xbM-NpHHaydnJImfmfW-9j6WvO1zCBxWsH7Jn3RWcgTDyH6sqZV6Yn2puBFLM1EiHkJCdAs-SmzKU9MlYt7GuAqcSr19fvbcyEJBTJ3QIinW6ZRIAtcaz5DOxA/s1600/maxthon1.jpg&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;b&gt;7. Flock &lt;/b&gt;:&lt;br /&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
It is a social networking web browser that is built for Facebook and 
Twitter. It is an open source project with many contributors all around 
the world. Its main features are&lt;/div&gt;
&lt;ul&gt;
&lt;li&gt;Integration of all the social networking account into this single browser&lt;/li&gt;
&lt;li&gt; Support for the sharing for videos, photos and links&lt;/li&gt;
&lt;li&gt;Feed Reader to accommodate all the types of feeds&lt;/li&gt;
&lt;li&gt;Support for third party Firefox extensions&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiwiauH_zequI78NkyKAXuMqWra_akbSfYofDsgSi2G9G9JBLTcqGCcu2fFNTM5yYYxKPpKbtSW6ph9rSuy6NviSOu1Qs0zdcZRRh0dWfce5HPQDiUDdd7-YOkD0axR-qYZ6a23ODmucuU/s1600/flock1.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiwiauH_zequI78NkyKAXuMqWra_akbSfYofDsgSi2G9G9JBLTcqGCcu2fFNTM5yYYxKPpKbtSW6ph9rSuy6NviSOu1Qs0zdcZRRh0dWfce5HPQDiUDdd7-YOkD0axR-qYZ6a23ODmucuU/s1600/flock1.jpg&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;b&gt;8. Avant&lt;/b&gt; :&lt;br /&gt;
It is an extremely light and fast browser that is developed by Avant Force. Its main features are:&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;In built RSS Reader&lt;/li&gt;
&lt;li&gt;Private Browsing&lt;/li&gt;
&lt;li&gt;Flash Animator Filter&lt;/li&gt;
&lt;li&gt;AD/Pop-up Blocker&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgJPXPQioql6r9b0dEEeG2JvrtjJO-8LjPtrsLFMUSU4oF9ZQTqKPh628ejAWED9B3XIRYvyTxqngFCqOja30ZR-ZDRhzKm-Q21teSSrNKWJhw-vvIe49r2_g-EjcoaVSgoiNieVq6ea0E/s1600/avant2.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgJPXPQioql6r9b0dEEeG2JvrtjJO-8LjPtrsLFMUSU4oF9ZQTqKPh628ejAWED9B3XIRYvyTxqngFCqOja30ZR-ZDRhzKm-Q21teSSrNKWJhw-vvIe49r2_g-EjcoaVSgoiNieVq6ea0E/s1600/avant2.jpg&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;b&gt;9. Deepnet Explorer&lt;/b&gt; :&lt;br /&gt;
It is the only browser with a phishing alarm along P2P connectivity. The other main features are:&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;In built RSS Reader&lt;/li&gt;
&lt;li&gt;Private Browsing&lt;/li&gt;
&lt;li&gt;Automatic Form Filler&lt;/li&gt;
&lt;li&gt;File Sharing Support&lt;/li&gt;
&lt;li&gt;Mouse Gestures&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi2sz9SYKbrpMl3aW_J3auXf_i6aY-2Vm-cuBFfbjweiDZGdF6GZy7TPF8yYxmJo7T-YS-B_NRR2HYGLx_wdmdbw40GezCdtrtzTHsZC_QuV6_mR3fOqdbjlJZZuV8Dqna-0TmG6EYrhCk/s1600/de.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi2sz9SYKbrpMl3aW_J3auXf_i6aY-2Vm-cuBFfbjweiDZGdF6GZy7TPF8yYxmJo7T-YS-B_NRR2HYGLx_wdmdbw40GezCdtrtzTHsZC_QuV6_mR3fOqdbjlJZZuV8Dqna-0TmG6EYrhCk/s1600/de.jpg&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;b&gt;10. Phase Out&lt;/b&gt; :&lt;br /&gt;
&lt;br /&gt;
It is a freeware that is used for the ultimate space exploration. The various features are:&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;Pop-Up Blocker and Clean-Up Tools&lt;/li&gt;
&lt;li&gt; Integrated Advanced Search Tool Bar&lt;/li&gt;
&lt;li&gt;Tabbed Web Windows&lt;/li&gt;
&lt;li&gt;Automatic search function on page not found error (404)&lt;/li&gt;
&lt;/ul&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjKqVT3lAleIEf7rQoI9en4Yqt5w0XQEWmP1WRChNJH3VZh2j_xA_UpXIAKe1ITrcIiYSwdG4zrcDYhNhsab8Kd3LV8bAG0_4F9Bn3MSe4u1q9X8zlQotqjQF_5rYm-Y6nLoLNuCqe_itc/s1600/phase-out1.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjKqVT3lAleIEf7rQoI9en4Yqt5w0XQEWmP1WRChNJH3VZh2j_xA_UpXIAKe1ITrcIiYSwdG4zrcDYhNhsab8Kd3LV8bAG0_4F9Bn3MSe4u1q9X8zlQotqjQF_5rYm-Y6nLoLNuCqe_itc/s1600/phase-out1.jpg&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://webihawk.com/&quot; target=&quot;_blank&quot;&gt;Web i Hawk&lt;/a&gt; &lt;/div&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://webihawk.blogspot.com/feeds/1241106832165196863/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webihawk.blogspot.com/2011/09/top-10-browsers.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3089783965945150690/posts/default/1241106832165196863'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3089783965945150690/posts/default/1241106832165196863'/><link rel='alternate' type='text/html' href='http://webihawk.blogspot.com/2011/09/top-10-browsers.html' title='Top 10 Browsers'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/13108193973311904698</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiq4fsGdNWHssbwOgwZbVZybJmv5-6CkTnhykesjvezMF3QRE3tCLPV4cJNcTFIutx1tIzLYNpgnDKSPu2u2sYwfFQcSkbHuvKPchQP8_Asl3b7OhOdkaYKa2SPhMc9PjngGWb9MGicA_8/s72-c/top-best-browsers.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3089783965945150690.post-2306703028516237745</id><published>2011-09-17T03:51:00.000-07:00</published><updated>2011-10-04T21:54:41.454-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Tech"/><title type='text'>Make Great Apparel for Website</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div class=&quot;separator&quot; float:left;&quot;=&quot;&quot; left;&quot;=&quot;&quot; style=&quot;clear: both; float: left; margin-right: 7px; text-align: left;&quot;&gt;
&lt;a href=&quot;http://webihawk.com/&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;198&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhlSnoOhqfywFAVNa3l79yJycjlpKgLdzKbbKMitTLI7ouGGae4eFAckitkjV37w-9T9PNqiDddTiUKSAmZP0wGOVx0SFGHtsjQhhnJ-5K8p09tMxppkJDbcTThzm8iMUxtAaQaXoYdOCA/s320/website-desinging-company.jpg&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
As we know that designing is the best feature for an online site and it depends over designers art of creation. In Delhi professional web design services are not limited. There&#39;s plenty of companies offering &lt;a href=&quot;http://webihawk.com/web-designing.htm&quot;&gt;web design&lt;/a&gt; and web development services around India.&lt;/div&gt;
&lt;div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
But when you go in for your site make it a point to choose a designer who knows the basic of designing and propose you with the various designs. &lt;a href=&quot;http://webihawk.com/web-designing.htm&quot;&gt;Web design &lt;/a&gt;Delhi ought to tell you the professionals and cons of all. In the event you have require a flash website designed no worries... Our&lt;a href=&quot;http://webihawk.com/web-designing.htm&quot;&gt; web design&lt;/a&gt;&amp;nbsp;suggests different &lt;a href=&quot;http://webihawk.com/web-designing.htm&quot;&gt;web design&lt;/a&gt; services which will give you the same result as any other simple &lt;a href=&quot;http://webihawk.blogspot.com/2011/09/html5-tags.html&quot;&gt;HTML&lt;/a&gt; site. Some people have a preference to go in for a company that is next-door to them. And a client be supposed to ... because without a doubt you can tell then what you require and they will tell you whether that type of design is feasible or not? For example, in the event you live in Florida then it is better to go for a custom &lt;a href=&quot;http://webihawk.com/web-designing.htm&quot;&gt;web design&lt;/a&gt;. &lt;a href=&quot;http://webihawk.com/web-designing.htm&quot;&gt;Web design services&lt;/a&gt; include design, content formation, and streamlining, programming and complete development of site. So on basis of these things they will tell you whether your idea is feasible or not? There&#39;s dissimilar things they must keep in intellect while selecting a professional &lt;a href=&quot;http://webihawk.com/&quot;&gt;web design company&lt;/a&gt; as like &lt;a href=&quot;http://webihawk.com/&quot;&gt;web design&lt;/a&gt; * They ought to have team of knowledgeable people in the field of designing. * Here &lt;a href=&quot;http://webihawk.com/web-designing.htm&quot;&gt;web design &lt;/a&gt;says expertise in development of anything from simple to multifaceted e business based &lt;a href=&quot;http://webihawk.com/&quot;&gt;web site&lt;/a&gt;. This comprises Logo Designing, Graphics Development, banner Designing, Templates designing, Simple and Complex animations, Custom Website design, Real-Estate &lt;a href=&quot;http://webihawk.com/web-development.htm&quot;&gt;website development&lt;/a&gt;, &lt;a href=&quot;http://webihawk.com/ecommerce.htm&quot;&gt;E commerce based site&lt;/a&gt;, &lt;a href=&quot;http://webihawk.com/ecommerce.htm&quot;&gt;Online store development&lt;/a&gt;, Online payment access integration, Database Driven Website, &lt;a href=&quot;http://webihawk.com/web-development.htm&quot;&gt;Online Community Development&lt;/a&gt;, &lt;a href=&quot;http://webihawk.com/web-development.htm&quot;&gt;Corporate Website Development&lt;/a&gt; , and &lt;a href=&quot;http://webihawk.com/seo.htm&quot;&gt;Search Engine gracious website&lt;/a&gt;. *A professional &lt;a href=&quot;http://webihawk.com/&quot;&gt;web&amp;nbsp;organization&lt;/a&gt; will make sure that the net site designed by them has least amount of flaws, and runs effortlessly and professionally. Their main aim with the pioneering design is to provide the users with great visiting understanding. * Web design suggests in the event that they have worked for numerous clients do check the reviews. You can ask for contact number of people for whom they have done the net site and check for their after &lt;a href=&quot;http://webihawk.com/web-development.htm&quot;&gt;website development services&lt;/a&gt;. * Most prominently check their portfolio and see how they work in fields of both &lt;a href=&quot;http://webihawk.com/&quot;&gt;designing&lt;/a&gt; and &lt;a href=&quot;http://webihawk.com/web-development.htm&quot;&gt;development&lt;/a&gt;. Fallow these basic steps and enjoy with great web design service.&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&amp;nbsp;&lt;a href=&quot;http://webihawk.com/&quot;&gt;Web i Hawk&lt;/a&gt;  is of the widely known corporation which provides Cheap Flash &lt;a href=&quot;http://webihawk.com/web-designing.htm&quot;&gt;Website Designing Services&lt;/a&gt; and also Provides Cheap Flash &lt;a href=&quot;http://webihawk.com/web-designing.htm&quot;&gt;Website Designing&lt;/a&gt; Delhi in all over World.
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;img border=&quot;0&quot; height=&quot;540&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjzzJdWXX-VLqC-2sbvCSD43NZAuKo1Wns_sACSXXljcXAcy4erDTQ_HmxnmHUW3MGfdx7p4g9OIhF4f___Aamaad961YcnfV5gj6O1_biE3PlJiW9u91au39DITxxOfr8Hu8ZoLKy61iw/s640/website-designing-company.jpg&quot; width=&quot;600&quot; /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;a href=&quot;http://webihawk.com/&quot;&gt;http://webihawk.com&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://webihawk.blogspot.com/feeds/2306703028516237745/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webihawk.blogspot.com/2011/09/make-great-apparel-for-website.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3089783965945150690/posts/default/2306703028516237745'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3089783965945150690/posts/default/2306703028516237745'/><link rel='alternate' type='text/html' href='http://webihawk.blogspot.com/2011/09/make-great-apparel-for-website.html' title='Make Great Apparel for Website'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/13108193973311904698</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhlSnoOhqfywFAVNa3l79yJycjlpKgLdzKbbKMitTLI7ouGGae4eFAckitkjV37w-9T9PNqiDddTiUKSAmZP0wGOVx0SFGHtsjQhhnJ-5K8p09tMxppkJDbcTThzm8iMUxtAaQaXoYdOCA/s72-c/website-desinging-company.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3089783965945150690.post-328071578373738253</id><published>2011-09-15T12:40:00.000-07:00</published><updated>2011-09-21T13:38:39.911-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="CSS"/><title type='text'>Why CSS is good for Google</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; float: left; text-align: left;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh5f0qvlkg4HZcC5XAKElhdvz-NlUNnmaaFFgLea5v-X_e-Qedf-_T3XclaBAyRS17zYORbebVaQTM-XooaYY97Gxg_LKRMTy83rOJU_VxI4TTQ53_fcQkjY9AvezzEiS2snZtbex71ZqY/s1600/css-google.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh5f0qvlkg4HZcC5XAKElhdvz-NlUNnmaaFFgLea5v-X_e-Qedf-_T3XclaBAyRS17zYORbebVaQTM-XooaYY97Gxg_LKRMTy83rOJU_VxI4TTQ53_fcQkjY9AvezzEiS2snZtbex71ZqY/s1600/css-google.jpg&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;a href=&quot;http://webihawk.com/css-designing.htm&quot;&gt;Cascading Style Sheets&lt;/a&gt; (CSS) are used to separate the stylistic elements of a page such as layout, colour and fonts from the content of the page such as paragraphs and images. We call this Separation of Content from Presentation.
If you don&#39;t understand CSS at all then you may decide not to use it for your site. However I would suggest that the advantages to be gained from using CSS, not just for Google, are well worth the time invested in learning it.&lt;/div&gt;
&lt;/div&gt;
&lt;h2&gt;

&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
So why is &lt;a href=&quot;http://webihawk.com/css-designing.htm&quot;&gt;CSS&lt;/a&gt; good for &lt;a href=&quot;http://google.com/&quot;&gt;Google&lt;/a&gt;?&lt;/h2&gt;
&lt;/div&gt;
&lt;ul style=&quot;text-align: left;&quot;&gt;
&lt;li&gt;&lt;a href=&quot;http://webihawk.blogspot.com/2011/08/css3-generator.html&quot;&gt;CSS&lt;/a&gt; allows for smaller file sizes&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://webihawk.blogspot.com/2011/08/css3-generator.html&quot;&gt;CSS &lt;/a&gt;allows you greater control of page structure&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://webihawk.blogspot.com/2011/08/css3-generator.html&quot;&gt;CSS&lt;/a&gt; allows you to hide certain content from browsers while it still gets picked up by Google&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;h3&gt;

&lt;a href=&quot;http://webihawk.com/css-designing.htm&quot;&gt;CSS&lt;/a&gt; allows for smaller file sizes&lt;br /&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: small; font-weight: normal;&quot;&gt;By taking styles out of the HTML page and putting it into a standalone (imported) style sheet (.css file), you can reduce the overall amount of code in your web pages. Pages with less code have smaller file sizes and Google prefers pages with smaller file sizes (many other search engines do too).&lt;br /&gt;&lt;br /&gt;Though Google doesn&#39;t offer specific advice on this matter, the search engine optimisation community is generally agreed that 100KB is a good upper limit for page sizes.&amp;nbsp;&lt;/span&gt;&lt;/div&gt;
&lt;/h3&gt;
&lt;h3&gt;

&lt;a href=&quot;http://webihawk.blogspot.com/2011/08/free-css3-video-course-24-hours-only.html&quot;&gt;CSS&lt;/a&gt; allows you greater control of page structure&lt;br /&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: small; font-weight: normal;&quot;&gt;CSS allows you to structure your document according to HTML standards without comprimising the look-and-feel of the page.&lt;/span&gt;&lt;/div&gt;
&lt;/h3&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Google rewards pages that are well structured, though many designers choose to ignore standards and guidelines as much as possible, because they (incorrectly) believe standards lead to bland pages. Using CSS, designers can create attractive pages with much flair.
&lt;/div&gt;
&lt;h3&gt;

&lt;a href=&quot;http://webihawk.blogspot.com/2011/08/free-css3-video-course-24-hours-only.html&quot;&gt;CSS &lt;/a&gt;allows you to hide content from browsers while it still gets picked up by &lt;a href=&quot;http://google.com/&quot;&gt;Google&lt;/a&gt;&lt;br /&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: small; font-weight: normal;&quot;&gt;Using &lt;a href=&quot;http://webihawk.blogspot.com/2011/08/free-css3-video-course-24-hours-only.html&quot;&gt;CSS&lt;/a&gt; you can hide content from certain browsers in certain situations. For example you may have some content that you only want to appear in print, or you may want certain content to only be shown on screen and not in print (such as page navigation). The advantage is that Google will still index all of the content and you will still get the benefit that content brings.&amp;nbsp;&lt;/span&gt;&lt;/div&gt;
&lt;/h3&gt;
&lt;h3&gt;

Browser Compatibility&lt;br /&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: small; font-weight: normal;&quot;&gt;If you are new to CSS, be aware that different browsers still interpret CSS standards in different ways, while some (very) old browsers don&#39;t read CSS at all. Ensure that your CSS is as cross-browser compatible as possible, and that your HTML pages look acceptable even without CSS.&lt;/span&gt;&lt;/div&gt;
&lt;/h3&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://webihawk.blogspot.com/feeds/328071578373738253/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webihawk.blogspot.com/2011/09/why-css-is-good-for-google.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3089783965945150690/posts/default/328071578373738253'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3089783965945150690/posts/default/328071578373738253'/><link rel='alternate' type='text/html' href='http://webihawk.blogspot.com/2011/09/why-css-is-good-for-google.html' title='Why CSS is good for Google'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/13108193973311904698</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh5f0qvlkg4HZcC5XAKElhdvz-NlUNnmaaFFgLea5v-X_e-Qedf-_T3XclaBAyRS17zYORbebVaQTM-XooaYY97Gxg_LKRMTy83rOJU_VxI4TTQ53_fcQkjY9AvezzEiS2snZtbex71ZqY/s72-c/css-google.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3089783965945150690.post-6193791248214609346</id><published>2011-09-15T03:18:00.000-07:00</published><updated>2011-10-04T21:55:27.301-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Tech"/><title type='text'>Add a Subscribe Button to your Facebook Profile</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;h1&gt;






&lt;/h1&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;apple-style-span&quot;&gt;&lt;b style=&quot;mso-bidi-font-weight: normal;&quot;&gt;&lt;span style=&quot;background-attachment: scroll; background-clip: initial; background-color: white; background-image: none; background-origin: initial; background-position: 0% 0%; background-repeat: repeat repeat; color: #333333; font-family: Arial, sans-serif; font-size: 14pt; line-height: 115%;&quot;&gt;Share Your views and hear from people even if
you are not friends, through Subscription Button on Facebook.&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj2h1DUxTenZakTfwjy0UT7e7SZwzZ79QEamFrKxZdFhO8i-LU8JhCDy7j5wiR1CHp5zgGnR5RX9VNSiCDHZB-pKQlBTe-nyVG_fGd3oMnoOHa9Zch6VOsjVJZLS7vt0LJa4c7AWCA1zPA/s1600/subscribe1.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;238&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj2h1DUxTenZakTfwjy0UT7e7SZwzZ79QEamFrKxZdFhO8i-LU8JhCDy7j5wiR1CHp5zgGnR5RX9VNSiCDHZB-pKQlBTe-nyVG_fGd3oMnoOHa9Zch6VOsjVJZLS7vt0LJa4c7AWCA1zPA/s640/subscribe1.jpg&quot; width=&quot;640&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;apple-style-span&quot;&gt;&lt;span style=&quot;background-attachment: scroll; background-clip: initial; background-color: white; background-image: none; background-origin: initial; background-position: 0% 0%; background-repeat: repeat repeat; color: #333333; font-family: Arial, sans-serif;&quot;&gt;&lt;a href=&quot;http://webihawk.blogspot.com/2011/08/facebook-acquires-digital-book-software.html&quot;&gt;Facebook&lt;/a&gt; has recently launched Subscription
Button on 14/09/2011 that allows you to follow updates, news, pictures, etc of
public regardless of the fact that you are not Facebook friends.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;apple-style-span&quot;&gt;&lt;span style=&quot;background-attachment: scroll; background-clip: initial; background-color: white; background-image: none; background-origin: initial; background-position: 0% 0%; background-repeat: repeat repeat; color: #333333; font-family: Arial, sans-serif; font-size: 11pt;&quot;&gt;Now onwards users will begin to see
Subscription Button along with “Message” and “Poke” Button on Facebook Profile.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span class=&quot;apple-style-span&quot;&gt;&lt;span style=&quot;background-attachment: scroll; background-clip: initial; background-color: white; background-image: none; background-origin: initial; background-position: 0% 0%; background-repeat: repeat repeat; color: #333333; font-family: Arial, sans-serif; font-size: 11pt; line-height: 115%;&quot;&gt;Subscription button is placed on the top-right
corner of each of your friends profile. You can choose to receive each and
every updates or only the important updates from your friends profile,this is
one of the best way to keep a tight control for different types of friends that
you have on Facebook.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj7J0-gc5iiLfwLcSyUJHen3SC13uY3Ogsgv2nNXjtHHo0uAXfpWMAW64tFPSqzzfZX7oIJ51s4E2qzoB071QiZCGKKOlSjFiSJEjkWbK9gY0cAIYgibhqDXRSapeGxZ2bpleVXEAVdcak/s1600/subscribe2.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;238&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj7J0-gc5iiLfwLcSyUJHen3SC13uY3Ogsgv2nNXjtHHo0uAXfpWMAW64tFPSqzzfZX7oIJ51s4E2qzoB071QiZCGKKOlSjFiSJEjkWbK9gY0cAIYgibhqDXRSapeGxZ2bpleVXEAVdcak/s640/subscribe2.png&quot; width=&quot;640&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span style=&quot;font-family: Arial, sans-serif; font-size: 11pt;&quot;&gt;You can also
confirm that you really want to share the stuff to non-friend public or not. To
check just visit your profile click “View As” button and then on “public” link
to see what is being updated in your profile are Public.&lt;/span&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;span style=&quot;font-family: Arial, sans-serif; font-size: 11pt;&quot;&gt;Subscription
Button can be used in many of the different ways.&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;margin-left: .5in; mso-list: l0 level1 lfo1; text-indent: -.25in;&quot;&gt;
&lt;span style=&quot;font-family: Arial, sans-serif; font-size: 15pt;&quot;&gt;You can also
use it to:&lt;/span&gt;&lt;span style=&quot;font-family: Symbol; font-size: 11pt;&quot;&gt;&lt;/span&gt;&lt;/div&gt;
&lt;ul style=&quot;text-align: left;&quot;&gt;
&lt;li&gt;&lt;span style=&quot;font-family: Symbol; font-size: 11pt;&quot;&gt;&lt;/span&gt;&lt;span style=&quot;font-family: Arial, sans-serif; font-size: 11pt;&quot;&gt;Choose
what you see from people in news feeds. &lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;font-family: Symbol; font-size: 11pt;&quot;&gt;&lt;span style=&quot;font: normal normal normal 7pt/normal &#39;Times New Roman&#39;;&quot;&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: Arial, sans-serif; font-size: 11pt;&quot;&gt;Hear
from people, even you are not friends.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;font-family: Symbol; font-size: 11pt;&quot;&gt;&lt;span style=&quot;font: normal normal normal 7pt/normal &#39;Times New Roman&#39;;&quot;&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: Arial, sans-serif; font-size: 11pt;&quot;&gt;Let
people hear from you, even if you are not friends.&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;a href=&quot;http://webihawk.com/&quot;&gt;Web i Hawk&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://webihawk.blogspot.com/feeds/6193791248214609346/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webihawk.blogspot.com/2011/09/add-subscribe-button-to-your-facebook.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3089783965945150690/posts/default/6193791248214609346'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3089783965945150690/posts/default/6193791248214609346'/><link rel='alternate' type='text/html' href='http://webihawk.blogspot.com/2011/09/add-subscribe-button-to-your-facebook.html' title='Add a Subscribe Button to your Facebook Profile'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/13108193973311904698</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj2h1DUxTenZakTfwjy0UT7e7SZwzZ79QEamFrKxZdFhO8i-LU8JhCDy7j5wiR1CHp5zgGnR5RX9VNSiCDHZB-pKQlBTe-nyVG_fGd3oMnoOHa9Zch6VOsjVJZLS7vt0LJa4c7AWCA1zPA/s72-c/subscribe1.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3089783965945150690.post-1499119215717228249</id><published>2011-09-14T03:39:00.000-07:00</published><updated>2011-10-04T21:55:41.309-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Tech"/><title type='text'>Microsoft unviels Windows 8 with Samsung Tablets</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; float: left; text-align: left;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhHQYTt7Gc35za1g6Jy8KT0dGyADevWs6c4SCVtDBazEvsrbAgq0eu4NZRA99Z1o8T-dwa5IyD_ENkR6Prl7pUAB4AmK-fpsAFtyFM-mMk1atDIbL5i3NOeQEFLNB7HxsVDQCkKaxvajZQ/s1600/windows-8-b.jpg&quot; imageanchor=&quot;1&quot; style=&quot;clear: left; float: left; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;111&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhHQYTt7Gc35za1g6Jy8KT0dGyADevWs6c4SCVtDBazEvsrbAgq0eu4NZRA99Z1o8T-dwa5IyD_ENkR6Prl7pUAB4AmK-fpsAFtyFM-mMk1atDIbL5i3NOeQEFLNB7HxsVDQCkKaxvajZQ/s200/windows-8-b.jpg&quot; width=&quot;200&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Windows 8 is the name of next version of Microsoft Windows, an operating system produced by&amp;nbsp;&lt;a href=&quot;http://webihawk.blogspot.com/2011/09/microsofts-5-biggest-weaknesses.html&quot;&gt;MICROSOFT&lt;/a&gt; for the use of PC’s(Personal Computers). Windows 8 is going to be launched in late&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
2012.&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Microsoft promise that Windows 8 will run on every system in which Windows 7 runs and they also&amp;nbsp;promises that Windows 8 will run faster and better. Windows 7 uses large RAM and CPU resources,&amp;nbsp;but Windows 8 is going to use a very small quantity of RAM and CPU resources.&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Windows 8 has a very increased speed that is easily noticeable on new systems with UEFI (Unified&amp;nbsp;Extensible Firm Interface).But people with existing systems with no special hardware can also see&amp;nbsp;large amount of reduction in time that is takes in processing.&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Windows 8 has many features that attract more and more people towards itself like Customized login&amp;nbsp;system, Start home screen, etc.&lt;br /&gt;
&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: large;&quot;&gt;&lt;b&gt;Windows 8: Lock Screen&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;
&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgn6Tq5rmbmA3C2GB83RUJTaCEx2DeNSFcjltAa7ejvwtrOQCng7UBbrTeIKEHnTKvnJdJbizMZiQKlTUI0xlyT2RwccBUmeorgCXgG2IcxLVb8qceRKQ8oNfi6JFamcfCBAZbCwHRAL3g/s1600/windows-8-a.jpg&quot; /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: large;&quot;&gt;&lt;b&gt;Windows 8: Start Screen&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;
&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhHQYTt7Gc35za1g6Jy8KT0dGyADevWs6c4SCVtDBazEvsrbAgq0eu4NZRA99Z1o8T-dwa5IyD_ENkR6Prl7pUAB4AmK-fpsAFtyFM-mMk1atDIbL5i3NOeQEFLNB7HxsVDQCkKaxvajZQ/s1600/windows-8-b.jpg&quot; /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: large;&quot;&gt;&lt;b&gt;Windows 8: Internet Explorer&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;
&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhtj8yVV-Uj_ISqtmuGOID_-FpAICobwp152k9n6qJ9owluPxSWeFdTC_EK9ctkjthu0BvyTfcZelHKmpzoKb4vF3FHIEXqh2Gx0KXePePv6IGrVZ3H3uqS_g2fqX8weWqyTAvzs3-BzUQ/s1600/windows-8-d.jpg&quot; /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: large;&quot;&gt;&lt;b&gt;Windows 8: Files&lt;/b&gt;&lt;/span&gt;&amp;nbsp;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;
&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEitlYyGJmnTAYROBgSDdj3X68ygpZK5TR4V83ZqaSiAUrT3JQoHz187Kwcf4a4ztGjwHWnNgLYDOY08OPg-jW_iKQYs2CmmeaM4_7LFzKUjOyC4sYJwA34yvUaJdJOE1PC3uaf0Poel4qw/s1600/windows-8-c.jpg&quot; /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: large;&quot;&gt;&lt;b&gt;Windows 8: Thumb&lt;/b&gt;&lt;/span&gt;&amp;nbsp;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;
&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhJlOW9SOvCU2G1LB0OyqSSrUaQXbNdkEGxwAvQNVZCls7qahLRP6NAdnQjAHqpRBZtcQEHVMyS6I7uSzyMAS9NVzetK2hF5GlPI9949IzP68yWqDPI_EjC1BkDOfUdGt05KM389AgM62I/s1600/windows-8-e.jpg&quot; /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: large;&quot;&gt;&lt;b&gt;Windows 8: Touch Keyboard&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;
&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi1Xn9hrz2mxGnR98fZRMco4et7reeLTooJugOPkpYUGpJD7RI2qXVQf1jWMUAr9SmzQ-n4ixzcdh-Bx-6OsvSlY6hXGZyHcuWLTqJ_8TNR2qRCAThamUEHM4Fpv_8XFQhQufxmxtIJaiI/s1600/windows-8-f.jpg&quot; /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: large;&quot;&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: large;&quot;&gt;&lt;b&gt;Building &quot;Windows 8&quot;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;
&lt;iframe allowfullscreen=&#39;allowfullscreen&#39; webkitallowfullscreen=&#39;webkitallowfullscreen&#39; mozallowfullscreen=&#39;mozallowfullscreen&#39; width=&#39;320&#39; height=&#39;266&#39; src=&#39;https://www.youtube.com/embed/p92QfWOw88I?feature=player_embedded&#39; frameborder=&#39;0&#39;&gt;&lt;/iframe&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;a href=&quot;http://webihawk.com/&quot; target=&quot;_blank&quot;&gt;Web i Hawk&lt;/a&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://webihawk.blogspot.com/feeds/1499119215717228249/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webihawk.blogspot.com/2011/09/windows-8.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3089783965945150690/posts/default/1499119215717228249'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3089783965945150690/posts/default/1499119215717228249'/><link rel='alternate' type='text/html' href='http://webihawk.blogspot.com/2011/09/windows-8.html' title='Microsoft unviels Windows 8 with Samsung Tablets'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/13108193973311904698</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhHQYTt7Gc35za1g6Jy8KT0dGyADevWs6c4SCVtDBazEvsrbAgq0eu4NZRA99Z1o8T-dwa5IyD_ENkR6Prl7pUAB4AmK-fpsAFtyFM-mMk1atDIbL5i3NOeQEFLNB7HxsVDQCkKaxvajZQ/s72-c/windows-8-b.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3089783965945150690.post-3154154874892634805</id><published>2011-09-09T12:00:00.000-07:00</published><updated>2011-10-04T21:55:48.269-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Tech"/><title type='text'>Tablets can or cannot replace laptops in Enterprises…Still a Big Question???</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; float: left; text-align: left;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgapmLf8uqNqZnl1A4Cr_tcWaj_-ecTdn4bf0_r0TLvVPXPi45iVvhc9C5HCnwMUh8wVi43DsCpxSd2E77tGykZMZQ42ZojewmxOfLf21cwFDlSBuEFKOnCjGB_vooBxezACcw0RGCPr8c/s1600/ipad_vs_netbook.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;143&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgapmLf8uqNqZnl1A4Cr_tcWaj_-ecTdn4bf0_r0TLvVPXPi45iVvhc9C5HCnwMUh8wVi43DsCpxSd2E77tGykZMZQ42ZojewmxOfLf21cwFDlSBuEFKOnCjGB_vooBxezACcw0RGCPr8c/s320/ipad_vs_netbook.jpg&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;a href=&quot;http://webihawk.blogspot.com/2011/09/htc-launches-glasses-free-3d-smartphone.html&quot;&gt;Tablet&lt;/a&gt; computers today will completely take the place of laptops and desktops in future, if top
manufactures of tablets and mobile phones have their way.&lt;/div&gt;
&lt;div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
“We each company to hand out 50,000 &lt;a href=&quot;http://webihawk.blogspot.com/2011/09/htc-launches-glasses-free-3d-smartphone.html&quot;&gt;tablets&lt;/a&gt; instead of 50,000 laptops.” said Omar Khan, Chief
strategy officer of Samsung Mobile. “We want them to have affinity to buy &lt;a href=&quot;http://webihawk.blogspot.com/2011/09/htc-launches-glasses-free-3d-smartphone.html&quot;&gt;Tablets&lt;/a&gt; for email and other
field projects.”&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
There are still many hurdles that have to be jumped off to fulfill Khan’s dream.&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
But on the other hand, Smith says,” We don’t yet deliver or support any kind of tablets.”He thinks that
supplying tablets instead of laptops to the employees would not produce more value and efficiency.&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Tablets cannot support large business applications and thus they cannot be replaced in the place of
laptops and desktops. They cannot fulfill the need of intense computing which includes heavy loaded
spread sheets,complex presentations and graphic designing.&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Security of the data is the biggest problem that tablets faces.&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh8ISjG8dCaVp8FLJ47e_IrjXMbuA1rVtNiyghk9tNLK3FhXZGQE69u7VJZYDR7xdVKfnlrx0Db9qaxSgLSp8-mlhBjjBCcDPBR5aFr7DsRQ7mKQQZIXuZ0QuY3cinAN9jXD5Zjpp3oKE8/s1600/NETBOOKS-VS-TABLET-PC-IPAD-SAMSUNG-GALAXY-TAB-ASUS-NETBOOK.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh8ISjG8dCaVp8FLJ47e_IrjXMbuA1rVtNiyghk9tNLK3FhXZGQE69u7VJZYDR7xdVKfnlrx0Db9qaxSgLSp8-mlhBjjBCcDPBR5aFr7DsRQ7mKQQZIXuZ0QuY3cinAN9jXD5Zjpp3oKE8/s1600/NETBOOKS-VS-TABLET-PC-IPAD-SAMSUNG-GALAXY-TAB-ASUS-NETBOOK.jpg&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://webihawk.blogspot.com/feeds/3154154874892634805/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webihawk.blogspot.com/2011/09/tablets-can-or-cannot-replace-laptops.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3089783965945150690/posts/default/3154154874892634805'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3089783965945150690/posts/default/3154154874892634805'/><link rel='alternate' type='text/html' href='http://webihawk.blogspot.com/2011/09/tablets-can-or-cannot-replace-laptops.html' title='Tablets can or cannot replace laptops in Enterprises…Still a Big Question???'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/13108193973311904698</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgapmLf8uqNqZnl1A4Cr_tcWaj_-ecTdn4bf0_r0TLvVPXPi45iVvhc9C5HCnwMUh8wVi43DsCpxSd2E77tGykZMZQ42ZojewmxOfLf21cwFDlSBuEFKOnCjGB_vooBxezACcw0RGCPr8c/s72-c/ipad_vs_netbook.jpg" height="72" width="72"/><thr:total>0</thr:total></entry></feed>