<?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>Ann Oyama</title>
	<atom:link href="http://www.superann.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.superann.com</link>
	<description>www.superann.com</description>
	<lastBuildDate>Tue, 06 Dec 2011 06:34:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Search Exclude HTML Tags WordPress Plugin</title>
		<link>http://www.superann.com/2011/12/04/search-exclude-html-tags/</link>
		<comments>http://www.superann.com/2011/12/04/search-exclude-html-tags/#comments</comments>
		<pubDate>Sun, 04 Dec 2011 21:43:03 +0000</pubDate>
		<dc:creator>Ann</dc:creator>
				<category><![CDATA[plugins]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.superann.com/?p=163</guid>
		<description><![CDATA[One of my clients, Jonathan at FinePrint, emailed me last week about the search function of his WordPress-based site being broken. He noted that searching for the keyword &#8220;title&#8221; on his support forum was returning almost everything. After a few tests on his site and some others, I realized that the search for &#8220;title&#8221; was [...]]]></description>
			<content:encoded><![CDATA[<p>One of my clients, Jonathan at <a href="http://fineprint.com">FinePrint</a>, emailed me last week about the search function of his WordPress-based site being broken. He noted that searching for the keyword &#8220;title&#8221; on his support forum was returning almost everything. After a few tests on his site and some others, I realized that the search for &#8220;title&#8221; was actually returning all posts with images because of the title attribute in the image tags. So the real issue was that the WordPress built-in search considers HTML tags in post content to be searchable content&#8230; and that this meant that all WordPress sites were similarly &#8220;broken&#8221;.</p>
<p>I ended up implementing a fix for FinePrint by employing a MySQL function fnStripTags (found all over the internet and attributed to Robert Davis) to strip the HTML tags, and telling WordPress to use it by hooking into the posts_search filter.</p>
<p><a href="http://core.trac.wordpress.org/ticket/5149">From what I&#8217;ve been able to find</a>, this &#8220;bug&#8221; has been around for years so perhaps it&#8217;s simply not an issue that people really care about or they just consider it intended functionality. Although I&#8217;m actually surprised to find very little in the way of complaints&#8230; or maybe I haven&#8217;t looked hard enough. Anyway, since it makes a lot more sense to <em>me</em> that HTML tags be stripped, I&#8217;ve taken the time to bundle this fix up into a plugin and get it onto WordPress.org. To apply on your site, just download, install, and activate!</p>
<p><a href="http://wordpress.org/extend/plugins/search-exclude-html-tags/">Download the plugin &#8220;Search Exclude HTML Tags&#8221; from WordPress.org</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.superann.com/2011/12/04/search-exclude-html-tags/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sticky Custom Post Types WordPress Plugin</title>
		<link>http://www.superann.com/2011/08/20/sticky-custom-post-types/</link>
		<comments>http://www.superann.com/2011/08/20/sticky-custom-post-types/#comments</comments>
		<pubDate>Sun, 21 Aug 2011 00:47:59 +0000</pubDate>
		<dc:creator>Ann</dc:creator>
				<category><![CDATA[plugins]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[custom post types]]></category>
		<category><![CDATA[sticky]]></category>

		<guid isPermaLink="false">http://www.superann.com/?p=150</guid>
		<description><![CDATA[I needed sticky custom post types for a client project but found out that WordPress doesn&#8217;t support this out of the box. Luckily it turned out to be pretty simple to add in that functionality with just a little bit of code&#8230; which I have turned into a plugin for everyone to use! YAY! Installation/instructions: [...]]]></description>
			<content:encoded><![CDATA[<p>I needed sticky custom post types for a client project but found out that <a href="http://core.trac.wordpress.org/ticket/12702">WordPress doesn&#8217;t support this out of the box</a>. Luckily it turned out to be pretty simple to add in that functionality with just a little bit of code&#8230; which I have turned into a plugin for everyone to use! YAY!</p>
<p>Installation/instructions:</p>
<p>1. <a href='http://wordpress.org/extend/plugins/sticky-custom-post-types/'><strong>Download the plugin from wordpress.org</strong></a>.</p>
<p>2. Upload sticky-custom-post-types.php to the /wp-content/plugins/ directory.</p>
<p>3. Select custom post types you want to enable with the sticky function on the &#8216;Settings → Reading&#8217; page. Unless you&#8217;re using custom queries to display your sticky posts, you probably also want to check the option to display selected post types on the blog home.</p>
<p><img src="http://cdn.superann.com/wp/wp-content/uploads/2011/08/Screen-shot-2011-08-26-at-6.30.51-PM.png" alt="" title="Screen Shot" /></p>
<p>4. When adding/editing a custom post type, check the &#8220;Stick this to the front page&#8221; checkbox if you want to stick that custom post to the front page.</p>
<p><img src="http://cdn.superann.com/wp/wp-content/uploads/2011/08/Screen-shot-2011-08-20-at-5.15.17-PM.png" alt="" title="Screen shot 2011-08-20 at 5.15.17 PM" width="289" height="299" class="alignnone size-full wp-image-152" /></p>
<p>And that&#8217;s it!</p>
<p>Unfortunately there&#8217;s no way to put the &#8220;Stick this&#8230;&#8221; checkbox in the same place as it is on the built-in &#8220;Posts&#8221; add/edit page (to do so would require modifying core code), but I think that having it display immediately is actually a lot more straightforward than having to click through the visibility setting edit link to get to it.</p>]]></content:encoded>
			<wfw:commentRss>http://www.superann.com/2011/08/20/sticky-custom-post-types/feed/</wfw:commentRss>
		<slash:comments>22</slash:comments>
		</item>
		<item>
		<title>How to remove the Media Library tab in the WordPress media uploader</title>
		<link>http://www.superann.com/2010/10/08/how-to-remove-the-media-library-tab-in-the-wordpress-media-uploader/</link>
		<comments>http://www.superann.com/2010/10/08/how-to-remove-the-media-library-tab-in-the-wordpress-media-uploader/#comments</comments>
		<pubDate>Fri, 08 Oct 2010 19:09:39 +0000</pubDate>
		<dc:creator>Ann</dc:creator>
				<category><![CDATA[plugins]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[www]]></category>

		<guid isPermaLink="false">http://www.superann.com/?p=141</guid>
		<description><![CDATA[By default, WordPress allows a user with the &#8220;upload_files&#8221; capability to view all items in the media library. Here&#8217;s how to remove the Media Library tab in the WordPress media uploader completely (e.g. for contributors without the &#8220;edit_others_posts&#8221; capability). Copy and paste the following code into a plugin or the theme functions.php file: function remove_medialibrary_tab($tabs) [...]]]></description>
			<content:encoded><![CDATA[<p>By default, WordPress allows a user with the &#8220;upload_files&#8221; capability to view all items in the media library. Here&#8217;s how to remove the Media Library tab in the WordPress media uploader completely (e.g. for contributors without the &#8220;edit_others_posts&#8221; capability).</p>
<p>Copy and paste the following code into a plugin or the theme functions.php file:</p>
<p><pre><code>
function remove_medialibrary_tab($tabs) {
&nbsp;&nbsp;unset($tabs[&#039;library&#039;]);
&nbsp;&nbsp;return $tabs;
}
if(!current_user_can(&#039;edit_others_posts&#039;))
&nbsp;&nbsp;add_filter(&#039;media_upload_tabs&#039;,&#039;remove_medialibrary_tab&#039;);
</code></pre></p>]]></content:encoded>
			<wfw:commentRss>http://www.superann.com/2010/10/08/how-to-remove-the-media-library-tab-in-the-wordpress-media-uploader/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>We are the creators of our own destiny</title>
		<link>http://www.superann.com/2010/04/23/we-are-the-creators-of-our-own-destiny/</link>
		<comments>http://www.superann.com/2010/04/23/we-are-the-creators-of-our-own-destiny/#comments</comments>
		<pubDate>Fri, 23 Apr 2010 19:56:56 +0000</pubDate>
		<dc:creator>Ann</dc:creator>
				<category><![CDATA[diary]]></category>

		<guid isPermaLink="false">http://www.superann.com/?p=135</guid>
		<description><![CDATA[I survived my first solo road trip this past weekend. Hurtling down I-5 in my new red Mini Cooper at 100-120 mph was a bit of a rush for possibly as long as 30 minutes, then I got bored by the lack of turns. The trip to and from LA took about 5.5 hours down [...]]]></description>
			<content:encoded><![CDATA[<p>I survived my first solo road trip this past weekend. Hurtling down I-5 in my new red Mini Cooper at 100-120 mph was a bit of a rush for possibly as long as 30 minutes, then I got bored by the lack of turns. The trip to and from LA took about 5.5 hours down during the day and only 5 hours back driving overnight. The day was somewhat more fun as it was my first real drive in my car. I wasn&#8217;t keen on the 6.5 hours estimated drive time my GPS reported so I drove a bit like an asshole, weaving in and out past slower traffic, and cutting off and re-passing the same few cars that were doing the same thing to me all the way. I&#8217;ve never really driven like an asshole on the road before, and to be honest it was actually somewhat exciting. The night drive was calmer but felt a bit surreal… just endless black and blinding truck lights in my mirrors for hours.</p>
<p>Two things made my drive more bearable:</p>
<p>- The Smiths &#8220;The Queen is Dead&#8221;<br />
- The audiobook of Garth Stein&#8217;s &#8220;The Art of Racing in the Rain&#8221;</p>
<p>There&#8217;s likely no one else in the world who can put your hopes, fears, and feelings to words like Morrissey. And he&#8217;s not even talking about you.</p>
<p>The latter turned out to be much more inspiring than I expected. It&#8217;s really a book about a very full life lived in a limited fashion as an extraordinary dog. It made me want to get a dog and take up racing. Most of all it made me appreciate being a person and having the communicative abilities that allow me to more significantly interact with the world, thereby creating a richer destiny for myself. It&#8217;s somewhat of a revelation to realize how much potential every life has, and how personally I&#8217;m lucky to have so few limitations and so many options. I haven&#8217;t really been taking advantage of my options lately&#8230; but I think I will.</p>
<p>&#8220;I want to see people and I want to see life.&#8221;</p>]]></content:encoded>
			<wfw:commentRss>http://www.superann.com/2010/04/23/we-are-the-creators-of-our-own-destiny/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Horrifying</title>
		<link>http://www.superann.com/2010/04/20/horrifying/</link>
		<comments>http://www.superann.com/2010/04/20/horrifying/#comments</comments>
		<pubDate>Tue, 20 Apr 2010 21:12:54 +0000</pubDate>
		<dc:creator>Ann</dc:creator>
				<category><![CDATA[www]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[the internet]]></category>

		<guid isPermaLink="false">http://www.superann.com/?p=133</guid>
		<description><![CDATA[Man fetus&#8230; WTF?!!!!!!! http://www.cracked.com/article_18470_the-7-most-horrifying-things-ever-discovered-in-human-body.html]]></description>
			<content:encoded><![CDATA[<p>Man fetus&#8230; WTF?!!!!!!!</p>
<p><a href="http://www.cracked.com/article_18470_the-7-most-horrifying-things-ever-discovered-in-human-body.html" rel="nofollow">http://www.cracked.com/article_18470_the-7-most-horrifying-things-ever-discovered-in-human-body.html</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.superann.com/2010/04/20/horrifying/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apple hate</title>
		<link>http://www.superann.com/2009/09/28/apple-hate/</link>
		<comments>http://www.superann.com/2009/09/28/apple-hate/#comments</comments>
		<pubDate>Mon, 28 Sep 2009 20:06:25 +0000</pubDate>
		<dc:creator>Ann</dc:creator>
				<category><![CDATA[diary]]></category>
		<category><![CDATA[rant]]></category>

		<guid isPermaLink="false">http://www.superann.com/?p=128</guid>
		<description><![CDATA[I&#8217;m pissed off at Apple right now as I&#8217;m getting periodic Snow Leopard lockups (like everyone else) and it&#8217;s really impeding my work efficiency: http://discussions.apple.com/thread.jspa?threadID=2141492 And that&#8217;s just one thread. So what&#8217;s the fix? There doesn&#8217;t seem to be one right now. ARGH! Why did I have to pay $10 plus tax for this crap [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m pissed off at Apple right now as I&#8217;m getting periodic Snow Leopard lockups (like everyone else) and it&#8217;s really impeding my work efficiency:</p>
<p><a href="http://discussions.apple.com/thread.jspa?threadID=2141492" rel="nofollow">http://discussions.apple.com/thread.jspa?threadID=2141492</a></p>
<p>And that&#8217;s just one thread.</p>
<p>So what&#8217;s the fix? There doesn&#8217;t seem to be one right now. ARGH! Why did I have to pay $10 plus tax for this crap upgrade?</p>
<p>This coupled with my horrible Macbook Pro buying experience (brand new with case scratches, replaced with another new one with a dead pixel smack in the middle of the LCD, then finally a third one which is fine) is giving me a REALLY bad overall impression of Apple&#8217;s QC.</p>]]></content:encoded>
			<wfw:commentRss>http://www.superann.com/2009/09/28/apple-hate/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Noctilux f1.0 KYAAAAA!!!</title>
		<link>http://www.superann.com/2009/06/19/noctilux-f1-0-kyaaaaa/</link>
		<comments>http://www.superann.com/2009/06/19/noctilux-f1-0-kyaaaaa/#comments</comments>
		<pubDate>Sat, 20 Jun 2009 00:27:16 +0000</pubDate>
		<dc:creator>Ann</dc:creator>
				<category><![CDATA[diary]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[Leica]]></category>
		<category><![CDATA[Noctilux]]></category>
		<category><![CDATA[photography]]></category>

		<guid isPermaLink="false">http://www.superann.com/?p=125</guid>
		<description><![CDATA[I was browsing Flickr the other day and found this photo commemorating the first time I held a Leica (D)SLR in my hands! It&#8217;s the Leica M8 digital body with a NOCTILUX f1.0! Photo by Mark Jaquith. (He has a Nikon.) But sadly it is not mine. (It belongs to PhotoMatt.) Although I would gladly [...]]]></description>
			<content:encoded><![CDATA[<p>I was browsing Flickr the other day and found this photo commemorating the first time I held a Leica (D)SLR in my hands! It&#8217;s the Leica M8 digital body with a NOCTILUX f1.0!</p>
<p><a href="http://www.superann.com/2009/06/19/noctilux-f1-0-kyaaaaa/3599251541_73e6fa5e61/" rel="attachment wp-att-126"><img src="http://cdn.superann.com/wp/wp-content/uploads/2009/06/3599251541_73e6fa5e61.jpg" alt="Leica Noctilux!" title="Leica Noctilux!" class="alignnone size-full wp-image-126" /></a></p>
<p><em>Photo by <a href="http://www.flickr.com/photos/markjaquith/3599251541/">Mark Jaquith</a>. (He has a Nikon.)</em></p>
<p>But sadly it is not mine. (It belongs to <a href="http://www.flickr.com/photos/photomatt/">PhotoMatt</a>.)</p>
<p>Although I would gladly use it if it were given to me, I would probably never buy one. (Especially not the digital body&#8230; didn&#8217;t care for it at all&#8230;)</p>
<p>Unless, perhaps, I already had a Ferrari. Then&#8230; <em>maybe</em>. (But more likely still no.)</p>
<p>So anyway, YAY Friday!! (WEEKEND! And the weather is excellent!)</p>
<p>I like to use parentheses. (Doesn&#8217;t everyone?)</p>]]></content:encoded>
			<wfw:commentRss>http://www.superann.com/2009/06/19/noctilux-f1-0-kyaaaaa/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Addicted to bokeh</title>
		<link>http://www.superann.com/2009/05/12/addicted-to-bokeh/</link>
		<comments>http://www.superann.com/2009/05/12/addicted-to-bokeh/#comments</comments>
		<pubDate>Tue, 12 May 2009 18:27:22 +0000</pubDate>
		<dc:creator>Ann</dc:creator>
				<category><![CDATA[diary]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[bokeh]]></category>

		<guid isPermaLink="false">http://www.superann.com/?p=123</guid>
		<description><![CDATA[I&#8217;ve always been interested in photography but up until recently had been discouraged by all of my photos invariably turning out really boring and crappy. Recently, my friend (BayAnime&#8216;s official staff photographer) let me borrow his old manual lens, a Super Takumar 50mm/f1.4 adapted for the Canon EOS mount, and I have since realized that [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve always been interested in photography but up until recently had been discouraged by all of my photos invariably turning out really boring and crappy. Recently, my friend (<a href="http://bayanime.com">BayAnime</a>&#8216;s official staff photographer) let me borrow his old manual lens, a Super Takumar 50mm/f1.4 adapted for the Canon EOS mount, and I have since realized that what I was really missing in my life (and photos) was the presence of extreme bokeh!</p>
<p>Wearing contact lenses coupled with the dim viewfinder of my XTi makes manual focusing incredibly difficult, but for now, I am just happy knowing that one in a hundred photos might actually turn out in some way that I like!</p>
<p>Of course this likely means that in another few months I will be lusting after ludicrously expensive bodies and lenses. What&#8217;s that you say? Noctilux f1.0? Curse you, <a href="http://www.flickr.com/photos/tommyoshima">Tommy Oshima&#8217;s Flickr photostream</a>!</p>
<p>But for now I really need to get my own Super Takumar! Anyone have one in minty condition for sale (preferably an SMC)? Or a comparable inexpensive, sharp, fast, and awesome lens that can be adapted to the EOS mount?</p>
<p>Anyway I finally got around to taking a picture of one of my most treasured of stuffs&#8230;</p>
<p><a href="http://www.flickr.com/photos/annoyama/3495507072/" title="1960's Martin F-65 acoustic electric guitar by Ann Oyama, on Flickr"><img src="http://farm4.static.flickr.com/3614/3495507072_1989fb1edf.jpg" width="334" height="500" alt="1960's Martin F-65 acoustic electric guitar" /></a></p>
<p>Grandpa Oyama sure had excellent taste in guitars! I am especially proud of having <del datetime="2009-05-12T18:28:05+00:00">accidentally</del>cleverly used strategically placed bokeh to obscure some dust.</p>
<p>And the usual flower and bird pictures&#8230; but now with more bokeh! YAY!</p>
<p><a href="http://www.flickr.com/photos/annoyama/3517000141/" title="rosebud by Ann Oyama, on Flickr"><img src="http://farm4.static.flickr.com/3329/3517000141_b375c81cc6_m.jpg" width="240" height="160" alt="rosebud" /></a></p>
<p><a href="http://www.flickr.com/photos/annoyama/3516956939/" title="birdie by Ann Oyama, on Flickr"><img src="http://farm4.static.flickr.com/3567/3516956939_f997c052e1_m.jpg" width="240" height="160" alt="birdie" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.superann.com/2009/05/12/addicted-to-bokeh/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Always know where your soldering iron is</title>
		<link>http://www.superann.com/2009/04/06/always-know-where-your-soldering-iron-is/</link>
		<comments>http://www.superann.com/2009/04/06/always-know-where-your-soldering-iron-is/#comments</comments>
		<pubDate>Mon, 06 Apr 2009 21:44:55 +0000</pubDate>
		<dc:creator>Ann</dc:creator>
				<category><![CDATA[diary]]></category>

		<guid isPermaLink="false">http://www.superann.com/?p=119</guid>
		<description><![CDATA[The (really crappy) stock Apple power adapter for my old Powerbook G4 finally died. I had already been employing the constant twisting/fiddling method for a couple of months before it failed entirely. There was no way I was going to shell out $79 for another Apple power adapter and I also figured that given the [...]]]></description>
			<content:encoded><![CDATA[<p>The (really crappy) stock Apple power adapter for my old Powerbook G4 finally died. I had already been employing the constant twisting/fiddling method for a couple of months before it failed entirely. There was no way I was going to shell out $79 for another Apple power adapter and I also figured that given the symptoms there was a good chance that it was just a short in the poorly designed strain relief area near the jack&#8230; so I did what any person who has ever had the pleasure of inhaling the sweet fumes of lead solder would do and happily took a hammer to the damned thing. Using my limited toolset (a pair of scissors I found on the ground), I clipped and stripped the wires in preparation&#8230; then realized that I actually couldn&#8217;t find my soldering iron anywhere.</p>
<p>However, I did find some alligator clips. And fashioned a very temporary, extremely unsafe &#8220;fix&#8221; that got my Powerbook charging again! YAY!</p>
<p><img src="http://cdn.superann.com/wp/wp-content/uploads/2009/04/pb_power.jpg" alt="Powerbook power adapter &quot;fix&quot;" title="Powerbook power adapter &quot;fix&quot;" /></p>
<p>But really&#8230; this is definitely NOT recommended.</p>]]></content:encoded>
			<wfw:commentRss>http://www.superann.com/2009/04/06/always-know-where-your-soldering-iron-is/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Introducing Google Voice (formerly GrandCentral)</title>
		<link>http://www.superann.com/2009/03/18/introducing-google-voice-formerly-grandcentral/</link>
		<comments>http://www.superann.com/2009/03/18/introducing-google-voice-formerly-grandcentral/#comments</comments>
		<pubDate>Thu, 19 Mar 2009 07:17:09 +0000</pubDate>
		<dc:creator>Ann</dc:creator>
				<category><![CDATA[diary]]></category>
		<category><![CDATA[www]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[phone]]></category>
		<category><![CDATA[SMS]]></category>
		<category><![CDATA[voice]]></category>
		<category><![CDATA[voicemail]]></category>

		<guid isPermaLink="false">http://www.superann.com/?p=117</guid>
		<description><![CDATA[I&#8217;ve been a heavy user of GrandCentral&#8216;s phone/voicemail service since some time before they were acquired by Google. I found it especially handy for allowing me to have a San Francisco area code (415) phone number that forwards calls right to my original Hawaii cell phone number, which is pretty much the only phone I [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been a heavy user of <a href="http://www.grandcentral.com">GrandCentral</a>&#8216;s phone/voicemail service since some time before they were acquired by Google. I found it especially handy for allowing me to have a San Francisco area code (415) phone number that forwards calls right to my original Hawaii cell phone number, which is pretty much the only phone I ever use. I&#8217;ve also used it to screen out those really annoying car warranty expiration spam calls.</p>
<p>Earlier today I got an email from Google saying that my GrandCentral account was finally ready to be upgraded to the new <a href="http://www.google.com/voice">Google Voice</a> service. Naturally, I had to upgrade and check out the new features! After only a few minutes I had already decided that the new service was much better than the old.</p>
<p>The new interface is very similar to Gmail&#8217;s and much easier to navigate than the GrandCentral interface. Google Voice now allows incoming calls to go straight through to you rather than being interrupted by the voice menu that used to force you to manually choose how to route the call every single time (this was my biggest complaint with the old service). They&#8217;ve also expanded their SMS features significantly. You can receive SMS messages at your Google Voice number and view/reply to them from the Google Voice web interface. Additionally, you can have SMS messages forwarded to your mobile phone and reply from there as usual. I was able to receive SMS messages sent from mobile phones just fine, but unfortunately test messages sent to my Google Voice number from AIM were never received.</p>
<p>Google has also added a voice to text service for voicemail messages. Although it&#8217;s a sweet feature for sure, I suspect that it will be pretty useless for actual use.</p>
<p>The test voicemail message I left: &#8220;Hello, how are you? What are you doing? Goodbye now.&#8221; </p>
<p>Google Voice&#8217;s text translation: &#8220;hey bill how are you went are you doing good site now&#8221;</p>
<p>But hey, what can you expect for free? It looks like the only feature they did away with was the ability to set custom ringtones, which I never used anyway. The one thing I thought they should have added is the ability to receive voicemail in your email as an attached audio file rather than just receiving a link to play it back online, along with their crappy text translation. Still, aside from charging for credits to place international phone calls (another new feature) the service is completely free, so I won&#8217;t be complaining&#8230;</p>
<p>Unfortunately for those of you who don&#8217;t already have GrandCentral accounts, there are no open signups yet for Google Voice. They are, however, currently taking requests for invites <a href="https://services.google.com/fb/forms/googlevoiceinvite/">on their site</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.superann.com/2009/03/18/introducing-google-voice-formerly-grandcentral/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Served from: www.superann.com @ 2012-02-04 05:57:49 -->
