<?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>Dooba Reviews &#187; Web</title>
	<atom:link href="http://doobareviews.com/category/web/feed/" rel="self" type="application/rss+xml" />
	<link>http://doobareviews.com</link>
	<description></description>
	<lastBuildDate>Thu, 09 Sep 2010 03:26:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>RedirectMatch Fix for WordPress Permalink Change</title>
		<link>http://doobareviews.com/redirectmatch-fix-for-wordpress-permalink-change/</link>
		<comments>http://doobareviews.com/redirectmatch-fix-for-wordpress-permalink-change/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 22:42:05 +0000</pubDate>
		<dc:creator>Thomas</dc:creator>
				<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://doobareviews.com/?p=448</guid>
		<description><![CDATA[WordPress is awesome, but I initially created a couple blogs with the url structure of mysite.com/2010/07/13/post-name/ The url structure worked fine until I starting thinking, &#8220;hey, those are pretty long urls.&#8221; Doing some research, I found that having the year, month, and day in the permalink structure i.e., /%year%/%monthnum%/%day%/%postname%/ created other problems such as if you wanted to repost an [...]]]></description>
			<content:encoded><![CDATA[<p>WordPress is awesome, but I initially created a couple blogs with the url structure of mysite.com/2010/07/13/post-name/</p>
<p>The url structure worked fine until I starting thinking, &#8220;hey, those are pretty long urls.&#8221;</p>
<p>Doing some research, I found that having the year, month, and day in the permalink structure i.e., /%year%/%monthnum%/%day%/%postname%/ created other problems such as if you wanted to repost an old post to the front page with an updated date, links previously created to the post would be broken.</p>
<p>Also, what purpose does the year, month, and day serve in the url anyway other than creating long links, and letting the very few who would read the url know how old your content was.</p>
<p>I decided to go with a potentially more SEO friendly url structure for my wordpress blogs, but <strong>changing the link structure in the wordpress admin section would break internal links within my sites and external links</strong> from those linking to my site (especially since I had like two external links <img src='http://doobareviews.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Searching the Internet proved frustrating because all sorts of plugins were recommended to fix the problem, some of the plugins weren&#8217;t frequently updated, and did I really want a plugin working all the time when visitors access the page if I don&#8217;t have to?</p>
<p><strong>I started looking at editing the .htaccess file </strong>when I found <a href="http://www.blogtrafficexchange.com/remove-dates-from-permalink/">a post</a> that discussed making the change with one line in the .htaccess file. This sounded like the fix I was looking for.</p>
<p>The only problem was that I couldn&#8217;t get it to work on my server. I thought perhaps the module for redirecting wasn&#8217;t enabled, and then I found out that the hosting company I was using doesn&#8217;t update changes to .htaccess immediately. Frustrating!</p>
<p>So, here&#8217;s what you can do to get the change to work:</p>
<h3>If you&#8217;re not sure whether your hosting company supports RedirectMatch, do the following:</h3>
<ol>
<li>Create an html file called test.php</li>
<li>Upload the file to your server&#8217;s root directory</li>
<li>Edit your .htaccess file (or create one if you don&#8217;t have one) and enter RedirectMatch 301 /test.php /index.php</li>
<li>Visit yoursite.com/test.php and it should redirect to your home page</li>
</ol>
<h3>If you know your site will support RedirectMatch, then try the following:</h3>
<ol>
<li>Copy and past a few of your old links with the /year/month/day/post-name/ from your wordpress blog into a text file</li>
<li>Change the permalink structure to /%postname%/ in the permalink settings</li>
<li>Add the following to the very top of your .htaccess file:</li>
</ol>
<p><code>RedirectMatch 301 /[0-9]{4}/[0-9]{2}/[0-9]{2}/([^/]+)/ /$1/</code></p>
<p>What this code does is an auto-match based on the Regular Expression above to redirect traffic from the old link structure to the new. The 301 indicates to search engines that this change is permanent.</p>
<p>The /[0-9]{4}/ represents the year value (0-9 are the character possibilities repeated {4} 4 times), the rest follows for the month, and day.</p>
<p>The /([^/]+)/ represents what would be in the post name</p>
<p>The /$1/ represents the postname ([^/]+) in the previous section, so you&#8217;re replacing the /year/month/day/post-name/ with just /post-name/ if someone tries to access the old link structure.</p>
<p>I&#8217;m not an expert at regular expressions, but it&#8217;s worked so far. Give it a try if you&#8217;re running into the same issue.</p>
]]></content:encoded>
			<wfw:commentRss>http://doobareviews.com/redirectmatch-fix-for-wordpress-permalink-change/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Docs Never Ceases to Amaze</title>
		<link>http://doobareviews.com/google-docs-never-ceases-to-amaze/</link>
		<comments>http://doobareviews.com/google-docs-never-ceases-to-amaze/#comments</comments>
		<pubDate>Mon, 12 Apr 2010 16:51:07 +0000</pubDate>
		<dc:creator>Thomas</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.doobareviews.com/?p=423</guid>
		<description><![CDATA[Google Docs has received a major upgrade, and the new features are amazing. Google Docs is Google&#8217;s version of Microsoft Office. Different from Microsoft Office, Google Docs resides on the web, is free, and offers great collaboration tools. Benefits of Google Docs: It costs you nothing It&#8217;s fast If your computer crashes you don&#8217;t need to worry because your documents [...]]]></description>
			<content:encoded><![CDATA[<p>Google Docs has received a major upgrade, and the new features are amazing.</p>
<p>Google Docs is Google&#8217;s version of Microsoft Office.  Different from Microsoft Office, Google Docs resides on the web, is free, and offers great collaboration tools.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="560" height="340" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/6_hJ3R8jEZM&amp;hl=en_US&amp;fs=1&amp;rel=0" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="560" height="340" src="http://www.youtube.com/v/6_hJ3R8jEZM&amp;hl=en_US&amp;fs=1&amp;rel=0" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>Benefits of Google Docs:</p>
<ul>
<li>It costs you nothing</li>
<li>It&#8217;s fast</li>
<li>If your computer crashes you don&#8217;t need to worry because your documents are stored securely on the web</li>
<li>It&#8217;s easy to share documents</li>
<li>If you write a document with a colleague or classmate, you can be sure to work from the latest revision</li>
<li>It&#8217;s easy to create quizzes and polls for friends to respond to</li>
<li>The options are easy to use</li>
</ul>
<p>Those are just a few of the benefits.  It&#8217;s amazing how far it&#8217;s come.  I started using Google Docs back when it was called Writely and have loved it.</p>
]]></content:encoded>
			<wfw:commentRss>http://doobareviews.com/google-docs-never-ceases-to-amaze/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Version of Google Chrome &#8211; Supports Bookmark Sync and Extensions</title>
		<link>http://doobareviews.com/new-version-of-google-chrome-supports-bookmark-sync-and-extensions/</link>
		<comments>http://doobareviews.com/new-version-of-google-chrome-supports-bookmark-sync-and-extensions/#comments</comments>
		<pubDate>Tue, 26 Jan 2010 00:40:03 +0000</pubDate>
		<dc:creator>Thomas</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://www.doobareviews.com/?p=411</guid>
		<description><![CDATA[Well, the moment is finally here for Google Chrome aficionados.  What is Google Chrome?  Well, the following should help explain: Google Chrome (the browser) now supports extensions which are really cool. Extensions can help you block ads on pages, track information such as prices on Amazon.com, and much more. The second great addition is bookmarking sync. With bookmark sync, you [...]]]></description>
			<content:encoded><![CDATA[<p>Well, the moment is finally here for Google Chrome aficionados.  What is Google Chrome?  Well, the following should help explain:</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="295" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/uwEupAQReCs&amp;hl=en_US&amp;fs=1&amp;rel=0" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="295" src="http://www.youtube.com/v/uwEupAQReCs&amp;hl=en_US&amp;fs=1&amp;rel=0" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>Google Chrome (the browser) now supports <a href="https://chrome.google.com/extensions/">extensions</a> which are really cool.  Extensions can help you block ads on pages, track information such as prices on Amazon.com, and much more.</p>
<p>The second great addition is bookmarking sync.  With bookmark sync, you can create a uniform experience across the different computers you use, simply sync your bookmarks (click the wrench in the upper right to get started).</p>
<p>Cool stuff.</p>
]]></content:encoded>
			<wfw:commentRss>http://doobareviews.com/new-version-of-google-chrome-supports-bookmark-sync-and-extensions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Just Received Access to Google Wave &#8211; First Impressions</title>
		<link>http://doobareviews.com/just-received-access-to-google-wave-first-impressions/</link>
		<comments>http://doobareviews.com/just-received-access-to-google-wave-first-impressions/#comments</comments>
		<pubDate>Wed, 14 Oct 2009 20:34:04 +0000</pubDate>
		<dc:creator>Thomas</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[Cool Stuff]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://www.doobareviews.com/?p=386</guid>
		<description><![CDATA[After much anticipation, I received my Google Wave invitation from Google.  The service right now is in &#8220;Preview&#8221; which means some things may not work quite right until the official release. Right from the start, I was impressed with how it works, and could see this being a game changer for the web.  Good for Google!  And good for us, since we [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center; "><a href="http://wave.google.com"><img class="aligncenter" title="Google Wave" src="https://www.google.com/accounts/wave/screenshot.png" alt="" width="508" height="297" /></a></p>
<p style="text-align: left;">After much anticipation, I received my Google Wave invitation from Google.  The service right now is in &#8220;Preview&#8221; which means some things may not work quite right until the official release.</p>
<p style="text-align: left;">Right from the start, I was impressed with how it works, and could see this being a game changer for the web.  Good for Google!  And good for us, since we as web users can benefit greatly from it.</p>
<p style="text-align: left;">I used Wave a bit but soon discovered that there&#8217;s not all that much that you can do until you have some contacts in your contact list.   I&#8217;ve started to see some of my Gmail contacts appear in the Wave contact list which means that they&#8217;re getting Wave too.  It&#8217;s great that they&#8217;re being added automatically.</p>
<p style="text-align: left;">I added pictures into a wave.  This feature will be very, very handy for sharing pictures.</p>
<p style="text-align: left;">I tested out the Yes/No/Maybe widget and it worked.  I did notice the following day that the profile images in the contacts took a while to load, but no other major irregularities so far.</p>
<p style="text-align: left;">Right now the extensions list has only a handful of extensions, but we hope that to grow quickly.</p>
<p style="text-align: left;">
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/WC7EbPpRoXM&amp;hl=en&amp;fs=1&amp;rel=0" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="385" src="http://www.youtube.com/v/WC7EbPpRoXM&amp;hl=en&amp;fs=1&amp;rel=0" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>Google Wave will be incredible once the user base expands past the preview audience and all Gmail account have automatic access to Wave.</p>
<p>The trick will be how many people switch to Wave once it&#8217;s released.</p>
]]></content:encoded>
			<wfw:commentRss>http://doobareviews.com/just-received-access-to-google-wave-first-impressions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8220;Wave&#8221; goodbye to your old email &#8211; Google Wave to be released</title>
		<link>http://doobareviews.com/google-wave-to-be-released/</link>
		<comments>http://doobareviews.com/google-wave-to-be-released/#comments</comments>
		<pubDate>Tue, 29 Sep 2009 22:33:29 +0000</pubDate>
		<dc:creator>Thomas</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Cool Stuff]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Video Reviews]]></category>

		<guid isPermaLink="false">http://www.doobareviews.com/?p=371</guid>
		<description><![CDATA[Google Wave is set for release tomorrow to 100,000 lucky testers. Like 100,000 Golden Tickets awaiting to be sent to the lucky winners who will find in their email inboxes tomorrow an invitation to the revolutionary new service/product. Google Wave will combine in-a-sense, email, instant messaging, blogging, sharing, etc.  Email will work much more like a conversation. A ten minute [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Google Wave Official Site" href="http://wave.google.com">Google Wave</a> is set for release tomorrow to <a title="CNN article about wave" href="http://www.cnn.com/2009/TECH/09/29/google.wave.beta/index.html">100,000 lucky testers</a>.</p>
<p>Like 100,000 Golden Tickets awaiting to be sent to the lucky winners who will find in their email inboxes tomorrow an invitation to the revolutionary new service/product.</p>
<p><a href="http://wave.google.com"><img class="aligncenter" title="Google Wave" src="https://www.google.com/accounts/wave/screenshot.png" alt="" width="508" height="297" /></a></p>
<p>Google Wave will combine in-a-sense, email, instant messaging, blogging, sharing, etc.  Email will work much more like a conversation.</p>
<p>A ten minute demo of wave from the developer tool:</p>
<p align="center"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="295" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/p6pgxLaDdQw&amp;hl=en&amp;fs=1&amp;rel=0" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="295" src="http://www.youtube.com/v/p6pgxLaDdQw&amp;hl=en&amp;fs=1&amp;rel=0" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>From the Developer Conference (the long video):</p>
<p align="center"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="295" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/v_UyVmITiYQ&amp;hl=en&amp;fs=1&amp;rel=0" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="295" src="http://www.youtube.com/v/v_UyVmITiYQ&amp;hl=en&amp;fs=1&amp;rel=0" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>Hopefully, we&#8217;ll all get one of the Golden Ticket invites to start testing, exploring, and enjoying Google Wave.</p>
]]></content:encoded>
			<wfw:commentRss>http://doobareviews.com/google-wave-to-be-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Reader and why it&#8217;s helpful</title>
		<link>http://doobareviews.com/google-reader-and-why-its-helpful/</link>
		<comments>http://doobareviews.com/google-reader-and-why-its-helpful/#comments</comments>
		<pubDate>Thu, 17 Sep 2009 13:01:13 +0000</pubDate>
		<dc:creator>Thomas</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Cool Stuff]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://www.doobareviews.com/?p=356</guid>
		<description><![CDATA[Google Reader has been on the scene for a very long time; however, it&#8217;s such a handy tool, and so very few take advantage of it, it&#8217;s worth mentioning. Google Reader can Save You Time Think about all the websites you visit on a weekly basis (or even on a daily basis).  Once you start adding up how often you [...]]]></description>
			<content:encoded><![CDATA[<p>Google Reader has been on the scene for a very long time; however, it&#8217;s such a handy tool, and so very few take advantage of it, it&#8217;s worth mentioning.</p>
<h2><a href="http://reader.google.com"><img class="aligncenter" title="Google Reader" src="http://www.google.com/intl/en/googlereader/images/tour1.jpg" alt="" width="464" height="273" /></a>Google Reader can Save You Time</h2>
<p>Think about all the websites you visit on a weekly basis (or even on a daily basis).  Once you start adding up how often you visit each site (CNN.com, Dilbert.com, etc.), the minutes start adding up.</p>
<p>Google reader lets you subscribe to your favorite websites, family blogs, etc. and view when an update occurs, you can generally read the whole article right within Google Reader and even view the images from the article.</p>
<p>Think of the time savings.  Instead of visiting dozens of different sites and poking around to see what is new or worth reading, you can at a glance view all the headlines from your favorite websites, and select the ones you wish to read.</p>
<h2>Don&#8217;t Miss Out</h2>
<p>Because the articles are stored in Google Reader for you stay there until you mark them as read/archive them, you don&#8217;t have to worry about missing updates while you&#8217;re away.</p>
<h2>Save the Good Stuff</h2>
<p>Google Reader lets you add a star to favorite articles.  You can also email an article within Reader and share it with others.</p>
<p>Just a favorite we thought we should share: <a title="Google Reader Site" href="http://www.google.com/reader/">Google Reader</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://doobareviews.com/google-reader-and-why-its-helpful/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Best Things in Life Come in 3&#8242;s: Chrome v. 3.0</title>
		<link>http://doobareviews.com/new-update-to-google-chrome-version-3-0/</link>
		<comments>http://doobareviews.com/new-update-to-google-chrome-version-3-0/#comments</comments>
		<pubDate>Wed, 16 Sep 2009 15:06:34 +0000</pubDate>
		<dc:creator>Thomas</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Cool Stuff]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://www.doobareviews.com/?p=351</guid>
		<description><![CDATA[Isn&#8217;t there something magical to the number 3: Three Stooges, Three Blind Mice, Three&#8217;s Company, Three&#8217;s a Crowd?  Well, Google Chrome is joining the Three&#8217;s Crowd with version 3.0 of its famed Google Chrome Web Browser. Alas, most people still ask, &#8220;What&#8217;s a browser? Is that Internet?&#8221;  Sigh. I was visiting my sister&#8217;s family a few weeks ago, and she [...]]]></description>
			<content:encoded><![CDATA[<p>Isn&#8217;t there something magical to the number 3: Three Stooges, Three Blind Mice, Three&#8217;s Company, Three&#8217;s a Crowd?  Well, Google Chrome is joining the Three&#8217;s Crowd with version 3.0 of its famed <a title="Download Chrome from Google for Free" href="http://www.google.com/chrome">Google Chrome Web Browser</a>.</p>
<p><a href="http://www.google.com/chrome"><img class="aligncenter" title="Google Chrome Browser" src="http://www.google.com/chrome/intl/en/images/dlpage_alt.jpg" alt="" width="440" height="358" /></a></p>
<p>Alas, most people still ask, &#8220;What&#8217;s a browser? Is that Internet?&#8221;  Sigh.</p>
<p>I was visiting my sister&#8217;s family a few weeks ago, and she was complaining that her Internet kept crashing.  Well, of course, the issue was Internet Explorer (which is a web browser and how you &#8220;get on the Internet.&#8221; But it&#8217;s not the only way&#8230;).  I updated her version of Internet explorer and installed two service packs that were lacking in Windows Vista.</p>
<p>I then installed Google Chrome for her, and let her play around with it.  She liked Chrome almost instantly.  She noticed that Chrome downloaded/displayed pages much, much, much faster than her old browser (Internet Explorer).  She also liked how Chrome remembered what she typed (I&#8217;m guessing in the URL bar).</p>
<p>Chrome is a great browser, and I&#8217;ve been using it since it was released.  I even had the 3D version of it on April Fools Day.  Wow.</p>
<p>Now Google has released version 3.0 (which is an updated to Chrome), and the browser displays web pages even faster, has an improved new tab design, and the color scheme is even better.</p>
<p>With the new release, you can even install themes.  To add a theme, just click on the <strong>Settings Wrench</strong> in the upper right corner, select <strong>Options</strong>, and under the<strong> Personal Stuff</strong> Tab, select &#8220;<strong>Get Themes</strong>.&#8221;</p>
<p>Go ahead, give the <a title="Download Chrome from Google for Free" href="http://www.google.com/chrome">Google Chrome Web Browser</a> a try.  It doesn&#8217;t replace the current browsers you have, so you can always go back to the slowness and the crashing of Internet Explorer if you prefer.</p>
]]></content:encoded>
			<wfw:commentRss>http://doobareviews.com/new-update-to-google-chrome-version-3-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Voice App for Android and Blackberry Phones</title>
		<link>http://doobareviews.com/google-voice-app-for-android-and-blackberry-phones/</link>
		<comments>http://doobareviews.com/google-voice-app-for-android-and-blackberry-phones/#comments</comments>
		<pubDate>Thu, 30 Jul 2009 13:05:56 +0000</pubDate>
		<dc:creator>Thomas</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Cool Stuff]]></category>
		<category><![CDATA[G1]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://www.doobareviews.com/?p=344</guid>
		<description><![CDATA[There&#8217;s been a Google Voice app for the Android phone for a while now, but recently, Google released an update that makes it even more useful. Long press on your Android home screen and select Shortcuts and then select Toggle Google Voice (this is assuming that you have the Google Voice App Installed). You can now Toggle the following options [...]]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s been a <strong>Google Voice app</strong> for the <strong>Android </strong>phone for a while now, but recently, Google released an update that makes it even more useful.</p>
<p>Long press on your Android home screen and select <strong>Shortcuts </strong>and then select <strong>Toggle Google Voice</strong> (this is assuming that you have the Google Voice App Installed).  You can now Toggle the following options on Google Voice when you press the shortcut:</p>
<ol>
<li>Use Google Voice for all calls</li>
<li>Only use Google Voice for international calls</li>
<li>Do not use Google Voice for any calls</li>
<li>Ask to use Google Voice for each call</li>
</ol>
<p>The <strong>Ask to use Google Voice for each call</strong> option brings up a little dialog when placing a call which lets you select to use your Google Voice telephone number or your regular telephone number for the call.  This is helpful if you&#8217;re calling mobile-to-mobile with somone on the same carrier allowing you to save on minutes.</p>
]]></content:encoded>
			<wfw:commentRss>http://doobareviews.com/google-voice-app-for-android-and-blackberry-phones/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Voice Starts Sending Invitations</title>
		<link>http://doobareviews.com/just-received-the-google-voice-invitation/</link>
		<comments>http://doobareviews.com/just-received-the-google-voice-invitation/#comments</comments>
		<pubDate>Thu, 16 Jul 2009 02:01:34 +0000</pubDate>
		<dc:creator>Thomas</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Cool Stuff]]></category>
		<category><![CDATA[G1]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://www.doobareviews.com/?p=323</guid>
		<description><![CDATA[Well I just received the invite that I&#8217;ve been waiting for to enable Google Voice.  If you&#8217;re not familiar with Google Voice, the following short animation will surly help and most likely peak your interest: In a nutshell, here&#8217;s what Google Voice can do (given to me in my first voicemail from Google): Welcome to Google Voice! Google Voice gives [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">Well I just received the invite that I&#8217;ve been waiting for to enable Google Voice.  If you&#8217;re not familiar with Google Voice, the following short animation will surly help and most likely peak your interest:</p>
<p style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/m4Q9MJdT5Ds&amp;hl=en&amp;fs=1&amp;rel=0" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/m4Q9MJdT5Ds&amp;hl=en&amp;fs=1&amp;rel=0" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p style="text-align: left;">In a nutshell, here&#8217;s what Google Voice can do (given to me in my first voicemail from Google):</p>
<blockquote><p>Welcome to Google Voice! Google Voice gives you a single phone number that rings all your phones, saves your voicemail online, and transcribes your voicemail to text. Other cool features include the ability to listen in on messages while they are being left and the ability to make low cost international calls. To start enjoying Google Voice, just give out your Google Voice number. You can record custom greetings for your favorite callers or block annoying callers by marking them as SPAM. Just click on the settings link at the top of your inbox. We hope you enjoy Google Voice.</p></blockquote>
<p><span style="color: #000000;">Having a transcribed voicemail is awesome!  How many times do callers leave very long messages and you listen all the way through to make sure you don&#8217;t miss something?</span></p>
<p><span style="color: #000000;"><a href="http://www.doobareviews.com/wp-content/uploads/2009/07/googlevoice.jpg"><img class="aligncenter size-medium wp-image-330" title="googlevoice" src="http://www.doobareviews.com/wp-content/uploads/2009/07/googlevoice-300x238.jpg" alt="googlevoice" width="300" height="238" /></a> </span></p>
<p><span style="color: #000000;">A few notes and tips right off the bat as you start using Google Voice:</span></p>
<ol>
<li><strong>Choosing your number on Google Voice</strong> &#8211; I put in my area code and tried all sorts of word combinations to come up with a cool number, but none were available.  I then started to wonder if my area code was even open.  It took a little bit of searching online for a list of area codes that Google Voice accepts only to not find the list!  However, all was not lost.  I saw on the Google Voice help page that you can type in your area code AND/OR a number or letter combination.  If you type only the area code, you&#8217;ll get the list of numbers available.  I did that, and snatched up a number.</li>
<li><strong>Setting up voice mail</strong> &#8211; Have your phone ready when you click add a phone because Google wants to place an automated call to verify your phone you&#8217;re using.  Once you&#8217;ve done that, you can set up your voice mail.  The connection quality didn&#8217;t seem all that great.  We&#8217;ll see if it was the connection or the service as I use it more.</li>
<li><strong>Next Steps: Configuration </strong>- You&#8217;ll next want to visit the settings option once logged in to set the &#8220;Do not disturb&#8221; function, call screening, add phones, etc.  You&#8217;ll most likely stick with the defaults at first, but it&#8217;s good to know.</li>
</ol>
<p style="padding-left: 60px;"><strong>Notifications</strong> &#8211; I turned off the option to send a text message when I receive a new voicemail.  Email is enough for me since I receive email on my phone anyway.</p>
<p style="padding-left: 60px;"><strong>Call Screening</strong> &#8211; If you enable this option, callers that are not in your contact list will be required to state their name during their first call.</p>
<p style="padding-left: 60px;"><strong>Call Presentation </strong>- If you turn off this options, calls can be answered by you without the &#8220;Press 1 to accept option&#8221;</p>
<p style="padding-left: 60px;">If you leave the &#8220;Call Presentation&#8221; option turned on, you can do the following while an incoming call is ringing (an you pick up):</p>
<p style="padding-left: 60px;"><strong>Press 1 </strong>- Will <strong>accept </strong>the call<br />
<strong> Press 2</strong> &#8211; Will send the call to <strong>voicemail</strong><br />
<strong> Press 3 </strong>- Will let you <strong>listen</strong> to the <strong>voicemail </strong>(if the caller leaves one) as it is being left<br />
<strong> Press 4</strong> &#8211; <strong>Allows </strong>you to accept the call but also <strong>record </strong>the call contents</p>
<p style="padding-left: 60px;">Other basic options:</p>
<p style="padding-left: 60px;"><strong>Want to change your Google Voice Number? </strong>Just go to Settings &gt; Phones &gt; and click the &#8220;Change&#8221; link next to your number.</p>
<p style="padding-left: 60px;"><strong>Want to have different voicemail greetings depending on who called?</strong> Go to Settings &gt; Groups</p>
<p style="text-align: left; padding-left: 60px;"><strong>Want to change which calls get forward to which phones? </strong> Go to Settings &gt; Groups</p>
<p style="text-align: left;">Below are more Google Voice videos for your viewing pleasure:</p>
<p style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/_HvRu9bVH14&amp;hl=en&amp;fs=1&amp;rel=0" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/_HvRu9bVH14&amp;hl=en&amp;fs=1&amp;rel=0" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p style="text-align: center;">Google Voice Mobile.  You can install the Google Voice App on your <a href="http://www.doobareviews.com/2009/01/28/g1-android-phone-with-t-mobile-tips-and-tricks-for-beginners/">Android</a> Phone (or BlackBerry) which will give you the option to have all outgoing calls show to the receiver as your new Google Voice Number.  I installed the app and tested it out.  Works great.</p>
<p style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/4zY00-KBaog&amp;hl=en&amp;fs=1&amp;rel=0" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/4zY00-KBaog&amp;hl=en&amp;fs=1&amp;rel=0" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p style="text-align: center;">Google Voice Conference Calling (how to)</p>
<p>The spam filter is great, but one of the best features is the ability to access voicemail on the web.</p>
<p>Bytheway, the service is free for calls in the continental US.  If you want to make an international call, check the rates.</p>
<p>It&#8217;s 2 cents/minute to call your buddies in France or the United Kingdom (if you&#8217;re calling a cell phone over there though, it&#8217;s a little more, so check first).  If you want to go the other way way, calls to China are 2 cents/minute.</p>
<p>The service is a great idea for people in the workforce with multiple phones as well as a line of defense against unwanted calls.</p>
<p>You don&#8217;t have to deposit money to start using the free service, because, hey, it&#8217;s free.  In fact, my account started with 10 cents already in it.  That means I could call China for 5 minutes courtesy of Google Voice.  The great rate for international calls will make holding a skype phone connected to your computer not look so good.</p>
]]></content:encoded>
			<wfw:commentRss>http://doobareviews.com/just-received-the-google-voice-invitation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Aviary&#8230;Awesome</title>
		<link>http://doobareviews.com/aviary-awesome/</link>
		<comments>http://doobareviews.com/aviary-awesome/#comments</comments>
		<pubDate>Thu, 09 Jul 2009 03:42:25 +0000</pubDate>
		<dc:creator>Thomas</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Cool Stuff]]></category>
		<category><![CDATA[Video Reviews]]></category>

		<guid isPermaLink="false">http://www.doobareviews.com/?p=309</guid>
		<description><![CDATA[I stumbled upon some hilarious images at Worth1000.com today, and saw an interesting add for the first online vector editing program. Hmm&#8230;I&#8217;ve had need for some vector image creation, and I thus got my first look at Aviary. Aviary, in a word is AWESOME. Basically, Aviary offers a suite online tools for image editing and graphics creation. Below are some [...]]]></description>
			<content:encoded><![CDATA[<p>I stumbled upon some hilarious images at <a title="Light Speed" href="http://rookery3.aviary.com/storagev12/1526500/1526950_18c3_625x1000.jpg" target="_blank">Worth1000.com</a> today, and saw an interesting add for the first online vector editing program.  Hmm&#8230;I&#8217;ve had need for some vector image creation, and I thus got my first look at Aviary.  <a href="http://www.aviary.com">Aviary</a>, in a word is AWESOME.  Basically, Aviary offers a suite online tools for image editing and graphics creation.</p>
<p>Below are some of the FREE products they offer.  The tools are built with Flash, so it had no trouble running in my Google Chrome browser.  With the talk about the New Google Chrome Operating System, Aviary is more relevant than ever.</p>
<h2>Phoenix</h2>
<p>Phoenix is Aviary&#8217;s image editor.  Bye bye Photoshop!  Again, simply awesome that it&#8217;s being offered for free, and the pro version is a very small yearly subscription.  I&#8217;m pretty cheap, but the yearly subscription price looks very good if you want to use it commercially.</p>
<p><object id="viddler" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="437" height="370" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowScriptAccess" value="always" /><param name="allowFullScreen" value="true" /><param name="src" value="http://www.viddler.com/player/9f0b00a1/" /><param name="name" value="viddler" /><param name="allowfullscreen" value="true" /><embed id="viddler" type="application/x-shockwave-flash" width="437" height="370" src="http://www.viddler.com/player/9f0b00a1/" name="viddler" allowfullscreen="true" allowscriptaccess="always"></embed></object></p>
<h2>Peacock</h2>
<p>Peacock can be used to create backgrounds, effects, etc.  It&#8217;s pretty amazing and even more amazing that it takes place within the browser.</p>
<p><object id="viddler" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="437" height="370" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowScriptAccess" value="always" /><param name="allowFullScreen" value="true" /><param name="src" value="http://www.viddler.com/player/d9b1ca60/" /><param name="name" value="viddler" /><param name="allowfullscreen" value="true" /><embed id="viddler" type="application/x-shockwave-flash" width="437" height="370" src="http://www.viddler.com/player/d9b1ca60/" name="viddler" allowfullscreen="true" allowscriptaccess="always"></embed></object></p>
<h2>Raven</h2>
<p>Raven is the Vector editing program.  Simply awesome.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="270" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://vimeo.com/moogaloop.swf?clip_id=2451721&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=0&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" /><embed type="application/x-shockwave-flash" width="480" height="270" src="http://vimeo.com/moogaloop.swf?clip_id=2451721&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=0&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="320" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://vimeo.com/moogaloop.swf?clip_id=1764504&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" /><embed type="application/x-shockwave-flash" width="480" height="320" src="http://vimeo.com/moogaloop.swf?clip_id=1764504&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>Do these tools replace Adobe&#8217;s suite of tools that cost thousands of dollars?  Perhaps not right now, but that&#8217;s the thing about disruptive technologies; Aviary may very well replace the need for the user that doesn&#8217;t need all of the features of the Adobe suite.</p>
<p>So, go Aviary!  Sign up if you have the chance for a free account and test it out.  If you really like it, sign up for the paid account.  I&#8217;m sure they&#8217;d appreciate it, and that would help the community to keep going.</p>
]]></content:encoded>
			<wfw:commentRss>http://doobareviews.com/aviary-awesome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
