<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>nareshovの日記</title>
	<atom:link href="http://nareshov.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://nareshov.wordpress.com</link>
	<description>Here I am. Sleeping.</description>
	<lastBuildDate>Thu, 22 Dec 2011 07:59:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='nareshov.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>nareshovの日記</title>
		<link>http://nareshov.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://nareshov.wordpress.com/osd.xml" title="nareshovの日記" />
	<atom:link rel='hub' href='http://nareshov.wordpress.com/?pushpress=hub'/>
		<item>
		<title>UCARP for IP failover on CentOS 6</title>
		<link>http://nareshov.wordpress.com/2011/12/22/ucarp-for-ip-failover-on-centos-6/</link>
		<comments>http://nareshov.wordpress.com/2011/12/22/ucarp-for-ip-failover-on-centos-6/#comments</comments>
		<pubDate>Thu, 22 Dec 2011 07:30:15 +0000</pubDate>
		<dc:creator>Naresh</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">https://nareshov.wordpress.com/?p=321</guid>
		<description><![CDATA[At $work &#8211; 1, I&#8217;ve been familiar with the spread + wackamole combo to float and failover two IPs amongst two hosts. A typical use-case is when we have a couple (or more) web servers independent of each other (say, webmail web servers: webmail.mydomain.com), I&#8217;d add multiple A records for the same domain so that [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nareshov.wordpress.com&amp;blog=313548&amp;post=321&amp;subd=nareshov&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>At $work &#8211; 1, I&#8217;ve been familiar with the <a href="http://www.spread.org/">spread</a> + <a href="http://www.backhand.org/wackamole/">wackamole</a> combo to float and failover two IPs amongst two hosts.</p>
<p>A typical use-case is when we have a couple (or more) web servers independent of each other (say, webmail web servers: webmail.mydomain.com), I&#8217;d add multiple A records for the same domain so that DNS resolution happens in a round-robin manner at the client&#8217;s end. i.e.,</p>
<pre>
dig +short webmail.mydomain.com
184.xx.yy.154
184.xx.yy.155
</pre>
<p>The client uses the first IP it gets during resolution and as the number of clients that are resolving your domain (and making HTTP requests) grow, you&#8217;ll start seeing a more or less equitable distribution of HTTP requests hitting each of your hosts.</p>
<p>These IPs are meant to float and be handled by your spread/wackamole tools. (i.e., they&#8217;re not hard-configured into network config files like permanent configs: i.e. /etc/sysconfig/networking/ifcfg-*). Say, the .154 IP was on host A and .155 on host B, host B goes down, spread daemon on host A detects that host B isn&#8217;t responding to &quot;are you alive?&quot; requests and instructs wackamole daemon on host A to take over the IP that host B had (.155). Sometimes &#8211; depending on the router in your environment &#8211; one might have to send a gratuitous ARP packet to the router and hook this up with wackamole&#8217;s &quot;post-up&quot; action.</p>
<p>This post is about how I couldn&#8217;t find usable RPMs for spread/wackamole (and was in a time crunch to shave that yak) and looked for an alternative.</p>
<p>Pacemaker and Keepalived are known entities in the market. So is <a href="http://www.ucarp.org/project/ucarp">UCARP</a> (as userland implementation of BSD&#8217;s CARP for Linux). Being on a time crunch and noticing how the former options seemed a little complex at first sight, I settled on deploying UCARP.</p>
<p>The configurations on the Internet typically show how <em>one</em> IP is floated around between <em>two</em> hosts. Now this doesn&#8217;t let me have DNS-based round-robin&#8217;d &quot;load&quot; balanced incoming requests. So here&#8217;s how I configured UCARP on host A (assuming you have installed from EPEL repo as `yum install ucarp&#8217;):</p>
<pre>
[root@web02-dal07 nvenkateshappa]# cat /etc/ucarp/vip-001.conf
# Virtual IP configuration file for UCARP
# The number (from 001 to 255) in the name of the file is the identifier

# In the simple scenario, you want a single virtual IP address from the _same_
# network to be taken over by one of the routers.
ID="001"
VIP_ADDRESS="184.xx.yy.154"
PASSWORD="love"
BIND_INTERFACE="eth1"
SOURCE_ADDRESS="184.xx.yy.179"

# In more complex scenarios, check the "vip-common" file for values to override
# and how to add options.
</pre>
<p>And on host B:</p>
<pre>
[root@web01-dal07 nvenkateshappa]# cat /etc/ucarp/vip-001.conf
# Virtual IP configuration file for UCARP
# The number (from 001 to 255) in the name of the file is the identifier

# In the simple scenario, you want a single virtual IP address from the _same_
# network to be taken over by one of the routers.
ID="001"
VIP_ADDRESS="184.xx.yy.154"
PASSWORD="love"
BIND_INTERFACE="eth1"
SOURCE_ADDRESS="184.xx.yy.180"
OPTIONS="--shutdown --preempt --advskew=10"

# In more complex scenarios, check the "vip-common" file for values to override
# and how to add options.</pre>
<p>The above vip-001.conf on the two hosts is for managing the first floating IP, and the following are for the second: vip-002.conf</p>
<p>Copy over the same configs on each host, change ID to 002, VIP_ADDRESS to 184.xx.yy.155 and swap the OPTIONS line.</p>
<p>The &#8211;advskew option (advertisement skew) is what gives a sense of affinity for your virtual IPs.</p>
<p>Let me know in what other interesting use-cases you&#8217;ve used UCARP in.</p>
<br />Filed under: <a href='http://nareshov.wordpress.com/category/software/'>Software</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nareshov.wordpress.com/321/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nareshov.wordpress.com/321/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nareshov.wordpress.com/321/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nareshov.wordpress.com/321/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nareshov.wordpress.com/321/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nareshov.wordpress.com/321/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nareshov.wordpress.com/321/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nareshov.wordpress.com/321/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nareshov.wordpress.com/321/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nareshov.wordpress.com/321/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nareshov.wordpress.com/321/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nareshov.wordpress.com/321/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nareshov.wordpress.com/321/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nareshov.wordpress.com/321/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nareshov.wordpress.com&amp;blog=313548&amp;post=321&amp;subd=nareshov&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nareshov.wordpress.com/2011/12/22/ucarp-for-ip-failover-on-centos-6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/07a42c5184e9cc417db03636caf6ef9f?s=96&#38;d=identicon&#38;r=X" medium="image">
			<media:title type="html">nareshov</media:title>
		</media:content>
	</item>
		<item>
		<title>rpmbuild behaviour: CentOS5 vs. CentOS6</title>
		<link>http://nareshov.wordpress.com/2011/12/22/rpmbuild-behaviour-centos5-vs-centos6/</link>
		<comments>http://nareshov.wordpress.com/2011/12/22/rpmbuild-behaviour-centos5-vs-centos6/#comments</comments>
		<pubDate>Thu, 22 Dec 2011 06:54:38 +0000</pubDate>
		<dc:creator>Naresh</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">https://nareshov.wordpress.com/?p=318</guid>
		<description><![CDATA[Those of you who&#8217;ve tried building RPMs for c5 on a c6 machine might&#8217;ve faced the symptoms described in http://samixblog.blogspot.com/2011/11/yum-errno-3-error-performing-checksum.html The cause seems to involve a couple of things: 1. c6 having adopted a stronger file digest algorithm (sha256 as opposed to md5 in c5) and 2. compressing the payload with xz (as opposed to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nareshov.wordpress.com&amp;blog=313548&amp;post=318&amp;subd=nareshov&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Those of you who&#8217;ve tried building RPMs for c5 on a c6 machine might&#8217;ve faced the symptoms described in <a href="http://samixblog.blogspot.com/2011/11/yum-errno-3-error-performing-checksum.html">http://samixblog.blogspot.com/2011/11/yum-errno-3-error-performing-checksum.html</a></p>
<p>The cause seems to involve a couple of things: 1. c6 having adopted a stronger file digest algorithm (sha256 as opposed to md5 in c5) and 2. compressing the payload with xz (as opposed to nothing in c5).</p>
<p>This is easily remedied by passing relevant options to `rpmbuild&#8217; and `createrepo&#8217;.</p>
<p>If you&#8217;re using <a href="https://github.com/jordansissel/fpm">fpm</a> in your <a href="http://jenkins-ci.org">CI</a>, you can now append the following to your fpm command invocation:</p>
<pre>
--rpm-rpmbuild-define '_source_filedigest_algorithm md5' \
--rpm-rpmbuild-define '_binary_filedigest_algorithm md5' \
--rpm-rpmbuild-define '_source_payload nil' \
--rpm-rpmbuild-define '_binary_payload nil' \
</pre>
<p>And invoke createrepo as `createrepo -d -s sha1 &#8211;update /path/to/rpms/for/c5&#8242;</p>
<br />Filed under: <a href='http://nareshov.wordpress.com/category/software/'>Software</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nareshov.wordpress.com/318/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nareshov.wordpress.com/318/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nareshov.wordpress.com/318/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nareshov.wordpress.com/318/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nareshov.wordpress.com/318/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nareshov.wordpress.com/318/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nareshov.wordpress.com/318/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nareshov.wordpress.com/318/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nareshov.wordpress.com/318/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nareshov.wordpress.com/318/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nareshov.wordpress.com/318/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nareshov.wordpress.com/318/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nareshov.wordpress.com/318/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nareshov.wordpress.com/318/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nareshov.wordpress.com&amp;blog=313548&amp;post=318&amp;subd=nareshov&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nareshov.wordpress.com/2011/12/22/rpmbuild-behaviour-centos5-vs-centos6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/07a42c5184e9cc417db03636caf6ef9f?s=96&#38;d=identicon&#38;r=X" medium="image">
			<media:title type="html">nareshov</media:title>
		</media:content>
	</item>
		<item>
		<title>Using Dnsmasq to serve from a central /etc/hosts</title>
		<link>http://nareshov.wordpress.com/2011/12/02/using-dnsmasq-to-serve-from-a-central-etchosts/</link>
		<comments>http://nareshov.wordpress.com/2011/12/02/using-dnsmasq-to-serve-from-a-central-etchosts/#comments</comments>
		<pubDate>Fri, 02 Dec 2011 06:42:22 +0000</pubDate>
		<dc:creator>Naresh</dc:creator>
				<category><![CDATA[LAN]]></category>
		<category><![CDATA[Work Life]]></category>

		<guid isPermaLink="false">https://nareshov.wordpress.com/?p=314</guid>
		<description><![CDATA[Recently at $work, I came across a situation where: a. public DNS records are served off of a GoDaddy account and b. a couple of domain names needed a office network-wide override pointing it to IPs in the local network. i.e. dig +short @8.8.8.8 qa.example.com &#60;returns public IP&#62; dig +short qa.example.com &#60;returns private IP&#62; If [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nareshov.wordpress.com&amp;blog=313548&amp;post=314&amp;subd=nareshov&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Recently at $work, I came across a situation where: a. public DNS records are served off of a GoDaddy account and b. a couple of domain names needed a office network-wide override pointing it to IPs in the local network.</p>
<blockquote>
<p>i.e.</p>
<p>dig +short @8.8.8.8 qa.example.com</p>
<p>&lt;returns public IP&gt;</p>
<p>dig +short qa.example.com</p>
<p>&lt;returns private IP&gt;</p>
</blockquote>
<p>If there aren&#8217;t too many consumers for this name resolution, we could&#8217;ve done with putting in entries into /etc/hosts on each consumer host. But our consumer hosts included a lot of android phones. And we didn&#8217;t want to root them all to be able to modify their /etc/hosts.</p>
<p>If we were running our own DNS server in our DMZ, we could&#8217;ve configured the infamous split-DNS setup through BIND or tinydns. (Un)fortunately, we didn&#8217;t.</p>
<p>The first &quot;workaround&quot; to this was to maintain a duplicate zone for example.com on our local DNS server (the one served by our DHCP server) and override the records as required. This would soon start to suck.</p>
<p>A colleague of mine &#8211; who didn&#8217;t take my word that the above two methods are our only options available &#8211; persevered through the PowerDNS docs and found an option where it could serve off the host&#8217;s /etc/hosts file. Now what was brilliant about this was, adding a &#8217;192.168.1.223 qa.example.com&#8217; into /etc/hosts effectively solved the problem we had!</p>
<p>We didn&#8217;t really needed a full-fledged DNS server like PowerDNS and I looked if dnsmasq could solve the same problem &#8211; and it does.</p>
<blockquote>
<p>[root@blr-vbox1 ~]# egrep -v &#8216;^#|^\B+&#8217; /etc/dnsmasq.conf <br />bogus-priv<br />resolv-file=/etc/resolv.conf.isp<br />interface=eth0<br />no-dhcp-interface=eth0<br />no-dhcp-interface=lo0<br />conf-dir=/etc/dnsmasq.d</p>
<p>Our ISP&#8217;s DNS servers go into /etc/resolv.conf.isp</p>
</blockquote>
<p>Ensure that the host that&#8217;s running dnsmasq has only &#8216;nameserver 127.0.0.1&#8242; in /etc/resolv.conf and put in all your entries to be served into /etc/hosts.</p>
<br />Filed under: <a href='http://nareshov.wordpress.com/category/college-life/lan/'>LAN</a>, <a href='http://nareshov.wordpress.com/category/work-life/'>Work Life</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nareshov.wordpress.com/314/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nareshov.wordpress.com/314/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nareshov.wordpress.com/314/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nareshov.wordpress.com/314/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nareshov.wordpress.com/314/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nareshov.wordpress.com/314/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nareshov.wordpress.com/314/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nareshov.wordpress.com/314/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nareshov.wordpress.com/314/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nareshov.wordpress.com/314/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nareshov.wordpress.com/314/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nareshov.wordpress.com/314/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nareshov.wordpress.com/314/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nareshov.wordpress.com/314/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nareshov.wordpress.com&amp;blog=313548&amp;post=314&amp;subd=nareshov&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nareshov.wordpress.com/2011/12/02/using-dnsmasq-to-serve-from-a-central-etchosts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/07a42c5184e9cc417db03636caf6ef9f?s=96&#38;d=identicon&#38;r=X" medium="image">
			<media:title type="html">nareshov</media:title>
		</media:content>
	</item>
		<item>
		<title>My first day to work in a bike</title>
		<link>http://nareshov.wordpress.com/2011/11/21/my-first-day-to-work-in-a-bike/</link>
		<comments>http://nareshov.wordpress.com/2011/11/21/my-first-day-to-work-in-a-bike/#comments</comments>
		<pubDate>Mon, 21 Nov 2011 15:32:30 +0000</pubDate>
		<dc:creator>Naresh</dc:creator>
				<category><![CDATA[Public Transport]]></category>
		<category><![CDATA[Travel]]></category>
		<category><![CDATA[Work Life]]></category>

		<guid isPermaLink="false">https://nareshov.wordpress.com/?p=308</guid>
		<description><![CDATA[Public transport that is fast, reliable is still a far-sighted goal in these parts of the world. The local government has probably lost its chance to increase the number of buses or other forms of public transport because if they do it now, there&#8217;s simply not enough road space for them anymore. There are as [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nareshov.wordpress.com&amp;blog=313548&amp;post=308&amp;subd=nareshov&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Public transport that is fast, reliable is still a far-sighted goal in these parts of the world. The local government has probably lost its chance to increase the number of buses or other forms of public transport because if they do it now, there&#8217;s simply not enough road space for them anymore. There are as many cars these days as there were two wheelers in the 90s. But, no, the road space hasn&#8217;t increased.</p>
<p>Ever since I got back to B&#8217;lore last November, I&#8217;ve been commuting to work on a car. It&#8217;s a 2006-07 Hyundai Getz and still works quite well. What makes it an unpleasant and at times depressing ride is when one is stuck inside it in B&#8217;lore peak hour traffic. One can&#8217;t hit the second gear for an hour or more. So much wasted time sitting idle on a seat waiting on slow minds &#8211; who don&#8217;t realise how traffic rules are meant to help them be efficient on the road &#8211; to make way. Oh, but the rules themselves are harebrained in certain scenarios: for instance, traffic lights in a junction that turn green in a round-robin fashion with <em>equal time intervals</em> for all roads on that junction.</p>
<p>Last week I acquired a Trek 7.1 FX. It&#8217;s a hybrid that&#8217;s supposed to roll well on city roads. I took it out for a test spin to work on Saturday to test the waters: to see if the goal of riding nearly 12 kilometers is doable at all without sweating too much. Turns out that it&#8217;s possible.</p>
<p>Two years ago, at around the same time, I had acquired a Hercules ACT104. It&#8217;s supposed to be an MTB. But I didn&#8217;t know at that time that good MTBs don&#8217;t come that cheap at all. That cycle was a deadweight to ride with. The weekend before last, I had taken the ACT104 out in an attempt to see if I could ride all the way to office. I had to give up at one-third the distance. It was too heavy or just didn&#8217;t roll well. Previously at college, I was a proud owner of a BSA Mach III. I could literally glide on it at times. All this made me start looking at cycles with narrower tires.</p>
<p>My ride to work is nearly 11 kilometers and the ride back is almost 18 kilometers (I ride to NGV/Koramangala and then toward home). I&#8217;m not sure how tired I am as I write this, but being just the first day, I&#8217;m looking forward to improvements.</p>
<p>P.S. The Trek cost me my 6 month petrol bill (assuming the petrol price doesn&#8217;t increase in the next 6 months)</p>
<p>P.P.S. The Nissan Leaf isn&#8217;t available here. The Prius is twice the amount it costs in the US.</p>
<p><strong>UPDATE on 22nd</strong>:</p>
<p>Some of you might be looking for details such as:</p>
<ol>
<li>I wear a dry-fit jersey while I ride and carry a casual t-shirt (which I change into while at office) in my backpack along with my laptop. I don&#8217;t sweat as much thanks to the awesome weather of BLR and I don&#8217;t have a shower at work. (Among the metros in India, I believe only BLR has this weather advantage.)</li>
<li>The time to commute on bike almost equals that of the car. Varies a bit now and then depending on the traffic. At least with a bike one can pull it off onto the footpath and walk it up until there&#8217;s road to ride.</li>
<li>I park the bike at the basement at work. I use a coil-like lock and lock it to something.</li>
<li>Being the second day now, I think goggles for eye protection and a decent pollution mask are necessary.</li>
</ol>
<br />Filed under: <a href='http://nareshov.wordpress.com/category/worldly-matters/public-transport/'>Public Transport</a>, <a href='http://nareshov.wordpress.com/category/travel/'>Travel</a>, <a href='http://nareshov.wordpress.com/category/work-life/'>Work Life</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nareshov.wordpress.com/308/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nareshov.wordpress.com/308/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nareshov.wordpress.com/308/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nareshov.wordpress.com/308/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nareshov.wordpress.com/308/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nareshov.wordpress.com/308/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nareshov.wordpress.com/308/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nareshov.wordpress.com/308/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nareshov.wordpress.com/308/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nareshov.wordpress.com/308/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nareshov.wordpress.com/308/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nareshov.wordpress.com/308/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nareshov.wordpress.com/308/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nareshov.wordpress.com/308/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nareshov.wordpress.com&amp;blog=313548&amp;post=308&amp;subd=nareshov&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nareshov.wordpress.com/2011/11/21/my-first-day-to-work-in-a-bike/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/07a42c5184e9cc417db03636caf6ef9f?s=96&#38;d=identicon&#38;r=X" medium="image">
			<media:title type="html">nareshov</media:title>
		</media:content>
	</item>
		<item>
		<title>On Indian (Residential Internet) Service Providers</title>
		<link>http://nareshov.wordpress.com/2011/09/20/on-indian-residential-internet-service-providers/</link>
		<comments>http://nareshov.wordpress.com/2011/09/20/on-indian-residential-internet-service-providers/#comments</comments>
		<pubDate>Mon, 19 Sep 2011 19:30:21 +0000</pubDate>
		<dc:creator>Naresh</dc:creator>
				<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[Home]]></category>
		<category><![CDATA[Worldly Matters]]></category>

		<guid isPermaLink="false">https://nareshov.wordpress.com/2011/09/20/on-indian-residential-internet-service-providers/</guid>
		<description><![CDATA[One of the reasons a South Korean or a Japanese person would quote to you when asked &#8220;Why is it that in your country Internet speeds are quite high compared to the rest?&#8221; is &#8220;We&#8217;re quite densely populated and real estate is costly so homes tend to be much closer to each other which made [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nareshov.wordpress.com&amp;blog=313548&amp;post=301&amp;subd=nareshov&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>One of the reasons a South Korean or a Japanese person would quote to you when asked &#8220;Why is it that in your country Internet speeds are quite high compared to the rest?&#8221; is &#8220;We&#8217;re quite densely populated and real estate is costly so homes tend to be much closer to each other which made it a good idea at that time to install fiber optic cables everywhere rather than CAT5&#8243; and they&#8217;re reaping the benefits of a well-networked country with high Internet speeds.</p>
<p>India is quite densely populated too &#8211; at least in the metros &#8211; and yet we&#8217;re stuck decades behind countries like Romania (which recently surpassed the USA as having a better average Internet speed). I wonder if this is a general trend in tropical countries. The lack of long-sightedness or long-term thoughts or decision-making. Maybe we&#8217;re all too comfortable around here (compared to Scandinavia or Siberia, for instance).</p>
<p>The concept of a &#8220;good service&#8221; is poorly understood in nations with high population densities. It&#8217;s a matter of numbers you see. Having been close to one of the largest online service providers (for canned commodities such as web or mail hosting), I&#8217;m all too familiar with the sort of attitude an Indian businessman possesses when he markets a service. You&#8217;re not important. You&#8217;re just another node in the<em> huge</em> graph. If I lose you as a customer, there&#8217;ll be another. I can go on losing a customer per day because I&#8217;m used to the fact that there&#8217;s always another customer (or two) who&#8217;ll take your place. So why are <em>you</em> special again?</p>
<p>This is applicable to practically everything around these parts in the mid-sector. What I mean by mid-sector is: the sector that addresses the mass. The middle-class.</p>
<p>A middle-class-style lunch house or restaurant would not have the sort of waiters who&#8217;d even recite the menu politely to you. You&#8217;ll have to put in extra efforts to get attention. You&#8217;re just another customer (of the numerous that go in and out each day).</p>
<p>Oh, and hygiene. Since you&#8217;re replaceable or not too important as an individual. I wouldn&#8217;t take extra care when it comes to hygiene or even fresh food ingredients (especially the non-vegetarian processed foods). Don&#8217;t expect that chicken salami sandwich to be fresh all the time, they will not get rid of it by themselves. And forget about expiry dates on them.</p>
<p>Same applies to roads. Nobody seems to have put in a long-term vision and taken the stand to take the initial losses in order to gain the long-term profits. There was an estimate someone had put out stating the astronomical losses India faces per year solely due to lack of decent roads. Day to day commutes to work and back home is quite taxing &#8211; both mentally and physically.</p>
<p>Oops. Let me get back to the Internet service provider issue now.</p>
<p>So, FTTH is still quite costly around here. Sure, there are cables laid around here and there. (And by nature, the first telecom entity that bids and gets fiber optics laid out is always the loss-maker. But someone&#8217;s gotta do it). I don&#8217;t know if the likes of BSNL are sitting on their butts waiting for people to finally give in to the insane prices or just underprice the damn thing (and take the initial &#8211; short term &#8211; losses) and reap the long term benefits of increased subscription-base.</p>
<p>Sure, this doesn&#8217;t always work: Volkswagon Polo, for instance, underpriced their 10L factory costing car to 6-7L but still haven&#8217;t gained the sort of traction the Hyundais or Swifts do. But it&#8217;s worth a try &#8211; especially in an increasingly net-savvy metropolitans.</p>
<p>Where I live, it seems only Airtel and BSNL are the only ISPs around. We did have BSNL earlier and not knowing that it had better speed plans, I took the plunge of getting rid of them and signing up for Airtel (whom I&#8217;ve had a good experience with while I was at Mumbai last year). The 4mbps connection is what I had and was quite happy with it until this August. When the rains began pouring in Bangalore.</p>
<p>The signal-to-noise ratio would deteriorate quite badly whenever it rained. The issue was quite obvious &#8211; anybody with half-a-brain would attribute this to poor sheathing of the copper cable &#8211; which isn&#8217;t in my home &#8211; out there anywhere between the CO and my home.</p>
<p>Half of August (beginning late July) had near to no connectivity and almost everyday I had to call up the Airtel customer service (a. <em>annoying</em> ringtone and b. poor internal communication). I resorted to trying to get in touch with their &#8220;social&#8221; faces: <a href="http://twitter.com/Airtel_Presence">@Airtel_Presence</a> and the <a href="mailto:airtelpresence@in.airtel.com">airtelpresence email contact</a>.</p>
<p>I got a call on two occasions from two different people (Airtel_Presence), the first time, I had to explain how this wasn&#8217;t an issues that requires modem reinstallations or any of the <a href="http://blog.serverfault.com/post/press-the-green-button-twice/">usual circus</a> the technicians tend to do (especially around these parts, you know &#8220;Dell Support, how can I help you?&#8221;) and the second time, I had to report back saying &#8220;nope, hasn&#8217;t been fixed&#8221;.</p>
<p>I ran out of patience, signed up for BSNL somewhere in early August and placed a cancellation request with Airtel. Someone calls me up again (and again) asking me why I was going to cancel the connection and I regurgitate the same set of sentences and so did they &#8220;Sir, I assure you that this will be fixed&#8221;. Which rarely does.</p>
<p>It seems that they finally figured what the real issue was. Perhaps a lot of complains from around this locality might&#8217;ve hinted at the root cause. And soon enough, the connection started faring better since mid-August. But on one bad day in late August, the issue resurfaced. And I raised a cancellation request again. The next day things were back to normal so I got the cancellation request cancelled. Or so I thought. Until last Wednesday.</p>
<p>The Airtel Presence folks mailed me back:</p>
<blockquote><p>Dear Customer,</p>
<p>Thank you for writing to Airtel.</p>
<p>This is with reference to your e-mail, where in; you requested regarding<br />
the cancellation of services towards your Airtel landline connection<br />
0804168XXXX.</p>
<p>However; later you confirmed us that you would like to continue your<br />
patronage with Airtel. Please be informed that we are glad to have you<br />
with us and look forward to an opportunity of offering you the best of<br />
our world class products and technology in the times to come.</p>
<p>It is our privilege to have you as our valued customer and would like to<br />
thank you for your continued support. We look forward to a warm and<br />
fruitful long-term association with you.</p>
<p>Should you wish to take a landline/DSL connection with Airtel in future,<br />
kindly contact the undersigned at airtelpresence@in.airtel.com.</p>
<p>Regards<br />
XXXX Kachroo<br />
Airtel Presence (Airtel Customer Service Team)<br />
Bharti Airtel Ltd<br />
airtelpresence@in.airtel.com</p></blockquote>
<p>I was somewhat impressed at this point. &#8220;Man, Indian service providers are finally taking things like Twitter and customer service seriously&#8221;. I guess I was happy too soon.</p>
<p>Last Wednesday, my line goes dead because someone de-activated my connection due to some miscommunication (or so they claim).</p>
<p>I reply back (5 days ago):</p>
<blockquote><p>Looks like there&#8217;s been a miscommunication on your side. Airtel has<br />
discontinued my connection without any intimation. As a person working<br />
in the IT field and relying on being able to connect to corporate VPNs<br />
at odd times, this is very a very unwelcome experience. Please<br />
re-enable my connection ASAP.</p></blockquote>
<p>and got no reply. I call up the customer service each night after work, hoping for a positive response and on day one, support executive A listens to the issue, but forgets to log a request (I have no request number with me). Day two, I re-explain the situation to another support executive B and get a request number who says that &#8220;the issue would be fixed&#8221; (standard phrase around these parts) by 23rd September and gives me another request number.  So I don&#8217;t call them on Friday, Saturday or Sunday.</p>
<blockquote><p>There goes another night of unproductive work. Honestly, why is it so<br />
hard for an Indian company to take service seriously. Does it always<br />
have to be the likes of an Amazon?</p></blockquote>
<p>I call them up on Monday morning to see what the status with the previous request is. And support executive C has no information regarding this request number. So she takes a fresh request and gives me yet another request number and states that &#8220;the issue would be fixed&#8221; (what did I tell you?) by 5:30pm the same day. I sighed a breath a relief. &#8220;Finally I&#8217;d get my Internet back&#8221; and go out. I reach back home with great expectations by 8pm only to be disappointed again.</p>
<p>I call up the service line again, speak to support executive D, who puts me on hold but the call got cut.</p>
<p>I call up again, speak to support executive E, told him that the previous call got cut &#8211; &#8220;could you please check request number xyz which I got this morning.&#8221; Puts me on hold, call gets cut again.</p>
<p>I call up again, speak to support executive F, requested him not to cut the call and check my request number xyz &#8211; which he claims didn&#8217;t exist. He puts me on hold and the call got cut again.</p>
<p>I call up yet again, speak to support executive G, told him how three calls of mine were cut; so he escalates to his senior (or so he claimed) and I speak to person H who couldn&#8217;t find anything regarding request number xyz (so I was under a false hope all day&#8230; expecting &#8220;the issue to be fixed&#8221; by 5:30pm. I explain the whole situation again explaining how all of this has been a giant miscommunication and that I didn&#8217;t had to have my connection de-activated and requested him to contact a backend team person immediately and flip that switch which gets me my connection back (all the hardware apparatus is here BTW, even the &#8220;Link&#8221; LED is blinking just fine &#8211; barring the &#8220;Data&#8221; LED).</p>
<p>Support executive H has given me yet another request number and claims that &#8220;the issue would be fixed&#8221; by 22nd September. And that I should expect a call from the backend team soon.</p>
<p>I plan to call them up again and quote the latest request number I have to see if their CRM if fucked in head. Because it has eaten up two request numbers of mine already, it&#8217;d sure be a hat-trick if this one gets eaten to.</p>
<p>So that, gentlemen, is a primer on Service Providers in India.</p>
<p>Note-to-self: visit the nearest BSNL office if the third request number really does get eaten up tomorrow and find a data card for my sister who is being affected the most by this because she&#8217;s working on her final year project and relies on a lot of Javascript/NodeJS foo that&#8217;s not really selling in books yet &#8211; making online references mandatory for her.</p>
<p>&nbsp;</p>
<p><strong>UPDATE (2011-09-23)</strong>:</p>
<blockquote><p>Hello again,</p>
<p>Despite your phone calls and promises on Tuesday that the &#8220;issue would<br />
be fixed&#8221; in two days, on calling up the customer service today I<br />
found out that the comments were added in the wrong category and<br />
tickets were closed leaving no traces of the grievance I&#8217;ve been<br />
facing since last Wednesday &#8211; been more than a week now.</p>
<p>I have no words to describe this situation at the moment. I seriously<br />
hope things will improve &#8211; at least in terms of available alternatives<br />
to the horrible levels of service you seem to provide.</p>
<p>I am in no state to receive a call from you ever again only to tell me<br />
&#8220;issue would be fixed&#8221; in yet-another-two days. Save it. Don&#8217;t call if<br />
you can&#8217;t get this resolved ASAP.</p>
<p>Yet-another-new-request number issued: 4543080 (I hope this isn&#8217;t fake)</p></blockquote>
<p>&nbsp;</p>
<p>Nope. Hasn&#8217;t been fixed yet.</p>
<br />Filed under: <a href='http://nareshov.wordpress.com/category/entertainment/'>Entertainment</a>, <a href='http://nareshov.wordpress.com/category/home/'>Home</a>, <a href='http://nareshov.wordpress.com/category/worldly-matters/'>Worldly Matters</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nareshov.wordpress.com/301/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nareshov.wordpress.com/301/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nareshov.wordpress.com/301/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nareshov.wordpress.com/301/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nareshov.wordpress.com/301/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nareshov.wordpress.com/301/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nareshov.wordpress.com/301/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nareshov.wordpress.com/301/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nareshov.wordpress.com/301/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nareshov.wordpress.com/301/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nareshov.wordpress.com/301/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nareshov.wordpress.com/301/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nareshov.wordpress.com/301/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nareshov.wordpress.com/301/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nareshov.wordpress.com&amp;blog=313548&amp;post=301&amp;subd=nareshov&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nareshov.wordpress.com/2011/09/20/on-indian-residential-internet-service-providers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/07a42c5184e9cc417db03636caf6ef9f?s=96&#38;d=identicon&#38;r=X" medium="image">
			<media:title type="html">nareshov</media:title>
		</media:content>
	</item>
		<item>
		<title>On Oracle, Sun and Google</title>
		<link>http://nareshov.wordpress.com/2010/08/14/on-oracle-sun-and-google/</link>
		<comments>http://nareshov.wordpress.com/2010/08/14/on-oracle-sun-and-google/#comments</comments>
		<pubDate>Sat, 14 Aug 2010 08:42:27 +0000</pubDate>
		<dc:creator>Naresh</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Worldly Matters]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[oracle]]></category>
		<category><![CDATA[solaris]]></category>
		<category><![CDATA[sun]]></category>

		<guid isPermaLink="false">http://nareshov.wordpress.com/?p=297</guid>
		<description><![CDATA[I haven&#8217;t had the opportunity nor the inclination to use software from either of these corporations for longer durations of time. Java was my first real programming language at college and I did very little of it. Never have I touched an Oracle database, nor have I had stories to tell of Solaris or Opensolaris [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nareshov.wordpress.com&amp;blog=313548&amp;post=297&amp;subd=nareshov&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I haven&#8217;t had the opportunity nor the inclination to use software from either of these corporations for longer durations of time. Java was my first real programming language at college and I did very little of it. Never have I touched an Oracle database, nor have I had stories to tell of Solaris or Opensolaris as much as I&#8217;ve told stories about Gentoo or OpenSuse on this blog.</p>
<p>Yesterday&#8217;s news about Oracle planning to put Opensolaris to rest wasn&#8217;t as much of shocker as it was a late announcement.</p>
<p>The other news about Oracle trying to sue Google for Java is a little, what should I say, not completely serious?</p>
<div id="attachment_298" class="wp-caption aligncenter" style="width: 310px"><a href="http://nareshov.files.wordpress.com/2010/08/oraclesuinggoogle.png"><img class="size-medium wp-image-298" title="Oracle's Java update dialog" src="http://nareshov.files.wordpress.com/2010/08/oraclesuinggoogle.png?w=300&#038;h=227" alt="" width="300" height="227" /></a><p class="wp-caption-text">Oracle seriously suing Google or what?</p></div>
<br />Filed under: <a href='http://nareshov.wordpress.com/category/software/'>Software</a>, <a href='http://nareshov.wordpress.com/category/worldly-matters/'>Worldly Matters</a> Tagged: <a href='http://nareshov.wordpress.com/tag/google/'>google</a>, <a href='http://nareshov.wordpress.com/tag/oracle/'>oracle</a>, <a href='http://nareshov.wordpress.com/tag/solaris/'>solaris</a>, <a href='http://nareshov.wordpress.com/tag/sun/'>sun</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nareshov.wordpress.com/297/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nareshov.wordpress.com/297/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nareshov.wordpress.com/297/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nareshov.wordpress.com/297/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nareshov.wordpress.com/297/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nareshov.wordpress.com/297/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nareshov.wordpress.com/297/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nareshov.wordpress.com/297/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nareshov.wordpress.com/297/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nareshov.wordpress.com/297/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nareshov.wordpress.com/297/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nareshov.wordpress.com/297/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nareshov.wordpress.com/297/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nareshov.wordpress.com/297/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nareshov.wordpress.com&amp;blog=313548&amp;post=297&amp;subd=nareshov&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nareshov.wordpress.com/2010/08/14/on-oracle-sun-and-google/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/07a42c5184e9cc417db03636caf6ef9f?s=96&#38;d=identicon&#38;r=X" medium="image">
			<media:title type="html">nareshov</media:title>
		</media:content>

		<media:content url="http://nareshov.files.wordpress.com/2010/08/oraclesuinggoogle.png?w=300" medium="image">
			<media:title type="html">Oracle&#039;s Java update dialog</media:title>
		</media:content>
	</item>
		<item>
		<title>On Bandhs and Strikes</title>
		<link>http://nareshov.wordpress.com/2010/07/05/on-bandhs-and-strikes/</link>
		<comments>http://nareshov.wordpress.com/2010/07/05/on-bandhs-and-strikes/#comments</comments>
		<pubDate>Mon, 05 Jul 2010 04:53:58 +0000</pubDate>
		<dc:creator>Naresh</dc:creator>
				<category><![CDATA[Work Life]]></category>
		<category><![CDATA[Worldly Matters]]></category>
		<category><![CDATA[babyloon 5]]></category>
		<category><![CDATA[bandh]]></category>
		<category><![CDATA[strike]]></category>

		<guid isPermaLink="false">http://nareshov.wordpress.com/?p=292</guid>
		<description><![CDATA[I&#8217;ve started taking a liking for these, actually. A peaceful morning. Devoid of most traffic on the roads &#8211; except for buses. And because of that, the buses get a chance to run on time, too! In other news, Babylon 5 is a good show. Vishnu recommended that I watch this show and I&#8217;m liking [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nareshov.wordpress.com&amp;blog=313548&amp;post=292&amp;subd=nareshov&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve started taking a liking for these, actually. A peaceful morning. Devoid of most traffic on the roads &#8211; except for buses. And because of that, the buses get a chance to run on time, too!</p>
<p>In other news, Babylon 5 is a good show. Vishnu recommended that I watch this show and I&#8217;m liking it a lot. In one of the episodes, there&#8217;s this surveyor who takes contracts to survey planets for various purposes and ends up at a mysterious place called Sigma 957. Suddenly, Sakai (the surveyor)&#8217;s ship encounters something never heard of before. Not in the database. Her ship loses almost all its power and leaves her exposed to a lone death &#8211; until the troops G&#8217;kar had sent for came to her rescue. G&#8217;kar had earlier warned her not to go there stating that it was a mysterious place and that Sakai would be better off not going there.</p>
<p>When Sakai returns and tells G&#8217;kar of what had happened:</p>
<blockquote><p>Catherine Sakai: While I was out there, I saw something. What was it?<br />
G&#8217;Kar: [pointing to a nearby flower] What is this?<br />
[Upon closer inspection, an insect is visible.]<br />
Catherine: An ant.<br />
G&#8217;Kar: &#8220;Ant&#8221;!<br />
Catherine: So much gets shipped up from Earth on commercial transports, it&#8217;s hard to keep them out.<br />
[As Catherine is talking, G'Kar carefully picks up the ant.]<br />
G&#8217;Kar: I have just picked it up on the tip of my glove. If I put it down again and it asks another ant, &#8220;What was that?&#8221;, how would it explain? There are things in the universe billions of years older than either of our races. They are vast, timeless. And if they are aware of us at all, it is as little more than ants…and we have as much chance of communicating with them as an ant has with us. We know. We&#8217;ve tried. And we&#8217;ve learned we can either stay out from underfoot, or be stepped on.<br />
Catherine: That&#8217;s it? That&#8217;s all you know?<br />
G&#8217;Kar: Yes. They are a mystery. And I am both terrified and reassured to know that there are still wonders in the universe…that we have not yet explained everything. Whatever they are, Ms. Sakai, they walk near Sigma 957. They must walk there alone.</p></blockquote>
<p>And here we are. Calling out for a national bundh because of a petrol-price hike. And me enjoying the peace due to it.</p>
<br />Filed under: <a href='http://nareshov.wordpress.com/category/work-life/'>Work Life</a>, <a href='http://nareshov.wordpress.com/category/worldly-matters/'>Worldly Matters</a> Tagged: <a href='http://nareshov.wordpress.com/tag/babyloon-5/'>babyloon 5</a>, <a href='http://nareshov.wordpress.com/tag/bandh/'>bandh</a>, <a href='http://nareshov.wordpress.com/tag/strike/'>strike</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nareshov.wordpress.com/292/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nareshov.wordpress.com/292/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nareshov.wordpress.com/292/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nareshov.wordpress.com/292/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nareshov.wordpress.com/292/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nareshov.wordpress.com/292/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nareshov.wordpress.com/292/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nareshov.wordpress.com/292/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nareshov.wordpress.com/292/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nareshov.wordpress.com/292/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nareshov.wordpress.com/292/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nareshov.wordpress.com/292/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nareshov.wordpress.com/292/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nareshov.wordpress.com/292/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nareshov.wordpress.com&amp;blog=313548&amp;post=292&amp;subd=nareshov&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nareshov.wordpress.com/2010/07/05/on-bandhs-and-strikes/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/07a42c5184e9cc417db03636caf6ef9f?s=96&#38;d=identicon&#38;r=X" medium="image">
			<media:title type="html">nareshov</media:title>
		</media:content>
	</item>
		<item>
		<title>Updates as of 3rd June, ’10</title>
		<link>http://nareshov.wordpress.com/2010/06/03/updates-as-of-3rd-june-10/</link>
		<comments>http://nareshov.wordpress.com/2010/06/03/updates-as-of-3rd-june-10/#comments</comments>
		<pubDate>Wed, 02 Jun 2010 22:54:05 +0000</pubDate>
		<dc:creator>Naresh</dc:creator>
				<category><![CDATA[Anime]]></category>
		<category><![CDATA[Books]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[dr. who]]></category>
		<category><![CDATA[dunbine]]></category>
		<category><![CDATA[haruki murakami]]></category>
		<category><![CDATA[powai]]></category>

		<guid isPermaLink="false">http://nareshov.wordpress.com/?p=283</guid>
		<description><![CDATA[It&#8217;s been a really long time since I last blogged. My attempts at living a moderately disciplined and occupied life has been quite a success. That would mean a major change in lifestyle from my college days. Recent updates include: a. moving to a newer apartment near Powai lake in Mumbai. Moved in with my [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nareshov.wordpress.com&amp;blog=313548&amp;post=283&amp;subd=nareshov&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been a really long time since I last blogged. My attempts at living a moderately disciplined and occupied life has been quite a success. That would mean a major change in lifestyle from my college days.</p>
<p>Recent updates include:</p>
<p>a. moving to a newer apartment near Powai lake in Mumbai.</p>
<p>Moved in with my former (first one at college) roomie &#8211; Koushik Mandal(!) and his department-mate (and my batch-mate from Hall3), Sidhant Dash. They&#8217;re cool folks (barring Mandal&#8217;s mandalism at times). Each of us were living with other non-IITK, non-Y4 batch folks earlier &#8211; this was the primary criterion that prompted the move for each of us.</p>
<p>b. managing to read fiction.</p>
<p>I read &#8216;Blind Willow, Sleeping Woman&#8217; &#8211; a collection of short stories and &#8216;Hard-boiled Wonderland and The End of The World&#8217; (novel) by Haruki Murakami. He&#8217;s a Japanese author and I read the English translations of these. The last fiction I read before these was Agatha Christie&#8217;s &#8220;The Murder of Dr. Roger Ackroyd&#8221; four years ago! I&#8217;ve been a passive consumer all along &#8211; anime, movies, TV dramas, you know, the kind that don&#8217;t require the mental weightlifting as in the case of active media &#8211; books.</p>
<p>In a recent <a href="http://www.wired.com/magazine/2010/05/ff_nicholas_carr/all/1">Wired article</a>, two abilities were distinguished &#8211; &#8220;The ability to scan and browse is as important as the ability to read deeply and think attentively.&#8221; Being the kind of person who&#8217;d been chasing after Google search results until recently, I might&#8217;ve adopted the former as my dominant mode of thought and maybe reading &#8220;larger&#8221; material might improve the situation. Not that this is primary motivation to read- just that it&#8217;s a welcome throw-in that comes with it, I guess. Looking forward to another Murakami piece &#8211; &#8216;Kafka on the shore&#8217;.</p>
<p>c. weekly anime-sessions.</p>
<p>Vishnu, Karan and I meet up on weekends trying to catch up with anime. I haven&#8217;t been able to watch anime like I used to in the past year. But these weekly sessions are fun.</p>
<p>We&#8217;ve been watching &#8216;Aura Battler: Dunbine&#8217;, an <a href="http://anidb.net/a899">80&#8242;s show</a>, it&#8217;s about 49 episodes long and I think we&#8217;ve reached 38 episodes through!</p>
<p>The past 3 weekends I&#8217;ve been introduced to the new &#8216;Dr. Who&#8217; show and I&#8217;ve found it a really good British sci-fi show so far. I&#8217;m usually wary of insanely long shows &#8211; long as in several seasons over the years. For one, I fear getting really sucked into it and wanting to watch it all or read it all. The same reason that keeps one away from, say, &#8216;One Piece&#8217;. Maybe I should stop being such a &#8220;perfectionist&#8221;.</p>
<br />Filed under: <a href='http://nareshov.wordpress.com/category/entertainment/anime/'>Anime</a>, <a href='http://nareshov.wordpress.com/category/books-2/'>Books</a>, <a href='http://nareshov.wordpress.com/category/personal/'>Personal</a> Tagged: <a href='http://nareshov.wordpress.com/tag/dr-who/'>dr. who</a>, <a href='http://nareshov.wordpress.com/tag/dunbine/'>dunbine</a>, <a href='http://nareshov.wordpress.com/tag/haruki-murakami/'>haruki murakami</a>, <a href='http://nareshov.wordpress.com/tag/powai/'>powai</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nareshov.wordpress.com/283/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nareshov.wordpress.com/283/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nareshov.wordpress.com/283/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nareshov.wordpress.com/283/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nareshov.wordpress.com/283/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nareshov.wordpress.com/283/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nareshov.wordpress.com/283/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nareshov.wordpress.com/283/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nareshov.wordpress.com/283/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nareshov.wordpress.com/283/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nareshov.wordpress.com/283/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nareshov.wordpress.com/283/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nareshov.wordpress.com/283/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nareshov.wordpress.com/283/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nareshov.wordpress.com&amp;blog=313548&amp;post=283&amp;subd=nareshov&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nareshov.wordpress.com/2010/06/03/updates-as-of-3rd-june-10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/07a42c5184e9cc417db03636caf6ef9f?s=96&#38;d=identicon&#38;r=X" medium="image">
			<media:title type="html">nareshov</media:title>
		</media:content>
	</item>
		<item>
		<title>Updates as of 16th Mar. &#8217;10</title>
		<link>http://nareshov.wordpress.com/2010/03/16/updates-as-of-16th-mar-10/</link>
		<comments>http://nareshov.wordpress.com/2010/03/16/updates-as-of-16th-mar-10/#comments</comments>
		<pubDate>Tue, 16 Mar 2010 02:56:38 +0000</pubDate>
		<dc:creator>Naresh</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Alice]]></category>
		<category><![CDATA[days]]></category>
		<category><![CDATA[GATE]]></category>
		<category><![CDATA[IMAX]]></category>
		<category><![CDATA[Rachit]]></category>

		<guid isPermaLink="false">http://nareshov.wordpress.com/?p=273</guid>
		<description><![CDATA[It&#8217;s been a while since I&#8217;ve posted an &#8220;updates&#8221; post so it looks like I&#8217;m going to have to recap quite a bit. First off, today marks two months of my stay at Mumbai. It&#8217;s been an interesting experience in as far as the passage of time is concerned. I feel a lot busier than [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nareshov.wordpress.com&amp;blog=313548&amp;post=273&amp;subd=nareshov&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div>
<p>It&#8217;s been a while since I&#8217;ve posted an &#8220;updates&#8221; post so it looks like I&#8217;m going to have to recap quite a bit.</p>
<p>First off, today marks two months of my stay at Mumbai. It&#8217;s been an interesting experience in as far as the passage of time is concerned. I feel a lot busier than I used to and I think that&#8217;s a good thing. I&#8217;m beginning to make fuller use of the day unlike my (extremely) lazy days at college a year ago. Interestingly, today also marks the Hindu new year in the <a href="http://en.wikipedia.org/wiki/Gudi_Padwa">Western</a> and <a href="http://en.wikipedia.org/wiki/Yugadi">Southern</a> parts of the country (unsure about the rest).</p>
<p>And more interestingly, yesterday the GATE results were announced. Although I had registered for it, I didn&#8217;t appear for the exam. I was convinced I was way under-prepared and I took off to Mumbai. My juniors at IITK got their scores: <a href="http://devilsadvocate-chs.blogspot.com/">Shashank</a> did surprisingly well (99+ percentile), then it was <a href="http://blog.lifeeth.in/">Praneeth</a> followed by <a href="http://suryajith.info/three-months-into-2010">Surya</a>. Going by the numbers they&#8217;ve scored and the first-hand report on the sort of importance Theory of Computation holds in this paper, I&#8217;m slightly better informed now (would&#8217;ve been more better informed if I actually wrote the exam!) and this gives me more direction towards what to prepare for by next year&#8217;s GATE.</p>
<p>Rachit, a former wingmate of mine, flew from his Uni in Paris to Mumbai on 1st of March for a short detour homeward and then onto his new job at Paris. We had a reunion of sorts: Mandal (puts up at Kandivali), Kanodia (somewhere in Navi Mumbai, Ghansoli IIRC), Saurabh(!), Rachit and I. We had a good time and went down to Churchgate for what would be my first encounter with &#8220;<a href="http://maps.google.co.in/maps/place?hq=bade+miyan&amp;hnear=mumbai&amp;cid=7076724784452343845">Bademiya</a>&#8221; &#8211; a smallish outdoor eatery specialising in primarily non-vegetarian food. It was busy. Really busy. But good too.</p>
<p>And last weekend was a weekend out with Mitesh (who so gracefully came all the way from Pune), Rachit (who had just returned from visiting his home), Saurabh, Mandal and I. We met on Friday, had a good night and the morning Rachit left to fly back to Paris. We had a good time on Saturday &#8211; watched &#8220;Alice in Wonderland&#8221; in IMAX! &#8211; Followed by another visit to Bademiya (Mitesh&#8217;s first visit).</p>
<p>I quite liked the movie. Before the actual movie started, a bunch of trailers (2D and 3D) were shown and boy is the IMAX 3D experience going to get big or what. Must thank Avatar to kick things off in India. Really. I liked the white queen in the movie. The movie was so sparkly and all, could be thought of as a *cough*acid trip*cough* (not that I <em>know</em>). It&#8217;s a must watch, really. It&#8217;s amazing how novel experiences can really brighten up our minds, raising our bars of satisfaction every time we confront something new.</p>
</div>
<br />Filed under: <a href='http://nareshov.wordpress.com/category/personal/'>Personal</a> Tagged: <a href='http://nareshov.wordpress.com/tag/alice/'>Alice</a>, <a href='http://nareshov.wordpress.com/tag/days/'>days</a>, <a href='http://nareshov.wordpress.com/tag/gate/'>GATE</a>, <a href='http://nareshov.wordpress.com/tag/imax/'>IMAX</a>, <a href='http://nareshov.wordpress.com/tag/rachit/'>Rachit</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nareshov.wordpress.com/273/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nareshov.wordpress.com/273/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nareshov.wordpress.com/273/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nareshov.wordpress.com/273/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nareshov.wordpress.com/273/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nareshov.wordpress.com/273/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nareshov.wordpress.com/273/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nareshov.wordpress.com/273/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nareshov.wordpress.com/273/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nareshov.wordpress.com/273/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nareshov.wordpress.com/273/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nareshov.wordpress.com/273/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nareshov.wordpress.com/273/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nareshov.wordpress.com/273/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nareshov.wordpress.com&amp;blog=313548&amp;post=273&amp;subd=nareshov&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nareshov.wordpress.com/2010/03/16/updates-as-of-16th-mar-10/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/07a42c5184e9cc417db03636caf6ef9f?s=96&#38;d=identicon&#38;r=X" medium="image">
			<media:title type="html">nareshov</media:title>
		</media:content>
	</item>
		<item>
		<title>On (Adobe) Flash</title>
		<link>http://nareshov.wordpress.com/2010/02/06/on-adobe-flash/</link>
		<comments>http://nareshov.wordpress.com/2010/02/06/on-adobe-flash/#comments</comments>
		<pubDate>Sat, 06 Feb 2010 18:13:08 +0000</pubDate>
		<dc:creator>Naresh</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[argh]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[lunix]]></category>

		<guid isPermaLink="false">http://nareshov.wordpress.com/?p=265</guid>
		<description><![CDATA[I despise it. Being a Linux user for a while now, there have been very few instances when I haven&#8217;t cursed Flash for what it is. An abomination on the web. I have not investigated whom exactly to blame here &#8211; the list of shared objects in `ldd /usr/lib/flashplayer-mozilla/libflashplayer.so` or the actual shit that&#8217;s in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nareshov.wordpress.com&amp;blog=313548&amp;post=265&amp;subd=nareshov&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I despise it.</p>
<p>Being a Linux user for a while now, there have been very few instances when I haven&#8217;t cursed Flash for what it is. An abomination on the web. I have not investigated whom exactly to blame here &#8211; the list of shared objects in `<code>ldd /usr/lib/flashplayer-mozilla/libflashplayer.so</code>` or the actual shit that&#8217;s in libflashplayer.so or the browser&#8217;s interface with this blob.</p>
<p>Awesome Web 2.0(tm) sites such as slideshare use it and trying to view a presentation fullscreen is more painful than watching your laptop die due to overheating. I&#8217;ve given up on watching youtube on the browser too. These days I wait for the video content to load into <code>/tmp</code> and play <code>Flash*</code> file with dear old <code>mplayer</code>. Such is life. Can&#8217;t wait to get my copy of Windows 7 license now.</p>
<p>Yes, I&#8217;m beating a dead horse here but I post this at the backdrop of the news of Mr. Jobs having announced that the iPad(sic) isn&#8217;t going to have Flash on it. I don&#8217;t know if I&#8217;m ever going to use this piece of locked hardware ever &#8211; maybe it&#8217;s useful in the hospitals &#8211; but the &#8220;no-flash&#8221; stance makes me happy.</p>
<p>I sincerely hope that HTML5 and related bling really does take off and take Flash off of my laptop.</p>
<br />Filed under: <a href='http://nareshov.wordpress.com/category/software/'>Software</a> Tagged: <a href='http://nareshov.wordpress.com/tag/argh/'>argh</a>, <a href='http://nareshov.wordpress.com/tag/flash/'>flash</a>, <a href='http://nareshov.wordpress.com/tag/html5/'>html5</a>, <a href='http://nareshov.wordpress.com/tag/ipad/'>iPad</a>, <a href='http://nareshov.wordpress.com/tag/lunix/'>lunix</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nareshov.wordpress.com/265/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nareshov.wordpress.com/265/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nareshov.wordpress.com/265/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nareshov.wordpress.com/265/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nareshov.wordpress.com/265/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nareshov.wordpress.com/265/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nareshov.wordpress.com/265/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nareshov.wordpress.com/265/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nareshov.wordpress.com/265/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nareshov.wordpress.com/265/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nareshov.wordpress.com/265/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nareshov.wordpress.com/265/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nareshov.wordpress.com/265/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nareshov.wordpress.com/265/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nareshov.wordpress.com&amp;blog=313548&amp;post=265&amp;subd=nareshov&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nareshov.wordpress.com/2010/02/06/on-adobe-flash/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/07a42c5184e9cc417db03636caf6ef9f?s=96&#38;d=identicon&#38;r=X" medium="image">
			<media:title type="html">nareshov</media:title>
		</media:content>
	</item>
	</channel>
</rss>
