<?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>Veblog &#187; koteshwara</title>
	<atom:link href="http://www.vegayan.com/veblog/category/koteshwara/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.vegayan.com/veblog</link>
	<description></description>
	<lastBuildDate>Thu, 15 Apr 2010 10:17:39 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Exciting Excursion @ Exotica</title>
		<link>http://www.vegayan.com/veblog/2008/05/07/exciting-excursion-exotica/</link>
		<comments>http://www.vegayan.com/veblog/2008/05/07/exciting-excursion-exotica/#comments</comments>
		<pubDate>Wed, 07 May 2008 12:38:27 +0000</pubDate>
		<dc:creator>veblog</dc:creator>
				<category><![CDATA[Team event]]></category>
		<category><![CDATA[koteshwara]]></category>
		<category><![CDATA[zaid]]></category>

		<guid isPermaLink="false">http://veblog.wordpress.com/?p=64</guid>
		<description><![CDATA[This time the venue for our day-long excursion was none other than the exotic Exotica- a resort with a tropical ambiance at Yeor Hills (part of Sanjay Gandhi  National Park) near Thane. It is a very nice place to relax and enjoy with family and friends. We reached Exotica around 10 am on Saturday. [...]]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal" style="text-align:justify;">This time the venue for our day-long excursion was none other than the exotic <a href="http://exoticaretreat.com/about.html">Exotica</a>- a resort with a tropical ambiance at Yeor Hills (part of Sanjay Gandhi  National Park) near Thane. It is a very nice place to relax and enjoy with family and friends. We reached Exotica around 10 am on Saturday. After a wholesome breakfast, we were charged up for a great day ahead. There was no stopping for us…volleyball, badminton, swimming. We also enjoyed a fun competition organized specially for couples. We could not resist taking a dip in the swimming pool and that too in this May summer. We had long swimming session along with a water polo game. The team was now ready for a great lunch. We all cherished the multi-cuisine lunch in the tropical settings of Exotica. After lunch, we chatted, explored the natural beauty around the resort, with few of us capturing pictures as a memory which we would cherish for a long time. Everyone enjoyed as a team. Finally it was time to leave and head back with a recharged mind and body!!!</p>
<p class="MsoNormal" style="text-align:justify;"><img style="margin-left:1px;margin-right:1px;" src="http://farm3.static.flickr.com/2326/2473612512_9d5ca5751a_m.jpg" alt="" width="240" height="179" /><img style="margin-left:2px;margin-right:2px;" src="http://farm4.static.flickr.com/3203/2473614142_c3bb57672b_m.jpg" alt="" width="239" height="179" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.vegayan.com/veblog/2008/05/07/exciting-excursion-exotica/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL Installation &#8211; Issues</title>
		<link>http://www.vegayan.com/veblog/2007/10/01/mysql-installation-issues/</link>
		<comments>http://www.vegayan.com/veblog/2007/10/01/mysql-installation-issues/#comments</comments>
		<pubDate>Mon, 01 Oct 2007 11:31:37 +0000</pubDate>
		<dc:creator>sarmaiiit</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[koteshwara]]></category>

		<guid isPermaLink="false">http://veblog.wordpress.com/2007/10/01/mysql-installation-issues/</guid>
		<description><![CDATA[Here are few tips for MySQL installation, if the problem is of &#8220;mysql.host does not exist&#8221;.
Fatal error: Can&#8217;t open and lock privilege tables: Table &#8216;mysql.host&#8217; doesn&#8217;t exist(we can find this info in /var/log/mysqld.log)
Follow the following steps, MySQL will be installed(all wrt Linux)
1. shell &#62; rm -rf /var/lib/mysql
2. Install mysql rpms.
3. Go to directory where mysql [...]]]></description>
			<content:encoded><![CDATA[<p>Here are few tips for MySQL installation, if the problem is of &#8220;mysql.host does not exist&#8221;.</p>
<p><span style="font-weight:bold;">Fatal error:</span> Can&#8217;t open and lock privilege tables: Table &#8216;mysql.host&#8217; doesn&#8217;t exist(we can find this info in /var/log/mysqld.log)</p>
<p>Follow the following steps, MySQL will be installed(all wrt Linux)</p>
<p>1. shell &gt; rm -rf /var/lib/mysql</p>
<p>2. Install mysql rpms.</p>
<p>3. Go to directory where mysql binaries are installed(mysqld_safe, mysql etc)</p>
<p>4. ./mysql_install_db &#8211;user=mysql &#8211;ldata=/mysqldata (where mysqldata is my data directory for MySQL database. datadir can be specified in /etc/my.cnf file, then we can ignore here)</p>
<p>If it gives a message that hostname is not set or conflict in hostname, then use<br />
./mysql_install_db &#8211;user=mysql &#8211;ldata=/mysqldata &#8211;force</p>
<p>5. MySQL is installed, start MySQL server now,<br />
./mysqld_safe &#8211;user=mysql &amp;</p>
<p>Congrats, MySQL is up and running&#8230;.</p>
<p>When MySQL is Installed, MySQL client does not have any password. It will contain four users, root@localhost, root@localhost.localdomain, &#8221;@localhost, &#8221;@localhost.localdomain(&#8221; &#8211; anonymous user).<br />
Delete all users at localhost.localdomain and all anonymous users. Set password for root@localhost using</p>
<p>shell &gt; mysql</p>
<p>mysql &gt; drop user root@localhost.localdomain;</p>
<p>mysql &gt; drop user &#8221;@localhost;</p>
<p>mysql &gt; drop user &#8221;@localhost.localdomain;</p>
<p>mysql &gt; set password for root@localhost = password(&#8216;mysqlroot&#8217;);</p>
<p>mysql &gt; flush privileges;</p>
<p>mysql &gt; \q</p>
<p>shell &gt;</p>
<p>Flush Privileges will tell server that password is set for root.</p>
<p>MySQL is installed and password is set for mysql client.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vegayan.com/veblog/2007/10/01/mysql-installation-issues/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pros and Cons of Working in a Start-up</title>
		<link>http://www.vegayan.com/veblog/2007/08/01/pros-and-cons-of-working-in-a-start-up/</link>
		<comments>http://www.vegayan.com/veblog/2007/08/01/pros-and-cons-of-working-in-a-start-up/#comments</comments>
		<pubDate>Wed, 01 Aug 2007 13:56:07 +0000</pubDate>
		<dc:creator>veblog</dc:creator>
				<category><![CDATA[koteshwara]]></category>
		<category><![CDATA[opinion]]></category>

		<guid isPermaLink="false">http://veblog.wordpress.com/2007/08/01/pros-and-cons-of-working-in-a-start-up/</guid>
		<description><![CDATA[ Its been more than one year now working for Vegayan Systems, a start-up in IIT B, Mumbai.  

Some times, One Year seems to be very big, but some times, I feel, its OK. Here, are two sides of working in a startup company. 

Pros

1. Scope to learn/work (as much as you can &#8211; [...]]]></description>
			<content:encoded><![CDATA[<p style="color:#777777;" class="postBody"><span style="color:#000000;"> Its been more than one year now working for </span><a href="http://www.vegayan.com/">Vegayan Systems</a><span style="color:#000000;">, a <a href="http://en.wikipedia.org/wiki/Startup_company">start-up</a> in </span><a href="http://www.iitb.ac.in/">IIT B</a><span style="color:#000000;">, Mumbai.</span>  <span style="color:#000000;"><br />
</span></p>
<p style="color:#777777;" class="postBody"><span style="color:#000000;">Some times, One Year seems to be very big, but some times, I feel, its OK. Here, are two sides of working in a startup company. </span><span style="color:#000000;"><br />
</span></p>
<p style="color:#777777;" class="postBody"><strong><span style="color:#000000;">Pros</span></strong><span style="color:#000000;"><br />
</span></p>
<p style="color:#777777;" class="postBody"><span style="color:#000000;">1. <strong>Scope to learn/work</strong> (as much as you can &#8211; there is no question that, you are not given any work, especially in product development companies)</span></p>
<p style="color:#777777;" class="postBody"> <span style="color:#000000;">2. Chance to learn about <strong>Resource Management</strong>. Team will be small, so you see how they are handled.</span> <span style="color:#000000;"><br />
</span></p>
<p style="color:#777777;" class="postBody"><span style="color:#000000;">3. <strong>Growth factor </strong>- Here also, willing to learn plays major role.</span></p>
<p style="color:#777777;" class="postBody"> <span style="color:#000000;">4. <strong>Ownership of module</strong> &#8211; You are given a module, You are sole proprietor of module. You are free to design in whichever way you like, as long as you are good enough to make people to buy your design.</span> <span style="color:#000000;"><br />
</span></p>
<p style="color:#777777;" class="postBody"><span style="color:#000000;">5. You develop more than one skill in a start up and you become master in your specialization.</span> <span style="color:#000000;"><br />
</span></p>
<p style="color:#777777;" class="postBody"><span style="color:#000000;">6. Better rapport with team members as team is small.</span>  <span style="color:#000000;"><br />
</span></p>
<p style="color:#777777;" class="postBody"><strong><span style="color:#000000;">Cons</span></strong><span style="color:#000000;"><br />
</span></p>
<p style="color:#777777;" class="postBody"><span style="color:#000000;">1. Getting a Leave every now and then is Tough.</span> <span style="color:#000000;"><br />
</span></p>
<p style="color:#777777;" class="postBody"><span style="color:#000000;">2. Have to </span><span style="color:#000000;">Google</span><span style="color:#000000;"> for many things.</span> <strong>( Train yourself )</strong><span style="color:#000000;"><br />
</span></p>
<p style="color:#777777;" class="postBody"><span style="color:#000000;">3. Some times, get bugged with  work. </span></p>
<p style="color:#777777;" class="postBody"><span style="color:#000000;">I am both In (70%) and Out (30%) for working for a start up. </span></p>
<p style="color:#777777;" class="postBody"><span style="color:#000000;">Relevant to the above is this <a href="http://kamlabhattshow.com/blog/2007/07/24/working-in-startups-in-india-parents-have-a-say/#comments" target="_blank">blog post</a> by <a href="http://en.wikipedia.org/wiki/Kamla_Bhatt" target="_blank">Kamla bhatt</a>. Make sure you do read the comments too.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.vegayan.com/veblog/2007/08/01/pros-and-cons-of-working-in-a-start-up/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>MySQL Error 2013</title>
		<link>http://www.vegayan.com/veblog/2007/07/31/mysql-error-2013/</link>
		<comments>http://www.vegayan.com/veblog/2007/07/31/mysql-error-2013/#comments</comments>
		<pubDate>Tue, 31 Jul 2007 05:30:20 +0000</pubDate>
		<dc:creator>veblog</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[koteshwara]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://veblog.wordpress.com/2007/07/31/mysql-error-2013/</guid>
		<description><![CDATA[Of all MySQL errors, Error Number 2013 is most frustrating and annoying.
MySQL Errors like 1062(Duplicate Entry), 2002(Server is not started), 2006(Server has gone away) are easy to identify and solve. 2013 signifies lost connection to server in midst of query execution.
2013 is frustrating because, you can&#8217;t produce it again for same sequence of actions. So [...]]]></description>
			<content:encoded><![CDATA[<p>Of all MySQL errors, Error Number 2013 is most frustrating and annoying.</p>
<p>MySQL Errors like 1062(Duplicate Entry), 2002(Server is not started), 2006(Server has gone away) are easy to identify and solve. 2013 signifies lost connection to server in midst of query execution.</p>
<p>2013 is frustrating because, you can&#8217;t produce it again for same sequence of actions. So you never know when it will come or when it won&#8217;t.</p>
<p>Finally, I have come up with few points to look for when MySQL Error 2013 occurs.</p>
<p>1. check for MySQL Status<br />
shell&gt; mysql -u root -p -e &#8220;\s&#8221; | grep Uptime</p>
<p>It will give uptime of MySQL Server. If it is less than 1 min, then server must have gone down and started again. So, you have look for Status Variable wait_timeout. By default, wait-timeout will be 28800 sec (8 Hours). Developer can change it while starting a server(change has to be done in my.cnf file) or by setting parameter &#8220;CLIENT_INTERACTIVE&#8221; <code></code>in &#8220;mysql_real_connect()&#8221;.<code><span style="font-family:arial,mon;"> </span></code>If Uptime is not less than a min, then there is a problem with Query.</p>
<p>Query can be too long or it is syntactically correct but not semantically.</p>
<p><span style="font-weight:bold;">Example:</span> I am running a stored procedure spLogin(uname, pword, status). Here uname and pword are input parameters and status output parameter. To supply input to this stored procedure, I use user defined variables.</p>
<p>So, order of queries will be<br />
mysql &gt; SET @user = &#8217;sarma&#8217;, @passwd = &#8217;sarma&#8217;;<br />
mysql &gt; call spLogin(@username, @password, @status);<br />
There is a chance that it will give an error 2013, as query is syntactically correct, but values passed to query are garbage.</p>
<p>Remedy will be<br />
mysql&gt; call spLogin(@user, @passwd, @status);<br />
query Success(if stored procedure is correct).</p>
<p>But as I said earlier, it is tough to reproduce Error 2013. Care should be taken in passing inputs to either Queries or Stored Procedures and wait_timeout should be atleast 4 Hrs.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vegayan.com/veblog/2007/07/31/mysql-error-2013/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why Startup ?</title>
		<link>http://www.vegayan.com/veblog/2007/07/26/why-startup/</link>
		<comments>http://www.vegayan.com/veblog/2007/07/26/why-startup/#comments</comments>
		<pubDate>Thu, 26 Jul 2007 12:58:25 +0000</pubDate>
		<dc:creator>veblog</dc:creator>
				<category><![CDATA[koteshwara]]></category>
		<category><![CDATA[opinion]]></category>

		<guid isPermaLink="false">http://veblog.wordpress.com/2007/07/26/why-startup/</guid>
		<description><![CDATA[Many of my friends ask me why Did you choose a start up when you have offers from some other MNCs.
I question them what is the advantage of working in a MNC which is not in a start-up. They told me that when you are swicthing from one job to other job, there will be [...]]]></description>
			<content:encoded><![CDATA[<p>Many of my friends ask me why Did you choose a start up when you have offers from some other MNCs.</p>
<p>I question them what is the advantage of working in a MNC which is not in a start-up. They told me that when you are swicthing from one job to other job, there will be less risk and you need not to advertize about your company, you carry a brand name, if you work in a MNC. My reasoning to them is, Why should I think of swicthing my job before joining in that? If I am not satisfied with the work I am doing or If I am not fit into the team , then only I think of swicthing job. So doing work is my priority, which I certainly get in a start-up. I am not sure whether I&#8217;ll be assigned work from Day 1, if I join in a MNC. I am not against working in MNCs, they have their own headaches. Its true that Resource Management is the toughest thing. The reason, I opted for start-up is if I work for some time, then I can get job in MNC at any time. But if join in a MNC and happened to be on bench (or member of Freepool), then it would be tough.</p>
<p>Working in a start-up gives you the next best chance to see how a company shapes up.(Best chance to see is to start a company). Working in a start-up has other advantage, you can watch the building process of a company very closely,you know ups and downs in making it Big. More importantly, every one&#8217;s voice is heard in a start-up, so u can raise your voice, you can take part in design discussions, brain storming sessions. This is all happens in MNCs also, but you need to gain some experience, before raising your voice.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vegayan.com/veblog/2007/07/26/why-startup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
