<?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>wp &#124; anoopdotnet &#187; Geekdom</title>
	<atom:link href="http://wp.anoop.net/category/geekdom/feed/" rel="self" type="application/rss+xml" />
	<link>http://wp.anoop.net</link>
	<description>yet another meaningless wordpress blog</description>
	<lastBuildDate>Fri, 26 Mar 2010 03:51:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Handy mkdir, rm, ls commands with {}</title>
		<link>http://wp.anoop.net/2009/10/handy-mkdir-rm-ls-commands-with/</link>
		<comments>http://wp.anoop.net/2009/10/handy-mkdir-rm-ls-commands-with/#comments</comments>
		<pubDate>Wed, 28 Oct 2009 00:37:24 +0000</pubDate>
		<dc:creator>Anoop</dc:creator>
				<category><![CDATA[Geekdom]]></category>
		<category><![CDATA[Technobabble]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ls]]></category>
		<category><![CDATA[mkdir]]></category>
		<category><![CDATA[rm]]></category>
		<category><![CDATA[shell]]></category>

		<guid isPermaLink="false">http://wp.anoop.net/?p=183</guid>
		<description><![CDATA[I always find these commands handy when working with apache. Part of any VirtualHost config involves making the right directories and you can make your job easier by using curly braces. I suppose you could call it regular expressions. I don&#8217;t actually know the technical terms for it. I know it works in bash which [...]]]></description>
			<content:encoded><![CDATA[<p>I always find these commands handy when working with <a href="http://httpd.apache.org/" target="_blank">apache</a>.</p>
<p>Part of any <a href="http://httpd.apache.org/docs/2.0/vhosts/examples.html" target="_blank">VirtualHost</a> config involves making the right directories and you can make your job easier by using curly braces. I suppose you could call it regular expressions. I don&#8217;t actually know the technical terms for it. I know it works in bash which is what I use on a daily basis.</p>
<p>Learn how to create directories without having to issue multiple mkdir commands. This is a pretty simple one.</p>
<blockquote><p>mkdir -p /path/to/some/vhost/docs</p></blockquote>
<p>This is fairly straight forward. Make the parent directories if they don&#8217;t exist. So if <strong>/path/to/some/vhost/docs</strong> is what you want, and <strong>/path</strong> or any of it&#8217;s children don&#8217;t exist, then it will get created. It&#8217;s a fairly safe command because it intelligently checks before creating directories.</p>
<p>This example is a bit more complicated but it&#8217;s awesomeness will blow you away. I used this when I was making virtualhosts for multiple domains or even sub domains of the same parent.</p>
<blockquote><p>mkdir -p {sub1,sub2,sub3}.domain.com/{docs,logs,cgi-bin}</p>
<p>or</p>
<p>mkdir -p www.{domain1,domain2,domain3}.com/{docs,logs,cgi-bin}</p></blockquote>
<p>that command will create all your directories in the appropriate hierarchy so that you don&#8217;t need to issue multiple mkdir commands. It will create the parent directories for you as well. Here is what it does.</p>
<blockquote><p>$ find .<br />
.<br />
./www.domain1.com<br />
./www.domain1.com/cgi-bin<br />
./www.domain1.com/docs<br />
./www.domain1.com/logs<br />
./www.domain2.com<br />
./www.domain2.com/cgi-bin<br />
./www.domain2.com/docs<br />
./www.domain2.com/logs<br />
./www.domain3.com<br />
./www.domain3.com/cgi-bin<br />
./www.domain3.com/docs<br />
./www.domain3.com/logs</p></blockquote>
<p>You can also do that with ls.</p>
<blockquote><p>$ ls -d www.domain{1,2}*<br />
www.domain1.com    www.domain2.com</p></blockquote>
<p>Or even with rm</p>
<blockquote><p>$ rm -vr www.domain{1,3}*<br />
www.domain1.com/cgi-bin<br />
www.domain1.com/docs<br />
www.domain1.com/logs<br />
www.domain1.com<br />
www.domain3.com/cgi-bin<br />
www.domain3.com/docs<br />
www.domain3.com/logs<br />
www.domain3.com</p></blockquote>
<p>Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://wp.anoop.net/2009/10/handy-mkdir-rm-ls-commands-with/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tweeps4WP</title>
		<link>http://wp.anoop.net/2009/10/tweeps4wp/</link>
		<comments>http://wp.anoop.net/2009/10/tweeps4wp/#comments</comments>
		<pubDate>Sat, 10 Oct 2009 18:31:50 +0000</pubDate>
		<dc:creator>Anoop</dc:creator>
				<category><![CDATA[Geekdom]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[followers]]></category>
		<category><![CDATA[friends]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[widgets]]></category>

		<guid isPermaLink="false">http://wp.anoop.net/?p=166</guid>
		<description><![CDATA[It&#8217;s my very first WordPress plugin! Tweeps4WP is a very simple WP widget that connects to twitter using your credentials and then gets the list of people that follow you or that you&#8217;re following I think they&#8217;re called tweeps. So spruce up your side bar with something a bit more unique. It can display this [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s my very first WordPress plugin!</p>
<p>Tweeps4WP is a very simple WP widget that connects to twitter using your credentials and then gets the list of people that follow you or that you&#8217;re following I think they&#8217;re called <a href="http://www.urbandictionary.com/define.php?term=tweep" target="_blank">tweeps</a>. So spruce up your side bar with something a bit more unique.</p>
<p>It can display this list as &#8220;mini&#8221; profile images or as &#8220;normal&#8221; profile images. It also provides a link to the full list of whatever group you&#8217;ve chosen to display along with a link to your twitter home page. You can customize the title to fit your needs.</p>
<p>Unfortunately for those of you who are super security crazy, you&#8217;ll probably not like this little tid bit.</p>
<blockquote><p>Tweeps4WP requires you to provide your twitter account password.</p>
</blockquote>
<p>It stores in in the wordpress options table as clear text. It&#8217;s never displayed on the screen. Not even in the configuration panel in the dashboard so it can&#8217;t be copied out of the browser once it&#8217;s been saved. Hopefully that will ease your concerns a little bit.</p>
<p>I am considering changing the behavior by allowing an option that will let you provide the user whose tweeps should be displayed so you&#8217;re not storing your super secure twitter creds in a database.</p>
<p>You can see it in action (doing nothing) on the right side of this page. Twitters limitation is that it will only give you 100 tweeps at a time. That&#8217;s fine by me considering tweeps are listed reverse chronologically. People will see the most recent ones at the top.</p>
<p>I don&#8217;t know why i used that name. In retrospect, I should have called it something else.</p>
<h2><a title="Download Tweeps4WP" href="http://wordpress.org/extend/plugins/tweeps4wp/" target="_blank">Download</a></h2>
<p>The download link is not active yet as it&#8217;s not officially released. I still have a few more kinks to work out if they can be worked out.</p>
<h2>Changelog</h2>
<p>Version 0.0.5<br />-bug in 0.0.4. Found immediately. normal images were no longer displaying correctly. Fixed it so mini resizes to 24&#215;24 and normal to 48&#215;48.</p>
<p>Version 0.0.4<br /> -mini images from twitter aren&#8217;t always mini. They&#8217;re called mini but sometimes they&#8217;re normal. This update ensures that all images are resized to 24&#215;24 just like twitter.com does.</p>
<p>Version 0.0.3<br />- got rid of the ugly error messages that appear when you provide a bad password. Just displays a message instead of broken code errors.</p>
<p>Version 0.0.2<br /> &#8211; Fixed issue with justification of photos. Tested in Firefox, IE7, Safari, and Opera. Particular themes may decide to display this widget differently.<br /> &#8211; Theme <a href="http://wordpress.org/extend/themes/jq" target="_blank">jQ</a> does some goofy stuff with CSS which breaks the way that Tweeps are displayed. I will try to fix this in 0.1.0.</p>
<p>Version 0.0.1<br /> &#8211; Initial release.</p>
<p> </p>
]]></content:encoded>
			<wfw:commentRss>http://wp.anoop.net/2009/10/tweeps4wp/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Getting Started with PHP &amp; MySQL I &#8211; Results</title>
		<link>http://wp.anoop.net/2009/09/getting-started-with-php-mysql-i-results/</link>
		<comments>http://wp.anoop.net/2009/09/getting-started-with-php-mysql-i-results/#comments</comments>
		<pubDate>Thu, 24 Sep 2009 03:26:46 +0000</pubDate>
		<dc:creator>Anoop</dc:creator>
				<category><![CDATA[Geekdom]]></category>
		<category><![CDATA[Talks]]></category>
		<category><![CDATA[Technobabble]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[aug]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://wp.anoop.net/?p=141</guid>
		<description><![CDATA[So, I got some direct feedback from some folks and for the most part it was good. I ran over my time by a little bit and fudged up some of the pages a bit. So definitely some room for improvement. Peggy says I used the words &#8220;uhh, umm, like, right?&#8221; quite a bit and [...]]]></description>
			<content:encoded><![CDATA[<p>So, I got some direct feedback from some folks and for the most part it was good. I ran over my time by a little bit and fudged up some of the pages a bit. So definitely some room for improvement. Peggy says I used the words &#8220;uhh, umm, like, right?&#8221; quite a bit and that&#8217;s also something to improve upon. I&#8217;d like to think I&#8217;m eloquent but in the heat of the moment, all the control over that just goes out the window.</p>
<p>I didn&#8217;t know we were going to get a room that big actually. The last time I was there, we were cramped in a smaller space. I&#8217;m glad it worked out for us. It&#8217;s also a good thing I brought my mini-displayport to VGA adapter.</p>
<p>Michael Schaffner, who runs the group, said it was great and that he got lots of good comments from the presentation. I quote</p>
<blockquote><p>I just wanted to drop you a brief note to thank you again for last<br />
nights presentation. We have been planning this thing for a long time,<br />
but it was without a doubt worth the wait. I found your presentation<br />
outstanding and the amount of time you put into getting it together<br />
was very apparent. We drew a great crowd and many first time<br />
attendees. It was nice to have someone with such great presentation<br />
skills deliver so much valuable  information. It reflects well on our<br />
group and  guarantees that first timers will return for more. In fact<br />
upon my return home last night I had already received e-mails about<br />
the meeting and registration for next month.</p>
<p>I understand the amount of time and effort it takes to put together a<br />
presentation and I want you to know how much I truly appreciate you<br />
stepping up and volunteering to present. Our group has always been<br />
dependent on the contribution of generous folks like yourself willing<br />
to share.</p></blockquote>
<p>Well, that is just awesome! I felt quite appreciated and I also felt good about myself. Made some new connections and some people who are really trying to get around the PHP &#8220;issue&#8221;. Learning new things is always tough especially when you&#8217;re the only one responsible for learning. No one is pushing you to do it and so it becomes very easy to cast it aside and focus on things you enjoy doing. We&#8217;re all guilty of it. I&#8217;ve been trying to learn Flex and iPhone programming for months now but I prefer the TV it seems more than anything when I get home. We all have uphill battles and some are more difficult to conquer than others. But if you try, I think you&#8217;ll make some progress and it&#8217;s enough to get the ball rolling. That&#8217;s what I learned on Monday night.</p>
<p>I&#8217;m looking forward to doing more presentations to help people and to help myself.</p>
<div id="attachment_143" class="wp-caption alignnone" style="width: 610px"><img class="size-full wp-image-143 " title="31314545" src="http://wp.anoop.net/wp-content/uploads/2009/09/31314545.jpg" alt="Picture from the back of the room from Peggy's Blackberry" width="600" height="450" /><p class="wp-caption-text">Picture from the back of the room from Peggy&#39;s Blackberry</p></div>
<p>That&#8217;s a picture of me (sort of)  basking in the warm glow that the macbook screen emits.</p>
]]></content:encoded>
			<wfw:commentRss>http://wp.anoop.net/2009/09/getting-started-with-php-mysql-i-results/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Getting started with PHP &amp; MySQL I</title>
		<link>http://wp.anoop.net/2009/09/getting-started-with-php-mysql-i/</link>
		<comments>http://wp.anoop.net/2009/09/getting-started-with-php-mysql-i/#comments</comments>
		<pubDate>Sat, 19 Sep 2009 23:46:33 +0000</pubDate>
		<dc:creator>Anoop</dc:creator>
				<category><![CDATA[Geekdom]]></category>
		<category><![CDATA[Talks]]></category>
		<category><![CDATA[Technobabble]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Presentations]]></category>
		<category><![CDATA[public speaking]]></category>

		<guid isPermaLink="false">http://wp.anoop.net/?p=129</guid>
		<description><![CDATA[Normally, I pride myself on public speaking. I&#8217;ve had the privilege of training folks at several of my last jobs but for some reason, today, I feel especially nervous about tomorrows presentation. I volunteered (shoot me now) to present at the Chicago Adobe Users Group on how to get started with using PHP &#38; MySQL. [...]]]></description>
			<content:encoded><![CDATA[<p>Normally, I pride myself on public speaking. I&#8217;ve had the privilege of training folks at several of my last jobs but for some reason, today, I feel especially nervous about tomorrows presentation.</p>
<p>I volunteered (shoot me now) to present at the <a href="http://www.augchicago.org/">Chicago Adobe Users Group</a> on how to get started with using PHP &amp; MySQL. I know there is a misspelling in my name. Don&#8217;t worry about it. The talk is scheduled for Monday, 21st September, 2009. It&#8217;s a great group and the people there are very nice. The person who I spoke to about presenting, Mr. Michael Schaffner, is a very warm person who cares about the people in this group and helping them learn new things and to explore new things. I appreciate that in him a lot as there aren&#8217;t a whole lot of people who care like that these days.</p>
<p>Anyway, I&#8217;ve been working on my presentation and my whole goal is to try and sort of simplify things as much as possible so that the audience is more comfortable asking questions about things that are confusing. Of course, I have no idea if I&#8217;m successful or not. I&#8217;ll find out on Monday.</p>
<p>The example I&#8217;m using is an address book. Of course, no one actually wants to write an address book because those things serve no purpose at all. That&#8217;s what iPhones and addressbook (macosx) are for. But this example will be simple, direct, to the point and quick! That&#8217;s part of the goal too. I want to cover all my material and leave plenty of time for Q&amp;A. Also, I&#8217;m teaching it as I learned it. Baby steps!</p>
<p>Here is my problem. Over the last few years, I&#8217;ve gotten better about my PHP and being around all the developers at work has made me realize the incorrectness of my ways. Now, I find it disturbing to write code that looks messy and is somewhat flawed. Maybe it&#8217;s an evolutionary process. Maybe someone who is just starting off and learning on their own is supposed to write code that has errors but works anyway. The more you write, the better you will become and the better you will become, the better your code will be. Is that possible? I hope it is. If not, this audience is doomed and I will be responsible for all of it.</p>
<p>It is my sincere hope that the group members will consider using a small amount of PHP on their next project and then slowly start using MySQL.</p>
<p>After the presentation, I&#8217;m going to make final tweaks based on the feedback and then post the zipped copy of the code and the presentation up here. Hopefully, my embarrassment will be short lived.</p>
<p>If it is successful, I&#8217;d love to present more talks like</p>
<ul>
<li>PHP &amp;&amp; MySQL II</li>
<li>Building a PHP &amp;&amp; MySQL Development Environment</li>
<li>Flex for beginners (I&#8217;m not great with flex, I&#8217;ve only just begun)</li>
<li>Tomcat for beginners</li>
</ul>
<p>Who knows. I&#8217;m excited and scared at the same time. But maybe that&#8217;s a good sign?</p>
<p>Update: The link if you want to register for it (sorry for the late notice) is at http://augchicagosept2009.eventbrite.com/ but you can find it from the AUGChicago home page too. cheers!</p>
]]></content:encoded>
			<wfw:commentRss>http://wp.anoop.net/2009/09/getting-started-with-php-mysql-i/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Ad Tunes and my addiction to them</title>
		<link>http://wp.anoop.net/2009/09/ad-tunes-and-my-addiction-to-them/</link>
		<comments>http://wp.anoop.net/2009/09/ad-tunes-and-my-addiction-to-them/#comments</comments>
		<pubDate>Wed, 02 Sep 2009 00:06:06 +0000</pubDate>
		<dc:creator>Anoop</dc:creator>
				<category><![CDATA[Geekdom]]></category>
		<category><![CDATA[Meaningless]]></category>
		<category><![CDATA[TV]]></category>
		<category><![CDATA[adtunes]]></category>
		<category><![CDATA[music from commercials]]></category>

		<guid isPermaLink="false">http://wp.anoop.net/?p=126</guid>
		<description><![CDATA[For a very very long time now, I&#8217;ve had this insanely crazy addiction to music from commercials. It doesn&#8217;t matter what it is, if it&#8217;s a song that&#8217;s catchy, I must have it! There is even this whole community of people who seek out such music and that makes me happy because I&#8217;m not a [...]]]></description>
			<content:encoded><![CDATA[<p>For a very very long time now, I&#8217;ve had this insanely crazy addiction to music from commercials. It doesn&#8217;t matter what it is, if it&#8217;s a song that&#8217;s catchy, I must have it!</p>
<p>There is even this whole community of people who seek out such music and that makes me happy because I&#8217;m not a freak. <a href="http://adtunes.com">AdTunes</a> and <a href="http://twitter.com/adtunes">@adtunes</a> are the people who find the music and then share it with the rest of us. I&#8217;ve even contributed a few times. Once erroneously in a bad way too.</p>
<p>Here is a list of all my &#8220;adtunes&#8221;. Yes I made a genre called &#8220;adtunes&#8221; in iTunes so that I could have them when I felt the need. It&#8217;s not wrong. It&#8217;s just right! It also mentions the commercial in which I heard the song.</p>
<p>Vermillion    The Album Leaf    One day I&#8217;ll be on time    Adtunes (HUMMER H2)<br />
Why Should I Cry?    Avia    Zen 3    Adtunes (Lee Jeans)<br />
Montserrat    Bajo Fondo Tango Club    Cafe Mundo    Adtunes (don&#8217;t remember)<br />
The Model    Balanescu Quartet    Possessed    Adtunes (Similar to the Mercedes commercial at the bottom of the list. I was wrong but it stayed on the list)<br />
Pocket Calculator    Balanescu Quartet    Possessed    Adtunes (Same story as the previous one)<br />
Green Onions    Booker T &amp; The MG&#8217;s    Green Onions    Adtunes (very popular song but this was in another car commercial)<br />
Hyped Up Plus Tax    Dabrye    One/Three    Adtunes (VW I think)<br />
Happiness Runs    Donovan    Barabajagal    Adtunes (Some sort of cereal. Like froot loops maybe)<br />
Ooh La La    Faces    Ooh La La    Adtunes (VW)<br />
On Board    Friendly Fires        Adtunes (Wii Fit)<br />
The Writz    Gift of Gab    Fourth Dimensional Rocketships    Adtunes (Mitsubishi. SUV of some kind)<br />
Strict Machine    Goldfrapp    Black Cherry-ADVANCE    Adtunes (LG Chocolate)<br />
Hey Mrs    I Monster    Hey Mrs    Adtunes (Absolut Vodka)<br />
The Way I am    Ingrid Michaelson    Boys and Girls    Adtunes (Old Navy Sweaters)<br />
One Million Miles Away    J Ralph    The Illusionary movements of Geraldine and Nazu    Adtunes (VW Van like automobile commercial)<br />
Molly&#8217;s Chambers    Kings of Leon    Kings of Leon EP    Adtunes (VW Jetta)<br />
Colors    Kira Willey    Dance for the Sun    Adtunes (duh Dell laptops)<br />
The Honey Tree     The Mostar Diving Club        Adtunes (Honda Insight)<br />
Otto&#8217;s Journey    Mylo    Destroy Rock &amp; Roll    Adtunes (Kraft Dressing)<br />
Horndog    Overseer    Wreckage    Adtunes (Mitsubishi again)<br />
Struggle    Ringside    Ringside    Adtunes (Pontiac?)<br />
Clubbed to Death    Rob Dougan    The Matrix Soundtrack    Adtunes (Matrix commercial and many others)<br />
Remind Me    Royksopp    Melody A.M.    Adtunes (Geico caveman)<br />
Battle without Honor or Humanity    Tomoyasu Hotei    Kill Bill Vol 1.    Adtunes (Blade Trinity i think)<br />
New Soul    Yael Naim    Yael Naim    Adtunes (Macbook Air)<br />
Bo Mambo    Yma Sumac        Adtunes (Kahlua?)<br />
Kodo [Inside the Sun Remix]    Yoshida Brothers    Best of Yoshida Brothers &#8211; Tsugaru Shamisen    Adtunes (Nintendo Wii of course)<br />
Mercedes_M_Class_Commercial            Adtunes (The original commercial from Mercedes Benz for the M Class)</p>
<p>That last one is only 30 seconds but I think I&#8217;ve played it probably like 3000 times. Sick isn&#8217;t it?</p>
<p>Don&#8217;t judge me! You don&#8217;t know me!</p>
]]></content:encoded>
			<wfw:commentRss>http://wp.anoop.net/2009/09/ad-tunes-and-my-addiction-to-them/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Voice voicemail transcription/translation?</title>
		<link>http://wp.anoop.net/2009/07/google-voice-voicemail-transcriptiontranslation/</link>
		<comments>http://wp.anoop.net/2009/07/google-voice-voicemail-transcriptiontranslation/#comments</comments>
		<pubDate>Tue, 28 Jul 2009 07:23:49 +0000</pubDate>
		<dc:creator>Anoop</dc:creator>
				<category><![CDATA[Funny]]></category>
		<category><![CDATA[Geekdom]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Technobabble]]></category>
		<category><![CDATA[google voice]]></category>
		<category><![CDATA[voicemail transcription]]></category>
		<category><![CDATA[voicemail translation]]></category>

		<guid isPermaLink="false">http://wp.anoop.net/?p=105</guid>
		<description><![CDATA[So I was showing Peggy, my lovely girlfriend, the coolness of Google Voice. I asked her to leave me a voicemail on my google voice number and let her watch as it transcribed the messages. Embedded below is what she said and what was transcribed&#8230; What an amazing service! It not only transcribed but also [...]]]></description>
			<content:encoded><![CDATA[<p>So I was showing Peggy, my lovely girlfriend, the coolness of <a href="http://google.com/voice">Google Voice</a>. I asked her to leave me a voicemail on my google voice number and let her watch as it transcribed the messages.</p>
<p>Embedded below is what she said and what was transcribed&#8230;</p>
<p><object type="application/x-shockwave-flash" data="https://clients4.google.com/voice/embed/embedPlayer" width="100%" height="64"><param name="movie" value="https://clients4.google.com/voice/embed/embedPlayer" /><param name="wmode" value="transparent" /><param name="FlashVars" value="u=07560201795925896393&#038;k=AHwOX_CbkEWO9OEYuDS60zeU9tk80k8AIEUZ8V4TKESpQ7Cn0RMoKy0ZJY_P-tuGxq8TdqiYydFbRmdJnAX9T3hy9mlBWIXzyaBtNhYeEZG5GKGXXcROPoJJcuOtU_HZBGoENIHkrGlkFTohaTQy2XFrjIB6W_s7yelT2dlEjClPWfDX4o8n-8U&#038;baseurl=https://clients4.google.com/voice&#038;autoPlay=false&#038;cap=%20something%20love%20love%20love%20love%20right%20for%20us%20" /></object><br />
 <img src="http://wp.anoop.net/wp-content/uploads/2009/07/screen-capture-2.png" alt="peggys first voicemail" title="peggys first voicemail" width="876" height="88" class="alignnone size-full wp-image-107" /></p>
<p>What an amazing service! </p>
<p>It not only transcribed but also translated for me what she really meant. We both had a good laugh. Needless to say, she&#8217;s convinced that we&#8217;re meant to be together per GV.</p>
<p>I hope to see more uses of this feature in the future.</p>
]]></content:encoded>
			<wfw:commentRss>http://wp.anoop.net/2009/07/google-voice-voicemail-transcriptiontranslation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
