<?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>Thoughts &#187; General</title>
	<atom:link href="http://aravinthan.in/blog/category/general/feed/" rel="self" type="application/rss+xml" />
	<link>http://aravinthan.in/blog</link>
	<description>When neurons respond to a stimuli</description>
	<lastBuildDate>Thu, 22 Dec 2011 11:44:04 +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>Find Nth Largest number in an Array</title>
		<link>http://aravinthan.in/blog/2008/08/12/find-nth-largest-number-in-an-array/</link>
		<comments>http://aravinthan.in/blog/2008/08/12/find-nth-largest-number-in-an-array/#comments</comments>
		<pubDate>Tue, 12 Aug 2008 06:38:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://aravinthan.wordpress.com/2008/08/12/find-nth-largest-number-in-an-array/</guid>
		<description><![CDATA[The below is my implementation of finding the nth largest(whichmax)number in the given array of integers. This would work for both positive and negative integers. This also&#160; affects the given array by manipulating the values of the source array. Hence if you want an non-manipulative algo, this is NOT the one. &#160; #include &#8220;stdafx.h&#8221; class &#8230; </p><p><a class="more-link block-button" href="http://aravinthan.in/blog/2008/08/12/find-nth-largest-number-in-an-array/">Continue reading &#187;</a>]]></description>
			<content:encoded><![CDATA[<div class="csharpcode">
<p>The below is my implementation of finding the nth largest(whichmax)number in the given array of integers.</p>
<p>This would work for both positive and negative integers. This also&nbsp; affects the given array by manipulating the values of the source array. Hence if you want an non-manipulative algo, this is NOT the one.</p>
<p>&nbsp;</p>
</div>
<p>#include &#8220;stdafx.h&#8221;
<p>class Program
<p>{
<p>public:&nbsp;&nbsp;&nbsp;&nbsp;
<p>int GetNthLargestOptimized(int **intArray,int Length, int whichMax);
<p>};
<p>int Program::GetNthLargestOptimized(int **intArray,int Length, int whichMax)
<p>{
<p>int MaxIndex =0;
<p>int MinIndex =0;
<p>bool minFound = false;
<p>for(int nth=0;nth&lt;whichMax;nth++)
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {
<p>for(int index=0;index&lt;Length;index++)
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {
<p>if((*intArray)[MaxIndex]&lt; (*intArray)[index])
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {&nbsp;&nbsp;&nbsp;&nbsp;
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; MaxIndex = index;
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }
<p>if(!minFound &amp;&amp; (*intArray)[MinIndex] &gt; (*intArray)[index])
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; MinIndex = index;
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }
<p>if(!minFound)
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; minFound = true;
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }
<p>if(&nbsp;&nbsp; nth != whichMax -1)
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (*intArray)[MaxIndex]= (*intArray)[MinIndex];
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }
<p>return (*intArray)[MaxIndex];
<p>}
<p>int _tmain(int argc, _TCHAR* argv[])
<p>{
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Program m;
<p>int intNegativeArray[10]={-1,-2,-3,-4,-5,-6,-7,-8,-9,-10};
<p>int intArray[10]={23,345,345,12,45,23,34,4,6,555};
<p>int *intNegativePtr = intNegativeArray;
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; printf(&#8220;4th Largest in Negative array:%d\n&#8221;,m.GetNthLargestOptimized(&amp;intNegativePtr,10,4));
<p>int *intPtr = intArray;
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; printf(&#8220;4th Largest in Positive array:%d\n&#8221;,m.GetNthLargestOptimized(&amp;intPtr,10,4));
<p>return 0;
<p>}</p>
]]></content:encoded>
			<wfw:commentRss>http://aravinthan.in/blog/2008/08/12/find-nth-largest-number-in-an-array/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Live Writer</title>
		<link>http://aravinthan.in/blog/2008/03/05/live-writer/</link>
		<comments>http://aravinthan.in/blog/2008/03/05/live-writer/#comments</comments>
		<pubDate>Wed, 05 Mar 2008 14:23:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Microsoft Live Writer]]></category>

		<guid isPermaLink="false">http://aravinthan.wordpress.com/2008/03/05/live-writer/</guid>
		<description><![CDATA[I am writing this from the live writer. This is becoming really interesting to blog. The only hitch that i have now is that, the WordPress&#160; themes do not jewel well into the writer. So I am using the Normal view to blog into the wordpress. This looks very interesting though]]></description>
			<content:encoded><![CDATA[<p>I am writing this from the live writer. This is becoming really interesting to blog. The only hitch that i have now is that, the WordPress&nbsp; themes do not jewel well into the writer. So I am using the Normal view to blog into the wordpress. </p>
<p>This looks very interesting though <img src='http://aravinthan.in/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://aravinthan.in/blog/2008/03/05/live-writer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hail Mayawati- Let her Live Long.</title>
		<link>http://aravinthan.in/blog/2007/06/08/hail-mayawati-let-her-live-long/</link>
		<comments>http://aravinthan.in/blog/2007/06/08/hail-mayawati-let-her-live-long/#comments</comments>
		<pubDate>Fri, 08 Jun 2007 05:40:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[India]]></category>
		<category><![CDATA[Indian Politics]]></category>
		<category><![CDATA[OBC]]></category>
		<category><![CDATA[Politics]]></category>
		<category><![CDATA[Reservation]]></category>
		<category><![CDATA[Reservation in India]]></category>
		<category><![CDATA[Social Concern]]></category>

		<guid isPermaLink="false">http://aravinthan.wordpress.com/2007/06/08/hail-mayawati-let-her-live-long/</guid>
		<description><![CDATA[I am atlast able to support one leader whom i can trust. I support Mayawati Yes she is a dalit leader, so is she a leader for Brahmins. Dravidian moments always portay that a miniscule 2% Brahmin community was the reason for all their suppresion. If you really see its the OBCs that actually supress &#8230; </p><p><a class="more-link block-button" href="http://aravinthan.in/blog/2007/06/08/hail-mayawati-let-her-live-long/">Continue reading &#187;</a>]]></description>
			<content:encoded><![CDATA[<p>I am atlast able to support one leader whom i can trust. I support Mayawati <img src='http://aravinthan.in/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Yes she is a dalit leader, so is she a leader for Brahmins.</p>
<p>Dravidian moments always portay that a miniscule 2% Brahmin community was the reason for all their suppresion. If you really see its the OBCs that actually supress the Dalits and at the same time supress the  Brahmins as well.</p>
<p>The OBCs (take an example of Thevars who always kill and ruin dalits live near their towns in Tamil Nadu), discriminate the Dalits in their acts and while talking politically present themselves to be supporter of Dalits.</p>
<p>Ask an OBC what they have done for the upliftment of the Dalits for the last 60years, when actually they were the rulers of Tamil Nadu.  Why is the dalit&#8217;s condition not improved with the governance of Dravidian parties!</p>
<p>It is simple, OBCs are the exploiters and offenders of the Dalits. But they happily put the blame on the brahmins. Its easy to play a blame game;Its more easier to blame a silent,soft ommunity that doesnt have any political backup what so ever. What people say, beating a dead man and claiming victory.</p>
<p>Take an example of the Tamil Nadu government and tell me the total amount of Brahmin MLAs in the assembly, its just two, one is Jayalalitha and the other is  SV Sekhar. The remaining lot is the OBcs who are still working for last 60 years to bring the dalit&#8217;s life to a better one. But all these 60  years of their rule, have you ever seen the dravidian parties  did  anything good to dalits? All they did is to offend Brahmins and their disciplined life. All they did in 60years is to systematically offend Brahmin community(hitting a dead man) and neglecting  improvement of the actual underpriveledged.</p>
<p>If they have done any good to dalits, why is dalit&#8217;s conditions have not improved in last 60years, dont tell me two brahmin MLAs were the whole reason for their non-improvement!!</p>
<p>This is the reality, its the ruling class(OBCs) who are the exploiters of every other castes. They were the exploiters of Dalits and Brahmins.</p>
<p>It has just started that the two opressed communities (dalits and Brahmins) are just joining their hands together. Let us march forward and get our self respect back from the ruling OBCs.</p>
]]></content:encoded>
			<wfw:commentRss>http://aravinthan.in/blog/2007/06/08/hail-mayawati-let-her-live-long/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Been away from Blogging</title>
		<link>http://aravinthan.in/blog/2006/12/08/been-away-from-blogging/</link>
		<comments>http://aravinthan.in/blog/2006/12/08/been-away-from-blogging/#comments</comments>
		<pubDate>Fri, 08 Dec 2006 08:04:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://aravinthan.wordpress.com/2006/12/08/been-away-from-blogging/</guid>
		<description><![CDATA[I have been bit busy personally and officially for last several months to be away from blogging.. Atleast now i feel i should devote some time  back to blogging.]]></description>
			<content:encoded><![CDATA[<p>I have been bit busy personally and officially for last several months to be away from blogging..</p>
<p>Atleast now i feel i should devote some time  back to blogging.</p>
]]></content:encoded>
			<wfw:commentRss>http://aravinthan.in/blog/2006/12/08/been-away-from-blogging/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>So true -Brahmins of India are the Jews; Victimised; Indian politicians are playing ethnic cleancing.</title>
		<link>http://aravinthan.in/blog/2006/08/23/so-true-brahmins-of-india-are-the-jews-victimised-indian-politicians-are-playing-ethnic-cleancing/</link>
		<comments>http://aravinthan.in/blog/2006/08/23/so-true-brahmins-of-india-are-the-jews-victimised-indian-politicians-are-playing-ethnic-cleancing/#comments</comments>
		<pubDate>Wed, 23 Aug 2006 03:58:27 +0000</pubDate>
		<dc:creator>aravinthan</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Indian Politics]]></category>
		<category><![CDATA[Politics]]></category>
		<category><![CDATA[Religion]]></category>
		<category><![CDATA[Reservation in India]]></category>
		<category><![CDATA[Social Concern]]></category>

		<guid isPermaLink="false">https://aravinthan.wordpress.com/2006/08/23/so-true-brahmins-of-india-are-the-jews-victimised-indian-politicians-are-playing-ethnic-cleancing/</guid>
		<description><![CDATA[http://mboard.rediff.com/board/board.php?boardid=news2006jun15franc&#38;page=47   Subject: Blessing in disguise for Brahmins Hi All, Let me tell you something i know about Brahmins. They are Poor as well as Rich. But they are Brilliant and Intelligent. This no one can steal from them. Of course they are ridiculed and denied any of the rights (Like Jobs and Higher Education) &#8230; </p><p><a class="more-link block-button" href="http://aravinthan.in/blog/2006/08/23/so-true-brahmins-of-india-are-the-jews-victimised-indian-politicians-are-playing-ethnic-cleancing/">Continue reading &#187;</a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://mboard.rediff.com/board/board.php?boardid=news2006jun15franc&amp;page=47">http://mboard.rediff.com/board/board.php?boardid=news2006jun15franc&amp;page=47</a></p>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="10" height="17" bgcolor="#f7f7f7"> </td>
<td colspan="2" width="100%" bgcolor="#f7f7f7"><img src="http://mboard.rediff.com/board/uim/trans.gif" border="0" alt="" width="1" height="10" /><br />
<span><strong>Subject: Blessing in disguise for Brahmins</strong><br />
<img src="http://mboard.rediff.com/board/uim/trans.gif" border="0" alt="" width="1" height="10" /><br />
Hi All,<br />
Let me tell you something i know about Brahmins.<br />
They are Poor as well as Rich. But they are Brilliant and Intelligent. This no one can steal from them.<br />
Of course they are ridiculed and denied any of the rights (Like Jobs and Higher Education) These are denied from them only by politicians to get votes from Dalits, Christians and Muslims.<br />
Let me tell you. Jews were chased by every one.<br />
What is their position now. They are the Intelligent ones in the World. They are able to Cultivate Apple in a Desert.<br />
Same way the more you crush Brahmins they will also grow. Many Brahmins are abroad and they are rich and bring laurells to our country.<br />
Deny them one they will choose the other and try to make a living.If you deny them higher education in India they will get the same in US and grow well. It is high time that Government stops these reservations and look every one with same view.<br />
</span></td>
</tr>
</tbody>
</table>
<p><strong>RE:Blessing in disguise for Brahmins<br />
<img src="http://mboard.rediff.com/board/uim/trans.gif" border="0" alt="" width="1" height="10" /><br />
</strong>Actually he is right. In Germany, Hitler (Political leaders) came to power by instigating the majority Germans against Jews who were very successful in trade and education (remember Einstein?). Jews (Brahmins) were only a few % (like Brahmins 3%) of the population and they were vilified as having come from &#8220;outside&#8221; (Aryan invasion theory) and were unjustly cornering the benefits. Theories expounded by Goebbels (Periyar) were used for propaganda. So laws were passed restricting trade ownership (SSI laws), minimum 50% of German (OBC/SC/ST) employees in Jewish (Brahmin) firms, and in appointment of Professors in state funded institutions (IITs/IIMs). In other words, quotas, like in TN for example.</p>
<p>All problems for German majority (OBC/SC/ST), including defeat at British hands were attributed to Jews (Brahmins), and roused the population. To keep the rhetoric high, and the minds of people away from hunger/poverty, the Jew (Brahmin) became the prime symbol to be attacked. Millions of Jews (Brahmins) had to flee to America, Australia, Canada (like Brahmins today) and England. Einstein and other Jews helped create the atom bomb in America. Lessons anyone?</p>
<p><span>Posted by <strong>param</strong> on 04-JUL-06</span></p>
]]></content:encoded>
			<wfw:commentRss>http://aravinthan.in/blog/2006/08/23/so-true-brahmins-of-india-are-the-jews-victimised-indian-politicians-are-playing-ethnic-cleancing/feed/</wfw:commentRss>
		<slash:comments>87</slash:comments>
		</item>
		<item>
		<title>In Chennai this week end.</title>
		<link>http://aravinthan.in/blog/2006/08/11/in-chennai-this-week-end/</link>
		<comments>http://aravinthan.in/blog/2006/08/11/in-chennai-this-week-end/#comments</comments>
		<pubDate>Thu, 10 Aug 2006 20:13:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[India]]></category>

		<guid isPermaLink="false">https://aravinthan.wordpress.com/2006/08/11/in-chennai-this-week-end/</guid>
		<description><![CDATA[I would be in Chennai this week end. So expect a post after 17th. Till then i would most probably not post:)]]></description>
			<content:encoded><![CDATA[<p>I would be in Chennai this week end. So expect a post after 17th. Till then i would most probably not post:)</p>
]]></content:encoded>
			<wfw:commentRss>http://aravinthan.in/blog/2006/08/11/in-chennai-this-week-end/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>You are looking at an Featured Blog by WordPress.</title>
		<link>http://aravinthan.in/blog/2006/08/06/you-are-looking-at-an-featured-blog-by-wordpress/</link>
		<comments>http://aravinthan.in/blog/2006/08/06/you-are-looking-at-an-featured-blog-by-wordpress/#comments</comments>
		<pubDate>Sun, 06 Aug 2006 14:32:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Reservation in India]]></category>

		<guid isPermaLink="false">https://aravinthan.wordpress.com/2006/08/06/you-are-looking-at-an-featured-blog-by-wordpress/</guid>
		<description><![CDATA[Yes, my blog is a featured blog under &#8220;Reservation in India&#8221; category.  Visit :http://wordpress.com/tag/reservation-in-india/ this link&#8230;]]></description>
			<content:encoded><![CDATA[<p>Yes, my blog is a featured blog under &#8220;Reservation in India&#8221; category.  Visit :http://wordpress.com/tag/reservation-in-india/ this link&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://aravinthan.in/blog/2006/08/06/you-are-looking-at-an-featured-blog-by-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lets improve the education of Backward Classes</title>
		<link>http://aravinthan.in/blog/2006/05/30/lets-improve-the-education-of-backward-classes/</link>
		<comments>http://aravinthan.in/blog/2006/05/30/lets-improve-the-education-of-backward-classes/#comments</comments>
		<pubDate>Tue, 30 May 2006 08:41:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">https://aravinthan.wordpress.com/2006/05/30/lets-improve-the-education-of-backward-classes/</guid>
		<description><![CDATA[The trick has payed off.. These dirty guys of politicts wanted to divide us in the name of caste.. and what an irony.. We now stand divided. The divion of OBCs and Forward caste.. is becoming more relevant now. At this point, i thought, let me not just take part in agitation against reservation, Reservation &#8230; </p><p><a class="more-link block-button" href="http://aravinthan.in/blog/2006/05/30/lets-improve-the-education-of-backward-classes/">Continue reading &#187;</a>]]></description>
			<content:encoded><![CDATA[<p>The trick has payed off.. These dirty guys of politicts wanted to divide us in the name of caste.. and what an irony.. We now stand divided. The divion of OBCs and Forward caste.. is becoming more relevant now. At this point, i thought, let me not just take part in agitation against reservation, Reservation is the whole point to get the society divided on the basis of caste and creed and to garner votes!</p>
<p>I am planning to do social service to visit villages near to my current residance and help poor students get some good education. I feel the need of the hour is not Reservation, the need of the hour is social service!</p>
<p>We need to improve the conditions of the poor people of India, they may be from back ward caste, they may be from forward caste, i dont care. We need to help them get good education.</p>
<p>I want India to be a great place to live, i want humanity to spread love and affection towards all.</p>
<p>I carve for unity , I carve for a united India, I carve for a political setup that works only for the harmony of the people. I hate this dive and rule policy of Reservation.</p>
<p>I feel the best way to improve the economically backward class (I hate to call some people as backward class just because they were born in a specified caste!), is to set up good educational institutes near to their home and give them quality free education that facilitates them to take on the best of the breed!</p>
<p>This is definelty possible with a honest commitment from the governement and if followed religiously without any discrimination on caste ,creed, religion or region, it is a way to a successful india.</p>
<p>The alternative to reservation is to provide education to all and make all classes competent and competitive. Let us help the poor class to get good education. This is a postive approach to the problem.</p>
<p>I am against any split in India on the name of Caste , Creed, Religion or Region!</p>
<p>Lets do good to fellow human beings.. let us spread the message of Love.</p>
<p>Jai hind<br />
Aravinthan.</p>
]]></content:encoded>
			<wfw:commentRss>http://aravinthan.in/blog/2006/05/30/lets-improve-the-education-of-backward-classes/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>South India &#8211; A lesson to be learnt for the forward community.</title>
		<link>http://aravinthan.in/blog/2006/05/29/south-india-a-lesson-to-be-learnt-for-the-forward-community/</link>
		<comments>http://aravinthan.in/blog/2006/05/29/south-india-a-lesson-to-be-learnt-for-the-forward-community/#comments</comments>
		<pubDate>Mon, 29 May 2006 08:51:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">https://aravinthan.wordpress.com/2006/05/29/south-india-a-lesson-to-be-learnt-for-the-forward-community/</guid>
		<description><![CDATA[Some excerpts from NTDV.com URL: http://www.ndtv.com/template/template.asp?fromtimeline=true&#38;id=88471&#38;callid=1&#38;template=Reservation &#8220;Brahmins of Tamil Nadu are like the Jews of Germany. They are not being physically liquidated but they are being suffocated and squeezed educationally,&#8221; said former UN information consultant SR Madhu. &#8220;Tamil Nadu&#8217;s quota, which stands at 69 percent has effectively driven the forward community out of the state.&#8221; &#8230; </p><p><a class="more-link block-button" href="http://aravinthan.in/blog/2006/05/29/south-india-a-lesson-to-be-learnt-for-the-forward-community/">Continue reading &#187;</a>]]></description>
			<content:encoded><![CDATA[<p>Some excerpts from NTDV.com URL: <a href="http://www.ndtv.com/template/template.asp?fromtimeline=true&amp;id=88471&amp;callid=1&amp;template=Reservation">http://www.ndtv.com/template/template.asp?fromtimeline=true&amp;id=88471&amp;callid=1&amp;template=Reservation</a></p>
<p>&#8220;Brahmins of Tamil Nadu are like the Jews of Germany. They are not being physically liquidated but they are being suffocated and squeezed educationally,&#8221; said former UN information consultant SR Madhu.</p>
<p>&#8220;Tamil Nadu&#8217;s quota, which stands at 69 percent has effectively driven the forward community out of the state.&#8221; &#8211; NDTV.</p>
<p>So guys if you dont come to the street and protest against this discrimination that is being carried out, North India would also end up like the south.</p>
<p>We need to analyse how the Tamil Nadu goverments (Dravidian parties) were able to effectively rout most of the Brahmin community out of Tamil Nadu and how we can help them get back there. Without our support they can never survive. And If we take this lightly, the same scenario might spread across the whole of India which is very much a worrying factor.</p>
]]></content:encoded>
			<wfw:commentRss>http://aravinthan.in/blog/2006/05/29/south-india-a-lesson-to-be-learnt-for-the-forward-community/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Subash Chandra Bose &#8211; Why Britishers left India?</title>
		<link>http://aravinthan.in/blog/2006/05/28/subash-chandra-bose-why-britishers-left-india/</link>
		<comments>http://aravinthan.in/blog/2006/05/28/subash-chandra-bose-why-britishers-left-india/#comments</comments>
		<pubDate>Sun, 28 May 2006 18:25:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">https://aravinthan.wordpress.com/2006/05/28/subash-chandra-bose-why-britishers-left-india/</guid>
		<description><![CDATA[Some exerpts from a grandson of an INA Army person: Courtesy Rediff.com (see the link above). In post-Independent India the INA&#8217;s role was played down. The official evaluation was that its activities had little effect. Militarily speaking that was true because the army was not that well equipped, but the British made a great political &#8230; </p><p><a class="more-link block-button" href="http://aravinthan.in/blog/2006/05/28/subash-chandra-bose-why-britishers-left-india/">Continue reading &#187;</a>]]></description>
			<content:encoded><![CDATA[<p>Some exerpts from a grandson of an INA Army person: Courtesy Rediff.com (see the link above).<br />
In post-Independent India the INA&#8217;s role was played down. The official evaluation was that its activities had little effect. Militarily speaking that was true because the army was not that well equipped, but the British made a great political mistake by putting three INA officers on trial at the Red Fort (in Delhi), expecting that people would look down on them as traitors. The opposite happened and the trial publicized the efforts of the INA, which had previously been censored.<br />
Until the trial little had been known of the INA or the Government of India in exile in 1943 when they tried to send food to Bengal during the Great Famine. All of a sudden this trial made everything known and it revived the struggle for independence in India, which had been lagging because the leadership of the Congress party and other groups mostly had been imprisoned. Their efforts like the Quit India movement had not been successful and so this gave a new dawn to the movement.<br />
As a consequence of the INA&#8217;s efforts, large numbers within the British Indian Army &#8212; which was not just British but for the most part Indian &#8212; became unreliable. There was a mutiny in Bombay (by the Royal Indian Navy), which showed the armed forces could not be depended on. The administrative system was what had controlled India and with the army unreliable the British realised India could not be held as a colony any more. This led to the transfer of power. It was meant to have taken place a few months later, but it was brought forward to August 1947.<br />
You could therefore say the INA had this effect of destabilising the British hold on the Indian army and reviving the independence movement within India.<br />
The INA certainly has its place in Indian history.<br />
When the first few INA soldiers returned to India they were treated as heroes, but I must say in the later stages India has not treated them very well. The INA veterans were not recognised as army veterans and for a very long time they were not even recognised as freedom fighters, which meant that certain benefits such as a pension and free rail travel were denied to them. Many members of the INA were reduced to poverty and some of them died in hunger. These were simple people and could not find their way that easily in the country to which they returned.<br />
India has not behaved towards this group in an honorable or fair way.</p>
]]></content:encoded>
			<wfw:commentRss>http://aravinthan.in/blog/2006/05/28/subash-chandra-bose-why-britishers-left-india/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

