<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" version="2.0">
<channel>
	<title>Waikhom.com</title>
	
	<link>http://www.waikhom.com</link>
	<description>Gadgets, Plugins, PC tools and utilities</description>
	<lastBuildDate>Sat, 14 Jan 2012 07:17:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Waikhom" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="waikhom" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">Waikhom</feedburner:emailServiceId><feedburner:feedburnerHostname xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>How to read the attribute of an xml node in unix?</title>
		<link>http://www.waikhom.com/how-to-read-the-attribute-of-an-xml-node-in-unix</link>
		<comments>http://www.waikhom.com/how-to-read-the-attribute-of-an-xml-node-in-unix#comments</comments>
		<pubDate>Tue, 10 Jan 2012 17:51:16 +0000</pubDate>
		<dc:creator>Waikhom</dc:creator>
				<category><![CDATA[Computers/Internet]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Programming]]></category>
		<guid isPermaLink="false">http://www.waikhom.com/?p=1224</guid>
		<description><![CDATA[In unix/linux, you can accomplish so many things which would normally require programming languages in other operating systems. The unix shell is such a powerful tool that almost every bit of automation is possible in unix. So, when it comes to automation, unix is my #1 choice. Today, I&#8217;ll share with you how to read [...]]]></description>
			<content:encoded><![CDATA[<p>In unix/linux, you can accomplish so many things which would normally require programming languages in other operating systems. The unix shell is such a powerful tool that almost every bit of automation is possible in unix. So, when it comes to automation, unix is my #1 choice. Today, I&#8217;ll share with you how to read xml attributes in unix.</p>
<h3>PROBLEM</h3>
<p>Although, there isn&#8217;t an in built library in unix for reading an xml attribute, there are several ways to read an xml attribute in unix. Some of them are complicated and some of them are too easy. Today, I&#8217;ll discuss one of the easiest ways to read the attribute of an xml node in unix.</p>
<h2>COMMON APPROACHES</h3>
<p>Before I come to the easiest one, I&#8217;ll point out some of the other ways to read/parse an xml but without much explanation. Here are some of the suggestions made by fellow unix users :-</p>
<ol>
<li>Using xsltproc: xsltproc is a unix tool for transforming xml into html/ other xml format by using xslt (stylesheet). This method needs the knowledge of xslt and might be a bit tricky and cumbersome. However, this method will have more accurate and less error prone results because of the use of an xml oriented tool</li>
<li>Using awk / sed: awk or sed can be used in a somewhat tricky manner to read the xml attributes. This one is also sometimes tricky and a beginner might wanna avoid</li>
</ol>
<h3>THE SOLUTION &#8211; MY APPROACH</h3>
<p>The way i read the attributes of an xml node in unix is quite easy and can be used effectively for many attributes but with one drawback. This method cannot be used to read attribute values if there are multiple attributes with the same name. Otherwise this method is very easy and very efficient.</p>
<p>Let&#8217;s consider an xml from which we want to read the attribute values.<br />
e.g. item.xml</p>
<pre>
&lt;root&gt;
&lt;item name="foo" value="bar"&gt;&lt;/item&gt;
&lt;/root&gt;
</pre>
<p>In the above example, we can read the attribute values of &#8220;name&#8221; and &#8220;value&#8221; by using the following unix command.</p>
<pre>eval $(tr '[< >]' '\n' < item.xml | egrep 'name|value')</pre>
<h3>EXPLANATION</h3>
<p>In order to understand the above command, let's break it down into small pieces.<br />
First, let's consider the command <code>"tr '[< >]' '\n'"</code>. This command is basically splitting the xml into lines. It replaces &gt;&lt; and spaces with new lines. In other words, the above xml will become:</p>
<pre>
root
item
name="foo"
value="bar"
/item
/root
</pre>
<p>Now, the piped command <code>egrep 'name|value'</code> does nothing but filter out all lines except the ones containing the name and value attributes. This way, the xml is now reduced to </p>
<pre>
name="foo"
value="bar"</pre>
<p>Then we evaluate this string as unix commands by using the eval command so that their values are assigned to their respective variable names. And we can easily access the values of these attributes by using their variable names in the shell as $name and $value respectively.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/YUJbt6XK5iyKvWoopkmTk73m4uQ/0/da"><img src="http://feedads.g.doubleclick.net/~a/YUJbt6XK5iyKvWoopkmTk73m4uQ/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/YUJbt6XK5iyKvWoopkmTk73m4uQ/1/da"><img src="http://feedads.g.doubleclick.net/~a/YUJbt6XK5iyKvWoopkmTk73m4uQ/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.waikhom.com/how-to-read-the-attribute-of-an-xml-node-in-unix/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to automate file upload in Internet Explorer using Selenium?</title>
		<link>http://www.waikhom.com/how-to-automate-file-upload-in-internet-explorer-using-selenium</link>
		<comments>http://www.waikhom.com/how-to-automate-file-upload-in-internet-explorer-using-selenium#comments</comments>
		<pubDate>Sun, 08 Jan 2012 11:36:38 +0000</pubDate>
		<dc:creator>Waikhom</dc:creator>
				<category><![CDATA[Computers/Internet]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Web Development]]></category>
		<guid isPermaLink="false">http://www.waikhom.com/?p=1215</guid>
		<description><![CDATA[Selenium is the most popular framework for web browser automation. We use selenium for automating our UI test cases. Selenium works perfectly fine in most web browsers with the exception of the obviously most problematic “Internet Explorer”. Although most of the features of selenium work fine with internet explorer, there are a few hiccups particularly [...]]]></description>
			<content:encoded><![CDATA[<p>Selenium is the most popular framework for web browser automation. We use selenium for automating our UI test cases. Selenium works perfectly fine in most web browsers with the exception of the obviously most problematic “Internet Explorer”. Although most of the features of selenium work fine with internet explorer, there are a few hiccups particularly associated with Internet Explorer e.g. capturing Screenshot, file upload, etc. Here I’ll be talking about automating the file upload feature in Internet Explorer using Selenium.</p>
<p>In Firefox, you can automate file upload by simple using the “selenium.type” method over the file selector.</p>
<pre>Selenium.type("/input[@name=image_file]");</pre>
<p>However, the type method doesn’t work in Internet explorer because of security restrictions. Internet Explorer doesn’t allow you to change the value of file inputs through JavaScript. So, I did a little research on how I can automate the process in Internet Explorer. There seems to be a few solutions to this problem but none of them really solved mine because all of the solutions are for those who are not using selenium RC or are not using RC server in a remote machine. In my case, selenium RC is located in a remote machine and all my java classes in a separate controller machine. This makes it difficult to invoke autoit scripts as it is mentioned in most of the available solutions. Some of the methods I tried are:</p>
<ol>
<li><a href="http://www.google.com/search?q=selenium.attachFile" target="_blank">Using selenium.attachFIle</a>: Selenium has an api for automating file uploads and is provided as the attachFile method. However, this method is supported in Firefox only and doesn&#8217;t work with Internet Explorer.</li>
<li><a href="http://stackoverflow.com/questions/1707884/selenium-rc-how-to-upload-file-using-attachfile" target="_blank">Using native keys to type in the characters:</a> Selenium RC has apis for generating native keyboard events. This method can be used to automate keyboard events in the OS level and outside the web browser. I also tried this in Internet Explorer, but once I click the browse button and the file selector popups, selenium gets blocked and the keys could not be typed without manual intervention</li>
<li><a href="http://www.testingexcellence.com/how-to-upload-files-using-selenium-and-autoit/" target="_blank">Using AutoIT with Selenium</a>: One most popular method of automating the file upload is to use an autoit script in conjuction with selenium. However this also had it&#8217;s own problem. I couldn&#8217;t invoke the autoit script from my test script as I was running selenium RC in a remote machine. I found another interesting post about this method here &#8211; http://automationtricks.blogspot.com/2010/09/how-to-upload-file-in-selenium.html</li>
</ol>
<h3>THE FIX</h3>
<p>After a series of trials, I could finally automate the file upload scenario in Internet explorer. The fix was to upgrade my selenium from 1.x to 2.x (or webdriver). Unlike selenium 1.x, webdriver is not javascript driven and is not as restricted as javascript driven selenium 1.x. However, upgrading from 1.x to webdriver was a mess because all my test cases were then not working as expected in firefox. So, i did a little hack here to make sure web driver is used only in case of Internet explorer. Given below are the changes I made.</p>
<p>Before:</p>
<pre>DefaultSelenium selenium = new DefaultSelenium("localhost",4444,"*iexplore","http://www.example.com");
selenium.start();</pre>
<p>After:</p>
<pre>WebDriver driver = new RemoteWebDriver(new URL("http://localhost:4444/wd/hub"),DesiredCapabilities.internetExplorer());
DefaultSelenium selenium = new WebDriverBackedSelenium(driver,"http://www.example.com"));</pre>
<p>With this code change, we are now using web driver backed selenium, and because of this, the selenium.type method can be used without any security restrictions. As a result, my file upload automation was run successfully. Well, thanks to those guys working on web driver.</p>
<p>In fact, many of the limitations of selenium 1.x have been addressed by web driver and there&#8217;s a properly documented section on migrating selenium 1.x to webdriver. If you are facing any issues with selenium 1.x, you might try upgrading to web driver. More details on the upgrade process are available here &#8211; <a href="http://seleniumhq.org/docs/appendix_migrating_from_rc_to_webdriver.html" target="_blank">migrating from selenium 1.x to web driver</a>. Well, if you find anything interesting, feel free to share it here.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/thAi3a8ilJXtANZjDAUGyZMXIbY/0/da"><img src="http://feedads.g.doubleclick.net/~a/thAi3a8ilJXtANZjDAUGyZMXIbY/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/thAi3a8ilJXtANZjDAUGyZMXIbY/1/da"><img src="http://feedads.g.doubleclick.net/~a/thAi3a8ilJXtANZjDAUGyZMXIbY/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.waikhom.com/how-to-automate-file-upload-in-internet-explorer-using-selenium/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to prevent/disable javascript error popups in internet explorer while running Selenium tests?</title>
		<link>http://www.waikhom.com/how-to-preventdisable-javascript-error-popups-in-internet-explorer-while-running-selenium-tests</link>
		<comments>http://www.waikhom.com/how-to-preventdisable-javascript-error-popups-in-internet-explorer-while-running-selenium-tests#comments</comments>
		<pubDate>Fri, 06 Jan 2012 18:23:50 +0000</pubDate>
		<dc:creator>Waikhom</dc:creator>
				<category><![CDATA[Computers/Internet]]></category>
		<category><![CDATA[Windows]]></category>
		<guid isPermaLink="false">http://www.waikhom.com/?p=1204</guid>
		<description><![CDATA[Today, I was trying to run some selenium tests on Internet Explorer 8 and got another “This is why I hate Internet explorer” problem. All the selenium tests work fine in Firefox but as soon as I started running them in Internet Explorer, lots of javascript error popups started coming up. The popups were blocking [...]]]></description>
			<content:encoded><![CDATA[<p>Today, I was trying to run some selenium tests on Internet Explorer 8 and got another “This is why I hate Internet explorer” problem. All the selenium tests work fine in Firefox but as soon as I started running them in Internet Explorer, lots of javascript error popups started coming up. The popups were blocking the selenium tests and there was no way I could prevent those popups. In fact, this trivial problem blocked me for a day and was driving me crazy. And when I got through it at last, I thought what the fuck? I won’t let this stupid thing waste someone else’s time again. That’s why I’m writing this post so that you don’t get stuck like me again.<br />
<a href="http://www.waikhom.com/wp-content/uploads/2012/01/IE8ScriptDebuggingError.png"><img class="alignright size-full wp-image-1205" title="IE8ScriptDebuggingError" src="http://www.waikhom.com/wp-content/uploads/2012/01/IE8ScriptDebuggingError.png" alt="" width="442" height="292" /></a><br />
Well, it started with me migrating my selenium tests to webdriver. I had to migrate to webdriver (selenium 2.x) from selenium 1.x because file upload doesn’t seem to work properly (again in Internet explorer) with selenium 1. That leads me to another post – <a href="http://www.waikhom.com/how-to-automate-file-upload-in-internet-explorer-using-selenium">How to automate file upload in Internet explorer using selenium?</a> But that’s another day. For now, let’s focus on preventing those javascript error popups.</p>
<h3>How to prevent/disable javascript error popups in internet explorer?</h3>
<p>It seems there are lots of information out there in Google on how to prevent / disable javascript error popups but none of them really worked for me. Some of them are simple settings change in IE but for some reason, all those instructions didn’t help me in any way. But finally, I got this worked when I reset the IE Settings. So, here we go all the steps I followed in order to disable those freaky javascript popups.</p>
<ol>
<li><a href="http://www.waikhom.com/wp-content/uploads/2012/01/IEDisableScriptErrors.png"><img class="alignright size-full wp-image-1206" title="IEDisableScriptErrors" src="http://www.waikhom.com/wp-content/uploads/2012/01/IEDisableScriptErrors.png" alt="" width="423" height="570" /></a>Disable script debugging – I tried disabling the script debugging option with no use. Well, if you want to, you can disable script debugging by opening Internet Explorer -&gt; Tools-&gt;Internet Options -&gt; Advanced and checking the “disable script debugging” option there.</li>
<li>Disable JavaScript error notification (both manually &amp; using Microsoft fixit) – I tried this too but in vain. You can disable the error notifications by going to Tools-&gt;Internet Options -&gt; Advanced and unchecking the “Display a notification about every script error” option. Or if your don’t want to do it manually, you can use the Microsoft fixit wizard available at <a href="http://support.microsoft.com/kb/822521">http://support.microsoft.com/kb/822521</a> or follow the manual steps there</li>
<li>Reset IE Settings – This was the last resort and it did solve the problem. The downside is that all IE settings are lost and you might not want it. But as I said, if the above steps didn’t work and you are ready to lose your IE settings, you can reset the IE settings to disable/prevent those crazy javascript errors. Well, you can find more info on the resetting procedure at <a href="http://support.microsoft.com/kb/923737/ln">http://support.microsoft.com/kb/923737/ln</a>.</li>
</ol>
<p>Well, with these steps, I was able to get rid of those annoying popups. If you are facing this issue, try these out and let me know the results.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/OmE8iYt613Shrl1Xz3_Nu8deRIM/0/da"><img src="http://feedads.g.doubleclick.net/~a/OmE8iYt613Shrl1Xz3_Nu8deRIM/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/OmE8iYt613Shrl1Xz3_Nu8deRIM/1/da"><img src="http://feedads.g.doubleclick.net/~a/OmE8iYt613Shrl1Xz3_Nu8deRIM/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.waikhom.com/how-to-preventdisable-javascript-error-popups-in-internet-explorer-while-running-selenium-tests/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item><title>Links for 2011-11-20 [Digg]</title><link>null#2011-11-20</link><pubDate>Mon, 21 Nov 2011 00:00:00 PST</pubDate><guid isPermaLink="false">null#2011-11-20</guid><description>&lt;ul&gt;
&lt;li&gt;&lt;a href="http://digg.com/news/offbeat/proxy_list_extension_for_google_chrome?utm_campaign=Feed%3A+http%3A%2F%2Fservices.digg.com%2F2.0%2Fuser.getActivity%3Ftype%3Drss%26activity_type%3Ddigg%26username%3Dbjrnr&amp;utm_medium=feed&amp;utm_source=diggapi"&gt;Proxy List extension for Google Chrome&lt;/a&gt;&lt;br/&gt;
This is a very cool proxy addon for google chrome. If you are a regular proxy user, this will help you save time and eliminate the headache of finding working proxies.&lt;/li&gt;
&lt;/ul&gt;</description></item><item><title>Links for 2011-11-05 [Digg]</title><link>null#2011-11-05</link><pubDate>Sun, 06 Nov 2011 00:00:00 PDT</pubDate><guid isPermaLink="false">null#2011-11-05</guid><description>&lt;ul&gt;
&lt;li&gt;&lt;a href="http://digg.com/news/entertainment/proxy_server_web_proxy_servers?utm_campaign=Feed%3A+http%3A%2F%2Fservices.digg.com%2F2.0%2Fuser.getActivity%3Ftype%3Drss%26activity_type%3Ddigg%26username%3Dbjrnr&amp;utm_medium=feed&amp;utm_source=diggapi"&gt;Proxy Server - Web Proxy Servers&lt;/a&gt;&lt;br/&gt;
Proxy Server for web filtering, privacy, security bypass, unfilter&lt;/li&gt;
&lt;/ul&gt;</description></item><item><title>Links for 2011-11-03 [Digg]</title><link>null#2011-11-03</link><pubDate>Fri, 04 Nov 2011 00:00:00 PDT</pubDate><guid isPermaLink="false">null#2011-11-03</guid><description>&lt;ul&gt;
&lt;li&gt;&lt;a href="http://digg.com/news/story/the_best_movies_of_2011_2?utm_campaign=Feed%3A+http%3A%2F%2Fservices.digg.com%2F2.0%2Fuser.getActivity%3Ftype%3Drss%26activity_type%3Ddigg%26username%3Dbjrnr&amp;utm_medium=feed&amp;utm_source=diggapi"&gt;The Best Movies of 2011&lt;/a&gt;&lt;br/&gt;
2011 is coming to a close. It's time to look back and see what movies released this year were memorable.&lt;/li&gt;
&lt;/ul&gt;</description></item><item>
		<title>Macbook Pro Unibody</title>
		<link>http://www.waikhom.com/macbook-pro-unibody</link>
		<comments>http://www.waikhom.com/macbook-pro-unibody#comments</comments>
		<pubDate>Wed, 26 Oct 2011 19:17:00 +0000</pubDate>
		<dc:creator>Waikhom</dc:creator>
				<category><![CDATA[Computers/Internet]]></category>
		<category><![CDATA[Electronics/Gadgets]]></category>
		<category><![CDATA[PC Hardware]]></category>
		<category><![CDATA[Video Posts]]></category>
		<guid isPermaLink="false">http://www.waikhom.com/?p=1157</guid>
		<description><![CDATA[One of the unique features of the macbook pro is the unibody. The enclosure of the macbook pro is made from a single block of aluminium and is called the unibody. This makes the body light, strong and smooth. One thing that I like the most about apple products is their finishing. And in this [...]]]></description>
			<content:encoded><![CDATA[<p>One of the unique features of the macbook pro is the unibody. The enclosure of the macbook pro is made from a single block of aluminium and is called the unibody. This makes the body light, strong and smooth.</p>
<p>One thing that I like the most about apple products is their finishing. And in this case also, the macbook pro displays a symbol of delicate and super smooth finishing touch. Although I haven&#8217;t got one of these macbooks, I&#8217;m really in the mood to get one. And I&#8217;m sure I&#8217;ll buy one soon enough. Also, below is a video on the unibody and is worth watching.<br />
<p><a href="http://www.waikhom.com/macbook-pro-unibody"><em>Click here to view the embedded video.</em></a></p></p>

<p><a href="http://feedads.g.doubleclick.net/~a/dTvS4Rr0FSO1dM-ZQ8OpAgHkMEY/0/da"><img src="http://feedads.g.doubleclick.net/~a/dTvS4Rr0FSO1dM-ZQ8OpAgHkMEY/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/dTvS4Rr0FSO1dM-ZQ8OpAgHkMEY/1/da"><img src="http://feedads.g.doubleclick.net/~a/dTvS4Rr0FSO1dM-ZQ8OpAgHkMEY/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.waikhom.com/macbook-pro-unibody/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://www.youtube.com/watch?v=BgAsM64NW34" length="" type="" />
		</item>
		<item>
		<title>Publish your blog posts in audio with text to speech converter</title>
		<link>http://www.waikhom.com/publish-your-blog-posts-in-audio-with-text-to-speech-converter</link>
		<comments>http://www.waikhom.com/publish-your-blog-posts-in-audio-with-text-to-speech-converter#comments</comments>
		<pubDate>Tue, 25 Oct 2011 18:08:23 +0000</pubDate>
		<dc:creator>Waikhom</dc:creator>
				<category><![CDATA[General]]></category>
		<guid isPermaLink="false">http://www.waikhom.com/?p=1151</guid>
		<description><![CDATA[After sitting in front of a PC for more than 9 hours, I don&#8217;t feel like staring into my Computer screen just to read a news article or a blog post. And for the last few days, I&#8217;ve not been quite well as far as my eyes are concerned. So I thought, what if I [...]]]></description>
			<content:encoded><![CDATA[<p>After sitting in front of a PC for more than 9 hours, I don&#8217;t feel like staring into my Computer screen just to read a news article or a blog post. And for the last few days, I&#8217;ve not been quite well as far as my eyes are concerned. So I thought, what if I can listen to a blog post or an article? This reminded me of technologyreview.com which had indeed incorporated the audio podcasting feature some time back. And I really liked listening to their podcasts because the voice was natural and easy to understand.</p>
<p>So, I&#8217;ve been looking around for some audio synthesizer and did found some cool tools. One of them was the <a href="http://www.google.com/url?sa=t&amp;rct=j&amp;q=mary%20text%20to%20speech&amp;source=web&amp;cd=1&amp;ved=0CB0QFjAA&amp;url=http%3A%2F%2Fmary.dfki.de%2F&amp;ei=hfimTtDYAomurAe9_fnMDQ&amp;usg=AFQjCNEnhb6paaZ2CH5DxZv739wattIc8g&amp;cad=rja">MARY Text to speech</a> which is an open source project on text to speech coversion. I tried this out and the voice was clear and natural. It is the perfect choice if you own a commercial site and you don&#8217;t want dependencies on third parties. However, MARY is a generic TTS tool and apart from being a self hosted service, it doesn&#8217;t really have ready to use plugins for wordpress.</p>
<p>As the search kept going, I finally stumbled into odiogo which is a hosted service and of course free for bloggers. You need to register in their site but hey, that takes 10 secs only. And yes, odiogo has a wordpress plugin and to use it, you don&#8217;t have to do anything else apart from installing the plugin. Once you install the plugin and enter the feed id, it&#8217;s all good to go. There will be &#8220;listen now&#8221; button below the title of your blog post. Just click that button to listen to your blog post. <del>Well, you can try this out by listening to this blog post by clicking the same button at the top</del> (I&#8217;ve removed this plugin as it doesn&#8217;t work properly. I hope they fix the issues soon). I hope you enjoy reading this and try out this awesome plugin. Happy blogging <img src='http://www.waikhom.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> .</p>

<p><a href="http://feedads.g.doubleclick.net/~a/zqXTKC7cSSHQnxWSx2o7NrUYY64/0/da"><img src="http://feedads.g.doubleclick.net/~a/zqXTKC7cSSHQnxWSx2o7NrUYY64/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/zqXTKC7cSSHQnxWSx2o7NrUYY64/1/da"><img src="http://feedads.g.doubleclick.net/~a/zqXTKC7cSSHQnxWSx2o7NrUYY64/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.waikhom.com/publish-your-blog-posts-in-audio-with-text-to-speech-converter/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kontera and slow wordpress</title>
		<link>http://www.waikhom.com/kontera-and-slow-wordpress</link>
		<comments>http://www.waikhom.com/kontera-and-slow-wordpress#comments</comments>
		<pubDate>Mon, 24 Oct 2011 07:38:42 +0000</pubDate>
		<dc:creator>Waikhom</dc:creator>
				<category><![CDATA[Computers/Internet]]></category>
		<category><![CDATA[Web Development]]></category>
		<guid isPermaLink="false">http://www.waikhom.com/?p=1147</guid>
		<description><![CDATA[For quite some time, my blog has been slow and I finally got the time to sort this out. Using Firebug, I analyzed the page response times of all requests made while opening my homepage. And surprisingly, the kontera ad code that I added seems to be taking a lot of time. So, I just [...]]]></description>
			<content:encoded><![CDATA[<p>For quite some time, my blog has been slow and I finally got the time to sort this out. Using <a href="http://getfirebug.com/" title="Get Firebug" target="_blank">Firebug</a>, I analyzed the page response times of all requests made while opening my homepage. And surprisingly, the kontera ad code that I added seems to be taking a lot of time. So, I just removed the ad code and tried refreshing my page and then &#8230;oorah.. My blog is loading faster than ever before. </p>
<p>But then, what about the bucks I get from kontera? I went to their site and just checked my last quarter earnings and it was pathetic. Who&#8217;s gonna sacrifice the speed of their blog for a few bucks a quarter. Maybe i&#8217;ll try something like infolinks but not kontera. Not anymore. Well, if you have kontera and your blog is taking too much time, removing the kontera ad code is the first thing I&#8217;ll suggest you to do. And after that, you can start looking for &#8220;i like taking time to load&#8221; plugins in firebug.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/M0RKBTufwMIJbnfyU_Y1xOUaoI4/0/da"><img src="http://feedads.g.doubleclick.net/~a/M0RKBTufwMIJbnfyU_Y1xOUaoI4/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/M0RKBTufwMIJbnfyU_Y1xOUaoI4/1/da"><img src="http://feedads.g.doubleclick.net/~a/M0RKBTufwMIJbnfyU_Y1xOUaoI4/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.waikhom.com/kontera-and-slow-wordpress/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>First post from my Android</title>
		<link>http://www.waikhom.com/first-post-from-my-android</link>
		<comments>http://www.waikhom.com/first-post-from-my-android#comments</comments>
		<pubDate>Sun, 16 Oct 2011 18:21:56 +0000</pubDate>
		<dc:creator>Waikhom</dc:creator>
				<category><![CDATA[Cell Phones]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Wordpress Plugins]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">http://www.waikhom.com/first-post-from-my-android</guid>
		<description><![CDATA[So, I was playing around with my new HTC desire HD. And I found this cool android app with which you can virtually do anything with your WordPress blog. It&#8217;s called WordPress and its from Automattic inc. With this app, you can view and moderate comments, posts, pages and even view your wp stats. Well, [...]]]></description>
			<content:encoded><![CDATA[<p>So, I was playing around with my new HTC desire HD. And I found this cool android app with which you can virtually do anything with your WordPress blog. It&#8217;s called WordPress and its from Automattic inc. With this app, you can view and moderate comments, posts, pages and even view your wp stats. </p>
<p>Well, this is my first post from my android phone using this cool app. And even though you cannot manage your whole blog with this, there&#8217;s almost everything that you need everyday. Well, I think you should also try it out and share what you think about it.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/ZuF1mfqJB1ep6Kdtb7IfBAa-7PA/0/da"><img src="http://feedads.g.doubleclick.net/~a/ZuF1mfqJB1ep6Kdtb7IfBAa-7PA/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/ZuF1mfqJB1ep6Kdtb7IfBAa-7PA/1/da"><img src="http://feedads.g.doubleclick.net/~a/ZuF1mfqJB1ep6Kdtb7IfBAa-7PA/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.waikhom.com/first-post-from-my-android/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item><title>Links for 2011-07-08 [Digg]</title><link>
			http://digg.com/
		#2011-07-08</link><pubDate>Sat, 09 Jul 2011 00:00:00 PDT</pubDate><guid isPermaLink="false">
			http://digg.com/
		#2011-07-08</guid><description>&lt;ul&gt;
&lt;li&gt;&lt;a href="http://digg.com/news/technology/anki_an_easier_way_to_increase_your_vocabulary_power"&gt;Anki &amp;ndash; An easier way to increase your vocabulary power&lt;/a&gt;&lt;br/&gt;
Anki is an open source software that can help you remember word meanings more easily. Apart from words meanings, it can be used for various learning processes. Find out how..&lt;/li&gt;
&lt;/ul&gt;</description></item><item>
		<title>Anki – An easier way to increase your vocabulary power</title>
		<link>http://www.waikhom.com/anki-an-easier-way-to-increase-your-vocabulary-power</link>
		<comments>http://www.waikhom.com/anki-an-easier-way-to-increase-your-vocabulary-power#comments</comments>
		<pubDate>Fri, 08 Jul 2011 10:18:03 +0000</pubDate>
		<dc:creator>Waikhom</dc:creator>
				<category><![CDATA[General]]></category>
		<guid isPermaLink="false">http://www.waikhom.com/?p=1096</guid>
		<description><![CDATA[Barron provides around 4000 GRE words that you are supposed to remember. But unless you have a photographic memory, remembering 4000 words isn&#8217;t an easy task. I was like &#8220;Who the heck is going to remember all these words?&#8221;. And as always, I tried to find an easier way to remember or rather, help me [...]]]></description>
			<content:encoded><![CDATA[<p>Barron provides around 4000 GRE words that you are supposed to remember. But unless you have a photographic memory, remembering 4000 words isn&#8217;t an easy task. I was like &#8220;Who the heck is going to remember all these words?&#8221;. And as always, I tried to find an easier way to remember or rather, help me remember these words. And here&#8217;s a very popular and fruitful solution. ANKI is an open source software which helps you remember more easily. By reviewing repeatedly for only those which are difficult, ANKI helps your minimize your time spent on learning and also remember more. Well, what can I say more. With ANKI, learning the 4000 words doesn&#8217;t seem that difficult as earlier. So, those who are giving CAT, GRE or whatever; you should definitely try this. Let me know what you feel about it.</p>
<p><img class="alignright size-medium wp-image-1098" title="anki" src="http://www.waikhom.com/wp-content/uploads/2011/07/anki-600x389.jpg" alt="" width="600" height="389" /></p>
<p>And for those who needs a little help in the steps to use it, below are the steps to install and configure ANKI for the GRE words list.</p>
<ol>
<li><a href="http://ankisrs.net/">Download </a>and install ANKI.</li>
<li>Open ANKI</li>
<li>Click File -&gt; Download -&gt; Shared Deck</li>
<li>Type &#8220;GRE words&#8221; in the search box and download the deck &#8211; &#8220;GRE words(with examples, antonyms and notes). This one is the best if you are giving GRE.<a href="http://www.waikhom.com/wp-content/uploads/2011/07/anki2.jpg"><img src="http://www.waikhom.com/wp-content/uploads/2011/07/anki2-600x447.jpg" alt="" title="Download GRE Words Deck" width="600" height="447" class="alignright size-medium wp-image-1100" /></a></li>
<li>Now, load the deck and you are ready to go.</li>
</ol>
<p>Also, you can always sync your data by creating an anki account so that you can access your deck from any device. Anki has an application for android also with which you can review your desks. Well, I personally like Anki and there are lots of cool stuffs you can do. Find more about it at <a href="http://ankisrs.net">http://ankisrs.net</a>. Finally, hats off to open source <img src='http://www.waikhom.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  .</p>

<p><a href="http://feedads.g.doubleclick.net/~a/_VVopTgB-Ta7jkb8tr_x3iixADg/0/da"><img src="http://feedads.g.doubleclick.net/~a/_VVopTgB-Ta7jkb8tr_x3iixADg/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/_VVopTgB-Ta7jkb8tr_x3iixADg/1/da"><img src="http://feedads.g.doubleclick.net/~a/_VVopTgB-Ta7jkb8tr_x3iixADg/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.waikhom.com/anki-an-easier-way-to-increase-your-vocabulary-power/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Top Movies of 2011</title>
		<link>http://www.waikhom.com/top-movies-of-2011</link>
		<comments>http://www.waikhom.com/top-movies-of-2011#comments</comments>
		<pubDate>Sat, 18 Jun 2011 12:03:54 +0000</pubDate>
		<dc:creator>Waikhom</dc:creator>
				<category><![CDATA[Video Posts]]></category>
		<guid isPermaLink="false">http://www.waikhom.com/?p=1079</guid>
		<description><![CDATA[Watch the trailers of the top movies of 2011&#8230;]]></description>
			<content:encoded><![CDATA[<p><object width="300" height="243"><param name="movie"  value="http://www.youtube.com/p/1FBC92AB6971E331" /><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><embed type="application/x-shockwave-flash" width="300" height="243" src="http://www.youtube.com/p/1FBC92AB6971E331" allowscriptaccess="always" allowfullscreen="true"></embed></object><br />
Watch the trailers of the top movies of 2011&#8230;</p>

<p><a href="http://feedads.g.doubleclick.net/~a/49D__egVlc7F4gd0rEbi88wawB8/0/da"><img src="http://feedads.g.doubleclick.net/~a/49D__egVlc7F4gd0rEbi88wawB8/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/49D__egVlc7F4gd0rEbi88wawB8/1/da"><img src="http://feedads.g.doubleclick.net/~a/49D__egVlc7F4gd0rEbi88wawB8/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.waikhom.com/top-movies-of-2011/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using your android phone as a wireless mouse/remote control for your PC</title>
		<link>http://www.waikhom.com/using-your-android-phone-as-a-wireless-mouseremote-control-for-your-pc</link>
		<comments>http://www.waikhom.com/using-your-android-phone-as-a-wireless-mouseremote-control-for-your-pc#comments</comments>
		<pubDate>Sat, 18 Jun 2011 11:05:34 +0000</pubDate>
		<dc:creator>Waikhom</dc:creator>
				<category><![CDATA[Cell Phones]]></category>
		<guid isPermaLink="false">http://www.waikhom.com/?p=1072</guid>
		<description><![CDATA[For a lazy guy like me, having a wireless mouse or remote control for my PC helps a lot. Especially when you are watching a movie and your lazy ass doesn&#8217;t want to move, this comes handy. You can use our android touchphone as a wireless mouse or even as a remote control for playing [...]]]></description>
			<content:encoded><![CDATA[<p>For a lazy guy like me, having a wireless mouse or remote control for my PC helps a lot. Especially when you are watching a movie and your lazy ass doesn&#8217;t want to move, this comes handy. You can use our android touchphone as a wireless mouse or even as a remote control for playing media on your PC. It&#8217;s pretty easy to set this up provided you have a wireless router. So, assuming that you have a wireless router with which your phone and PC are both connected, you can setup your wireless mouse/rc with the following steps:-<a href="http://www.waikhom.com/wp-content/uploads/2011/06/Gmote.png"><img class="alignright size-full wp-image-1075" title="Gmote" src="http://www.waikhom.com/wp-content/uploads/2011/06/Gmote.png" alt="" width="160" height="160" /></a><br />
1. Install gmote app from android market (search for &#8220;gmote&#8221; in android market from your phone).<br />
2. Download and install gmote server into your PC. http://www.gmote.org/server.(Start the server if not started automatically)<br />
3. Start gmote app from your phone and connect to your PC.</p>
<p>That&#8217;s all. Now, you can use your phone as a mouse for your PC or you can use it to choose and play media files from your computer.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/0othoP6P-R0rNeFCS8v34tgXXSI/0/da"><img src="http://feedads.g.doubleclick.net/~a/0othoP6P-R0rNeFCS8v34tgXXSI/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/0othoP6P-R0rNeFCS8v34tgXXSI/1/da"><img src="http://feedads.g.doubleclick.net/~a/0othoP6P-R0rNeFCS8v34tgXXSI/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.waikhom.com/using-your-android-phone-as-a-wireless-mouseremote-control-for-your-pc/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	<item><title>Links for 2009-08-23 [Digg]</title><link>http://digg.com/users/bjrnr//dugg#2009-08-23</link><pubDate>Mon, 24 Aug 2009 00:00:00 PDT</pubDate><guid isPermaLink="true">http://digg.com/users/bjrnr//dugg#2009-08-23</guid><description>&lt;ul&gt;
&lt;li&gt;&lt;a href="http://digg.com/people/Ganesh_chaturthi_sms_2"&gt;Ganesh chaturthi sms&lt;/a&gt;&lt;br/&gt;
Happy Ganesh Chaturthi to all of you. Today i've collected the most popular ganesh chaturthi sms messages for your frens and family. Just choose the sms you want and send it directly to your phone. Good for those who are looking for Ganesh Chaturthi sms for frens and family. Enjoy :)&lt;/li&gt;
&lt;/ul&gt;</description></item><item><title>Links for 2009-02-22 [Digg]</title><link>http://digg.com/users/bjrnr//dugg#2009-02-22</link><pubDate>Mon, 23 Feb 2009 00:00:00 PST</pubDate><guid isPermaLink="true">http://digg.com/users/bjrnr//dugg#2009-02-22</guid><description>&lt;ul&gt;
&lt;li&gt;&lt;a href="http://digg.com/software/Proxy_Log_list_of_proxy_listing_websites_and_servers"&gt;Proxy Log | list of proxy listing websites and servers&lt;/a&gt;&lt;br/&gt;
The fastest way to surf anonymously....you can surf Facebook, Myspace, etc. real fast&lt;/li&gt;
&lt;/ul&gt;</description></item><item><title>Links for 2008-12-17 [Digg]</title><link>http://digg.com/users/bjrnr//dugg#2008-12-17</link><pubDate>Thu, 18 Dec 2008 00:00:00 PST</pubDate><guid isPermaLink="true">http://digg.com/users/bjrnr//dugg#2008-12-17</guid><description>&lt;ul&gt;
&lt;li&gt;&lt;a href="http://digg.com/programming/Working_with_Adobe_Spry_An_Ajax_framework"&gt;Working with Adobe Spry: An Ajax framework&lt;/a&gt;&lt;br/&gt;
Adobe Spry is an Ajax framework developed for Web designers, making it possible to create a richer experience on an HTML page. Spry is intended to be a way of easily implementing Ajax - designers with entry level HTML, CSS and JavaScript experience should find Spry an easy way to integrate content.&lt;/li&gt;
&lt;/ul&gt;</description></item></channel>
</rss><!-- Dynamic page generated in 1.525 seconds. --><!-- Cached page generated by WP-Super-Cache on 2012-01-29 18:21:41 -->

