<?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</title>
	<atom:link href="http://wp.anoop.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://wp.anoop.net</link>
	<description>yet another meaningless wordpress blog</description>
	<lastBuildDate>Mon, 04 Jan 2010 23:07:03 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Google Chrome Search Engines</title>
		<link>http://wp.anoop.net/2010/01/google-chrome-search-engines/</link>
		<comments>http://wp.anoop.net/2010/01/google-chrome-search-engines/#comments</comments>
		<pubDate>Mon, 04 Jan 2010 23:07:03 +0000</pubDate>
		<dc:creator>Anoop</dc:creator>
				<category><![CDATA[Meaningless]]></category>

		<guid isPermaLink="false">http://wp.anoop.net/?p=198</guid>
		<description><![CDATA[Google Chrome&#8217;s Omnibar seems to be fairly robust and useful just like Mozilla Firefox&#8217;s Awesomebar. I like that you can add search engines and keyword them just like bookmarks in Firefox.
Here are some of the ones I found useful.
map &#124; http://maps.google.com/maps?f=q&#38;source=s_q&#38;hl=es&#38;q=%sgl &#124; http://www.google.com/search?q=%s&#38;btnI=I&#8217;m+Feeling+Lucky
That&#8217;s it so far.
 
]]></description>
			<content:encoded><![CDATA[<p>Google Chrome&#8217;s Omnibar seems to be fairly robust and useful just like Mozilla Firefox&#8217;s Awesomebar. I like that you can add search engines and keyword them just like bookmarks in Firefox.</p>
<p>Here are some of the ones I found useful.</p>
<p>map | http://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=es&amp;q=%s<br />gl | http://www.google.com/search?q=%s&amp;btnI=I&#8217;m+Feeling+Lucky</p>
<p>That&#8217;s it so far.</p>
<p> </p>
]]></content:encoded>
			<wfw:commentRss>http://wp.anoop.net/2010/01/google-chrome-search-engines/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<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 is [...]]]></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 list as [...]]]></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>Best voicemail I&#8217;ve got so far&#8230;</title>
		<link>http://wp.anoop.net/2009/10/best-voicemail-ive-got-so-far/</link>
		<comments>http://wp.anoop.net/2009/10/best-voicemail-ive-got-so-far/#comments</comments>
		<pubDate>Tue, 06 Oct 2009 21:15:44 +0000</pubDate>
		<dc:creator>Anoop</dc:creator>
				<category><![CDATA[Funny]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://wp.anoop.net/?p=149</guid>
		<description><![CDATA[I don&#8217;t even know who called but here it is&#8230;

I think it&#8217;s Chinese (not even sure if it&#8217;s Mandarin or Cantonese) but I love the transcription from Google Voice.
Gimme some mo!
]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t even know who called but here it is&#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_B5jEh_YnolXP9P8qgSnIynDsZL7YQIDOpHfm4Q6UayumTd5hUUMCZAsYBbQejkUdlESH-jlq2zvtO5xXcbTkcq2qWXDOmr35tHesA-HH5FcVUu5T0ApDEPfcXpk9vhbpgj4fUSKfWYaA3iv9Rjxm5iAYWN5faYwv8T19KomEak83LVqXY&#038;baseurl=https://clients4.google.com/voice&#038;autoPlay=false&#038;cap=%20And%20I%27m%20not%20at%20me.%20I%27m%20at%20hand.%20And%2C%20I%27m.%20" /></object></p>
<p>I think it&#8217;s Chinese (not even sure if it&#8217;s Mandarin or Cantonese) but I love the transcription from Google Voice.</p>
<p>Gimme some mo!</p>
]]></content:encoded>
			<wfw:commentRss>http://wp.anoop.net/2009/10/best-voicemail-ive-got-so-far/feed/</wfw:commentRss>
		<slash:comments>0</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. I [...]]]></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 freak. [...]]]></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 translated [...]]]></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>
		<item>
		<title>Perfect Hard Boiled Eggs + Lazy Deviled Eggs</title>
		<link>http://wp.anoop.net/2009/07/perfect-hard-boiled-eggs-lazy-deviled-eggs/</link>
		<comments>http://wp.anoop.net/2009/07/perfect-hard-boiled-eggs-lazy-deviled-eggs/#comments</comments>
		<pubDate>Tue, 28 Jul 2009 00:22:49 +0000</pubDate>
		<dc:creator>Anoop</dc:creator>
				<category><![CDATA[Food]]></category>
		<category><![CDATA[Meaningless]]></category>
		<category><![CDATA[boiled eggs]]></category>
		<category><![CDATA[deviled eggs]]></category>
		<category><![CDATA[eggs]]></category>
		<category><![CDATA[perfectly hard boiled eggs]]></category>
		<category><![CDATA[snacks]]></category>

		<guid isPermaLink="false">http://wp.anoop.net/?p=88</guid>
		<description><![CDATA[Ever have deviled eggs? Ever have deviled eggs that have that distinctly foul odor? I have.
I don&#8217;t understand why people put up with eggs that are over boiled. If you watch people, you&#8217;ll see that the smell (in the absence of eggs) results in a swift move to cover the nose and breath safe air.
How [...]]]></description>
			<content:encoded><![CDATA[<p>Ever have <a title="http://www.deviledeggs.com/" href="http://http://www.deviledeggs.com/">deviled eggs</a>? Ever have deviled eggs that have that distinctly <a title="boiled eggs on reference.com" href="http://http://www.reference.com/browse/wiki/Boiled_eggs">foul odor</a>? I have.</p>
<p>I don&#8217;t understand why people put up with eggs that are over boiled. If you watch people, you&#8217;ll see that the smell (in the absence of eggs) results in a swift move to cover the nose and breath safe air.</p>
<p>How can people screw it up? I&#8217;ll accept absentmindedness as an excuse but come on man! You&#8217;ve got eggs boiling!</p>
<p>I only recently took this up as a challenge as Peggy, my lovely girlfriend, manages to over boil eggs all the time and frankly it&#8217;s annoying.</p>
<div id="attachment_95" class="wp-caption alignnone" style="width: 235px"><img class="size-medium wp-image-95" title="boiledeggs" src="http://wp.anoop.net/wp-content/uploads/2009/07/boiledeggs-225x300.jpg" alt="First egg!" width="225" height="300" /><p class="wp-caption-text">First egg!</p></div>
<p>Here is an example of a perfect egg. Note how the yellow has no GREEN or BLUE! It&#8217;s because I didn&#8217;t overcook it and when I was done cooking it, I shocked it in ice water to stop the cooking. It also helps a bit with peeling them.</p>
<p>You can also make this happen in your kitchen as I have documented all the instructions you will ever need. The altitude of your location will have some effect on this process but I&#8217;ll rely on your intelligence to guide you through it.</p>
<blockquote>
<ol>
<li>Select the number of eggs you wish to boil. I usually go with 3 or 4. I&#8217;ve seen people do them in batches of 12 or more. I don&#8217;t want to put all my eggs in that basket so to speak.</li>
<li>Select a pot in which you will be boiling the eggs you selected in Step 1. Select another pot where you can setup an ice bath (ice + water)</li>
<li>Place eggs in said pot.</li>
<li>Add water to said pot until eggs are fully submersed. Water temperature can be room or a bit cooler.</li>
<li>Place pot on source of immense heat and set a timer for 10-12 minutes. I set it for 10.</li>
<li>Here is the crucial part. In 10 minutes, when the timer goes off, go back to the pot and check on it.</li>
<li>If it&#8217;s about to begin boiling, then let it continue for about 1-2 minutes. I stick to 1 minute exactly.</li>
<li>Turn off the heat and let cool for 1-2 minutes. I stick to 1 minute again.</li>
<li>Pull out one egg, place it in the ice bath and let it stop cooking.</li>
<li>Peel it to see if it&#8217;s fully cooked. If so, repeat step 9 for every egg you have placed in the pot.</li>
</ol>
</blockquote>
<p>Once you&#8217;re done shocking all the boiled eggs, you can store them in the fridge for days to weeks. Mine don&#8217;t last that long.</p>
<p>It&#8217;s a fairly long process but it&#8217;s not difficult. All the hard work is based on timing. If you time it right, you will always get perfectly boiled eggs and believe me that a perfectly boiled egg is actually quite delicious.</p>
<p>My favorite way to eat them is to devil them the poor mans way.</p>
<p>Sprinke of salt, black pepper, cayenne pepper or chili powder (maybe some cumin)</p>
<p>Hope you get to enjoy them. Please let me know if you find something better, easier and reliable.</p>
]]></content:encoded>
			<wfw:commentRss>http://wp.anoop.net/2009/07/perfect-hard-boiled-eggs-lazy-deviled-eggs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TCF Bank and the huge lack of Customer Service</title>
		<link>http://wp.anoop.net/2009/07/tcf-bank-and-the-huge-lack-of-customer-service/</link>
		<comments>http://wp.anoop.net/2009/07/tcf-bank-and-the-huge-lack-of-customer-service/#comments</comments>
		<pubDate>Tue, 28 Jul 2009 00:00:42 +0000</pubDate>
		<dc:creator>Anoop</dc:creator>
				<category><![CDATA[Meaningless]]></category>
		<category><![CDATA[Money]]></category>
		<category><![CDATA[Bad Customer Service]]></category>
		<category><![CDATA[Banks]]></category>
		<category><![CDATA[TCF Bank]]></category>
		<category><![CDATA[TCF Customer Service]]></category>

		<guid isPermaLink="false">http://wp.anoop.net/?p=98</guid>
		<description><![CDATA[So last week I try to get a hold of someone at TCF bank to get info about a safe deposit at one of their locations. This was a call made for a friend.
To be certain that we would be able to have someone go in and take a look at the box, I tried [...]]]></description>
			<content:encoded><![CDATA[<p>So last week I try to get a hold of someone at TCF bank to get info about a safe deposit at one of their locations. This was a call made for a friend.</p>
<p>To be certain that we would be able to have someone go in and take a look at the box, I tried to call the bank directly. Believe it or not, there is NO way for me to call someone at that bank directly. I have to call some bullshit TCF bank call center that then takes a message and will have someone call me within 24 to 48 hours. So I have to wait two days for a call back? I can&#8217;t get transferred to a personal banker. I can&#8217;t even get transferred to someone who manages the safe deposit boxes. It&#8217;s fucking brilliant!</p>
<p>You&#8217;re a fucking bank! I&#8217;ve been there and from the looks of it, you&#8217;re not going to last very long TCF! There was no one there except me, two tellers, and a security guard because the bank managers are gone too!</p>
<p>The person who picks up the phone at the call center (no, it&#8217;s not in India) has absolutely no information about the kind of documents that I need.</p>
<p><strong><em>Customer Service Rep: </em></strong>&#8220;You need to get a document from the state.&#8221; <br /><em>Me: </em>Fine, what is the document called?<br /><strong><em>Customer Service Rep: </em></strong>Oh I don&#8217;t know. It&#8217;s from the state.<br /><em>Me: </em>Where can I go to get this document? Do you maybe know a website or a number I can call?<br /><em><strong>Customer Service Rep: </strong></em>No you have to contact the state.</p>
<p>Well thanks a fucking bunch for the shit ton of information lady. If you don&#8217;t have the fucking information then how about you get off your ass and get a hold of someone who definitively has the answer. Believe me, you won&#8217;t look like a fool for asking a proper question.</p>
<p>What world do we live in where it&#8217;s becoming more and more common to simply drop the guy on the phone so you can fuck over the next caller?</p>
<p>We are a service based economy. We provide services mainly as opposed to manufacturing which went offshore to other nations that do it cheaper (and maybe better). If we&#8217;re giving up that last value then there is no hope for <a title="Change" href="http://www.whitehouse.gov" target="_blank">Change.</a></p>
<p>My point is simple. I&#8217;m not banking with anyone if I don&#8217;t have a direct line to the folks that took my money in the first place. If Chase can do it, any one can!</p>
]]></content:encoded>
			<wfw:commentRss>http://wp.anoop.net/2009/07/tcf-bank-and-the-huge-lack-of-customer-service/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
