<?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>Vinod S R's Blog</title>
	<atom:link href="http://www.vinodsr.com/myblog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.vinodsr.com/myblog</link>
	<description>think tech talk tek</description>
	<lastBuildDate>Sun, 23 Oct 2011 09:20:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Updated my ubuntu to 11.10 &#8230; lots of b&#8230;</title>
		<link>http://www.vinodsr.com/myblog/2011/10/updated-my-ubuntu-to-11-10-lots-of-b/</link>
		<comments>http://www.vinodsr.com/myblog/2011/10/updated-my-ubuntu-to-11-10-lots-of-b/#comments</comments>
		<pubDate>Sun, 23 Oct 2011 09:20:39 +0000</pubDate>
		<dc:creator>Vinod Surendran</dc:creator>
				<category><![CDATA[status]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.vinodsr.com/myblog/2011/10/updated-my-ubuntu-to-11-10-lots-of-b/</guid>
		<description><![CDATA[Updated my ubuntu to 11.10 &#8230; lots of bug fixes required .. but its a great start.]]></description>
			<content:encoded><![CDATA[<p>Updated my ubuntu to 11.10 &#8230; lots of bug fixes required .. but its a great start.</p>]]></content:encoded>
			<wfw:commentRss>http://www.vinodsr.com/myblog/2011/10/updated-my-ubuntu-to-11-10-lots-of-b/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Asianet dataline Autologin Script for linux</title>
		<link>http://www.vinodsr.com/myblog/2011/09/asianet-dataline-autologin-script-inlinux/</link>
		<comments>http://www.vinodsr.com/myblog/2011/09/asianet-dataline-autologin-script-inlinux/#comments</comments>
		<pubDate>Sat, 10 Sep 2011 15:16:10 +0000</pubDate>
		<dc:creator>Vinod Surendran</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Scripts]]></category>

		<guid isPermaLink="false">http://www.vinodsr.com/myblog/?p=105</guid>
		<description><![CDATA[I had created one simple script to make it easy to login using asianet dataline without using any browser. Requirements  1. Curl (http://bit.ly/bH7jSK) Tested on Ubuntu &#160; #!/bin/bash ##################################################################################################### #ASIANET DATALINE AUTOLOGGER SCRIPT #BY VINOD SURENDRAN #(SMARTVINU@GMAIL.COM) ##################################################################################################### # Set your consumer Id customer=TV7000 # Set your Password password=mypassword ##################################################################################################### ######### DONT EDIT BELOW ########################################################################## [...]]]></description>
			<content:encoded><![CDATA[<p>I had created one simple script to make it easy to login using asianet dataline without using any browser.</p>
<p><strong>Requirements </strong></p>
<p>1. Curl (<a href="http://bit.ly/bH7jSK" rel="nofollow">http://bit.ly/bH7jSK</a>)</p>
<p><strong>Tested on Ubuntu</strong></p>
<blockquote><p><strong><br />
</strong></p></blockquote>
<p>&nbsp;</p>
<blockquote><p>#!/bin/bash</p>
<p>#####################################################################################################</p>
<p>#ASIANET DATALINE AUTOLOGGER SCRIPT</p>
<p>#BY VINOD SURENDRAN<br />
#(SMARTVINU@GMAIL.COM)</p>
<p>#####################################################################################################</p>
<p># Set your consumer Id<br />
customer=TV7000<br />
# Set your Password<br />
password=mypassword</p>
<p>#####################################################################################################<br />
######### DONT EDIT BELOW ##########################################################################<br />
#####################################################################################################</p>
<p>if [ -n "`ifconfig | grep -A 1 wlan0 | grep "inet addr"`" ];<br />
then<br />
echo &#8220;Going to connect &#8230;.&#8221;<br />
echo &#8220;Getting server URL &#8230; &#8221;<br />
targetUrl=`curl -v <a href="http://www.google.com" rel="nofollow">http://www.google.com</a> 2&gt;&amp;1 | grep &#8220;Location:&#8221;|awk {&#8216;print $3&#8242;} | cut -d? -f1`<br />
echo &#8220;Got targetUrl as $targetUrl&#8221;<br />
echo $targetUrl | grep &#8220;mwcp&#8221;<br />
if [ $? -ne 0 ]; then<br />
echo &#8220;Seems like you are logged in.&#8221;<br />
echo &#8220;Preparing to logout&#8221;<br />
curl <a href="https://myaccount.adlkerala.com/login.php" rel="nofollow">https://myaccount.adlkerala.com/login.php</a> &#8211;data &#8220;username=${customer}&amp;pass=${password}&#8221; -c tempCookie<br />
curl <a href="https://myaccount.adlkerala.com/disconn.php" rel="nofollow">https://myaccount.adlkerala.com/disconn.php</a> &#8211;data &#8220;confirm=1&#8243; -b tempCookie<br />
echo &#8220;Logged out.&#8221;<br />
rm -f tempCookie<br />
echo &#8220;Getting server URL &#8230; &#8221;<br />
targetUrl=`curl -v <a href="http://www.google.com" rel="nofollow">http://www.google.com</a> 2&gt;&amp;1 | grep &#8220;Location:&#8221;|awk {&#8216;print $3&#8242;} | cut -d? -f1`<br />
echo &#8220;Got targetUrl as $targetUrl&#8221;<br />
fi;</p>
<p>curl $targetUrl &#8211;data &#8220;auth_user=$customer&amp;auth_pass=$password&amp;accept=Login&#8221; &amp;&gt; /dev/null</p>
<p>echo &#8220;Connected <img src='http://www.vinodsr.com/myblog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> &#8221;<br />
SKIP=0<br />
while true</p>
<p>do<br />
echo &#8220;Waiting &#8230; &#8221;<br />
COUNT=0<br />
if [ $SKIP -eq 0 ]; then<br />
while true<br />
do<br />
sleep 1<br />
echo -ne \\b\\b\\b\\b\\\b$COUNT<br />
COUNT=`echo $COUNT + 1 | bc `<br />
if [ $COUNT -gt 250 ]; then<br />
break;<br />
fi;<br />
done<br />
fi;<br />
echo<br />
echo &#8220;Sending alive &#8230; &#8221;<br />
curl $targetUrl &#8211;data &#8220;alive=y&amp;un=$customer&#8221;<br />
if [ $? -eq 0 ]; then<br />
echo &#8220;done&#8221;<br />
else<br />
echo &#8220;failed.retrying &#8230; &#8221;<br />
fi;</p>
<p>done</p>
<p>else</p>
<p>echo &#8220;Wifi not connected&#8221;;</p>
<p>fi</p></blockquote>]]></content:encoded>
			<wfw:commentRss>http://www.vinodsr.com/myblog/2011/09/asianet-dataline-autologin-script-inlinux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Really confused with taking a decision. &#8230;</title>
		<link>http://www.vinodsr.com/myblog/2011/05/really-confused-with-taking-a-decision/</link>
		<comments>http://www.vinodsr.com/myblog/2011/05/really-confused-with-taking-a-decision/#comments</comments>
		<pubDate>Sat, 21 May 2011 04:23:36 +0000</pubDate>
		<dc:creator>Vinod Surendran</dc:creator>
				<category><![CDATA[status]]></category>
		<category><![CDATA[personal]]></category>

		<guid isPermaLink="false">http://www.vinodsr.com/myblog/2011/05/really-confused-with-taking-a-decision/</guid>
		<description><![CDATA[Really confused with taking a decision. I am sure that my decision will make some one unhappy and some one happy]]></description>
			<content:encoded><![CDATA[<p>Really confused with taking a decision. I am sure that my decision will make some one unhappy and some one happy</p>]]></content:encoded>
			<wfw:commentRss>http://www.vinodsr.com/myblog/2011/05/really-confused-with-taking-a-decision/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>After a long gap, i decided to start blo&#8230;</title>
		<link>http://www.vinodsr.com/myblog/2011/05/after-a-long-gap-i-decided-to-start-blo/</link>
		<comments>http://www.vinodsr.com/myblog/2011/05/after-a-long-gap-i-decided-to-start-blo/#comments</comments>
		<pubDate>Fri, 06 May 2011 09:21:12 +0000</pubDate>
		<dc:creator>Vinod Surendran</dc:creator>
				<category><![CDATA[status]]></category>
		<category><![CDATA[industry]]></category>

		<guid isPermaLink="false">http://www.vinodsr.com/myblog/2011/05/after-a-long-gap-i-decided-to-start-blo/</guid>
		<description><![CDATA[After a long gap, i decided to start bloging .. Now i am feeling very happy with a team that understands me vice versa. Hope this helps me to build a new wrapper in the industry. See u next time ..]]></description>
			<content:encoded><![CDATA[<p>After a long gap, i decided to start bloging ..<br />
Now i am feeling very happy with a team that understands me vice versa. </p>
<p>Hope this helps me to build a new wrapper in the industry.</p>
<p>See u next time ..</p>]]></content:encoded>
			<wfw:commentRss>http://www.vinodsr.com/myblog/2011/05/after-a-long-gap-i-decided-to-start-blo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Tbond got redeemed</title>
		<link>http://www.vinodsr.com/myblog/2010/12/my-tbond-got-redeemed/</link>
		<comments>http://www.vinodsr.com/myblog/2010/12/my-tbond-got-redeemed/#comments</comments>
		<pubDate>Fri, 31 Dec 2010 12:42:55 +0000</pubDate>
		<dc:creator>Vinod Surendran</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[story]]></category>

		<guid isPermaLink="false">http://www.vinodsr.com/myblog/2010/12/my-tbond-got-redeemed/</guid>
		<description><![CDATA[Today I got my tbond  redeemed with zero return value because they feel that flexibility means overtime. This is the problem of software industry. Here more time in office means greater appreciation.  This needs to be changed. We are loosing some sort of humanity in the industry by following rating principle. Hope this has to [...]]]></description>
			<content:encoded><![CDATA[<p>Today I got my tbond  redeemed with zero return value because they feel that flexibility means overtime. This is the problem of software industry. Here more time in office means greater appreciation.  This needs to be changed. We are loosing some sort of humanity in the industry by following rating principle. Hope this has to be changed with future or some one should lead the change. Change is ultimate.</p>
<p>Hope more friends will recognize the same &#8230;</p>]]></content:encoded>
			<wfw:commentRss>http://www.vinodsr.com/myblog/2010/12/my-tbond-got-redeemed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Doing a full recharge cycle on my HTC Le&#8230;</title>
		<link>http://www.vinodsr.com/myblog/2010/12/doing-a-full-recharge-cycle-on-my-htc-le/</link>
		<comments>http://www.vinodsr.com/myblog/2010/12/doing-a-full-recharge-cycle-on-my-htc-le/#comments</comments>
		<pubDate>Sun, 26 Dec 2010 05:51:10 +0000</pubDate>
		<dc:creator>Vinod Surendran</dc:creator>
				<category><![CDATA[status]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[Htc legend]]></category>

		<guid isPermaLink="false">http://www.vinodsr.com/myblog/2010/12/doing-a-full-recharge-cycle-on-my-htc-le/</guid>
		<description><![CDATA[Doing a full recharge cycle on my HTC Legend. Hope that will solve the battery problems Update : It helped a lot. Now the battery drain is reduced it seems .]]></description>
			<content:encoded><![CDATA[<p>Doing a full recharge cycle on my HTC Legend. Hope that will solve the battery problems<a href="http://www.vinodsr.com/myblog/wp-content/uploads/2010/12/HTC-Legend_1579352c.jpg"><img src="http://www.vinodsr.com/myblog/wp-content/uploads/2010/12/HTC-Legend_1579352c-300x187.jpg" alt="HTC-Legend" title="HTC-Legend" width="300" height="187" class="alignright size-medium wp-image-95" /></a></p>
<p><i><b>Update : It helped a lot. Now the battery drain is reduced it seems .</b></i></p>]]></content:encoded>
			<wfw:commentRss>http://www.vinodsr.com/myblog/2010/12/doing-a-full-recharge-cycle-on-my-htc-le/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Meeting with Android</title>
		<link>http://www.vinodsr.com/myblog/2010/12/meeting-with-android/</link>
		<comments>http://www.vinodsr.com/myblog/2010/12/meeting-with-android/#comments</comments>
		<pubDate>Sat, 25 Dec 2010 05:39:23 +0000</pubDate>
		<dc:creator>Vinod Surendran</dc:creator>
				<category><![CDATA[post]]></category>
		<category><![CDATA[android applications]]></category>

		<guid isPermaLink="false">http://www.vinodsr.com/myblog/2010/12/meeting-with-android/</guid>
		<description><![CDATA[Since my meeting with android.. my thinking pattern had changed alot &#8230;I now thinks and act based on the usability approach. This approach helped me to create some apps that will increase the usability. This helped me to create simple appinfo to complex contact watch Here are my android apps AppInfo for Android on AppBrain [...]]]></description>
			<content:encoded><![CDATA[<p>Since my meeting with android.. my thinking pattern had changed alot &#8230;I now thinks and act based on the usability approach. This approach helped me to create some apps that will increase the usability. This helped me to create simple appinfo to complex contact watch</p>
<p>Here are my android apps  </p>
<div id='app77' class='appbrain-app'><a href='http://www.appbrain.com/app/appinfo/com.tenthstone.android.apps' style='font-size: 11px; color: #555; font-family: Arial, sans-serif;'>AppInfo for Android on AppBrain</a></div>
<p> <script type='text/javascript' language='javascript' src='http://www.appbrain.com/api/api.nocache.js'></script></p>
<div id='app281' class='appbrain-app'><a href='http://www.appbrain.com/app/home-control/com.tenthstone.home' style='font-size: 11px; color: #555; font-family: Arial, sans-serif;'>Home Control for Android on AppBrain</a></div>
<p> <script type='text/javascript' language='javascript' src='http://www.appbrain.com/api/api.nocache.js'></script></p>
<div id='app964' class='appbrain-app'><a href='http://www.appbrain.com/app/contact-watch/com.tenthstone.widgets.contactwatch' style='font-size: 11px; color: #555; font-family: Arial, sans-serif;'>Contact Watch for Android on AppBrain</a></div>
<p> <script type='text/javascript' language='javascript' src='http://www.appbrain.com/api/api.nocache.js'></script></p>
<p>Hope you will like it</p>]]></content:encoded>
			<wfw:commentRss>http://www.vinodsr.com/myblog/2010/12/meeting-with-android/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I had update my resume V4 . Get it from &#8230;</title>
		<link>http://www.vinodsr.com/myblog/2010/12/i-had-update-my-resume-v4-get-it-from/</link>
		<comments>http://www.vinodsr.com/myblog/2010/12/i-had-update-my-resume-v4-get-it-from/#comments</comments>
		<pubDate>Sat, 25 Dec 2010 05:36:02 +0000</pubDate>
		<dc:creator>Vinod Surendran</dc:creator>
				<category><![CDATA[status]]></category>

		<guid isPermaLink="false">http://www.vinodsr.com/myblog/2010/12/i-had-update-my-resume-v4-get-it-from/</guid>
		<description><![CDATA[I had update my resume V4 . Get it from http://www.vinodsr.com/resume.pdf]]></description>
			<content:encoded><![CDATA[<p>I had update my resume V4 . Get it from <a href="http://www.vinodsr.com/resume.pdf" rel="nofollow">http://www.vinodsr.com/resume.pdf</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.vinodsr.com/myblog/2010/12/i-had-update-my-resume-v4-get-it-from/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>One Click Root for HTC Legend</title>
		<link>http://www.vinodsr.com/myblog/2010/08/one-click-root-for-htc-legend/</link>
		<comments>http://www.vinodsr.com/myblog/2010/08/one-click-root-for-htc-legend/#comments</comments>
		<pubDate>Fri, 20 Aug 2010 11:32:58 +0000</pubDate>
		<dc:creator>Vinod Surendran</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[Htc legend]]></category>
		<category><![CDATA[one click]]></category>
		<category><![CDATA[rooting]]></category>

		<guid isPermaLink="false">http://www.vinodsr.com/myblog/?p=85</guid>
		<description><![CDATA[The Soft Root for legend is available now &#8230; http://blog.23corner.com/tag/universalandroot/ They had released a beta version for that. The Soft root will give you temporary root access till reboot. You need to do the soft root again after you reboot.. Using Soft root  You can use the applications like SetCpu ShootMe RootExplorer and more &#8230;.]]></description>
			<content:encoded><![CDATA[<p>The Soft Root for legend is available now &#8230;</p>
<p><a href="http://blog.23corner.com/tag/universalandroot/" target="_blank">http://blog.23corner.com/tag/universalandroot/</a></p>
<p>They had released a beta version for that.</p>
<p>The Soft root will give you temporary root access till reboot.</p>
<p>You need to do the soft root again after you reboot..</p>
<p>Using Soft root  You can use the applications like</p>
<p><a href="http://www.appbrain.com/app/com.mhuang.overclocking" target="_blank">SetCpu</a></p>
<p><a href="http://www.appbrain.com/app/com.bw.picme.local" target="_blank">ShootMe</a></p>
<p><a href="http://www.androlib.com/android.application.com-speedsoftware-rootexplorer-Fiq.aspx" target="_blank">RootExplorer</a></p>
<p>and more &#8230;.</p>]]></content:encoded>
			<wfw:commentRss>http://www.vinodsr.com/myblog/2010/08/one-click-root-for-htc-legend/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Found a great mistake</title>
		<link>http://www.vinodsr.com/myblog/2010/08/found-a-great-mistake/</link>
		<comments>http://www.vinodsr.com/myblog/2010/08/found-a-great-mistake/#comments</comments>
		<pubDate>Fri, 13 Aug 2010 16:35:18 +0000</pubDate>
		<dc:creator>Vinod Surendran</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Ideas]]></category>

		<guid isPermaLink="false">http://www.vinodsr.com/myblog/2010/08/found-a-great-mistake/</guid>
		<description><![CDATA[Today is a great day. I found a great mistake in my perception. I am going to change it.]]></description>
			<content:encoded><![CDATA[<p><img style="display:block;margin-right:auto;margin-left:auto;" alt="image" src="http://www.vinodsr.com/myblog/wp-content/uploads/2010/08/wpid-Dream-flies_16791413.jpg" /></p>
<p>Today is a great day. I found a great mistake in my perception. I am going to <strong>change it. </strong></p>]]></content:encoded>
			<wfw:commentRss>http://www.vinodsr.com/myblog/2010/08/found-a-great-mistake/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

