<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>2.0WebTutorials</title>
	<atom:link href="http://2.0webtutorials.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://2.0webtutorials.com</link>
	<description>Web 2.0 resources and inspiration</description>
	<lastBuildDate>Tue, 20 Mar 2012 23:11:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
<image>
<link>http://2.0webtutorials.com</link>
<url>http://2.0webtutorials.com/wp-content/cbnet-favicon/Web.ico</url>
<title>2.0WebTutorials</title>
</image>
		<item>
		<title>Cool animation effect using pure CSS transitions and some more CSS3 properties</title>
		<link>http://2.0webtutorials.com/css3-html5/cool-animation-effect-using-pure-css-transitions-and-some-more-css3-properties/</link>
		<comments>http://2.0webtutorials.com/css3-html5/cool-animation-effect-using-pure-css-transitions-and-some-more-css3-properties/#comments</comments>
		<pubDate>Tue, 20 Mar 2012 22:42:34 +0000</pubDate>
		<dc:creator>Catalin</dc:creator>
				<category><![CDATA[Css3 & Html5]]></category>
		<category><![CDATA[CSS3]]></category>

		<guid isPermaLink="false">http://2.0webtutorials.com/?p=575</guid>
		<description><![CDATA[This is not a tutorial about CSS transition effect and does no pretend to show the functionality of this CSS property. But anyway, if few words the css transition effect provide a way to control the speed of animation changes to CSS properties. For example, if you change the color of an element from white [...]


Related posts:<ol><li><a href='http://2.0webtutorials.com/css3-html5/pure-css3-and-html-we-form-design/' rel='bookmark' title='Pure CSS3 and HTML web form design'>Pure CSS3 and HTML web form design</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>This is not a tutorial about <strong>CSS transition effect</strong> and does no pretend to show the functionality of this CSS property. But anyway, if few words the css transition effect provide a way to <em>control the speed of animation</em> changes to CSS properties.</p>
<p>For example, if you change the color of an element from white to black, normally the change is instantaneous. With CSS transitions enabled, the change occurs over an interval of time you can specify, following an acceleration curve you can customize.</p>
<p>So lets return to the beautiful transition effect i was telling you. I´ve just seen this effect on Joomla control panel and I thought its just awesome. If you are using Joomla you know what I&#8217;m talking about. If not, here you can <a href="http://2.0webtutorials.com/files/joomla-icon-hover-effect/" title="See css demo">see a demo</a>. So I tried to reproduce the transition effect on mouse hover. The css properties I use to achieve this cool effect are:</p>
<ul>
<li>css transition</li>
<li>css border shadow</li>
<li>css border radius</li>
</ul>
<p>and added </p>
<ul>
<li>css rotate</li>
<li>css positioning</li>
<li>css before</li>
<li>css after</li>
</ul>
<p>Like I said Joomla uses a t<strong>ransition for the shadow and border</strong> properties to achieve the on <em>hover animation</em>, but I played a little bit more adding r<strong>otate effect</strong>, <strong>position animation</strong>, and I combined with a strange effect using the css &#8220;<em>before</em>&#8221; and &#8220;<em>after</em>&#8221; properties.</p>
<p>Please note that the CSS transition property is still in draft and is not supported by Internet Explorer. On the other hand, Firefox requires the prefix -moz-, Chrome and Safari requires the prefix -webkit- Opera requires the prefix -o-.</p>
<p>Playing around with CSS properties like &#8220;after&#8217; and &#8220;before&#8221; it turn out to be peaty awesome. I have also did some testing with the &#8220;rotate&#8221; css property witch is quite cool.</p>
<p>See it for your self. Here is the CSS code</p>
<pre class="brush: css; title: ; notranslate">
div {float: left;}

.bg1 {background: url(img/CSS3-logo.jpg) center center no-repeat; width:200px; height:150px;}
.bg2 {background: url(img/android-logo.jpg) center center no-repeat; width:200px; height:150px;}
.bg3 {background: url(img/css3_logo.jpg) center center no-repeat; width:200px; height:150px;}
.bg4 {background: url(img/logo-html5-css3.jpg) center center no-repeat; width:200px; height:150px;}

.position {
	position:relative;
	top:0;
}
.border {
	border:#CCCCCC 1px solid;
	-webkit-border-radius: 5px;/* WebKit */
	 -khtml-border-radius: 5px;/* Firefox */
	   -moz-border-radius: 5px;/* Opera */
			border-radius: 5px;/* Standard */
}
.transition {
	-webkit-transition: all 1s ease;/* WebKit */
	   -moz-transition: all 1s ease;/* Firefox */
		 -o-transition: all 1s ease;/* Opera */
			transition: all 1s ease;/* Standard */
}
.position:hover {
	position:relative;
	top:-10px;
}
.rotate:hover {
	-webkit-transform: rotate(10deg);/* WebKit */
	   -moz-transform: rotate(10deg);/* Firefox */
		 -o-transform: rotate(10deg);/* Opera */
			 ransform: rotate(10deg);/* Standard */
}
.shadow:hover {
	-webkit-box-shadow: -10px 10px 35px #888;/* WebKit */
	   -moz-box-shadow: -10px 10px 35px #888;/* Firefox */
		 -o-box-shadow: -10px 10px 35px #888;/* Opera */
			box-shadow: -10px 10px 35px #888;/* Standard */
}
.border:hover {
	-webkit-border-bottom-left-radius:70px 20px;/* WebKit */
	   -moz-border-bottom-left-radius:70px 20px;/* Firefox */
		 -o-border-bottom-left-radius:70px 20px;/* Opera */
			border-bottom-left-radius:70px 20px;/* Standard */
}
</pre>
<p>And here is a pice of the the HTML code.</p>
<pre class="brush: xml; title: ; notranslate">
&lt;div class=&quot;bg1 border transition shadow position rotate&quot;&gt;&lt;/div&gt;
&lt;div class=&quot;bg2 border transition shadow position rotate&quot;&gt;&lt;/div&gt;
&lt;div class=&quot;bg3 border transition shadow position rotate&quot;&gt;&lt;/div&gt;
&lt;div class=&quot;bg4 border transition shadow position rotate&quot;&gt;&lt;/div&gt;
</pre>
<p>See some more advanced examples here.</p>
<p><a href="http://2.0webtutorials.com/files/joomla-icon-hover-effect/" title="See css demo">DEMO</a> | <a href="http://2.0webtutorials.com/files/joomla-icon-hover-effect/joomla-icon-hover-effect.zip" title="Download css demo">Download source CODE</a></p>


<p>Related posts:</p><ol><li><a href='http://2.0webtutorials.com/css3-html5/pure-css3-and-html-we-form-design/' rel='bookmark' title='Pure CSS3 and HTML web form design'>Pure CSS3 and HTML web form design</a></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://2.0webtutorials.com/css3-html5/cool-animation-effect-using-pure-css-transitions-and-some-more-css3-properties/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Kindle fire vs iPad &#8211; Did I mention that Kindle Fire costs 199$</title>
		<link>http://2.0webtutorials.com/mobile-tech/kindle-fire-vs-ipod-did-i-mention-that-kindle-fire-costs-199/</link>
		<comments>http://2.0webtutorials.com/mobile-tech/kindle-fire-vs-ipod-did-i-mention-that-kindle-fire-costs-199/#comments</comments>
		<pubDate>Sun, 27 Nov 2011 00:15:30 +0000</pubDate>
		<dc:creator>Catalin</dc:creator>
				<category><![CDATA[Mobile Tech]]></category>
		<category><![CDATA[Amazon]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[kindle Fire]]></category>
		<category><![CDATA[Tablet]]></category>

		<guid isPermaLink="false">http://2.0webtutorials.com/?p=559</guid>
		<description><![CDATA[There are quite a few reasons why the Kindle Fire is better then the iPad.Lets´s start with the price. Kindle Fire is $199 while the cheapest iPad is $499. There’s more reasons the Kindle Fire is better, already. Obviously, if the device was terrible, the price savings wouldn’t matter. But — at least on first [...]


Related posts:<ol><li><a href='http://2.0webtutorials.com/news-events/india-launches-aakash-a-cheap-tablet-for-only-35/' rel='bookmark' title='India launches Aakash, a cheap tablet for only $35'>India launches Aakash, a cheap tablet for only $35</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>There are quite a few reasons why the Kindle Fire is better then the iPad.Lets´s start with the price. Kindle Fire is $199 while the cheapest iPad is $499. There’s more reasons the Kindle Fire is better, already.</p>
<p>Obviously, if the device was terrible, the price savings wouldn’t matter. But — at least on first impression — the Kindle Fire is solid, fast, and smooth. In fact, it seems to be just as nice, if not nicer than the iPad.</p>
<p><strong>Kindle Fire has flash support</strong></p>
<p>Flash is not dead. It’s baked into many web sites, and I’m talking about real web sites, not just small and unimportant websites. There are quite a few educational websites that are using flash as their engine</p>
<p><strong>Kindle Fire has native USB drive mode</strong></p>
<p>These next two reasons are related. There’s much better access to the Kindle Fire as a storage device than Apple provides with the iPad. For example, you can take a USB cable, plug it into the Kindle Fire and then to your PC, and drag-and-drop documents for later reading.</p>
<p>There are some hacks for this for the iPad, but native USB drive mode is supported, out of the box, for the Kindle Fire.</p>
<p><strong>PC-format document viewer</strong></p>
<p>Once again, out of the box, the Kindle Fire supports PC-format documents, ranging from Word files and PDFs, even to PowerPoints.</p>
<p>Of course here are add-on apps that will do this for the iPad, but the Kindle Fire supports it, out of the box.</p>
<p><strong>Amazon integration</strong></p>
<p>That said, the integration between the Kindle Fire and the Amazon cloud is excellent. There certainly is an iPad-based App store and iTunes store, but their integration isn’t nearly as smooth. iCloud is still substantially untested, and — to be fair — Apple has very little successful experience providing cloud services while Amazon provides them to the entire planet.</p>
<p><strong>Size does matter</strong></p>
<p>There is something deeply satisfying about the 7″ tablet form-factor. It’s possible to easily hold it in one hand like a paperback, carry it around without worrying that you’re lugging an entire window pane in your backpack.</p>
<p>So did I mention that you get all this for 300$ less then the iPad? Well you do. If you think I´m wrong pleas fee free to comment.</p>


<p>Related posts:</p><ol><li><a href='http://2.0webtutorials.com/news-events/india-launches-aakash-a-cheap-tablet-for-only-35/' rel='bookmark' title='India launches Aakash, a cheap tablet for only $35'>India launches Aakash, a cheap tablet for only $35</a></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://2.0webtutorials.com/mobile-tech/kindle-fire-vs-ipod-did-i-mention-that-kindle-fire-costs-199/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Are You Ready for HTML 5?</title>
		<link>http://2.0webtutorials.com/general/are-you-ready-for-html-5/</link>
		<comments>http://2.0webtutorials.com/general/are-you-ready-for-html-5/#comments</comments>
		<pubDate>Sun, 20 Nov 2011 23:06:47 +0000</pubDate>
		<dc:creator>Catalin</dc:creator>
				<category><![CDATA[Css3 & Html5]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[HTML5]]></category>

		<guid isPermaLink="false">http://2.0webtutorials.com/?p=539</guid>
		<description><![CDATA[HTML 5 is a new specification being developed to move HTML forward in the realm of Web applications. It was initially being developed by a group independently of the W3C, but the W3C HTML working group has since joined the development. HTML 5 adds a lot of great new features to Web pages and Web [...]


Related posts:<ol><li><a href='http://2.0webtutorials.com/css3-html5/prefetching-links-and-images-with-html5/' rel='bookmark' title='Prefetching images and links with HTML5'>Prefetching images and links with HTML5</a></li>
<li><a href='http://2.0webtutorials.com/css3-html5/pure-css3-and-html-we-form-design/' rel='bookmark' title='Pure CSS3 and HTML web form design'>Pure CSS3 and HTML web form design</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>HTML 5 is a new specification being developed to move HTML forward in the realm of Web applications. It was initially being developed by a group independently of the W3C, but the W3C HTML working group has since joined the development. HTML 5 adds a lot of great new features to Web pages and Web design and it will be exciting when more browsers support it. Microsoft has stated that they will begin supporting at least portions of HTML 5 in IE. If you want to get started sooner, Opera has had the best support, with Safari close behind, although all major browsers support total o partial HTML 5</p>
<p>The nice thing about HTML 5 is how easy it is to implement. You use the HTML 5 doctype, which is very simple and streamlined:</p>
<pre class="brush: xml; title: ; notranslate">&lt;!doctype html&gt;</pre>
<p>Yes, that&#8217;s it. Just two words &#8220;doctype&#8221; and &#8220;html&#8221;. It can be this simple because HTML 5 is no longer part of SGML, but is instead a markup language all on its own.</p>
<p>The character set for HTML 5 is streamlined as well. It uses UTF-8 and you define it with just one meta tag:</p>
<pre class="brush: xml; title: ; notranslate">&lt;meta charset=&quot;UTF-8&quot;&gt;</pre>
<p>HTML 5 recognizes that Web pages have a structure, just like XML documents. In general, Web pages have navigation, body content, and sidebar content plus headers, footers, and other features. And HTML 5 has created tags to support those elements of the page.</p>
<ul>
<li>&lt;section&gt; &#8211; to define sections of pages</li>
<li> &lt;header&gt; &#8211; defines the header of a page</li>
<li> &lt;footer&gt; &#8211; defines the footer of a page</li>
<li>&lt;nav&gt; &#8211; defines the navigation on a page</li>
<li>&lt;article&gt; &#8211; defines the article or primary content on a page</li>
<li>&lt;aside&gt; &#8211; defines extra content like a sidebar on a page</li>
<li>&lt;figure&gt; &#8211; defines images that annotate an article  </li>
</ul>
<p>There are also a few exciting new elements in HTML 5:</p>
<ul>
<li>&lt;canvas&gt; &#8211; an element to give you a drawing space in JavaScript on your Web pages. It can let you add images or graphs to tool tips or just create dynamic graphs on your Web pages, built on the fly.</li>
<li>&lt;video&gt; &#8211; add video to your Web pages with this simple tag.</li>
<li> &lt;audio&gt; &#8211; add sound to your Web pages with this simple tag.  </li>
</ul>
<p>You also need a browser that supports canvas. Browsers that I know support canvas include:</p>
<ul>
<li>Chrome 5 or later</li>
<li>Firefox 3 or later</li>
<li>Opera 9.5 or later</li>
<li>Safari 5 or later</li>
</ul>
<p>Other browsers and versions may support the canvas tag as well, but those are reliable.<br />
HTML 5 is getting more and more traction as companies find different ways to create websites that use it and devices that rely on it. So go ahead and open your favorite text application and write your firs piece of HTML 5. Who knows you may be the best new HTML 5 developer.</p>


<p>Related posts:</p><ol><li><a href='http://2.0webtutorials.com/css3-html5/prefetching-links-and-images-with-html5/' rel='bookmark' title='Prefetching images and links with HTML5'>Prefetching images and links with HTML5</a></li>
<li><a href='http://2.0webtutorials.com/css3-html5/pure-css3-and-html-we-form-design/' rel='bookmark' title='Pure CSS3 and HTML web form design'>Pure CSS3 and HTML web form design</a></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://2.0webtutorials.com/general/are-you-ready-for-html-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Restrict file download in Google Docs</title>
		<link>http://2.0webtutorials.com/google-applications/restrict-file-download-in-google-docs/</link>
		<comments>http://2.0webtutorials.com/google-applications/restrict-file-download-in-google-docs/#comments</comments>
		<pubDate>Sat, 19 Nov 2011 22:51:15 +0000</pubDate>
		<dc:creator>Catalin</dc:creator>
				<category><![CDATA[Google Apps]]></category>
		<category><![CDATA[Google Docs]]></category>

		<guid isPermaLink="false">http://2.0webtutorials.com/?p=553</guid>
		<description><![CDATA[Google recently made it possible to restrict the download of non-Google editor file types in Google Docs. This restriction can be applied to .ppt, .pdf, video, and image files for example. The restrict download feature for Google docs has bran released for Google Apps, Google Apps for Business, Government and Education editions and it is [...]


Related posts:<ol><li><a href='http://2.0webtutorials.com/google-applications/google-documents-adds-comment-only-access-and-colaboration/' rel='bookmark' title='Google documents adds Comment-only access and colaboration'>Google documents adds Comment-only access and colaboration</a></li>
<li><a href='http://2.0webtutorials.com/google-applications/offline-gmail-calendar-and-docs-are-now-available/' rel='bookmark' title='Offline Gmail, Calendar and Docs are now available'>Offline Gmail, Calendar and Docs are now available</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Google recently made it possible to restrict the download of non-Google editor file types in Google Docs. This restriction can be applied to .ppt, .pdf, video, and image files for example.</p>
<p>The restrict download feature for Google docs has bran released for Google Apps, Google Apps for Business, Government and Education editions and it is available in all languages supported by Google Docs</p>
<p>To access what&#8217;s new just select the file that you want to restrict, select the ‘More’ menu and choose the new option. Alternatively, right-click a document in the docslist and select ‘prevent viewers from downloading’ from the menu options.</p>
<p>For more information visit https://docs.google.com/support/?hl=en</p>


<p>Related posts:</p><ol><li><a href='http://2.0webtutorials.com/google-applications/google-documents-adds-comment-only-access-and-colaboration/' rel='bookmark' title='Google documents adds Comment-only access and colaboration'>Google documents adds Comment-only access and colaboration</a></li>
<li><a href='http://2.0webtutorials.com/google-applications/offline-gmail-calendar-and-docs-are-now-available/' rel='bookmark' title='Offline Gmail, Calendar and Docs are now available'>Offline Gmail, Calendar and Docs are now available</a></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://2.0webtutorials.com/google-applications/restrict-file-download-in-google-docs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>20+ useful Apps for Android, get the best of your device using Android Apps</title>
		<link>http://2.0webtutorials.com/mobile-tech/20-useful-apps-for-android-get-the-best-of-your-device-using-android-apps/</link>
		<comments>http://2.0webtutorials.com/mobile-tech/20-useful-apps-for-android-get-the-best-of-your-device-using-android-apps/#comments</comments>
		<pubDate>Wed, 09 Nov 2011 10:12:01 +0000</pubDate>
		<dc:creator>Catalin</dc:creator>
				<category><![CDATA[Mobile Tech]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Mobile Apps]]></category>

		<guid isPermaLink="false">http://2.0webtutorials.com/?p=486</guid>
		<description><![CDATA[The 20 apps that made the cut for this list are the ones that are universally liked by users, or have had a solid history.The Android Market may not have as many apps as the iPhone App Store yet, but there are still more than enough to be overwhelmed. Most of them are free, but [...]


Related posts:<ol><li><a href='http://2.0webtutorials.com/google-applications/offline-gmail-calendar-and-docs-are-now-available/' rel='bookmark' title='Offline Gmail, Calendar and Docs are now available'>Offline Gmail, Calendar and Docs are now available</a></li>
<li><a href='http://2.0webtutorials.com/google-applications/google-documents-adds-comment-only-access-and-colaboration/' rel='bookmark' title='Google documents adds Comment-only access and colaboration'>Google documents adds Comment-only access and colaboration</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>The 20 apps that made the cut for this list are the ones that are universally liked by users, or have had a solid history.The Android Market may not have as many apps as the iPhone App Store yet, but there are still more than enough to be overwhelmed. Most of them are free, but some cost a few bucks. </p>
<p>If you&#8217;re a long-time Android user, some of these apps will look familiar, although in a few cases, I noticed that the best apps aren&#8217;t necessarily the ones that have been most popular. Newcomers are also suplling the market with good apps.</p>
<p>Still, here’s my list of Android apps that I can see quite useful.</p>
<p>1. <strong>Google Voice</strong></p>
<p>Google Voice is one of the top benefits of Android. Google Voice gives you one number for all your phones, a phone number that is tied to you, not to a device nor a location.Google Voice allows you to access all of your voice mail and text messages from the Web. The Android app integrates even deeper. It can make outgoing calls look like they’re coming from your Google Voice number so that you can keep your real mobile number private.</p>
<p>2. <strong>GTasks</strong></p>
<p>The GTasks task manager syncs with the desktop Google Tasks, which you can also access in the Web version of Gmail and Google Calendar. It&#8217;s so useful, it should be in­­cluded on every Android phone.</p>
<p>3. <strong>Dropbox</strong></p>
<p>Dropbox, the service that lets you store your files in the cloud and access them from anywhere. This app extends Dropbox to Android and it is also compatible to your Windows, Mac, or Linux). It allows you to sync files like PDFs, image files, and business documents by simply dragging them to a folder on your computer and then you immediately have access to them from your mobile phone once you installed this app in you Android device. It has a simple interface, easy uploading, and swift syncing across all accounts.</p>
<p>4. <strong>Evernote</strong></p>
<p>On an Android phone, Evernote works smoothly, looks great, and most importantly, integrates with dozens of other apps and services. So Evernote is a great note-taking app. It is similar to Dropbox in that it saves data locally but syncs it across all your machines and devices.</p>
<p>5. <strong>Google Docs</strong></p>
<p>Create, edit, upload, import, export, sync and share your documents with the Google Docs app. Google Docs is a great Android app to access to all the docs you uploaded (including uploaded Microsoft Office files to your Google Docs) or created in Docs. It’s a nice mobile implementation of document management, although the one annoyance is that always open up files in a web browser rather than within the app itself, which would be a little smoother.</p>
<p>6. <strong>Google Places</strong></p>
<p>This is an awesome app for finding shops and services near your current location. From restaurants to medical facilities to taxis, this app is very accurate and takes advantage of the business information from Google Local. This app is better than the info you get from a GPS unit (or app) and better than any of the similar apps available on the iPhone. It’s also integrated into Google Maps.</p>
<p>7. <strong>Google+ (plus)</strong></p>
<p>One of the great things that Google did was to release a Google+ Android app at the same time it launched the service as a beta. And, surprisingly, the app was actually pretty good and has been improved since. It immediately became one of my most used mobile apps mostly because Google+ is a little more interactive.</p>
<p>8. <strong>Google Goggles</strong></p>
<p>This is a fun app that does visual searches. You can take pictures of things and then the app tries to tell you what they are. It’s limited in its scope but it is pretty cool, and it’s definitely a peek into the future. n a more practical level this app has the ability to take pictures of text in a foreign language and the app translate it for you which is basically QR code reader.</p>
<p>9. <strong>Smart Measure</strong></p>
<p>The Smart Measure app, which uses your phone&#8217;s camera, measures the height of objects and estimates the distance between your phone and the object</p>
<p>10. <strong>Photoshop Express</strong></p>
<p>Photoshop is, of course, the best known photo editor in the world and its mobile app doesn’t do anything to hurt that reputation. But while the desktop version is known for having a zillion features, the mobile app is distinguished by its simplicity. It’s the best Android (and iPhone) photo editing app for simple crops, brightness adjustments, and sharpens, for example.</p>
<p>11. <strong>ConvertMe</strong></p>
<p>The in-beta ConvertMe app is a handy unit converter, currency converter, and tip calculator. It comes with more than 1500 units across more than 65 categories, and it supports 14 languages</p>
<p>12. <strong>Audible</strong></p>
<p>With the Audible app you can connect to your Audible library and download over the air. The app also gives you a self-contained player optimized for audio books, with a skip-back-30-seconds button and the opportunity to make notes and bookmarks (although I wish the app would store these online so that they could be accessed from the Audible site).</p>
<p>13. <strong>Shazam</strong></p>
<p>If you want to impress your friends with a mobile app, show them Shazam. Ever hear a song being played at a store or on the radio and ask yourself, “Oh, what song is that?” That’s where Shazam comes in. Just hit the button and let it listen for 15 seconds, query its database, and then return the name of artist and the song. It has about an 80% success rate. This one isn’t particularly productive, but it is really cool.</p>
<p>14. <strong>Google Finance</strong></p>
<p>This is a great little app that regularly gets overlooked. It connects to your Google Finance account, where you can set up a list of stocks and companies to follow and sort them into groups (portfolios). The app provides three simple tabs — a look at the market, a look at your portfolios, and the latest market news. It even does real-time updates when you have the app open.<br />
Your picks?</p>
<p>15. <strong>Picasa Tool</strong></p>
<p>Picasa is an image organizer and image viewer for organizing and editing digital photos, plus an integrated photo-sharing website. Using Picasa Tool Pro you can batch-upload photos, as well as browse and manage your albums, photos, and comments. The best part: it´s free.</p>
<p>16. <strong>Digital Recipe Sidekick<br />
</strong><br />
Digital Recipe Sidekick is another Android app that makes your like easier. You can browse and import recipes from AllRecipes.com, save recipes to SD Card, e-mail them, edit them, or enter your own. The app will even read recipes to you.</p>
<p>17. <strong>AntiDroidTheft</strong></p>
<p>If you lose your phone, AntiDroidTheft turns on remote GPS tracking so that you can determine its location. You can also trigger the phone&#8217;s camera to shoot an image that might help you locate the handset. Cool isn&#8217;t it?</p>
<p>18. <strong>Wifi Analyzer</strong></p>
<p>Want to find the least-crowded Wi-Fi channel? Wifi Analyzer shows a graphical representation of Wi-Fi SSIDs&#8217; signal strength, plus which channels are being used.</p>
<p>19. <strong>Launcher Pro</strong></p>
<p>Launcher Pro is a third-party application that does something your phone already does on its own (launch apps), except that it adds the ability for you to customize your phone in more ways than you normally can so that you can launch apps quicker and more easily. For example, you can create up to seven different home screens, giving you quick access to more apps than before.</p>
<p>20. <strong>Google Maps</strong></p>
<p>Google Maps may be one of the most popular of the Android apps from Google. A few of its signature features, such as navigation and layers, work better on Android than most other mobile operating systems. It&#8217;s indispensable for finding addresses, service providers nearby, and just for simply getting around.</p>
<p>21. <strong>Better Keyboard</strong></p>
<p>The one thing we don’t like about Android is its standard onscreen keyboard. Fortunately, there is another way: the Better Keyboard offers compact Qwerty and full Qwerty layouts, easier symbol entry and, crucially, effective prediction and auto-correction.</p>
<p>You can also tweak text to your heart’s content, with extras such as the ability to use words in your contacts file in word suggestions, and the option to display blobs that show exactly where you touched each key. And there’s a raft of downloadable skins to give it a fresh new look. Excellent stuff.</p>
<p>22. <strong>3G Watchdog</strong></p>
<p>If you don’t have an unlimited data plan, it’s vital to keep track of your monthly allocation – 3G Watchdog will make sure that you don’t incur any hidden charges. Tell the app your data cap and monthly rollover allowance and it will do the rest, displaying a color-coded icon in the corner of your screen: a green icon means you’re safe; orange indicates you’re nearing your limit; and a red symbol means you should probably reign in your downloads.</p>
<p>23. <strong>Angry Birds Rio</strong></p>
<p>A game based on the movie, Angry Birds Rio is not only addictive, it&#8217;s also free. On each level, the goal is to rescue the birds Blu and Jewel, featured in the film. The game mechanics are the same as the original, minus the pigs: you pull a rubber band back and launch a bird to knock down buildings. OS, I think this was the number 21 Android app and the title said &#8220;20 Apps for Android&#8221;. Sorry about that!</p>
<p>Finally, if you have some more recommendations, post your suggestions in the comments. Enjoy</p>


<p>Related posts:</p><ol><li><a href='http://2.0webtutorials.com/google-applications/offline-gmail-calendar-and-docs-are-now-available/' rel='bookmark' title='Offline Gmail, Calendar and Docs are now available'>Offline Gmail, Calendar and Docs are now available</a></li>
<li><a href='http://2.0webtutorials.com/google-applications/google-documents-adds-comment-only-access-and-colaboration/' rel='bookmark' title='Google documents adds Comment-only access and colaboration'>Google documents adds Comment-only access and colaboration</a></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://2.0webtutorials.com/mobile-tech/20-useful-apps-for-android-get-the-best-of-your-device-using-android-apps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google+ Pages on Google Search with Google Direct Connect</title>
		<link>http://2.0webtutorials.com/google-applications/search-and-google-pages-using-google-direct-connect/</link>
		<comments>http://2.0webtutorials.com/google-applications/search-and-google-pages-using-google-direct-connect/#comments</comments>
		<pubDate>Mon, 07 Nov 2011 23:42:46 +0000</pubDate>
		<dc:creator>Catalin</dc:creator>
				<category><![CDATA[Google Apps]]></category>
		<category><![CDATA[Social Networks]]></category>
		<category><![CDATA[Google+]]></category>

		<guid isPermaLink="false">http://2.0webtutorials.com/?p=453</guid>
		<description><![CDATA[Google+ launches Branded Pages, allowing businesses and brands to join Google’s social network. Basically, it’s a profile page for different types of interests and businesses. This is nothing revolutionary as we have seen such work on Facebook and MySpace, but it’s still a big stepping stone for Google+ as it continues to grow. For a [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p><strong>Google+</strong> launches <strong>Branded Pages</strong>, allowing businesses and brands to join <strong>Google’s social network</strong>. Basically, it’s a profile page for different types of interests and businesses.</p>
<p>This is nothing revolutionary as we have seen such work on Facebook and MySpace, but it’s still a big stepping stone for Google+ as it continues to grow.</p>
<p>For a closer look at <strong>Google+ Pages</strong>, check out the video below:</p>
<p><object width="603" height="339"><param name="movie" value="http://www.youtube.com/v/8Ccf5GxM7vg?version=3&#038;feature=oembed"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/8Ccf5GxM7vg?version=3&#038;feature=oembed" type="application/x-shockwave-flash" width="603" height="339" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>But this is not all. Google has just lunched a new feature called <strong>Direct Connect</strong>, which makes very simple for to find brands on Google+ Pages via Google Search. The only thing a user have to do is type “+” in the Google Search box followed by the brand or business they want to follow, and this brings up a direct link to the Google+ Page of the searched brand.</p>
<p>A simple example: If you want to find the Google+ Page of Amazon, just type &#8220;+amazon&#8221; and Google Direct Connect will take you to Amazon Google+ Page.<br />
<img src="http://2.0webtutorials.com/wp-content/uploads/google-search-300x102.jpg" alt="google search 300x102 Google+ Pages on Google Search with Google Direct Connect" title="google-direct-conect" width="300" height="102" class="alignright size-medium wp-image-456" /></p>
<p>In the past the “+” operator made it so that any word with the plus sign before it was required in all search results. But today Google retired that operator and Direct Connect changes the function of the “+” operator in Google Search.</p>
<p>Direct Connect helps Google+ Brand driving his way up in front of the Facebook Pages, Twitter profiles and even brand websites. The link appears just under the search box, so it essentially acts like a search result above the search engine page. It’s also the only operator that takes users directly out of Google Search and to another website. This way Google+ Pages becomes a must-have for any company looking to establish a presence on the Internet</p>
<p>You can see here a small demo of the Google new <a title="Google Direct Connect feature" href="http://www.youtube.com/watch?v=NY8L_SzNr70&#038;feature=player_embedded">Direct Connect feature</a>.</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://2.0webtutorials.com/google-applications/search-and-google-pages-using-google-direct-connect/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Valid Google +1 xhtml code that doesn´t slow page load speed</title>
		<link>http://2.0webtutorials.com/social-network/valid-google-1-xhtml-code-that-doesn%c2%b4t-slow-page-load-speed/</link>
		<comments>http://2.0webtutorials.com/social-network/valid-google-1-xhtml-code-that-doesn%c2%b4t-slow-page-load-speed/#comments</comments>
		<pubDate>Fri, 21 Oct 2011 08:55:28 +0000</pubDate>
		<dc:creator>Catalin</dc:creator>
				<category><![CDATA[Social Networks]]></category>
		<category><![CDATA[Google+]]></category>

		<guid isPermaLink="false">http://2.0webtutorials.com/?p=433</guid>
		<description><![CDATA[You probably by now have heard the term &#8220;+ one&#8221; or &#8220;Google + 1&#8221; lately. Google is redefining the meaning of &#8220;plus one&#8221; as plus one now means this website, page, article, information is important. Plus one is Google&#8217;s answer to the &#8220;Like&#8221; button or Twitter&#8217;s &#8220;Follow&#8221; button and it will basically count as an [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>You probably by now have heard the term &#8220;<strong>+ one</strong>&#8221; or &#8220;<strong>Google + 1</strong>&#8221; lately. Google is redefining the meaning of &#8220;<strong>plus one</strong>&#8221; as plus one now means this website, page, article, information is important. Plus one is Google&#8217;s answer to the &#8220;Like&#8221; button or Twitter&#8217;s &#8220;Follow&#8221; button and it will basically count as an ‘up’ vote.</p>
<p>Google give two code alternatives that can be used to place the buttons on pages. Unfortunately, one is not <strong>valid HTML or XHTML</strong> at all, and the other is only valid for people using the experimental HTML5. The other issue is that you need to include a javascript from Google’s server, and some are reporting that this slows their page load speed significantly.</p>
<p>So to take the plus one button from Google to the next step and make the code xhtml compliant, you have to replace the following:</p>
<pre class="brush: xml; title: ; notranslate">&lt;g:plusone&gt;&lt;/g:plusone&gt;</pre>
<p>With this next line. Please note that the html id value can actually be whatever you want.</p>
<pre class="brush: xml; title: ; notranslate">&lt;div id=&quot;plusone&quot;&gt;&lt;/div&gt;</pre>
<p>Then place the link to Google’s Javascript right at the end of your page, just before the body tag ends:</p>
<pre class="brush: jscript; title: ; notranslate">
&lt;script type=&quot;text/javascript&quot;
   src=&quot;https://apis.google.com/js/plusone.js&quot;&gt;
{&quot;lang&quot;: &quot;en-GB&quot;, &quot;parsetags&quot;: &quot;explicit&quot;}
&lt;/script&gt;
</pre>
<p>After calling the Google plus one API you will nead to call some javascript to insert the button in place.</p>
<pre class="brush: jscript; title: ; notranslate">
&lt;script type=&quot;text/javascript&quot;&gt;
gapi.plusone.render(&quot;plusone&quot;,
   {&quot;size&quot;: &quot;standard&quot;, &quot;count&quot;: &quot;true&quot; });
&lt;/script&gt;
</pre>
<p>Note that the &#8220;plusone&#8221; used here is the same &#8220;plusone&#8221; id we used in the div. The rest of the attributes: size and count, are just used for styling purposes.</p>
<p>If you like, you can go even further an place a div around the button div itself and set the size of the button. This is used so that the place for the div to be hold in your template be before the button loads. So the code of your div for the valid plus one button will be like this&gt;</p>
<pre class="brush: xml; title: ; notranslate">
&lt;div id=&quot;plus&quot;&gt;&lt;div id=&quot;plusone&quot;&gt;&lt;/div&gt;&lt;/div&gt;
</pre>
<p>If you chose to use this additional div, yo will also have to insert a small line in your .css file to set the width and height of your second div.</p>
<pre class="brush: css; title: ; notranslate">
#plus { width: 106; height: 24; }
</pre>
<p><em>Conclusion</em><br />
Using this code instead of the normal Google +1 code will not boost your site loading speed, but will maintain it exactly the same as the +1 button will be load after your theme and content is loaded.</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://2.0webtutorials.com/social-network/valid-google-1-xhtml-code-that-doesn%c2%b4t-slow-page-load-speed/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>India launches Aakash, a cheap tablet for only $35</title>
		<link>http://2.0webtutorials.com/news-events/india-launches-aakash-a-cheap-tablet-for-only-35/</link>
		<comments>http://2.0webtutorials.com/news-events/india-launches-aakash-a-cheap-tablet-for-only-35/#comments</comments>
		<pubDate>Thu, 06 Oct 2011 21:44:48 +0000</pubDate>
		<dc:creator>Catalin</dc:creator>
				<category><![CDATA[News & Events]]></category>
		<category><![CDATA[Aakash]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Tablet]]></category>

		<guid isPermaLink="false">http://2.0webtutorials.com/?p=393</guid>
		<description><![CDATA[India has launched the world&#8217;s cheapest touch-screen tablet computer, priced at only $35 (£23 or €27).  The tablet which was named Sakshat, has been renamed to Aakash (which means sky in Hindi). The government has managed to keep up its promise of pricing the tablet as less as possible. The device was launched on 5 [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>India has launched the world&#8217;s <strong>cheapest</strong> touch-screen <strong>tablet computer</strong>, priced at only $35 (£23 or €27).  The tablet which was named <strong>Sakshat</strong>, has been renamed to <strong>Aakash</strong> (which means sky in Hindi). The government has managed to keep up its promise of pricing the tablet as less as possible. The device was launched on 5 October 2011 in India. The maker of the device is DataWind, based in Montreal, Canada, DataWind is a leading developer of wireless web access products and services owned by a Suneet Singh Tuli, a Canadian of Indian descent.</p>
<p>At a fraction of the cost of an iPad, Aakash is a cheap tablet that supports web browsing and video conferencing, with a 366MHz processor, 256MB memory, a 2GB SD memory card, a 32GB expandable memory slot, two USB ports, and a three hour battery life. &#8220;Our goal was to break the price barrier for computing and internet access. We&#8217;ve created a product that will finally bring affordable computing and internet access to the masses,&#8221; said Suneet Singh Tuli, chief executive, DataWind.</p>
<p><strong>Aakash Tablet</strong> runs on the Android OS and  is the new buzz in the technology world. Using the browser in <strong>Aakash Tablet</strong>, you will be able to use social networking sites like Facebook and MySpace. Aakash Tablet would be the most <em>cheapest Tablet</em> comes to all Tablet lovers, probably the cheapest tablet in the world with all the technical specifications as you find in a normal tablet.</p>
<h4>Akash Tablet Specifications:</h4>
<p><em>Hardware:</em></p>
<ul>
<li>Processor: Connexant with Graphics accelerator and HD Video processor</li>
<li>Memory (RAM): 256MB RAM / Storage (Internal): 2GB Flash</li>
<li>Storage (External): 2GB to 32GB Supported</li>
<li>Peripherals (USB2.0 ports, number): 1 Standard USB port</li>
<li>Audio out: 3.5mm jack / Audio in: 3.5mm jack</li>
<li>Display and Resolution: 7” display with 800×480 pixel resolution</li>
<li>Input Devices: Resistive touch screen</li>
<li>Connectivity and Networking: GPRS and WiFi IEEE 802.11 a/b/g</li>
<li>Power and Battery: Up to 180 minutes on battery. AC adapter 200-240 volt range.</li>
</ul>
<p><em>Software:</em></p>
<ul>
<li>OS: Android 2.2</li>
<li>Document Rendering
<ul>
<li>Supported Document formats: DOC, DOCX, PPT, PPTX, XLS, XLSX, ODT, ODP</li>
<li>PDF viewer, Text editor</li>
</ul>
</li>
<li>Multimedia and Image Display
<ul>
<li>Image viewer supported formats: PNG, JPG, BMP and GIF</li>
<li>Supported audio formats: MP3, AAC, AC3, WAV, WMA</li>
<li>Supported video formats: MPEG2, MPEG4, AVI, FLV</li>
</ul>
</li>
<li>Communication and Internet
<ul>
<li>Web browser – Standards Compliance: XHTML 1.1 compliant, JavaScript 1.8 compliant</li>
<li>Separate application for online YouTube video</li>
</ul>
</li>
<li>Safety and other standards compliance
<ul>
<li>CE certification / RoHS certification</li>
</ul>
</li>
</ul>
<p>You can actually book the <strong>Aakash tablet</strong> online. Here is the website from you can <strong>book Aakash online</strong>: <a href="http://www.aakashdatawind.com/" target="_blank">http://www.aakashdatawind.com/</a></p>
<p>You can also get more updates about Aakash Tablet from their <a href="http://www.facebook.com/pages/Aakash-Tablet/297305640286754" target="_blank">FB fan page</a>.</p>
<p>See how Aakash is made by viewing this <a title="See also Samsung releases a teaser- Is it Nexus Prime?" href="http://asli-indian.com/samsung-releases-a-teaser-is-it-nexus-prime.html">video</a>,</p>
<p>Critics say:</p>
<p>I is too early to say how the Aakash will be received as most cheap tablets in the past have turned out to be painfully slow.</p>
<p>&#8220;The thing with cheap tablets is most of them turn out to be unusable,&#8221; Rajat Agrawal of technology reviewers BGR India told Reuters news agency.</p>
<p>&#8220;They don&#8217;t have a very good touch screen, and they are usually very slow.&#8221;</p>
<p>At a fraction of the cost of an iPad, the Aakash supports web browsing and video conferencing, with a 366MHz processor, 256MB memory, a 2GB SD memory card, a 32GB expandable memory slot, two USB ports, and a three hour battery life.</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://2.0webtutorials.com/news-events/india-launches-aakash-a-cheap-tablet-for-only-35/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2.0 Websites &#8211; design ideas using HTML5</title>
		<link>http://2.0webtutorials.com/css3-html5/fresh-examples-of-html5-websites/</link>
		<comments>http://2.0webtutorials.com/css3-html5/fresh-examples-of-html5-websites/#comments</comments>
		<pubDate>Tue, 04 Oct 2011 02:22:50 +0000</pubDate>
		<dc:creator>Catalin</dc:creator>
				<category><![CDATA[Css3 & Html5]]></category>
		<category><![CDATA[2.0 Web]]></category>
		<category><![CDATA[HTML5]]></category>

		<guid isPermaLink="false">http://2.0webtutorials.com/?p=110</guid>
		<description><![CDATA[The hew HTML 5 is already out there. Some are using it for a while, some are waiting for more browser suppor. For all of them and for thous that doesn&#8217;t know know HTML 5, we have publish here a series of website builded on top of the new HTML 5. If you kow more [...]


Related posts:<ol><li><a href='http://2.0webtutorials.com/css3-html5/prefetching-links-and-images-with-html5/' rel='bookmark' title='Prefetching images and links with HTML5'>Prefetching images and links with HTML5</a></li>
<li><a href='http://2.0webtutorials.com/css3-html5/pure-css3-and-html-we-form-design/' rel='bookmark' title='Pure CSS3 and HTML web form design'>Pure CSS3 and HTML web form design</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>The hew HTML 5 is already out there. Some are using it for a while, some are waiting for more browser suppor. For all of them and for thous that doesn&#8217;t know know HTML 5, we have publish here a series of website builded on top of the new HTML 5. If you kow more websites build in HTML 5 just submit them in the comment area.</p>
<p><a title="Web 2.0 design" href="360langstrasse.sf.tv">360langstrasse.sf.tv</a></p>
<p><a href="http://2.0webtutorials.com/css3-html5/fresh-examples-of-html5-websites/attachment/web2-0design-html5/" rel="attachment wp-att-383"><img class="alignnone size-full wp-image-383" title="web2.0design-html5" src="http://2.0webtutorials.com/wp-content/uploads/web2.0design-html5.jpg" alt="web2.0design html5 2.0 Websites   design ideas using HTML5" width="580" height="323" /></a></p>
<p><a title="Web 2.0 design" href="http://www.tdhcreative.com/">Tom, Dick &amp; Harry</a> Brand new design using HTML5</p>
<p><a href="http://2.0webtutorials.com/css3-html5/fresh-examples-of-html5-websites/attachment/web20free-design/" rel="attachment wp-att-384"><img class="alignnone size-full wp-image-384" title="web20free-design" src="http://2.0webtutorials.com/wp-content/uploads/web20free-design.jpg" alt="web20free design 2.0 Websites   design ideas using HTML5" width="580" height="328" /></a></p>
<p><a href="http://www.20thingsilearned.com/en-US/home" target="_blank">20 Things I Learned About Browsers and The Web</a></p>
<p><a href="http://2.0webtutorials.com/css3-html5/fresh-examples-of-html5-websites/attachment/20thingsilearned/" rel="attachment wp-att-427"><img class="alignnone size-full wp-image-427" title="20thingsilearned" src="http://2.0webtutorials.com/wp-content/uploads/20thingsilearned.png" alt="20thingsilearned 2.0 Websites   design ideas using HTML5" width="580" height="424" /></a></p>
<p>make shore you´ve bokmarked this page so you can easily come back. We will add more websites based on the new HTML 5 technologies.</p>


<p>Related posts:</p><ol><li><a href='http://2.0webtutorials.com/css3-html5/prefetching-links-and-images-with-html5/' rel='bookmark' title='Prefetching images and links with HTML5'>Prefetching images and links with HTML5</a></li>
<li><a href='http://2.0webtutorials.com/css3-html5/pure-css3-and-html-we-form-design/' rel='bookmark' title='Pure CSS3 and HTML web form design'>Pure CSS3 and HTML web form design</a></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://2.0webtutorials.com/css3-html5/fresh-examples-of-html5-websites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hangouts, the free multi conference call service by Google plus</title>
		<link>http://2.0webtutorials.com/social-network/hangouts-the-free-multi-conference-call-service-by-google-plus/</link>
		<comments>http://2.0webtutorials.com/social-network/hangouts-the-free-multi-conference-call-service-by-google-plus/#comments</comments>
		<pubDate>Mon, 03 Oct 2011 21:10:20 +0000</pubDate>
		<dc:creator>Catalin</dc:creator>
				<category><![CDATA[Social Networks]]></category>
		<category><![CDATA[Google+]]></category>
		<category><![CDATA[video conferencing]]></category>

		<guid isPermaLink="false">http://2.0webtutorials.com/?p=347</guid>
		<description><![CDATA[Google launched their new social networking platform, Google Plus, aiming to compete against social networking giant Facebook. Many have been skeptical about the new platform, mainly due to Google’s failed attempts at a social networking platform in recent years. Google plus video . However Google have added an additional feature to their new platform, a [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>Google launched their new social networking platform, Google Plus, aiming to compete against social networking giant Facebook. Many have been skeptical about the new platform, mainly due to Google’s failed attempts at a social networking platform in recent years. Google plus video .</p>
<p>However Google have added an additional feature to their new platform, a video <strong>conference call service</strong> and chat facility called ‘Hangouts’. ‘Hangouts’ allow users to take part in a <strong>video conference</strong> with a maximum of 10 participants, while the other Social Networks does not offer video chat with more than 2 people. This video conferencing feature has driven a lot of interest to Google Plus, particularly the multi <strong>conference call service</strong> capability.</p>
<p>As interesting and exciting as the new platform is there are concerns over the video feature and the bandwidth demands for the multi call functionality. The system requirements for hangouts states the suggested bandwidth connection is 900kbps / 1800 kbps (up/down). Supporting multiple, multi conference calls at this connection speed could prove to be difficult for the new Google plus. The user could also experience difficulty trying to achieve the bandwidth requirements.</p>
<p>If businesses are looking to take advantage of Google’s video <strong>conferencing service</strong> they are likely to face difficulty with the bandwidth requirements.</p>
<p>For some time now video conferencing specialists have been able to provide high definition solutions at 900kbps or less (up/down), and this is unlikely to change in the near future.</p>
<p>The experience of group <strong>video conferencing service</strong> is smooth and very convenient to use. Google Plus is the first social network site with this one-to-many video chat for its users. This is the best way to interact and have fun with Google+ Hangouts and it certainly adds a very element to social media.</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://2.0webtutorials.com/social-network/hangouts-the-free-multi-conference-call-service-by-google-plus/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

