<?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>tutorMicman</title>
	<atom:link href="http://getch.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://getch.wordpress.com</link>
	<description>when I learn, the world learns with me ...</description>
	<lastBuildDate>Thu, 05 Jan 2012 07:57:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='getch.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/2503688e2e137947107a30d8effd1252?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>tutorMicman</title>
		<link>http://getch.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://getch.wordpress.com/osd.xml" title="tutorMicman" />
	<atom:link rel='hub' href='http://getch.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Sharing values between Servlets and Jsp</title>
		<link>http://getch.wordpress.com/2011/12/28/sharing-values-between-servlets-and-jsp/</link>
		<comments>http://getch.wordpress.com/2011/12/28/sharing-values-between-servlets-and-jsp/#comments</comments>
		<pubDate>Wed, 28 Dec 2011 15:18:54 +0000</pubDate>
		<dc:creator>ManojKumar</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[jsp]]></category>
		<category><![CDATA[j2ee]]></category>
		<category><![CDATA[parameters]]></category>
		<category><![CDATA[servlet]]></category>

		<guid isPermaLink="false">http://getch.wordpress.com/?p=3154</guid>
		<description><![CDATA[In this post I will show a simple code and explain how to pass information between Jsp and Servlet. This information sharing is highly essential for many programming scenarios encountered in real time. We will pass information to and fro &#8230; <a href="http://getch.wordpress.com/2011/12/28/sharing-values-between-servlets-and-jsp/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=getch.wordpress.com&amp;blog=4454835&amp;post=3154&amp;subd=getch&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://getch.wordpress.com/2011/12/28/sharing-values-between-servlets-and-jsp/java/" rel="attachment wp-att-3167"><img class="aligncenter size-full wp-image-3167" title="java" src="http://getch.files.wordpress.com/2011/12/java.png?w=593" alt=""   /></a></p>
<p><span style="color:#333300;">In this post I will show a simple code and explain how to pass information between Jsp and Servlet. This information sharing is highly essential for many programming scenarios encountered in real time.</span></p>
<p><span style="color:#333300;">We will pass information to and fro between servlets and jsp using<span style="color:#000080;"> sessions</span> and <span style="color:#000080;">servlet context</span> information.</span><br />
<span style="color:#333300;">I presume you know how to invoke a servlet from a jsp page by making entries in<span style="color:#000080;"> <strong>web.xml</strong></span> in Tomcat Container.</span><br />
<span style="color:#333300;">If you are using Eclipse, the latter will take care of the mapping, though in some cases you would have to manually make the entry in web.xml (Deployment Descriptor).</span></p>
<p><span style="text-decoration:underline;color:#000080;"><em><strong>Overview:</strong></em></span><br />
<span style="color:#333300;">We got 4 files here:</span></p>
<ul>
<li><span style="color:#333300;">Page1JSP.jsp</span></li>
<li><span style="color:#333300;">Page2Servlet.java</span></li>
<li><span style="color:#333300;">Page3JSP.jsp</span></li>
<li><span style="color:#333300;">Page4Servlet.java</span></li>
</ul>
<ol>
<li><span style="color:#333300;">We will pass a value from <strong>Page1JSP</strong> to <strong>Page2Servlet</strong>.</span></li>
<li><span style="color:#333300;">Then we will pass another value from<strong> Page2Servlet</strong> to<strong> Page3JSP</strong>.</span></li>
<li><span style="color:#333300;">And finally, we pass a value from  <strong>Page3JSP</strong> to <strong>Page4Servlet</strong>.</span></li>
<li><span style="color:#333300;">In addition, we will be accessing a value in <strong>Page4Servlet</strong> that has been sent from<strong> Page1JSP</strong> to<strong> Page2Servlet</strong>.</span></li>
</ol>
<p style="text-align:center;"><span style="color:#333300;">Lets see some action!</span></p>
<p style="text-align:left;"><span style="text-decoration:underline;color:#000080;"><em><strong>In Page1JSP.jsp,</strong></em></span><br />
<span style="color:#333300;">This is the form we have in Page1JSP.jsp</span></p>
<p style="text-align:left;"><span style="color:#333300;"><a href="http://getch.wordpress.com/2011/12/28/sharing-values-between-servlets-and-jsp/page1/" rel="attachment wp-att-3155"><span style="color:#333300;"><img class="aligncenter size-full wp-image-3155" title="page1" src="http://getch.files.wordpress.com/2011/12/page1.png?w=593" alt=""   /></span></a></span></p>
<p style="text-align:left;"><span style="color:#333300;">Notice that we are passing the form data “<strong><em>tName</em></strong>” to a servlet named “<em><strong>Page2Servlet</strong></em>”.</span></p>
<p><span style="text-decoration:underline;color:#000080;"><em><strong>Output of Page1JSP.jsp:</strong></em></span></p>
<p><span style="color:#333300;"><a href="http://getch.wordpress.com/2011/12/28/sharing-values-between-servlets-and-jsp/page1form/" rel="attachment wp-att-3156"><span style="color:#333300;"><img class="aligncenter size-full wp-image-3156" title="page1Form" src="http://getch.files.wordpress.com/2011/12/page1form.png?w=593" alt=""   /></span></a></span></p>
<p><span style="text-decoration:underline;color:#333300;"><em><strong>In Page2Servlet.java,</strong></em></span><br />
<span style="color:#333300;">We obtain form data sent by Page1JSP.jsp  in the service() method of the servlet:</span></p>
<p><span style="color:#333300;"><a href="http://getch.wordpress.com/2011/12/28/sharing-values-between-servlets-and-jsp/page2/" rel="attachment wp-att-3157"><span style="color:#333300;"><img class="aligncenter size-full wp-image-3157" title="page2" src="http://getch.files.wordpress.com/2011/12/page2.png?w=593" alt=""   /></span></a></span></p>
<p><span style="color:#333300;">Next, we create a  session  and set an attribute named “Page2SessAttr”</span><br />
<span style="color:#333300;"><a href="http://getch.wordpress.com/2011/12/28/sharing-values-between-servlets-and-jsp/page2session/" rel="attachment wp-att-3158"><span style="color:#333300;"><img class="aligncenter size-full wp-image-3158" title="page2Session" src="http://getch.files.wordpress.com/2011/12/page2session.png?w=593" alt=""   /></span></a><strong>Page2SessAttr</strong> contains the form value received from<strong> Page1Jsp</strong>. You can also set any another value into it.</span><br />
<span style="color:#333300;">Next, we obtain the Servlet Context and set an attribute in it, so that when we  pass a servlets context to a Jsp , the latter would be able to access the attribute set and “<em>forwarded</em>” by the servlet.</span></p>
<p><span style="color:#333300;"><a href="http://getch.wordpress.com/2011/12/28/sharing-values-between-servlets-and-jsp/page2servletcontext/" rel="attachment wp-att-3159"><span style="color:#333300;"><img class="aligncenter size-full wp-image-3159" title="page2ServletContext" src="http://getch.files.wordpress.com/2011/12/page2servletcontext.png?w=593" alt=""   /></span></a></span></p>
<p><span style="color:#333300;">Page3Jsp will receive the entire context of the servlet, that includes even the attributes set by the latter.</span></p>
<p><span style="color:#000080;"><em><span style="text-decoration:underline;"><strong>In Page3JSP.jsp,</strong></span></em></span><br />
<span style="color:#333300;">We will access the values sent by Page2Servlet both by the session and through the servlet context.</span></p>
<p><span style="color:#333300;"><a href="http://getch.wordpress.com/2011/12/28/sharing-values-between-servlets-and-jsp/page3/" rel="attachment wp-att-3160"><span style="color:#333300;"><img class="aligncenter  wp-image-3160" title="page3" src="http://getch.files.wordpress.com/2011/12/page3.png?w=593&#038;h=214" alt="" width="593" height="214" /></span></a>Notice that, towards the end of the code, we have also created another session attribute named “<strong>Page3SessAttr</strong>”. The session itself was created in <strong>Page2Servlet</strong>.</span></p>
<p><span style="color:#333300;"> In <strong>Pag3Jsp</strong>, we have just accessed that session and NOT created a new session. This you can know from the following line in the above code:</span></p>
<p style="text-align:center;">
<span style="color:#333300;">HttpSession sess = request.getSession(false);</span></p>
<p><span style="color:#333300;">The parameter “false” indicates that this is an already created session.</span></p>
<p><span style="color:#333300;">Finally,<span style="color:#000080;"> <em><span style="text-decoration:underline;"><strong>In <span style="text-decoration:underline;">Page4Servlet.java</span></strong></span></em></span></span><br />
<span style="color:#333300;">We will access the session attributes set by Page3JSP.jsp</span></p>
<p><span style="color:#333300;"><a href="http://getch.wordpress.com/2011/12/28/sharing-values-between-servlets-and-jsp/page4/" rel="attachment wp-att-3161"><span style="color:#333300;"><img class="aligncenter size-full wp-image-3161" title="page4" src="http://getch.files.wordpress.com/2011/12/page4.png?w=593" alt=""   /></span></a></span></p>
<p><span style="color:#333300;">In addition, “<strong>recvStr2</strong>” contains the value of “<strong>Page2SessAttr</strong>” set in <strong>Page2Servlet</strong> session.</span></p>
<p><span style="color:#333300;">The final output I see in my Eclipse console is:</span><br />
<span style="color:#333300;"><a href="http://getch.wordpress.com/2011/12/28/sharing-values-between-servlets-and-jsp/eclipse_console/" rel="attachment wp-att-3162"><span style="color:#333300;"><img class="aligncenter size-full wp-image-3162" title="eclipse_console" src="http://getch.files.wordpress.com/2011/12/eclipse_console.png?w=593&#038;h=207" alt="" width="593" height="207" /></span></a></span><br />
<span style="color:#333300;">I hope, this piece of material was clear enough to explain you how to share values between Servlets and Jsp. There may be other methods of sharing too, but this seems fairly simple to me.</span></p>
<p><span style="color:#333300;"> If you are not clear with my explanations in tutorial just read follow the code snippets alone.</span></p>
<p><span style="color:#333300;">Share this post if you like it!</span><br />
<span style="color:#333300;">Cheers!</span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/getch.wordpress.com/3154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/getch.wordpress.com/3154/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/getch.wordpress.com/3154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/getch.wordpress.com/3154/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/getch.wordpress.com/3154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/getch.wordpress.com/3154/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/getch.wordpress.com/3154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/getch.wordpress.com/3154/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/getch.wordpress.com/3154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/getch.wordpress.com/3154/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/getch.wordpress.com/3154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/getch.wordpress.com/3154/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/getch.wordpress.com/3154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/getch.wordpress.com/3154/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=getch.wordpress.com&amp;blog=4454835&amp;post=3154&amp;subd=getch&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://getch.wordpress.com/2011/12/28/sharing-values-between-servlets-and-jsp/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8577c3ec978785a008d71eb27a7a59a3?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">manoj1987</media:title>
		</media:content>

		<media:content url="http://getch.files.wordpress.com/2011/12/java.png" medium="image">
			<media:title type="html">java</media:title>
		</media:content>

		<media:content url="http://getch.files.wordpress.com/2011/12/page1.png" medium="image">
			<media:title type="html">page1</media:title>
		</media:content>

		<media:content url="http://getch.files.wordpress.com/2011/12/page1form.png" medium="image">
			<media:title type="html">page1Form</media:title>
		</media:content>

		<media:content url="http://getch.files.wordpress.com/2011/12/page2.png" medium="image">
			<media:title type="html">page2</media:title>
		</media:content>

		<media:content url="http://getch.files.wordpress.com/2011/12/page2session.png" medium="image">
			<media:title type="html">page2Session</media:title>
		</media:content>

		<media:content url="http://getch.files.wordpress.com/2011/12/page2servletcontext.png" medium="image">
			<media:title type="html">page2ServletContext</media:title>
		</media:content>

		<media:content url="http://getch.files.wordpress.com/2011/12/page3.png" medium="image">
			<media:title type="html">page3</media:title>
		</media:content>

		<media:content url="http://getch.files.wordpress.com/2011/12/page4.png" medium="image">
			<media:title type="html">page4</media:title>
		</media:content>

		<media:content url="http://getch.files.wordpress.com/2011/12/eclipse_console.png" medium="image">
			<media:title type="html">eclipse_console</media:title>
		</media:content>
	</item>
		<item>
		<title>கண்ணுபடபோகுதையா</title>
		<link>http://getch.wordpress.com/2011/11/02/%e0%ae%95%e0%ae%a3%e0%af%8d%e0%ae%a3%e0%af%81%e0%ae%aa%e0%ae%9f%e0%ae%aa%e0%af%8b%e0%ae%95%e0%af%81%e0%ae%a4%e0%af%88%e0%ae%af%e0%ae%be/</link>
		<comments>http://getch.wordpress.com/2011/11/02/%e0%ae%95%e0%ae%a3%e0%af%8d%e0%ae%a3%e0%af%81%e0%ae%aa%e0%ae%9f%e0%ae%aa%e0%af%8b%e0%ae%95%e0%af%81%e0%ae%a4%e0%af%88%e0%ae%af%e0%ae%be/#comments</comments>
		<pubDate>Wed, 02 Nov 2011 08:15:21 +0000</pubDate>
		<dc:creator>ManojKumar</dc:creator>
				<category><![CDATA[தமிழ் பதிவுகள்]]></category>
		<category><![CDATA[கண் திருஷ்டிகளும் பரிகாரங்களும்]]></category>
		<category><![CDATA[திருஷ்டி]]></category>

		<guid isPermaLink="false">http://getch.wordpress.com/?p=3131</guid>
		<description><![CDATA[           மணிமேகலை பிரசுரத்தின் &#8220;கண் திருஷ்டிகளும் பரிகாரங்களும்&#8221; என்ற புத்தகத்தை சமீபத்தில் நான் படிக்க நேர்ந்தது. அதில் சில சுவாரசியமான செய்திகள் குறிப்பிடப்பட்டு இருந்தன. அவற்றை இப் பதிவின் மூலமாக உங்களுடன் பகிர்ந்துக் கொள்கிறேன். நம்புவர்கள் நம்பலாம், நம்பாதவர்கள் இதன்  சுவாரசியம் கருதி தொடர்ந்து படிக்கலாம்.       &#8220;திருஷ்டி&#8221; என்ற வட &#8230; <a href="http://getch.wordpress.com/2011/11/02/%e0%ae%95%e0%ae%a3%e0%af%8d%e0%ae%a3%e0%af%81%e0%ae%aa%e0%ae%9f%e0%ae%aa%e0%af%8b%e0%ae%95%e0%af%81%e0%ae%a4%e0%af%88%e0%ae%af%e0%ae%be/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=getch.wordpress.com&amp;blog=4454835&amp;post=3131&amp;subd=getch&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span style="font-size:small;color:#000000;"><span style="font-size:medium;">    <a href="http://getch.wordpress.com/2011/11/02/%e0%ae%95%e0%ae%a3%e0%af%8d%e0%ae%a3%e0%af%81%e0%ae%aa%e0%ae%9f%e0%ae%aa%e0%af%8b%e0%ae%95%e0%af%81%e0%ae%a4%e0%af%88%e0%ae%af%e0%ae%be/thrishti-elumichai/" rel="attachment wp-att-3135"><img class="aligncenter size-full wp-image-3135" title="thrishti-elumichai" src="http://getch.files.wordpress.com/2011/11/thrishti-elumichai.jpg?w=593" alt=""   /></a> </span></span></p>
<p><span style="font-size:small;color:#000000;"><span style="font-size:medium;">      மணிமேகலை பிரசுரத்தின் &#8220;கண் திருஷ்டிகளும் பரிகாரங்களும்&#8221; என்ற புத்தகத்தை சமீபத்தில் நான் படிக்க நேர்ந்தது. அதில் சில சுவாரசியமான செய்திகள் குறிப்பிடப்பட்டு இருந்தன. அவற்றை இப் பதிவின் மூலமாக உங்களுடன் பகிர்ந்துக் கொள்கிறேன். நம்புவர்கள் நம்பலாம், நம்பாதவர்கள் இதன்  சுவாரசியம் கருதி தொடர்ந்து படிக்கலாம். </span></span></p>
<div><span style="color:#003300;"><span class="Apple-style-span" style="font-size:medium;"><span class="Apple-style-span" style="font-size:medium;">     &#8220;திருஷ்டி&#8221; என்ற வட சொல்லுக்கு இணையான </span></span><span class="Apple-style-span" style="font-size:medium;"><span class="Apple-style-span">தமிழ் சொல் &#8220;பார்வை&#8221; என்பதாகும். ஒருவருடைய கண் பார்வையிலேயே அவருடைய நவரச  பாவங்களையும் உணர்த்த முடியும். கோபம், வெறுப்பு முதலியவற்றை ஒருவரது பார்வைகளிலேயே நாம் பார்த்திருப்போம் அல்லவா?</span> </span><span class="Apple-style-span" style="font-size:medium;">     கூர்மையான ஒருவருடைய பார்வை நம் மீது படும் போது நமது உடலில் பல மாற்றங்கள்(நல்லதோ கெட்டதோ) ஏற்படுகின்றன. இந்த பாதிப்புகளின் வீரியத்தை   குறைப்பதற்காகவே  பரிகாரங்கள் செய்யப்படுகின்றன. ஒரு பெண் தனது நெற்றியில் திலகம் இடுவதே கண் திருஷ்டியைக் குறைக்க ஒரு பரிகாரம் தான். இதில் எனக்கு நம்பிக்கை உண்டு. விஞ்ஞான பூர்வமாக ஆராய்ந்தால், புருவத்திற்கு இடைப்பட்ட பகுதியை நோக்கி பார்வையை செலுத்தி mesmerism மூலமாக ஒருவரை வசியம் செய்ய முடியும். </span><span class="Apple-style-span" style="font-size:medium;"><span class="Apple-style-span"><span style="font-family:arial;">இதையே திரிஷ்டி  என்று நமது முன்னோர்களால் கூறப்பட்டது போலும்.</span></span></span></span></div>
<div>
<p><span class="Apple-style-span" style="font-size:medium;color:#000000;"><span class="Apple-style-span" style="font-size:medium;"><span style="font-family:arial;">     உலக வரலாற்றிலும் &#8220;</span>திரிஷ்டி&#8221; சில சுவாரசியமான இடங்களைப் பிடித்திருக்கிறது.ஹிட்லரின் ஸ்வஸ்திக்(swastik) சின்னமும் திருஷ்டியோடு சம்பந்தப்பட்டு இருந்ததாக ஜேர்மன் ஆராய்ச்சியாளர்களே கூறுகின்றனராம். வீட்டில் பல்லிகள் இருந்தால் திருஷ்டி பாதிப்பு வராது என்பது மலேசியா மக்களின் நம்பிக்கை. பிரிட்டன் மக்கள், தம் நாட்டில் குரங்குகள் அதிகம் இருந்தால் அது நாட்டிற்கும் தங்களுக்கும் தோஷம் ஏற்படாமல் இருக்கும் என்று நம்பினார்கள். ஒரு கட்டத்தில் குரங்குகளின் எண்ணிக்கை குறைய ஆரம்பித்தவுடன் மக்களிடையே பீதி பற்றிக்கொண்டது. இதை அறிந்த அன்றைய பிரிட்டன் பிரதமர் வின்ஸ்டன் சர்ச்சில்(Winston Churchill)  இரவோடு இரவாக வெளிநாடுகளிலிருந்து நிறைய குரங்குகளை இறக்குமதி செய்துள்ளார்.</span> </span></p>
<p><span class="Apple-style-span" style="font-size:medium;color:#000000;">    கண் திருஷ்டி மனிதர்களை மட்டுமல்ல, மற்ற உயிரினங்களையும், உயிரற்றவைகளையும்(நிலம்,பயிர்) பாதிக்கும்.</span></p>
</div>
<div>
<div><span style="font-size:medium;color:#000000;">திருஷ்டி ஏற்படுத்தக் கூடிய கண்கள் என்று குறிப்பிடப்படுபவை:</span></div>
<div><span style="font-size:medium;color:#000000;">* செவ்வரி படர்ந்த கண்கள் </span></div>
<div><span style="font-size:medium;color:#000000;">* நன்கு கறுத்து உருண்டு திரண்ட கண்கள் </span></div>
<div><span style="font-size:medium;color:#000000;">* பூனைக் கண்கள் </span></div>
<div><span style="font-size:medium;color:#000000;">* யானையின் கண்கள்  போன்று சிறுத்துச் சுருங்கிய கண்கள் </span></div>
<div><span class="Apple-style-span" style="font-size:medium;color:#000000;">மேலும், இந்த புத்தகத்தில் பெண்களுக்கு கர்ப்ப காலத்தில் ஒவ்வொரு  மாதமும் ஏற்படும் திருஷ்டிகளும், குழந்தைகளின் வாழ்க்கையில் ஒவ்வொரு வயதிலும் ஏற்படும் திருஷ்டிகள், வெவ்வேறு தொழில்களுக்கான திருஷ்டிகள் முதலிய பல சுவாரசியமான செய்திகள் கூறப்பட்டுள்ளன. அவற்றையெல்லாம் நேரம் கிடைக்கும் போது உங்களோடு பகிர்ந்துக் கொள்கிறேன்.</span></div>
</div>
<p><span style="font-size:small;"><br />
</span></p>
<div><a href="http://getch.wordpress.com/2011/11/02/%e0%ae%95%e0%ae%a3%e0%af%8d%e0%ae%a3%e0%af%81%e0%ae%aa%e0%ae%9f%e0%ae%aa%e0%af%8b%e0%ae%95%e0%af%81%e0%ae%a4%e0%af%88%e0%ae%af%e0%ae%be/therinthukolvoam/" rel="attachment wp-att-3141"><img class="aligncenter size-full wp-image-3141" title="therinthukolvoam" src="http://getch.files.wordpress.com/2011/11/therinthukolvoam.png?w=593&#038;h=287" alt="" width="593" height="287" /></a></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/getch.wordpress.com/3131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/getch.wordpress.com/3131/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/getch.wordpress.com/3131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/getch.wordpress.com/3131/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/getch.wordpress.com/3131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/getch.wordpress.com/3131/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/getch.wordpress.com/3131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/getch.wordpress.com/3131/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/getch.wordpress.com/3131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/getch.wordpress.com/3131/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/getch.wordpress.com/3131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/getch.wordpress.com/3131/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/getch.wordpress.com/3131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/getch.wordpress.com/3131/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=getch.wordpress.com&amp;blog=4454835&amp;post=3131&amp;subd=getch&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://getch.wordpress.com/2011/11/02/%e0%ae%95%e0%ae%a3%e0%af%8d%e0%ae%a3%e0%af%81%e0%ae%aa%e0%ae%9f%e0%ae%aa%e0%af%8b%e0%ae%95%e0%af%81%e0%ae%a4%e0%af%88%e0%ae%af%e0%ae%be/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8577c3ec978785a008d71eb27a7a59a3?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">manoj1987</media:title>
		</media:content>

		<media:content url="http://getch.files.wordpress.com/2011/11/thrishti-elumichai.jpg" medium="image">
			<media:title type="html">thrishti-elumichai</media:title>
		</media:content>

		<media:content url="http://getch.files.wordpress.com/2011/11/therinthukolvoam.png" medium="image">
			<media:title type="html">therinthukolvoam</media:title>
		</media:content>
	</item>
		<item>
		<title>History of Temples in Tiruvanmiyur</title>
		<link>http://getch.wordpress.com/2011/10/23/history-of-temples-in-tiruvanmiyur/</link>
		<comments>http://getch.wordpress.com/2011/10/23/history-of-temples-in-tiruvanmiyur/#comments</comments>
		<pubDate>Sun, 23 Oct 2011 14:31:17 +0000</pubDate>
		<dc:creator>ManojKumar</dc:creator>
				<category><![CDATA[Newspaper Cuttings]]></category>
		<category><![CDATA[hindu]]></category>
		<category><![CDATA[newspaper]]></category>
		<category><![CDATA[Times of India]]></category>
		<category><![CDATA[tiruvanmiyur]]></category>

		<guid isPermaLink="false">http://getch.wordpress.com/?p=3122</guid>
		<description><![CDATA[&#160; &#160; DR S SURESH goes on a spiritual sojourn as he re-visits some prominent and lesser-known temples in and around Thiruvanmiyur. The festival season has set in and all the temples in the city are busy preparing for special &#8230; <a href="http://getch.wordpress.com/2011/10/23/history-of-temples-in-tiruvanmiyur/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=getch.wordpress.com&amp;blog=4454835&amp;post=3122&amp;subd=getch&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>&nbsp;</p>
<p>&nbsp;</p>
<p>DR S SURESH goes on a spiritual sojourn as he re-visits some prominent and lesser-known temples in and around Thiruvanmiyur.</p>
<p>The festival season has set in and all the temples in the city are busy preparing for special events and rituals connected with each festival.Thiruvanmiyur,which is presently a bustling residential locality on the southern fringes of Chennai city,was,for centuries,a small village with large temples and traditional tile-roofed houses.It was one of the last villages to be included within the modern city.<br />
Thiruvanmiyur has a long and interesting history.<span style="color:#800000;">According to the locals,the very name Tiruvanmiyur is derived from the name of the famous saint Valmiki,the author of the epic,Ramayana.He is believed to have lived here for some years,several centuries before Christ.There is a small temple dedicated to this saint in the area.</span></p>
<p>Between 300 BC and 300 AD,Roman traders frequented Thiruvanmiyur,which was then a part of the kingdom of the Sangam Cholas.The Romans came to India to buy our spices,gemstones,textiles,ivory and sandalwood.In return,India got wine,gold,silver and lead from Rome.Since the 19th century,Roman coins have been recurrently reported from the Mahabalipuram-Thiruvanmiyur coastal stretch.Thiruvanmiyur was located between two major ports frequented by the Romans,namely Mahabalipuram or Mallai and Mylapore.In Greek literature,the former port was called Malange and the latter port,Mylarpha.</p>
<p>After the decline of the Sangam Cholas,Thiruvanmiyur came under the control of the Pallava dynasty (fourth to ninth centuries AD).An interesting coin minted by this dynasty was unearthed from the compound of a school in Thiruvanmiyur in August,1989,when the school authorities were digging the ground for Independence Day celebrations.The coin was made of lead.It featured the bull,the royal crest of the Pallavas,on the obverse and a vase with a tree on the reverse.On typological grounds,archaeologists have assigned this coin to the fourth century AD.After the Pallavas,Thiruvanmiyur came under the rule of the Medieval Cholas or Imperial Cholas and later,the Vijayanagar empire.Subsequently,the region was passed on to the British.</p>
<p>The biggest and most important temple in Thiruvanmiyur is undoubtedly the Marundisvarar Temple on the East Coast Road.This temple has two main entrances &#8211; one facing east and the other facing west.Although the temple existed during the age of the Pallavas,most of the structures in the campus belong to the time of the Cholas and the Vijayanagar empire.The temple was extensively damaged when Hyder Ali,the Sultan of Mysore,invaded the area in the eighteenth century.Unlike many other Hindu temples where the main shrine faces east,the principal shrine in the present temple faces west.The vimana or tower above this shrine is over 30 feet high.The shrine of Goddess Tripurasundari faces south and belongs to the period of the king Rajendra I Chola (1012-44 AD).To the north-east of the temple is a large tank with a pillared Niradum Mandapa (bathing pavilion ).The tank has been cleaned and restored recently.It is rather strange that this beautiful temple has not got the publicity that it richly deserves.It is rarely visited by tourists.Hundreds of people pass by this temple each day,while driving to the tourist sites of Mahabalipuram and Dakshinachitra,but none of them are aware of its unique heritage.</p>
<p><em>The writer is the Tamil Nadu State Convener,INTACH and is presently in Washington DC,studying the American system of Heritage Conservation,as a Fulbright Scholar and this article appears in Times of India Chennai Edition dated 22.10.2011</em></p>
<p>***</p>
<p><a href="http://getch.wordpress.com/2011/10/23/history-of-temples-in-tiruvanmiyur/attachment/2003012300110301/" rel="attachment wp-att-3123"><img class="aligncenter size-full wp-image-3123" title="2003012300110301" src="http://getch.files.wordpress.com/2011/10/2003012300110301.jpg?w=593" alt=""   /></a></p>
<p>The Valmiki temple in Thiruvanmiyur, which is steeped in legend, is believed to be at least 1,300 years old.<br />
Be it a huge edifice in the centre of the road or just a small elevation beneath a tree, temples have always had special significance in Chennai.</p>
<p>And the Valmiki temple, sitting bang in the middle of East Coast Road in Valmiki Nagar is no exception.<br />
<span style="color:#800000;">Legend has it that poet Valmiki, after writing the Ramayana, was heading south along the sea shore and rested here.</span><br />
Hence, the area is called Thiruvanmiyur. Although the temple looks like a mandapam, it is believed to be at least 1,300 years old.</p>
<p>During the Chola reign, the Maruntheeshwarar temple was constructed. Now the Valmiki temple is officially under the supervision of Maruntheeshwarar temple. But the Valmiki temple has been under threat from the development of ECR. The government planned to demolish the temple as it is in the centre of the road.<br />
&#8220;The temple authorities have managed to get a stay order on the demolition.Now attempts are being made to widen the road around the temple, so that it will serve as a median and not be an inconvenience,&#8221; says Kuppuswamy, an officer at the Maruntheeshwarar temple.</p>
<p>Every year the Brahmatosav festival takes place in March and special pooja is done every month on the full moon day.</p>
<p><em>The above piece of information appears in the Chennai edition of The Hindu, dated Jan 23,2003.</em></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/getch.wordpress.com/3122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/getch.wordpress.com/3122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/getch.wordpress.com/3122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/getch.wordpress.com/3122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/getch.wordpress.com/3122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/getch.wordpress.com/3122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/getch.wordpress.com/3122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/getch.wordpress.com/3122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/getch.wordpress.com/3122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/getch.wordpress.com/3122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/getch.wordpress.com/3122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/getch.wordpress.com/3122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/getch.wordpress.com/3122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/getch.wordpress.com/3122/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=getch.wordpress.com&amp;blog=4454835&amp;post=3122&amp;subd=getch&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://getch.wordpress.com/2011/10/23/history-of-temples-in-tiruvanmiyur/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8577c3ec978785a008d71eb27a7a59a3?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">manoj1987</media:title>
		</media:content>

		<media:content url="http://getch.files.wordpress.com/2011/10/2003012300110301.jpg" medium="image">
			<media:title type="html">2003012300110301</media:title>
		</media:content>
	</item>
		<item>
		<title>Connecting to Belkin N150 in Ubuntu 10.10</title>
		<link>http://getch.wordpress.com/2011/10/22/connecting-to-belkin-n150-in-ubuntu-10-10/</link>
		<comments>http://getch.wordpress.com/2011/10/22/connecting-to-belkin-n150-in-ubuntu-10-10/#comments</comments>
		<pubDate>Sat, 22 Oct 2011 13:45:44 +0000</pubDate>
		<dc:creator>ManojKumar</dc:creator>
				<category><![CDATA[(K)ubuntu tips]]></category>
		<category><![CDATA[belkin]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[wireless]]></category>
		<category><![CDATA[wlan]]></category>

		<guid isPermaLink="false">http://getch.wordpress.com/?p=3115</guid>
		<description><![CDATA[I had bought a Belkin router few months back. The label on the router box said that it supports only Windows and Mac operating systems. I wondered why it can&#8217;t support Linux(Ubuntu) when it could sense a Mac. So I &#8230; <a href="http://getch.wordpress.com/2011/10/22/connecting-to-belkin-n150-in-ubuntu-10-10/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=getch.wordpress.com&amp;blog=4454835&amp;post=3115&amp;subd=getch&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter" src="http://img825.imageshack.us/img825/172/belkin.jpg" alt="belkin ubuntu10.10" /></p>
<p><span style="color:#000000;">I had bought a Belkin router few months back. The label on the router box said that it supports only Windows and Mac operating systems. I wondered why it can&#8217;t support Linux(Ubuntu) when it could sense a Mac. So I set out on a frustrating journey to find out how to make my Compaq Presario CQ50 dual booting Windows 7 and Ubuntu 10.10 to be able to detect my Belkin N150 router in Ubuntu.</span></p>
<p><span style="color:#000000;">First, I created a wireless connection in the Network Manager. It should be noted that the wifi button on my laptop never toggled between ON and OFF. It was always turned ON.The &#8220;Wireless Networks&#8221; option in Network Manager applet either read as &#8220;device not ready&#8221; or &#8220;wireless network disabled&#8221;. Moreover I was conveniently able to connect to wired Internet.</span></p>
<p><span style="color:#000000;">So I probed for the driver used by my system.</span></p>
<p><pre class="brush: plain;">$ ethtool -i eth0 </pre></p>
<p><span style="color:#000000;">My driver was <strong>r8169</strong>, which I downloaded from this[1] site.</span></p>
<p><span style="color:#000000;">I installed it as instructed in that downloaded package.</span></p>
<p><span style="color:#000000;">Next, I ran the following command to list all the wired and wireless connections available for my system.</span></p>
<p><pre class="brush: plain;">$ ifconfig -a </pre></p>
<p><span style="color:#000000;">Surprisingly, it showed an entry &#8220;wlan0&#8243; for the wireless network, apart from &#8220;eth0&#8243; and &#8220;lo&#8221; for wired and loopback connection.</span></p>
<p><span style="color:#000000;">So, I thought of enabling the wireless connection using the following command:</span></p>
<p><pre class="brush: plain;">$ sudo ifconfig wlan0 up </pre></p>
<p><span style="color:#000000;">But, that threw an error &#8220;SIOCSIFFLAGS: Operation not possible due to RF-kill&#8221; so I googled for solutions using that error message and I chanced upon this[2], this[3] and this[4] solutions.</span></p>
<p><span style="color:#000000;">Based on the instructions in those sites i did the following:</span></p>
<p><pre class="brush: plain;">$ rfkill list </pre></p>
<p><span style="color:#000000;">the result was:</span></p>
<p><span style="color:#000000;">0: hp-wifi: Wireless LAN</span></p>
<p><span style="color:#000000;">Soft blocked: yes</span></p>
<p><span style="color:#000000;">Hard blocked:no</span></p>
<p><span style="color:#000000;">1: phy0: Wireless LAN</span></p>
<p><span style="color:#000000;">Soft blocked: no</span></p>
<p><span style="color:#000000;">Hard blocked: no</span></p>
<p><span style="color:#000000;">Now we would reach the solution if we set &#8220;Soft Blocked&#8221; to &#8220;yes&#8221; for hp-wifi.</span></p>
<p><span style="color:#000000;">So i did:</span></p>
<p><pre class="brush: plain;">$ sudo rm /dev/rfkill </pre></p>
<p><span style="color:#000000;">then restarted laptop and then again in the terminal:</span></p>
<p><pre class="brush: plain;">$ sudo rfkill unblock 0 </pre></p>
<p>or<br />
<pre class="brush: plain;">$ sudo rfkill unblock wifi </pre></p>
<p><span style="color:#000000;">and then finally,</span></p>
<p><pre class="brush: plain;">$ sudo ifconfig wlan0 up </pre></p>
<p><span style="color:#000000;">Bingo! it worked. The wireless networks were now detected by my ubuntu 10.10</span></p>
<p>[1] http://goo.gl/4SUAn</p>
<p>[2] http://goo.gl/Ubpc6</p>
<p>[3] http://goo.gl/NmWWz</p>
<p>[4] http://goo.gl/oy3We</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/getch.wordpress.com/3115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/getch.wordpress.com/3115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/getch.wordpress.com/3115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/getch.wordpress.com/3115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/getch.wordpress.com/3115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/getch.wordpress.com/3115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/getch.wordpress.com/3115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/getch.wordpress.com/3115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/getch.wordpress.com/3115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/getch.wordpress.com/3115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/getch.wordpress.com/3115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/getch.wordpress.com/3115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/getch.wordpress.com/3115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/getch.wordpress.com/3115/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=getch.wordpress.com&amp;blog=4454835&amp;post=3115&amp;subd=getch&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://getch.wordpress.com/2011/10/22/connecting-to-belkin-n150-in-ubuntu-10-10/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8577c3ec978785a008d71eb27a7a59a3?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">manoj1987</media:title>
		</media:content>

		<media:content url="http://img825.imageshack.us/img825/172/belkin.jpg" medium="image">
			<media:title type="html">belkin ubuntu10.10</media:title>
		</media:content>
	</item>
		<item>
		<title>திண்ணை 9.10.2011</title>
		<link>http://getch.wordpress.com/2011/10/15/%e0%ae%a4%e0%ae%bf%e0%ae%a3%e0%af%8d%e0%ae%a3%e0%af%88-9-10-2011/</link>
		<comments>http://getch.wordpress.com/2011/10/15/%e0%ae%a4%e0%ae%bf%e0%ae%a3%e0%af%8d%e0%ae%a3%e0%af%88-9-10-2011/#comments</comments>
		<pubDate>Sat, 15 Oct 2011 13:26:09 +0000</pubDate>
		<dc:creator>ManojKumar</dc:creator>
				<category><![CDATA[படித்தேன் ரசித்தேன்]]></category>
		<category><![CDATA[varamalar]]></category>
		<category><![CDATA[dinamalar]]></category>
		<category><![CDATA[narayanan]]></category>

		<guid isPermaLink="false">http://getch.wordpress.com/?p=3110</guid>
		<description><![CDATA[&#160; ஓமந்தூர் ராமசாமி ரெட்டியார், ஓமந்தூரில் உள்ள ஒரு செல்வந்தர் குடும்பத்தில் பிறந்தவர். இவருக்குக் குழந்தைகள் இல்லை. இளமைப் பருவத்திலேயே மனைவியை இழந்தும், மறுமணம் செய்து கொள்ளவில்லை. இல்லறத்தில் வாழ்ந்த ஒரு துறவி என்றே சொல்லலாம். தமிழகத்தில் காங்கிரஸ் கட்சியின் தலைவர் களுள் ஒருவர், காந்தியடிகளின் வழியில் தவறாது நடந்தவர். அவர் வாழ்நாளில் பொய்யே பேசியதில்லை. &#8230; <a href="http://getch.wordpress.com/2011/10/15/%e0%ae%a4%e0%ae%bf%e0%ae%a3%e0%af%8d%e0%ae%a3%e0%af%88-9-10-2011/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=getch.wordpress.com&amp;blog=4454835&amp;post=3110&amp;subd=getch&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://getch.wordpress.com/2011/06/04/%e0%ae%a4%e0%ae%bf%e0%ae%a3%e0%af%8d%e0%ae%a3%e0%af%88-29-5-2011/narayanan-2/" rel="attachment wp-att-3037"><img class="aligncenter size-medium wp-image-3037" title="narayanan" src="http://getch.files.wordpress.com/2011/06/narayanan.jpeg?w=280&#038;h=300" alt="" width="280" height="300" /></a></p>
<p>&nbsp;</p>
<p><span style="color:#000000;">ஓமந்தூர் ராமசாமி ரெட்டியார், ஓமந்தூரில் உள்ள ஒரு செல்வந்தர் குடும்பத்தில் பிறந்தவர். இவருக்குக் குழந்தைகள் இல்லை. இளமைப் பருவத்திலேயே மனைவியை இழந்தும், மறுமணம் செய்து கொள்ளவில்லை. இல்லறத்தில் வாழ்ந்த ஒரு துறவி என்றே சொல்லலாம்.</span><br />
<span style="color:#000000;">தமிழகத்தில் காங்கிரஸ் கட்சியின் தலைவர் களுள் ஒருவர், காந்தியடிகளின் வழியில் தவறாது நடந்தவர்.</span><br />
<span style="color:#000000;">அவர் வாழ்நாளில் பொய்யே பேசியதில்லை. உண்மை பேசுகிறவன் அரசியல்வாதியாகவும் ஆகலாம் என்பதை மெய்ப்பிடித்துக் காட்டியவர். தவறு செய்கிறவர்கள் யாராயிருந்தாலும், அவரைக் கண்ணெதிரிலேயே கண்டித்துத் திருத்தும் பழக்கம் கொண்டவர். பொய்யர்களை அடியோடு வெறுத்து விடுவார். &#8220;அநீதியை எதிர்க்காதவன் ஆண் மகன் அல்ல&#8230;&#8221; என்பது அவரது வாக்கு. பொறுமையும், சகிப்புத் தன்மையும் கொண்டிருக்கும் அவரால், பிறர் செய்கிற தவறை சகிக்க முடிவதில்லை. இதனால், அவரை சிலர், முன்கோபி எனக் கூறு வதுண்டு.</span><br />
<span style="color:#000000;">நம் மாநிலத்தின் முதலமைச்சர் பதவியை, 1947ல் ரெட்டியார் ஏற்றுக் கொண்டார். பதவியை ஏற்கும் முன்னே, &#8220;ரெட்டியார் பதவி ஏற்க மாட்டார்&#8230;&#8221; என்ற வதந்தியை உண்டு பண்ணி விட்டனர். பதவி ஏற்ற பிறகு, &#8220;ஆங்கிலமே தெரியாதே&#8230; என்ன செய்வார்?&#8221; என்ற கேள்வியை கிளப்பி விட்டனர். காங்கிரஸ் கட்சிக்குள் நடந்த உள் போராட்டத்தின் விளைவால், முதலமைச்சர் பதவி ரெட்டியாருக்கு கிடைத்தது. இதில், காமராஜரின் முயற்சி பாராட்டத்தக்கது.</span><br />
<span style="color:#000000;">ஆங்கிலம் அறியாதவர்களால் ஆட்சி நடத்த முடியாது என்று கூறுபவர்கள் வாய் மூடும்படி ஆட்சி நடத்தினார் ஓமந்தூரார்; காரணம், அவரது நேர்மை. கட்சி பற்றாளர்களின் வம்புக்கும், இழுப்புக்கும் கூட இசைந்து கொடுக்கும் தன்மை நேர்மைக்கு வராது.</span><br />
<span style="color:#000000;">இப்படிப்பட்ட முதலமைச்சர் ரெட்டியார் மீதும், நம்பிக்கையில்லாத் தீர்மானத்தை, காங்கிரஸ் கட்சியினரே கொண்டு வந்தனர். அதைக் கொண்டு வந்தவர்களில் தங்களுக்கு, &#8220;கான்டிராக்ட்&#8221; கிடைக்க வில்லை என்பவரும், தங்கள் உறவினருக்கு, &#8220;டெபுடி சூப்பிரண்ட் பதவி&#8221; கிடைக்கவில்லை என்பவரும் இருந்தனர். இதைக் கண்டதும், ரெட்டியார் பதவியை உதறி எறிந்து வெளியேறினார்.</span><br />
<span style="color:#000000;">— &#8220;என் நண்பர்&#8221; நூலில், கி.ஆ.பெ.விசுவநாதம்.</span><br />
***</p>
<p><span style="color:#13000f;">ஒரு கிராமத்தில், 70 ஆண்டுகளுக்கு முன், அரிச்சந்திரன் நாடகம் நடந்தது. நாடகத்தில் அரிச்சந்திரன் மகன் லோகிதாசனை பாம்பு கடித்து, அவன் அழ வேண்டிய கட்டம். மேடையில் புல் பரப்பியிருந்தனர். மேடைக்கு வந்து லோகிதாசனாக நடித்த பையன் திடீரென்று அலற ஆரம்பித்தான். &#8220;ஐயோ&#8230; என்னை தேள் கொட்டி விட்டது&#8230;&#8221; என்று கத்தினான்.</span><br />
<span style="color:#13000f;">திரை மறைவில் இருந்த நாடக வாத்தியார், உடனே கோபமாக, &#8220;ஏய்&#8230; பாம்பு கடித்து விட்டது என்று சொல்லச் சொன்னால், தேள் கொட்டி விட்டது என சொல்கிறாயே&#8230;&#8221; என்று கண்டித்தார்.</span><br />
<span style="color:#13000f;">சிறுவனோ மீண்டும், &#8220;இல்லை&#8230; தேள்தான் கொட்டி விட்டது&#8230;&#8221; என்று அழுதான். உடனே அவனை அடிப்பதற்காக மேடைக்கு வந்த வாத்தியார், கீழே தேள் ஒன்று ஓடுவதைக் கண்டார். பிறகுதான் நடந்ததை அறிந்து, தேளை அடித்துவிட்டு, சிறுவனுக்கு மருந்து போட்டனர்.</span><br />
***<br />
<span style="color:#1a0028;">காமராஜர் முதலமைச்சராக இருந்த போது, ஒவ்வொரு நாள் இரவும் படுக்கப் போவதற்கு முன், தன்னைப் பார்க்க வந்த எல்லாரும் போய் விட்டனரா என்று, தன் உதவியாளர் வைரவனிடம் கேட்பார். &#8220;போய் விட்டனர்&#8230;&#8221; என்று சொன்ன பிறகும், இன்னொரு ரவுண்டு போய்ப் பார்த்துவிட்டு வரச் சொல்வார். காரணம் கேட்டதற்கு, &#8220;சில பேர் வெட்கப்பட்டுக் கொண்டோ, பயப்பட்டுக் கொண்டோ ஒதுங்கி நின்று விடுவர். கடைசியில் பார்க்க முடியாமலே ஊர் திரும்பி விடுவர். ஏழைகளாக இருப்பர், மறுபடியும் வரவேண்டுமெனில் செலவு செய்ய வேண்டும், பாவம், அதனால் தான்&#8230;&#8221; என்பார்.</span><br />
<span style="color:#1a0028;">ஒருமுறை வெளியூரிலிருந்து காரில் திரும்பும் போது, தூங்கிக் கொண்டே வந்தார். கார் சைதாப்பேட்டை பாலம் அருகே நின்று கொண்டிருந்தது. டிராபிக் ஜாம், ஒரே ஒரு போலீஸ்காரர் மட்டும் நின்று, போக்குவரத்தை சரிபடுத்திக் கொண்டிருந்தார்.</span><br />
<span style="color:#1a0028;">உடனே காமராஜர், கீழே இறங்கி, அவரும் அந்தப் போலீஸ்காரரோடு சேர்ந்து, போக்குவரத்தை ஒழுங்குபடுத்த உதவினார். பின்னர், உடனடியாக சைதாப்பேட்டை போலீஸ் நிலையத்திற்கு சென்று, இதுபோன்ற இடங்களில் இன்னொரு போலீஸ் காரரை கூடுதலாக போடும்படி கடிந்து</span><br />
<span style="color:#1a0028;">கொண்டார்.</span><br />
<span style="color:#1a0028;">***</span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/getch.wordpress.com/3110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/getch.wordpress.com/3110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/getch.wordpress.com/3110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/getch.wordpress.com/3110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/getch.wordpress.com/3110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/getch.wordpress.com/3110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/getch.wordpress.com/3110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/getch.wordpress.com/3110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/getch.wordpress.com/3110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/getch.wordpress.com/3110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/getch.wordpress.com/3110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/getch.wordpress.com/3110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/getch.wordpress.com/3110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/getch.wordpress.com/3110/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=getch.wordpress.com&amp;blog=4454835&amp;post=3110&amp;subd=getch&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://getch.wordpress.com/2011/10/15/%e0%ae%a4%e0%ae%bf%e0%ae%a3%e0%af%8d%e0%ae%a3%e0%af%88-9-10-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8577c3ec978785a008d71eb27a7a59a3?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">manoj1987</media:title>
		</media:content>

		<media:content url="http://getch.files.wordpress.com/2011/06/narayanan.jpeg?w=280" medium="image">
			<media:title type="html">narayanan</media:title>
		</media:content>
	</item>
		<item>
		<title>பார்த்தது..கேட்டது..படித்தது 9.10.2011</title>
		<link>http://getch.wordpress.com/2011/10/15/%e0%ae%aa%e0%ae%be%e0%ae%b0%e0%af%8d%e0%ae%a4%e0%af%8d%e0%ae%a4%e0%ae%a4%e0%af%81-%e0%ae%95%e0%af%87%e0%ae%9f%e0%af%8d%e0%ae%9f%e0%ae%a4%e0%af%81-%e0%ae%aa%e0%ae%9f%e0%ae%bf%e0%ae%a4%e0%af%8d-22/</link>
		<comments>http://getch.wordpress.com/2011/10/15/%e0%ae%aa%e0%ae%be%e0%ae%b0%e0%af%8d%e0%ae%a4%e0%af%8d%e0%ae%a4%e0%ae%a4%e0%af%81-%e0%ae%95%e0%af%87%e0%ae%9f%e0%af%8d%e0%ae%9f%e0%ae%a4%e0%af%81-%e0%ae%aa%e0%ae%9f%e0%ae%bf%e0%ae%a4%e0%af%8d-22/#comments</comments>
		<pubDate>Sat, 15 Oct 2011 13:23:37 +0000</pubDate>
		<dc:creator>ManojKumar</dc:creator>
				<category><![CDATA[படித்தேன் ரசித்தேன்]]></category>
		<category><![CDATA[anthumani]]></category>
		<category><![CDATA[dinamalar]]></category>
		<category><![CDATA[varamalar]]></category>

		<guid isPermaLink="false">http://getch.wordpress.com/?p=3102</guid>
		<description><![CDATA[&#160; இயற்கைக்கு எதிராக மனிதன் செயல்படும் போது, அது, அவனுக்கு, &#8220;பொட்&#8221; என்று தலையில் குட்டியது போன்ற பாடம் கற்பிக்கிறது &#8211; ஒவ்வொரு முறையும்&#8230; ஆனாலும், இவன் திருந்துவதில்லை! இப்படித்தான் நடந்தது இங்கிலாந்தில்&#8230; இங்கிலாந்து நாட்டு பசுமாடுகளை, &#8220;டிவி&#8221;களில் பார்த்து இருப்பீர்கள்&#8230; கொழு, கொழுவென இருக்கும்; 30-40 லிட்டர் பால் கொடுக்கும். இதற்கும் அதிகமாக பால் &#8230; <a href="http://getch.wordpress.com/2011/10/15/%e0%ae%aa%e0%ae%be%e0%ae%b0%e0%af%8d%e0%ae%a4%e0%af%8d%e0%ae%a4%e0%ae%a4%e0%af%81-%e0%ae%95%e0%af%87%e0%ae%9f%e0%af%8d%e0%ae%9f%e0%ae%a4%e0%af%81-%e0%ae%aa%e0%ae%9f%e0%ae%bf%e0%ae%a4%e0%af%8d-22/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=getch.wordpress.com&amp;blog=4454835&amp;post=3102&amp;subd=getch&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://getch.wordpress.com/2011/02/13/%e0%ae%aa%e0%ae%be%e0%ae%b0%e0%af%8d%e0%ae%a4%e0%af%8d%e0%ae%a4%e0%ae%a4%e0%af%81-%e0%ae%95%e0%af%87%e0%ae%9f%e0%af%8d%e0%ae%9f%e0%ae%a4%e0%af%81-%e0%ae%aa%e0%ae%9f%e0%ae%bf%e0%ae%a4%e0%af%8d-11/anthu/" rel="attachment wp-att-2795"><img class="aligncenter size-full wp-image-2795" title="anthu" src="http://getch.files.wordpress.com/2011/02/anthu.png?w=593" alt=""   /></a></p>
<p>&nbsp;</p>
<p><span style="color:#311901;">இயற்கைக்கு எதிராக மனிதன் செயல்படும் போது, அது, அவனுக்கு, &#8220;பொட்&#8221; என்று தலையில் குட்டியது போன்ற பாடம் கற்பிக்கிறது &#8211; ஒவ்வொரு முறையும்&#8230; ஆனாலும், இவன் திருந்துவதில்லை!</span><br />
<span style="color:#311901;">இப்படித்தான் நடந்தது இங்கிலாந்தில்&#8230; இங்கிலாந்து நாட்டு பசுமாடுகளை, &#8220;டிவி&#8221;களில் பார்த்து இருப்பீர்கள்&#8230; கொழு, கொழுவென இருக்கும்; 30-40 லிட்டர் பால் கொடுக்கும். இதற்கும் அதிகமாக பால் வேண்டும் என பேராசைப்பட்டனர்.</span><br />
<span style="color:#311901;">இதற்கென ஆராய்ந்து, விசே ஷ உணவு தயாரித்தனர். சாக பட்சிணியான மாட்டுக்கு, மாட்டு எலும்புத் தூள் கலந்த உணவைக் கொடுத்தனர்&#8230; பால் மற்றும் இறைச்சி அதிகமாகத்தான் கிடைத்தது. ஆனால், ஒரு கட்டத்தில் மாடுகளுக்கு பைத்தியம் பிடித்து விட்டது. இதை, &#8220;மேட் கவ் டிசீஸ்&#8221; என்றனர்.</span><br />
<span style="color:#311901;">இந்த நோய் பீடித்த மாடுகளை, சில ஆண்டுகளுக்கு முன் லட்சக்கணக்கில் கொன்று எரித்தனர்.</span><br />
<span style="color:#311901;">இங்கிலாந்தையும், பிரான்ஸ் நாட்டையும் ஆட்டிப் படைப்பது, &#8220;கா-வா&#8221; நோய் எனப்படும், &#8220;புட் அண்ட் மவுத்&#8221; நோய். நம் நாட்டில், இந்த நோய் கண்ட மாடுகளை தனியே பிரித்து, விளக்கெண்ணெயும், மஞ்சளும் தடவி வருவர்&#8230; இந்த நோய் கண்ட மாடுகள், உணவு எடுத்துக் கொள்ளாது&#8230; அதனால், மூங்கிலை வாயில் நுழைத்து, அரிசிக் கஞ்சி ஊற்றுவர். பத்து நாளில் நோய் ஓடிப் போகும்.</span><br />
<span style="color:#311901;">ஆனால், இங்கிலாந்திலோ, இந்நோய் கண்ட, மாடு &#8211; ஆடுகள், ஒன்றல்ல, இரண்டல்ல&#8230; ஏழு லட்சத்தை கொன்று குவித்துள்ளனர்.</span><br />
<span style="color:#311901;">நினைத்தே பார்க்க முடியவில்லை&#8230; இதென்ன சோகம்&#8230;</span><br />
<span style="color:#311901;">இந்த நேரத்தில், கோவை பாரதியார் பல்கலைக் கழக, உளவியல் துறை பேராசிரியர் வேதகிரி</span><br />
<span style="color:#311901;">கணேசன் என்பவர் எழுதிய கட்டுரை ஒன்றை படிக்க நேர்ந்தது&#8230; அவர் கூறுகிறார்&#8230;</span><br />
<span style="color:#311901;">மதங்கள் சொல்வதெல்லாம், மனித நேயத்துடன் மனிதர்கள் செயல்பட வேண்டும் என்பதே. ஆனால், தங்கள் சுயநலத்திற்கு முக்கியத்துவம் கொடுப்பதையே மனிதர்கள் விரும்புகின்றனர்; அவர்களுக்கு, தங்களது சுயநலத்திற்கு எதிரானதாக மனிதநேயம் தோன்றுகிறது.</span><br />
<span style="color:#311901;">பெரும்பான்மையினர், பெயருக்கு தங்கள் தாய், தந்தையரின் மதத்தைப் பின்பற்றுவதாகக் கூறுகின்றனர்; இன்னும் சிலர், மதமாற்றம் செய்கின்றனர்.</span><br />
<span style="color:#311901;">ஆனால், அநேகமாக எல்லாருமே மதங்கள் கூறுவதைப் பின்பற்றுவதில்லை&#8230;</span><br />
<span style="color:#311901;">உதாரணமாக, உணவுப் பழக்கத்தை எடுத்துக் கொள்ளலாம்&#8230; இந்தியா முழுவதும் இந்து மதத்தைச் சேர்ந்தவர்கள் சைவ உணவையே சாப்பிட்டதாக யுவான் சுவாங் என்ற சீன அறிஞர், இந்தியாவைச் சுற்றிப் பார்க்க வந்தபோது, பார்த்து எழுதியுள்ளார்.</span><br />
<span style="color:#311901;">சமூகத்தால் ஒதுக்கப்பட்ட குற்றவாளிகள் ஊரை விட்டுத் துரத்தப்பட்டு காடுகளில் வாழ்ந்தனர். &#8220;சண்டாளர்கள்&#8221; என்று கூறப்பட்ட இந்த மதத்தைச் சேர்ந்த இவர்கள் மட்டுமே வேறு வழியின்றி காடுகளில் வாழும் போது புலால் உணவை உண்டு வந்தனர்.</span><br />
<span style="color:#311901;">ஆனால், தற்போது இந்து மதத்தினரில் பெரும்பாலோர் மாமிச உணவு சாப்பிடும் பழக்கத்தில் சிக்கி விட்டனர்; அதை, கவுரவமானதாகவும் கருதுகின்றனர்.</span><br />
<span style="color:#311901;">&#8220;புலால் மறுத்தல்&#8221; என்ற ஒரு அதிகாரத்தில், 10 குறள்கள் மூலம் மாமிச உணவை மறுக்க வேண்டும் என்பதை வலியுறுத்தி உள்ளார் திருவள்ளுவர்.</span><br />
<span style="color:#311901;">அவர், மாமிச உணவை உண்பவர் உள்ளவரையில், அதை விற்பவர்கள் இருப்பர் என்று கூறியுள்ளார்.</span><br />
<span style="color:#311901;">விற்பவர்கள் உள்ளவரை, வளர்ப்பவர்கள் இருப்பர்; வளர்ப்பவர் உள்ளவரை, மேய்ப்பவர்கள் இருப்பர்; மேய்ப்பவர் உள்ளவரை பூமியின் மேற்பரப்பிலுள்ள பச்சை பசேலென்ற பாதுகாப்புக் கவசம் தேய்வடையும்.</span><br />
<span style="color:#311901;">அதனால், சூரிய கதிர்வீச்சுப் பட்டு நிலபரப்பு பாலைவனமாகும். நிலத்தடி நீர் கீழே இறங்கி, நீர்வளம் வற்றிப் போகும்.</span><br />
<span style="color:#311901;">ஒரு கிலோ மாமிசம் ஒருவர் உண்ணும் போது, அது, பல கிலோ பசுமையான தாவர இலைகளால் ஆனது என்பதை உணர்வதில்லை; பூமியின் பசுமைப் பாதுகாப்பு கேடயம் அரிக்கப்படுவதற்கு, தான் காரணமாவதை உணர்வதில்லை.</span><br />
<span style="color:#311901;">&#8220;உயிர்களைக் கொன்று மாமிச உணவைச் சாப்பிடக் கூடாது&#8230;&#8221; என்று கூறினார் புத்தர். ஆனால், இன்று மாமிச உணவைச் சாப்பிடுகின்றனர் புத்த பிட்சுகள். ஏனென்று கேட்டால், &#8220;நாங்கள் மாமிசத்திற்காக உயிர் வதை செய்வதில்லை; மாமிசத்தைக் கடையில் வாங்குகிறோம்&#8230;&#8221; என்கின்றனர்.</span><br />
<span style="color:#311901;">அசைவ உணவை இயேசுநாதர் உண்டதாக எங்கும் குறிப்பிடப்படவில்லை.</span><br />
<span style="color:#311901;">சைவ உணவையே உண்டு வந்தார் முகமது நபி. குர்-ஆனில், &#8220;அல்பகறர் (பசு)&#8221; என்ற முதல் அத்தியாயத்தில், &#8220;அல்லாஹ் (இறைவன்) மரங்களைப் படைத்தேன். ஏனென்றால், அவை உங்களுக்கு (மக்களுக்கு) நல்ல (ஹலால்) உணவாகும் என்பதற்காக&#8230;&#8221; என்று கூறியதாக குறிப்பிடுகிறார் நபிகள் நாயகம்.</span><br />
<span style="color:#311901;">மேலும், இறைவன், &#8220;பசுக்களை (பால் கொடுக்கும் மிருகங்களை &#8211; ஆடு, மாடு, ஒட்டகம் போன்றவை) படைத்தேன். அவற்றில் ரத்தத்திற்கும், சாணத்திற்கும் இடையில் பாலைப் படைத்தேன். ஏனென்றால், அது உங்களுக்கு நல்ல (ஹலால்) உணவாகும் என்பதற்காக&#8230;&#8221; என்று குறிப்பிடுகிறார்.</span><br />
<span style="color:#311901;">&#8220;உணவாகும்&#8221; (மாமிசம்) என்பதற்காக என்று குறிப்பிடவில்லை.</span><br />
<span style="color:#311901;">சொர்க்கத்தில் பாலும், பழங்களும், தேனும் கிடைக்கும் என்று கூறுகிறார் இறைவன். இதன் மூலம், அவற்றின் சிறப்பை அறியலாம். தடை செய்யப்பட்ட உணவு என்று ரத்தத்தை கூறுகிறார் இறைவன்.</span><br />
<span style="color:#311901;">மாமிசத்திலிருந்து ரத்தத்தை முழுமையாக நீக்க முடியுமா?</span><br />
<span style="color:#311901;">ஜைன மதத்தினரும், உயிர் வதையையும், மாமிச உணவையும் தவிர்க்க வேண்டும் என்பதை வலியுறுத்துகின்றனர். புத்த மதத்தைப் பின்பற்றும் சீனர்களும், ஜப்பானியர்களும் சைவ உணவை பின்பற்ற இயலாமல், மதக் கொள்கைகளுக்கு முரணான உணவுப் பழக்கத்தைக் கொண்டுள்ளனர்.</span><br />
<span style="color:#311901;">சைவ உணவுப் பழக்கத்தை பின்பற்றாத வரையில், மக்களிடம் பிற உயிரினங்களிடமும் அகிம்சை முறையைப் பின்பற்றாத வரையில், இந்துக்களோ, பவுத்த மதத்தினரோ, கிறிஸ்தவர்களோ, இஸ்லாமியரோ, யூதர்களோ, ஜைன மதத்தினரோ தங்கள் மதக் கோட்பாடுகளைப் பின்பற்றுவதாக ஏற்றுக் கொள்ள முடியாது.</span><br />
<span style="color:#311901;">பெரும்பாலும், மாமிச உணவை உண்டு வந்த, இந்த உலகையே ஒரு காலத்தில் ஆண்டு வந்த மேலை நாட்டினர், நூற்றுக்கு, 40 பேர் சைவ உணவுப் பழக்கத்திற்கு மாறி விட்டனர்.</span><br />
<span style="color:#311901;">இதற்கு மதம் காரணமல்ல; மருத்துவ ஆராய்ச்சி முடிவுகள் மூலம், மாமிச உணவு இதய நோயை உருவாக்கும் என்ற காரணத்தால்தான்.</span><br />
<span style="color:#311901;">இதிலிருந்து, சிந்தனைப் பூர்வமாக செயல்படும்போது, தங்கள் செயல்களை மனிதர்கள் மாற்றி அமைத்துக் கொள்ள முடியும் என்று உறுதியாகிறது.</span><br />
<span style="color:#311901;">எந்த மதமும் சிந்திக்காமல் செயல்படச் சொல்லவில்லை.</span><br />
<span style="color:#311901;">மதங்களைப் பின்பற்றுவதாகக் கூறிக் கொள்பவர்கள், அறிவுபூர்வமாகச் சிந்திக்க மறுக்கின்றனர். ஏனென்றால், தங்களது சொந்த ஆசாபாசங்களுக்கு முதலிடம் கொடுக்கும் போது, மதக் கோட்பாடுகளும், கருத்துகளும் பின்னுக்குத் தள்ளப்படுகின்றன.</span><br />
<span style="color:#311901;">— இப்படி எழுதியுள்ளார்.</span><br />
<span style="color:#311901;">எந்த மதமுமே, ஒரு உயிரைக் கொன்று தின்னச் சொல்லவில்லை. விஞ்ஞானப் பூர்வமாகவும் அசைவம் நல்லதல்ல என தெரிய வந்துள்ளது.</span><br />
<span style="color:#311901;">உணவுக்காக கால்நடைகளை வளர்ப்பதும், அதற்கு வியாதிகளை வரவழைத்து, பின்னர் லட்சக்கணக்கில் கொல்வதும், என்று முடிவுக்கு வருமோ?</span></p>
<p>***</p>
<p>Article Source: DINAMALAR</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/getch.wordpress.com/3102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/getch.wordpress.com/3102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/getch.wordpress.com/3102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/getch.wordpress.com/3102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/getch.wordpress.com/3102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/getch.wordpress.com/3102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/getch.wordpress.com/3102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/getch.wordpress.com/3102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/getch.wordpress.com/3102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/getch.wordpress.com/3102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/getch.wordpress.com/3102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/getch.wordpress.com/3102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/getch.wordpress.com/3102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/getch.wordpress.com/3102/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=getch.wordpress.com&amp;blog=4454835&amp;post=3102&amp;subd=getch&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://getch.wordpress.com/2011/10/15/%e0%ae%aa%e0%ae%be%e0%ae%b0%e0%af%8d%e0%ae%a4%e0%af%8d%e0%ae%a4%e0%ae%a4%e0%af%81-%e0%ae%95%e0%af%87%e0%ae%9f%e0%af%8d%e0%ae%9f%e0%ae%a4%e0%af%81-%e0%ae%aa%e0%ae%9f%e0%ae%bf%e0%ae%a4%e0%af%8d-22/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8577c3ec978785a008d71eb27a7a59a3?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">manoj1987</media:title>
		</media:content>

		<media:content url="http://getch.files.wordpress.com/2011/02/anthu.png" medium="image">
			<media:title type="html">anthu</media:title>
		</media:content>
	</item>
		<item>
		<title>திண்ணை 14.8.2011</title>
		<link>http://getch.wordpress.com/2011/10/15/%e0%ae%a4%e0%ae%bf%e0%ae%a3%e0%af%8d%e0%ae%a3%e0%af%88-14-8-2011/</link>
		<comments>http://getch.wordpress.com/2011/10/15/%e0%ae%a4%e0%ae%bf%e0%ae%a3%e0%af%8d%e0%ae%a3%e0%af%88-14-8-2011/#comments</comments>
		<pubDate>Sat, 15 Oct 2011 13:18:10 +0000</pubDate>
		<dc:creator>ManojKumar</dc:creator>
				<category><![CDATA[படித்தேன் ரசித்தேன்]]></category>
		<category><![CDATA[dinamalar]]></category>
		<category><![CDATA[narayanan]]></category>
		<category><![CDATA[varamalar]]></category>

		<guid isPermaLink="false">http://getch.wordpress.com/?p=3099</guid>
		<description><![CDATA[தாஜ்மகால், உன்னதமான காதல் கோவில் எனத் தெரியும். அதன் அஸ்திவாரம், கிணறுகள் போன்ற அமைப்பின் மீது, உறுதியான பாறைகளின் மேல் உருவாக்கப்பட்டுள்ளது. இவற்றை, இதற்கென்றே விசே ஷமாகத் தயாரிக்கப்பட்ட மர உத்திரங்கள், தாங்கிக் கொண்டிருக்கின்றன. அஸ்திவாரக் கற்களை, இந்த மர உத்திரங்கள் இணைக்கின்றன. இந்த மர உத்திரங்களை, தாமிரத் தகடுகளால் ஒன்றோடொன்று பொருத்தியுள்ளனர். இப்படியொரு நூதனமான &#8230; <a href="http://getch.wordpress.com/2011/10/15/%e0%ae%a4%e0%ae%bf%e0%ae%a3%e0%af%8d%e0%ae%a3%e0%af%88-14-8-2011/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=getch.wordpress.com&amp;blog=4454835&amp;post=3099&amp;subd=getch&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://getch.wordpress.com/2011/06/04/%e0%ae%a4%e0%ae%bf%e0%ae%a3%e0%af%8d%e0%ae%a3%e0%af%88-29-5-2011/narayanan-2/" rel="attachment wp-att-3037"><img class="aligncenter size-medium wp-image-3037" title="narayanan" src="http://getch.files.wordpress.com/2011/06/narayanan.jpeg?w=280&#038;h=300" alt="" width="280" height="300" /></a><br />
<span style="color:#003300;">தாஜ்மகால், உன்னதமான காதல் கோவில் எனத் தெரியும். அதன் அஸ்திவாரம், கிணறுகள் போன்ற அமைப்பின் மீது, உறுதியான பாறைகளின் மேல் உருவாக்கப்பட்டுள்ளது. இவற்றை, இதற்கென்றே </span><br />
<span style="color:#003300;">விசே ஷமாகத் தயாரிக்கப்பட்ட மர உத்திரங்கள், தாங்கிக் கொண்டிருக்கின்றன. அஸ்திவாரக் கற்களை, இந்த மர உத்திரங்கள் இணைக்கின்றன. இந்த மர உத்திரங்களை, தாமிரத் தகடுகளால் ஒன்றோடொன்று பொருத்தியுள்ளனர்.</span><br />
<span style="color:#003300;">இப்படியொரு நூதனமான அஸ்திவாரம், தாஜ்மகாலைத் தாங்கிக் கொண்டிருக்கிறது. இவ் வாறு அஸ்திவாரம் அமைக்கப்பட்டதற்குக் காரணம் என்ன? அதிர்ச்சி ஏதாவது ஏற்பட்டால், கட்டடத்திற்கு சேதம் வராமல், இந்த அஸ்திவாரம், அந்த அதிர்ச்சிகளைத் தாங்கிக் கொள்ளும். பூகம்பங்கள் ஏற்பட்டால் கூட, கட்டடம் அங்கு மிங்கும் ஆடுமே தவிர, இடிந்து விழுந்து விடாது.</span><br />
<span style="color:#003300;">—<strong>&#8220;உலக அதிசயங்கள்&#8221; நூலிலிருந்து&#8230;</strong></span></p>
<p style="text-align:center;"><span style="color:#000080;">***</span></p>
<p><span style="color:#000080;">இசையமைப்பாளர் எம்.எஸ்.விஸ்வநாதன், சினிமாவில் நடிகராக ஆக வேண்டும் என்ற ஆசையில்தான் சென்னை வந்தார். கீழ்பாக்கத்தில் இருந்த ஜூபிடர் பிக்சர்ஸ், கண்ணகி படம் துவங்கியிருந்த வேளை. ஹீரோ &#8211; பி.யூ.சின்னப்பா. ஹீரோயின் -பி.கண்ணாம்பா. இதில், எம்.எஸ்.வி.,க்கு பால கோவலன் வேடம் கொடுக்கப்பட்டது. பால கண்ணகியாக, பிரபல பின்னணிப் பாடகி, டி.வி.ரத்தினம் நடிக்க, படப்பிடிப்பு நடந்தது. மறுநாள், &#8220;ரஷ்&#8221; (எடுத்தவரை படத்தைத் திரையிட்டு) பார்த்து, &#8220;அந்தப் பெண்ணுக்குத் தம்பி மாதிரி இருக்கிறாய்&#8230;&#8221; என்று கூறி, எம்.எஸ்.வி.,யை நீக்கி விட்டனர்.</span><br />
<span style="color:#000080;">&#8220;அக்கா மாதிரி வயது அதிகமாய் தெரிந்த பெண்ணை கேன்சல் பண்ணலை; தம்பி மாதிரி இருக்கேன்னு என்னைக் கேன்சல் பண்ணி விட்டனரே&#8230;&#8221; என்று புலம்பினார் எம்.எஸ்.வி., பின்னர், ஜூபிடர் பிக்சர்ஸ் கோவையில் ஸ்டுடியோ அமைத்த போது, எம்.எஸ்.வி., அங்கு போய், &#8220;புரொடக்ஷன் பாயாக, வருபவர்களுக்கு காபி, டீ, டிபன் கொடுக்கும் வேலை பார்த்து வந்தார். அங்கு பணியாற்றிக் கொண்டிருந்த எம்.ஜி.ஆர்., கருணாநிதி, எம்.என்.நம்பியார், எம்.ஜி.சக்ரபாணி ஆகியோர் தங்கியிருந்த லாட்ஜிலேயே எம்.எஸ்.வி.,யும் தங்கிக் கொண்டார். சம்பளம் மாதம், இருபது ரூபாய்.</span><br />
<span style="color:#000080;">பின்னர் சுப்பையா நாயுடு, சுப்பராமன் ஆகிய இசையமைப்பாளர்களிடம் சேர்ந்து, தொழில் கற்றுக் கொண்டார். முதல் முதலாக ஜெனோவா படத்திற்கு இசை அமைப்பாளரானார். படத்தின் கதாநாயகன் எம்.ஜி.ஆருக்கு, இது பிடிக்கவில்லை. &#8220;ஜூபிடர் ஆபீசில் காபி, டீ கொடுத்து, ஆபீஸ் பாயாக இருந்தவனுக்கு, மியூசிக் பத்தி என்ன தெரியும்&#8230;&#8221; என்றார் எம்.ஜி.ஆர்., ஆனால், தயாரிப்பாளர் உறுதியாக இருந்தார்.</span><br />
<span style="color:#000080;">படத்தின் பாடல்கள் அனைத்தையும், &#8220;ஹிட்&#8221; செய்தார் எம்.எஸ்.வி., பிற்காலத்தில் எம்.ஜி.ஆர்., படங்களின் வெற்றிகளுக்கு எம்.எஸ்.வி., இசை யமைத்த பாடல்களே பெரும் பங்கு வகித்தன. விதியின் விளையாட்டு!</span></p>
<p style="text-align:center;">***</p>
<p><span style="color:#1c011b;">அமெரிக்காவில், உள்நாட்டுப் போர் நடந்து கொண்டிருந்த சமயம். அப்போது, அமெரிக்க அதிபராக இருந்த ஆபிரகாம் லிங்கன், தன்னுடைய ராணுவத் தளபதி ஒருவர், போர் முனைச் செய்திகளை உடனுக்குடன் அனுப்புவதில்லை என்று கோபப்பட்டு, அவருக்குக் கடுமையான கடிதம் ஒன்று எழுதினார்.</span><br />
<span style="color:#1c011b;">ஆத்திரமடைந்த ராணுவத் தளபதி, &#8220;ஆறு பசு மாடுகளைக் கைப்பற்றியிருக் கிறோம். அவற்றை, என்ன செய்வது என்ற உத்தரவுக்காகக் காத்திருக் கிறோம்&#8230;&#8221; என்று குறிப்பிட்டார். தன்னுடைய எரிச்சலைக் காட்டுவதற்காகவே, அந்தத் தளபதி இவ்வாறு தந்தி கொடுத்தார்.</span><br />
<span style="color:#1c011b;">லிங்கன் கோபப்படவில்லை. கீழ்கண்டவாறு பதில் தந்தி கொடுத்தார். &#8220;ஆறு பசு மாடுகளைப் பிடித்த உங்களுடைய தீரச் செயலைப் பாராட்டுகிறேன். அவற்றை என்ன செய்வது என.</span></p>
<p>&nbsp;</p>
<p>Article Source: DINAMALAR</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/getch.wordpress.com/3099/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/getch.wordpress.com/3099/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/getch.wordpress.com/3099/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/getch.wordpress.com/3099/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/getch.wordpress.com/3099/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/getch.wordpress.com/3099/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/getch.wordpress.com/3099/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/getch.wordpress.com/3099/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/getch.wordpress.com/3099/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/getch.wordpress.com/3099/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/getch.wordpress.com/3099/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/getch.wordpress.com/3099/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/getch.wordpress.com/3099/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/getch.wordpress.com/3099/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=getch.wordpress.com&amp;blog=4454835&amp;post=3099&amp;subd=getch&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://getch.wordpress.com/2011/10/15/%e0%ae%a4%e0%ae%bf%e0%ae%a3%e0%af%8d%e0%ae%a3%e0%af%88-14-8-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8577c3ec978785a008d71eb27a7a59a3?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">manoj1987</media:title>
		</media:content>

		<media:content url="http://getch.files.wordpress.com/2011/06/narayanan.jpeg?w=280" medium="image">
			<media:title type="html">narayanan</media:title>
		</media:content>
	</item>
		<item>
		<title>பார்த்தது..கேட்டது..படித்தது 14.8.2011</title>
		<link>http://getch.wordpress.com/2011/10/15/%e0%ae%aa%e0%ae%be%e0%ae%b0%e0%af%8d%e0%ae%a4%e0%af%8d%e0%ae%a4%e0%ae%a4%e0%af%81-%e0%ae%95%e0%af%87%e0%ae%9f%e0%af%8d%e0%ae%9f%e0%ae%a4%e0%af%81-%e0%ae%aa%e0%ae%9f%e0%ae%bf%e0%ae%a4%e0%af%8d-21/</link>
		<comments>http://getch.wordpress.com/2011/10/15/%e0%ae%aa%e0%ae%be%e0%ae%b0%e0%af%8d%e0%ae%a4%e0%af%8d%e0%ae%a4%e0%ae%a4%e0%af%81-%e0%ae%95%e0%af%87%e0%ae%9f%e0%af%8d%e0%ae%9f%e0%ae%a4%e0%af%81-%e0%ae%aa%e0%ae%9f%e0%ae%bf%e0%ae%a4%e0%af%8d-21/#comments</comments>
		<pubDate>Sat, 15 Oct 2011 13:14:08 +0000</pubDate>
		<dc:creator>ManojKumar</dc:creator>
				<category><![CDATA[படித்தேன் ரசித்தேன்]]></category>
		<category><![CDATA[anthumani]]></category>
		<category><![CDATA[dinamalar]]></category>
		<category><![CDATA[varamalar]]></category>

		<guid isPermaLink="false">http://getch.wordpress.com/?p=3095</guid>
		<description><![CDATA[&#160; நண்பர் ஒருவரை வரவேற்க, சென்னை திரிசூலம் பன்னாட்டு விமான வருகை தளத்தில் காத்திருந்தோம். அதிகாலை, 4:00 மணிக்கு லண்டனிலிருந்து, நேரடியாக சென்னை வரும், &#8220;பிரிட்டிஷ் ஏர்வேஸ்&#8221; விமானம் அது. முதல் நாள் இரவு, உ.பா., சாப்பிட்டு, உணவு ஏதும் எடுக்காமல், லென்ஸ் மாமா படுத்து விட்டார் போலும்&#8230; &#8220;மணி&#8230; பசிக்கிதுப்பா&#8230; பசிக்கிதுப்பா&#8230;&#8221; என, &#8220;தொணத்தி&#8221; &#8230; <a href="http://getch.wordpress.com/2011/10/15/%e0%ae%aa%e0%ae%be%e0%ae%b0%e0%af%8d%e0%ae%a4%e0%af%8d%e0%ae%a4%e0%ae%a4%e0%af%81-%e0%ae%95%e0%af%87%e0%ae%9f%e0%af%8d%e0%ae%9f%e0%ae%a4%e0%af%81-%e0%ae%aa%e0%ae%9f%e0%ae%bf%e0%ae%a4%e0%af%8d-21/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=getch.wordpress.com&amp;blog=4454835&amp;post=3095&amp;subd=getch&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://getch.wordpress.com/2011/02/13/%e0%ae%aa%e0%ae%be%e0%ae%b0%e0%af%8d%e0%ae%a4%e0%af%8d%e0%ae%a4%e0%ae%a4%e0%af%81-%e0%ae%95%e0%af%87%e0%ae%9f%e0%af%8d%e0%ae%9f%e0%ae%a4%e0%af%81-%e0%ae%aa%e0%ae%9f%e0%ae%bf%e0%ae%a4%e0%af%8d-11/anthu/" rel="attachment wp-att-2795"><img class="aligncenter size-full wp-image-2795" title="anthu" src="http://getch.files.wordpress.com/2011/02/anthu.png?w=593" alt=""   /></a></p>
<p>&nbsp;</p>
<p><span style="color:#01001d;">நண்பர் ஒருவரை வரவேற்க, சென்னை திரிசூலம் பன்னாட்டு விமான வருகை தளத்தில் காத்திருந்தோம். அதிகாலை, 4:00 மணிக்கு லண்டனிலிருந்து, நேரடியாக சென்னை வரும், &#8220;பிரிட்டிஷ் ஏர்வேஸ்&#8221; விமானம் அது. முதல் நாள் இரவு, உ.பா., சாப்பிட்டு, உணவு ஏதும் எடுக்காமல், லென்ஸ் மாமா படுத்து விட்டார் போலும்&#8230; &#8220;மணி&#8230; பசிக்கிதுப்பா&#8230; பசிக்கிதுப்பா&#8230;&#8221; என, &#8220;தொணத்தி&#8221; கொண்டே இருந்தார்.</span><br />
<span style="color:#01001d;">சுற்று முற்றும் பார்த்தேன்&#8230; காபி &#8211; டீ கடை ஒன்று மட்டும் தான் திறந்து இருந்தது&#8230; கொஞ்ச தூரம் நடந்ததும், &#8220;அடையார் ஆனந்த பவனின்&#8221; விமான நிலையக் கிளைக் கடையை சாவகாசமாகத் திறந்து கொண்டிருந்தார் ஊழியர் ஒருவர்&#8230;</span><br />
<span style="color:#01001d;">திராட்சைப் பழம் போல, ரோஸ் கலரில், கொஞ்சம் ஜீராவில் ஊறி கொண்டிருந்த இனிப்பு ஒன்றைக் காட்டி, பெண்மணி ஒருவர், தன் கணவரிடம் தெலுங்கில் மாட்லாடிக் கொண்டிருந்தார்&#8230; உடனே கணவர், தெலுங்கு கலந்த தமிழில், இரண்டு கிலோ இனிப்புக்கு, &#8220;ஆர்டர்&#8221; கொடுத்தார்&#8230;</span><br />
<span style="color:#01001d;">&#8220;அட&#8230; தேவுடா&#8230; இந்த அதிகாலை வேளையில் ஸ்வீட்டா?&#8221; என, எனக்குத் தெரிந்த தெலுங்கில் நினைத்துக் கொண்டு, லென்ஸ் மாமாவை அழைத்து வரச் சென்றேன்&#8230; கொஞ்சம் மிக்சரோ, காரச் சேவோ வாங்கி, அத்துடன் காபி சாப்பிட்டால், அவரின் பசி அடங்குமே என்ற எண்ணத்தில்&#8230;</span><br />
<span style="color:#01001d;">அகோரப் பசியில் இருந்த மாமா, நூறு கிராம் மிக்சர் வாங்கியதுமே, பட, படவென வாய்க்குள் கொட்ட ஆரம்பித்தார்&#8230; அவரின் கையை, &#8220;லபக்&#8221; எனப் பிடித்த குப்பண்ணா, &#8220;ஓய்&#8230; கையை அலம்பினீரா? எந்தப் பொருளை சாப்பிடுமுன்னும் பொது விதிகள் சிலது இருக்கு. தெரியாதா உமக்கு?&#8221; என வினா எழுப்பினார்&#8230; அதற்கு பதில் சொல்லும் பொறுமை எல்லாம் இல்லை மாமாவிடம்&#8230; காரியத்திலேயே கண்ணாய் இருந்து, மிக்சரை, &#8220;அரை&#8221;த்துக் கொண்டிருந்தார்.</span><br />
<span style="color:#01001d;">குப்பண்ணாவை தனியே அழைத்துச் சென்று, &#8220;அந்தப் பொது விதிகளை எங்கிட்டே சொல்லுங்களேன்&#8230; நான் எழுதி, நாலு வாசகர்களாவது அதைப் பின்பற்றுவர்&#8230; நல்லது நடக்கட்டுமே&#8230;&#8221; என்றேன்.</span><br />
<span style="color:#01001d;">பேஷா சொல்றேன் அம்பி&#8230; கேட்டுக்கோ&#8230; இது, &#8220;ஆச்சாரக் கோவை&#8221;யில சொல்லப்பட்டது&#8230; என்னோட கற்பனைன்னு நெனைச்சுண்டுடாதே&#8230;&#8221; என்றவர், சிறிய இடைவெளி விட்டு ஆரம்பித்தார்&#8230;</span><br />
<span style="color:#01001d;">சாப்பிடறதுக்கு முன்னே, கை, கால் அலம்பி, வாய் கொப்பளிக்கணும்&#8230; உடனே, காலையும் கழுவணும்&#8230; காலை கழுவிய ஈரத்துடனே சாப்பிட உக்காரணும்&#8230; அப்பறம், சாப்பிடப் போற இலையோ அல்லது தட்டையோ சுற்றி நீர் தெளிக்கணும்&#8230; இது, எறும்பு அல்லது ஈ அங்கே அண்டாமல் இருக்கறதுக்கு!</span><br />
<span style="color:#01001d;">இப்போ, &#8220;புபே&#8221;ன்னு நாகரிகமா, அவாளே எடுத்து போட்டுண்டு, நின்னோ, நடந்தோ சாப்பிடுறாளே&#8230; அது தப்பு! &#8220;புபே&#8221;ன்னாலும், எடுத்துப் போட்டுண்டு, எங்கேயாவது உக்காந்துண்டு தான் போஜனம் பண்ணணும்! சாப்பிடும் போது பேசிண்டே இருக்கப் படாது!</span><br />
<span style="color:#01001d;">சாப்பிடறது கிழக்குப் பக்கமாவோ, வடக்குப் பக்கமாவோ இருக்கணும்! தெற்கு, மேற்கு திசைகளைப் பார்த்து சாப்பிடறதை கண்டிப்பா, &#8220;அவாய்ட்&#8221; பண்ணிடனும்&#8230;கல்யாணப் பந்தியிலோ அல்லது வேறு விசேஷ பந்தியிலோ அமர்ந்து சாப்பிடும் போது, நம்மை விட மூத்தோர் பக்கத்தில் உட்கார்ந்து சாப்பிடப்படாது&#8230; ஒரு வேளை, அப்படி அமைஞ்சுட்டுதுன்னா, அவா சாப்பிட ஆரம்பிக்கு முன்னே நாம் சாப்பிடப்படாது; அது போலவே, அவா சாப்பிட்டு எழுந்திருக்கு முன்னே நாம் எழுந்திருக்கப் படாது!</span><br />
<span style="color:#01001d;">பொதுவா, மூத்தவா சாப்பிட்டப்பறம், இளையவா சாப்பிடறது தான் நல்லது&#8230;</span><br />
<span style="color:#01001d;">&#8220;முதல்ல பாயசம் அல்லது பூந்தி போன்ற இனிப்பு வகைகளையும், மத்த, &#8220;ஐட்டங்களை&#8221; இடையிலும், கடைசியில் கசப்பு உணவுகளையும் சாப்பிடணும்&#8230; சில பேர் மோர் சாதம் சாப்பிட்டப்பறம் பாயசம் சாப்பிடுவா&#8230; அது ரொம்பக் கெடுதி தெரிஞ்சுக்கோ!</span><br />
<span style="color:#01001d;">சாப்பிட்டப்பறம் நன்னா வாய் கொப்பளிச்சுட்டு, கால் அலம்பின ஈரம் காயர வரை நன்னா நடந்துட்டுத் தான் ராத்திரியில படுக்கைக்குப் போகணும்!</span><br />
<span style="color:#01001d;">விருந்தாளிகள், மூத்தோர், குழந்தைகள், பசு, பறவைகளுக்கு உணவு அளித்த பிறகு தான், இளையோர் சாப்பிட வேண்டும்!</span><br />
<span style="color:#01001d;">சாப்பிட்ட பின்னரே தண்ணீர் அருந்த வேண்டும். தண்ணீர் டம்பளரையோ, குவளையையோ ரெண்டு கையிலும் பிடிச்சுண்டு குடிக்கப்படாது&#8230; பெரியோருக்கு ஏதாவது ஒன்றைத் தரும் போதோ அல்லது பெறும் போதோ மட்டுமே இரு கைகளாலும் செய்யணும். என, மிக நீண்ட, &#8220;லெக்சர்&#8221; கொடுத்து முடித்தார்&#8230;</span><br />
<span style="color:#01001d;">மிக்சர் சாப்பிட்டு, காபியும் குடித்து, வெண்குழல் வத்தியை கார் பார்க்கிங் இருட்டு நிழலில் ஊதிக் கொண்டிருந்தார் லென்ஸ் மாமா&#8230; விமான நிலையம் பொது இடமாயிற்றே&#8230; பொது இடங்களில் புகைபிடித்தால் போலீஸ் புடிச்சுக்குமே!</span></p>
<p style="text-align:center;">
***</p>
<p><span style="color:#130004;">லென்ஸ் மாமாவிற்கு ரத்தத்தில் கொழுப்பு சத்து கூடி விட்டது. &#8220;தினமும், 45 நிமிடம் முதல் ஒரு மணி நேரம் வரை நடைப்பயிற்சி மேற்கொண்டே ஆக வேண்டும்!&#8221; என, மருத்துவர் அறிவுறுத்தியதால், அதை செய்கிறார்.</span><br />
<span style="color:#130004;">&#8220;நல்ல விஷயம் தானே!&#8221; என நீங்கள் எண்ணலாம்&#8230; ஆனால், தொல்லை என்னையல்லவா பிடித்துக் கொண்டது. அதிகாலை, 4:30 மணிக்கு என் இருப்பிடம் வந்து, &#8220;பீம்&#8230; பீம்&#8221; என ஹாரன் அடித்து, என்னை எழுப்பி, தன்னுடன் நடைப் பயிற்சிக்கு அழைத்துச் சென்று விடுகிறார். தூக்கம் கலையாமல், அரைக் கண் விழித்த நிலையிலேயே நடந்து செல்லும் போது கண்ட காட்சிகள்&#8230;</span><br />
<span style="color:#130004;">* கை இல்லாத பனியனும், டிராக் சூட்டும் அணிந்து, தலை முடியை போனி டெயில் ஸ்டைலில் கட்டி, இளம் பெண்கள் ஏன் குதித்து, குதித்து ஓடுகின்றனர்? அப்படி ஓடும் போது, அவர்களின் அங்க அசைவுகள் ஆபாசமாக தெரிவதுடன், சபலிஸ்ட் ஆண்களின் மனதை பதறவும் வைக்கின்றனரே&#8230; இது ஏன்?</span><br />
<span style="color:#130004;">*நடுத்தர வயது பெண்கள் ஓடுவதில்லை. அதற்கு பதில், &#8220;மென் குதி நடை&#8221; பயில்கின்றனர். அவர்களும் தம் மீது துப்பட்டா போடாமல், மிகுந்த லோ கட் டாப்ஸ் அணிந்து செல்லும் போது, கால் மணி நேர நடையிலேயே வேர்த்து, விறுவிறுத்து உடலோடு ஒட்டிக் கொண்ட சுரிதார் டாப்ஸ், அங்கங்களின் வளைவு, நெளிவுகளை </span><br />
<span style="color:#130004;">அப்படியே வெளிச்சம் போட்டு காட்டுவது இவர்களுக்கு தெரிவதில்லையே&#8230; ஏன்?</span><br />
<span style="color:#130004;">* டூ &#8211; வீலர் ஓட்டும் சென்னைப் பெண்கள், 90 சதவீதம் பேரும் தம் சுரிதார் டாப்சில் உள்ள சைடு கட்டிங்கை இடுப்பு வரை வெட்டி, தைசையும், கால் மசில் அழகையும் வெளிச்சம் போடுவது ஏன்?</span><br />
<span style="color:#130004;">— இது போன்ற உடைகள் பெண்களுக்கு வசதி என்பதால், இப்படி அணிகின்றனரா? மண் தின்னப் போகும் உடம்பை மனிதர்கள் பார்த்து ரசிக்கட்டுமே என்ற தாராள மனப்பான்மையுடன் இருக்கின்றனரா? </span></p>
<p style="text-align:center;"><span style="color:#130004;">***</span></p>
<p style="text-align:center;">
<p style="text-align:left;">Article Source: DINAMALAR</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/getch.wordpress.com/3095/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/getch.wordpress.com/3095/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/getch.wordpress.com/3095/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/getch.wordpress.com/3095/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/getch.wordpress.com/3095/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/getch.wordpress.com/3095/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/getch.wordpress.com/3095/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/getch.wordpress.com/3095/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/getch.wordpress.com/3095/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/getch.wordpress.com/3095/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/getch.wordpress.com/3095/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/getch.wordpress.com/3095/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/getch.wordpress.com/3095/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/getch.wordpress.com/3095/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=getch.wordpress.com&amp;blog=4454835&amp;post=3095&amp;subd=getch&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://getch.wordpress.com/2011/10/15/%e0%ae%aa%e0%ae%be%e0%ae%b0%e0%af%8d%e0%ae%a4%e0%af%8d%e0%ae%a4%e0%ae%a4%e0%af%81-%e0%ae%95%e0%af%87%e0%ae%9f%e0%af%8d%e0%ae%9f%e0%ae%a4%e0%af%81-%e0%ae%aa%e0%ae%9f%e0%ae%bf%e0%ae%a4%e0%af%8d-21/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8577c3ec978785a008d71eb27a7a59a3?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">manoj1987</media:title>
		</media:content>

		<media:content url="http://getch.files.wordpress.com/2011/02/anthu.png" medium="image">
			<media:title type="html">anthu</media:title>
		</media:content>
	</item>
		<item>
		<title>திண்ணை 17.7.2011</title>
		<link>http://getch.wordpress.com/2011/10/15/%e0%ae%a4%e0%ae%bf%e0%ae%a3%e0%af%8d%e0%ae%a3%e0%af%88-17-7-2011/</link>
		<comments>http://getch.wordpress.com/2011/10/15/%e0%ae%a4%e0%ae%bf%e0%ae%a3%e0%af%8d%e0%ae%a3%e0%af%88-17-7-2011/#comments</comments>
		<pubDate>Sat, 15 Oct 2011 13:10:21 +0000</pubDate>
		<dc:creator>ManojKumar</dc:creator>
				<category><![CDATA[படித்தேன் ரசித்தேன்]]></category>
		<category><![CDATA[anthumani]]></category>
		<category><![CDATA[dinamalar]]></category>
		<category><![CDATA[varamalar]]></category>

		<guid isPermaLink="false">http://getch.wordpress.com/?p=3092</guid>
		<description><![CDATA[அரிச்சந்திர புராண விரிவுரையில் கேட்டது: எப்படியாவது அரிச்சந்திரனை, &#8220;பொய் பேசுபவன்&#8221; என்று நிரூபணம் செய்ய வேண்டும் என்ற நோக்கில், விசுவாமித்திரர், அரிச்சந்திரனைத் தொடர்கிறார். கானகத்தின் வழியே செல்கின்றனர். இரவு நேரம் நெருங்குகிறது. ஒரு புறம் பசி, தாகம், இந்த நிலையில் அரிச்சந்திரன் களைப்பு மேலீட்டால், சிறிது கண்ணயர்கிறான். இதை அறிந்த முனிவர், அரிச்சந்திரனைப் பார்த்து, &#8220;என்ன &#8230; <a href="http://getch.wordpress.com/2011/10/15/%e0%ae%a4%e0%ae%bf%e0%ae%a3%e0%af%8d%e0%ae%a3%e0%af%88-17-7-2011/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=getch.wordpress.com&amp;blog=4454835&amp;post=3092&amp;subd=getch&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:left;"><a href="http://getch.wordpress.com/2010/10/24/%e0%ae%a4%e0%ae%bf%e0%ae%a3%e0%af%8d%e0%ae%a3%e0%af%88-24-10-2010/narayanan/" rel="attachment wp-att-2101"><img class="aligncenter size-medium wp-image-2101" title="narayanan" src="http://getch.files.wordpress.com/2010/10/narayanan.jpeg?w=300&#038;h=216" alt="" width="300" height="216" /></a></p>
<p style="text-align:left;">
<p style="text-align:left;"><span style="color:#021925;">அரிச்சந்திர புராண விரிவுரையில் கேட்டது: எப்படியாவது அரிச்சந்திரனை, &#8220;பொய் பேசுபவன்&#8221; என்று நிரூபணம் செய்ய வேண்டும் என்ற நோக்கில், விசுவாமித்திரர், அரிச்சந்திரனைத் தொடர்கிறார்.</span><br />
<span style="color:#021925;">கானகத்தின் வழியே செல்கின்றனர். இரவு நேரம் நெருங்குகிறது. ஒரு புறம் பசி, தாகம், இந்த நிலையில் அரிச்சந்திரன் களைப்பு மேலீட்டால், சிறிது கண்ணயர்கிறான்.</span><br />
<span style="color:#021925;">இதை அறிந்த முனிவர், அரிச்சந்திரனைப் பார்த்து, &#8220;என்ன தூக்கமா?&#8221; என்று கேட்டார். அதற்கு மிகப் பணிவாக, &#8220;ஆம், சிறிது கண்ணயர்ந்து விட்டேன். மன்னித்தருள்க&#8230;&#8221; என்று வேண்டுகிறான் அரிச்சந்திரன்.</span><br />
<span style="color:#021925;">இந்த இடத்தில், நாம் ஓர் உண்மையைக் கவனிக்க வேண்டும். உலகில், மக்கள் அனைவரும், இம்மாதிரி களைப்பு, அசதி காரணமாக, ஒரு குட்டித் தூக்கம் போடும் போது, &#8220;என்ன, தூக்கமா?&#8221; என்று நாம் கேட்டால், &#8220;இல்லையே&#8230; விழித்துக் கொண்டுதான் இருக்கிறேன்!&#8221; என்று தான் கூறுவர். இது நாம், நம்மை அறியாமல் சொல்லும் பொய்; ஆனால், அரிச்சந்திரன் வாய் தவறிக் கூட பொய் சொல்லவில்லை.</span><br />
<span style="color:#021925;">— கதை சொன்னவர்: வடகுடி (சேங்காலிபுரம்) நாராயண தீட்சிதர்.</span></p>
<p style="text-align:center;">
<span style="color:#000000;">***</span></p>
<p style="text-align:left;"><span style="color:#25031e;">பாரதியார் வீட்டில் மிகவும் வறுமை. அவர் மனைவி செல்லம்மாள், யார் வீட்டிலோ, கடனாக அரைப்படி அரிசி வாங்கி வந்து, சமைப்பதற்காக வைத்திருக்கிறார்.</span><br />
<span style="color:#25031e;">பாரதி வருகிறார்; அரிசியைப் பார்க்கிறார். வீட்டுக் கொல்லைப்புறம் மேய்ந்து திரியும் குருவிகளைப் பார்க்கிறார். உடனே, ஒரு கை அரிசியை அள்ளி, குருவிகளுக்கு இறைக்கிறார். அவை, அரிசியைப் பொறுக்கித் தின்று பசியாறுவதைப் பார்த்து ரசிக்கிறார்.</span><br />
<span style="color:#25031e;">இந்த நினைவோடு, &#8220;தமிழ்ப்பாவை&#8221; என்ற பழைய சிற்றிதழ் ஒன்றைப் புரட்டிக் கொண்டிருந்தேன். அதன் ஆசிரியர் கருணைதாசன் என்பவர், பாரதியின் சீடர்; பாரதிதாசனுடன் பழகியவர். அவர், அந்தப் பத்திரிகையில், பாரதிதாசன் பற்றி நினைவு கூர்கிறார்:</span><br />
<span style="color:#25031e;">மதுரை சேதுபதி உயர்நிலை பள்ளிக்கு, 1957ல் வருகை தந்தார் பாரதிதாசன். அன்று மதியம், என் வீட்டிற்கு உணவருந்த வரும்படி கேட்டேன்; அவரும் ஒப்புக் கொண்டார். &#8220;என்ன உணவு ஐயா, உங்களுக்குப் பிடித்தமானவை?&#8221; என்று கேட்டேன்.</span><br />
<span style="color:#25031e;">அவர் சிரித்துக் கொண்டே, &#8220;உன் மனைவி, படித்த பெண் ஆயிற்றே&#8230; நல்லா சமைப்பாளா?&#8221; என்று கேட்டார்.</span><br />
<span style="color:#25031e;">&#8220;திருமணமான போது, என் மனைவிக்கு சமைக்கத் தெரியாது; இப்போது கைவந்த கலை!&#8221; என்றேன் நான்.</span><br />
<span style="color:#25031e;">&#8220;அப்படீன்னா, நாலைந்து புறாக் குஞ்சு வாங்கி, பக்குவமா சமைக்கச் சொல்லு&#8230; உடம்புக்கு நல்லது. 15 &#8211; 20 நாள் குஞ்சாக இருக்கட்டும்&#8230;&#8221; என்றார்.</span><br />
<span style="color:#25031e;">அதன்படி, பக்கத்திலுள்ள கோச்சடை என்ற இடத்துக்கு ஆள் அனுப்பி, சிறு புறாக் குஞ்சுகளாக வாங்கி வந்து சமைத்து வைத்தோம்.</span><br />
<span style="color:#25031e;">நன்கு சுவைத்து, உண்டு மகிழ்ந்தார் கவிஞர்.</span><br />
<span style="color:#25031e;">— தமிழ்ப்பாவை, 1.5.1989 இதழிலிருந்து&#8230;</span></p>
<p style="text-align:left;">
<p style="text-align:left;">Article source: Dinamalar</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/getch.wordpress.com/3092/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/getch.wordpress.com/3092/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/getch.wordpress.com/3092/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/getch.wordpress.com/3092/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/getch.wordpress.com/3092/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/getch.wordpress.com/3092/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/getch.wordpress.com/3092/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/getch.wordpress.com/3092/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/getch.wordpress.com/3092/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/getch.wordpress.com/3092/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/getch.wordpress.com/3092/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/getch.wordpress.com/3092/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/getch.wordpress.com/3092/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/getch.wordpress.com/3092/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=getch.wordpress.com&amp;blog=4454835&amp;post=3092&amp;subd=getch&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://getch.wordpress.com/2011/10/15/%e0%ae%a4%e0%ae%bf%e0%ae%a3%e0%af%8d%e0%ae%a3%e0%af%88-17-7-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8577c3ec978785a008d71eb27a7a59a3?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">manoj1987</media:title>
		</media:content>

		<media:content url="http://getch.files.wordpress.com/2010/10/narayanan.jpeg?w=300" medium="image">
			<media:title type="html">narayanan</media:title>
		</media:content>
	</item>
		<item>
		<title>பார்த்தது..கேட்டது..படித்தது 17.7.2011</title>
		<link>http://getch.wordpress.com/2011/10/15/%e0%ae%aa%e0%ae%be%e0%ae%b0%e0%af%8d%e0%ae%a4%e0%af%8d%e0%ae%a4%e0%ae%a4%e0%af%81-%e0%ae%95%e0%af%87%e0%ae%9f%e0%af%8d%e0%ae%9f%e0%ae%a4%e0%af%81-%e0%ae%aa%e0%ae%9f%e0%ae%bf%e0%ae%a4%e0%af%8d-20/</link>
		<comments>http://getch.wordpress.com/2011/10/15/%e0%ae%aa%e0%ae%be%e0%ae%b0%e0%af%8d%e0%ae%a4%e0%af%8d%e0%ae%a4%e0%ae%a4%e0%af%81-%e0%ae%95%e0%af%87%e0%ae%9f%e0%af%8d%e0%ae%9f%e0%ae%a4%e0%af%81-%e0%ae%aa%e0%ae%9f%e0%ae%bf%e0%ae%a4%e0%af%8d-20/#comments</comments>
		<pubDate>Sat, 15 Oct 2011 13:05:46 +0000</pubDate>
		<dc:creator>ManojKumar</dc:creator>
				<category><![CDATA[படித்தேன் ரசித்தேன்]]></category>
		<category><![CDATA[anthumani]]></category>
		<category><![CDATA[dinamalar]]></category>
		<category><![CDATA[varamalar]]></category>

		<guid isPermaLink="false">http://getch.wordpress.com/?p=3085</guid>
		<description><![CDATA[ஆத்தூர் அருகே உள்ளது தம்பம்பட்டி. அங்கே சர்க்கிள் இன்ஸ்பெக்டராக இருந்தார் நண்பர் ஒருவர். ஆசாமிக்கு அப்போது, சுட்டுப் போட்டாலும் சட்டத்தில் ஒரு வரிக் கூடத் தெரியாது. ஒருநாள், இவரது போலீஸ் எல்லைக்கு உட்பட்ட ரோடு ஒன்றில் விபத்து. மோட்டார் சைக்கிளில் வந்த ஒருவரை லாரியோ, பஸ்சோ, காரோ, ஜீப்போ அடித்துப் போட்டு விட்டு பறந்து விட்டது. &#8230; <a href="http://getch.wordpress.com/2011/10/15/%e0%ae%aa%e0%ae%be%e0%ae%b0%e0%af%8d%e0%ae%a4%e0%af%8d%e0%ae%a4%e0%ae%a4%e0%af%81-%e0%ae%95%e0%af%87%e0%ae%9f%e0%af%8d%e0%ae%9f%e0%ae%a4%e0%af%81-%e0%ae%aa%e0%ae%9f%e0%ae%bf%e0%ae%a4%e0%af%8d-20/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=getch.wordpress.com&amp;blog=4454835&amp;post=3085&amp;subd=getch&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:left;">
<p style="text-align:left;">
<p style="text-align:left;">
<p style="text-align:left;">
<p style="text-align:left;">
<p style="text-align:left;">
<p style="text-align:left;">
<p style="text-align:left;"><span style="color:#30020a;"><a href="http://getch.wordpress.com/2011/02/13/%e0%ae%aa%e0%ae%be%e0%ae%b0%e0%af%8d%e0%ae%a4%e0%af%8d%e0%ae%a4%e0%ae%a4%e0%af%81-%e0%ae%95%e0%af%87%e0%ae%9f%e0%af%8d%e0%ae%9f%e0%ae%a4%e0%af%81-%e0%ae%aa%e0%ae%9f%e0%ae%bf%e0%ae%a4%e0%af%8d-11/anthu/" rel="attachment wp-att-2795"><img class="aligncenter size-full wp-image-2795" title="anthu" src="http://getch.files.wordpress.com/2011/02/anthu.png?w=593" alt=""   /></a></p>
<p>ஆத்தூர் அருகே உள்ளது தம்பம்பட்டி. அங்கே சர்க்கிள் இன்ஸ்பெக்டராக இருந்தார் நண்பர் ஒருவர். ஆசாமிக்கு அப்போது, சுட்டுப் போட்டாலும் சட்டத்தில் ஒரு வரிக் கூடத் தெரியாது.</span><br />
<span style="color:#30020a;">ஒருநாள், இவரது போலீஸ் எல்லைக்கு உட்பட்ட ரோடு ஒன்றில் விபத்து. மோட்டார் சைக்கிளில் வந்த ஒருவரை லாரியோ, பஸ்சோ, காரோ, ஜீப்போ அடித்துப் போட்டு விட்டு பறந்து விட்டது. பைக்கில் வந்தவர் தலத்திலேயே மரணமடைந்து விட்டார்.</span><br />
<span style="color:#30020a;">தகவல் அறிந்து, விபத்து நடந்த இடத்தைப் பார்வையிடச் சென்றார் அந்த இன்ஸ்பெக்டர் நண்பர். உடன், நீண்ட காலமாக போலீசாக இருக்கும் சட்டம் தெரிந்த ஏட்டு ஒருவரும் சென்று உள்ளார்.</span><br />
<span style="color:#30020a;">&#8220;இன்ஸ்பெக்ஷன்&#8221; முடியும் நேரத்தில், அந்த ஏட்டு, ஏதோ ஒரு செக்ஷனைச் சொல்லி, விபத்துக்குள்ளான மோட்டார் சைக்கிளை ஸ்டேஷனுக்கு எடுத்துச் செல்ல சட்டத்தில் இடமுள்ளது எனக் கூறியுள்ளார்! (பார்ட், பார்ட்டாகக் கழற்றி பயன்படுத்திக் கொள்ளவோ &#8211; விற்கவோ செய்யலாமே!)</span><br />
<span style="color:#30020a;">நம் இன்ஸ்பெக்டர் நண்பர் தான், &#8220;சட்டப் புலி&#8221;யாயிற்றே&#8230; தம் அறியாமையை ஏட்டின் முன் காண்பிக்க விரும்பாமல், தன் ஜீப் டிரைவரைப் பார்த்து, &#8220;வண்டியை எடுய்யா&#8230; வயிறே சரியில்லை&#8230; ஒரேயடியா கலக்குது. குவாட்டர்சுக்கு உடனே வண்டியை விடு!&#8221; எனக் கூறவும், &#8220;ஐயா&#8230;&#8221; என்றபடியே, ஜீப்பை விரட்டியுள்ளார் டிரைவர்.</span><br />
<span style="color:#30020a;">ஏட்டு கூறிய செக்ஷனை வழியெல்லாம் மனப்பாடம் செய்தபடியே குவாட்டர்சை வந்தடைந்துள்ளார் இன்ஸ்பெக்டர். வீட்டினுள் சென்று சட்டப் புத்தகங்களைப் புரட்டி, ஏட்டு சொன்ன செக்ஷனைக் கண்டு</span><br />
<span style="color:#30020a;">பிடித்து, அவர் சொன்னது சரி தான் என்பதை உறுதி செய்து கொண்ட பின், ஸ்டேஷனை அடைந்துள்ளார்.</span><br />
<span style="color:#30020a;">பின்னர் வயிற்றை தடவியபடி, &#8220;ஓட்டல் சாப்பாடு (இவரது குடும்பம் சென்னையில் இருந்ததால் ஓட்டல் சாப்பாடு!) வயித்துக்கு ஒத்துக்கல&#8230; இப்போ தான், &#8220;ரிலாக்ஸ்ட்&#8221; ஆக இருக்கு!&#8221; எனக் கூறி, தன் செயலை ஏட்டிடம் நியாயப்படுத்தி விட்டு, &#8220;அந்த செக்ஷனிலேயே போட்டுடுங்க&#8230; மோட்டார் பைக்கை கைப்பற்றி ஸ்டேஷனுக்கு கொண்டு வர ஏற்பாடு செஞ்சுடுங்க!&#8221; என பந்தாவாகக் கூறியுள்ளார்.</span><br />
<span style="color:#30020a;">லஞ்சமே வாங்கத் தெரியாத இவருக்காக இரண்டு முறை, &#8220;ஹெல்ப்&#8221; செய்திருக்கிறேன். &#8220;மணி&#8230; தம்பம்பட்டி வந்து இரண்டு வருஷமாகி விட்டது. குழந்தைகளையும், குடும்பத்தையும் பிரிந்து இருப்பது கஷ்டமாக இருக்கிறது. சென்னைக்கு, &#8220;டிரான்ஸ்பர்&#8221; வாங்கிக் கொடேன்!&#8221; என்றார்; செய்தேன்.</span><br />
<span style="color:#30020a;">அடுத்த முறை, ஒருநாள், பீச் மீட்டிங் நடந்து கொண்டு இருந்த போது, திடுதிப்பென்று வந்து, என்னை தனியே அழைத்து, &#8220;வருமானம் போதல&#8230; ராஜினாமா கடிதம் கொடுத்து விட்டேன். அமெரிக்கா போயி ஏதாவது வேல தேடிக்கப் போறேன்&#8230;&#8221; என்றாரே பார்க்கணும்.</span><br />
<span style="color:#30020a;">எலக்டிரிக் ஷாக் அடித்தது போல இருந்தது எனக்கு.</span><br />
<span style="color:#30020a;">&#8220;இருக்கறத விட்டு, பறக்கறதப் பிடிக்கணுமுன்னு நெனக்கிறீங்களே&#8230; அமெரிக்காவுல உங்க மாமனாரா வேலய தங்க தட்டுல வச்சு காத்துக்கிட்டு இருக்காரு? அது போக, மெட்ராசுல இருக்கிற, விசா குத்துற அமெரிக்காகாரங்க என்ன இளிச்சவாயர்களா? கண்ணுல வெளக்கெண்ணை விட்டுக்கிட்டு உட்காந்திருக்காங்க&#8230; உங்களுக்கெல்லாம் விசாவே</span><br />
<span style="color:#30020a;">தர மாட்டாங்க&#8230;&#8221; என பலவாறாக கூறிய பின், போலீஸ் வேலையில் தொடர ஒப்புக் கொண்டார்.</span><br />
<span style="color:#30020a;">போலீஸ் உயர் மட்டத்தில் கூறி, இவரது ராஜினாமாவை ஏற்காதிருக்கச் சொல்ல வேண்டுமே&#8230; அப்போது கமிஷனராக இருந்தவர் ஒரு, &#8220;டப்&#8221; ஆசாமி. சந்தன வீரப்பனை பிடிக்கச் சென்ற அவரை, கமிஷனராகப் போட்டிருந்தனர், கடைசியில் வீரப்பனின் சகாப்தம் இவரால் தான் முடிவுக்கு வந்தது.</span><br />
<span style="color:#30020a;">இவருக்கும், எனக்கும், ஏற்கனவே ஒரு விஷயத்தில், டெலிபோன் உரையாடல் தடித்துப் போனது உண்டு. அதனால், நண்பரின் ராஜினாமா விஷயத்தில் நான் நேரடியாக இறங்கினால், எதிர் விளைவு உண்டாகி விடக் கூடாதே&#8230; கடைசியில் வேறு ஒருவர் உதவியுடன் வேலையை தக்க வைத்துக் கொடுத்தேன்.</span><br />
<span style="color:#30020a;">அந்த அதிகாரியுடன் அதன் பின் சுமூக உறவு ஏற்பட்டு விட்டது வேறு விஷயம். தம் மகன் &#8211; மகள் திருமணத்திற்கு பத்திரிகை வைத்தார்&#8230; வருடம் தவறாமல், புத்தாண்டு வாழ்த்து, தம் கை படவே எழுதி அனுப்பி வைக்கிறார்.</span><br />
<span style="color:#30020a;">கம்மிங் பேக் டு த பாயின்ட்&#8230; அந்த இன்ஸ்பெக்டர் நண்பர் இப்போது சட்டத்தைக் கரைத்து குடித்து விட்டார். தற்போதைய உயரதிகாரிகளிடம் நேரடியாக, &#8220;ரிப்போர்ட்&#8221; செய்யும் ஒரு பணியில் இருக்கிறார்.</span><br />
<span style="color:#30020a;">தம்பம்பட்டியில் நண்பர் பணியில் இருந்த போது, சேலம் செல்லும் வழியில் ஒருமுறை அவரை சந்தித்தேன். அப்போது, அருகில் இருக்கும் பச்சை மலைக்கு அழைத்துச் செல்வதாகவும், அங்குள்ள பள்ளியில் இரண்டு தினங்கள் தங்கி, காட்டை சுற்றிப் பார்க்கலாம் எனவும் கூறி இருந்தார்.</span><br />
<span style="color:#30020a;">அப்போது சந்தர்ப்பம் அமையாததால், கடந்த வாரத்தில், &#8220;ஸ்கார்ப்பியோ&#8221; ஜீப் ஒன்றை எடுத்துக் கொண்டு, லென்ஸ் மாமா, குப்பண்ணா, பாலு என்ற பாஸ்கர், ஞானசேகரன் என, ஒரு கோஷ்டியாக பச்சை மலைக்குக் கிளம்பினோம்.</span><br />
<span style="color:#30020a;">மலை பற்றிய விவரங்கள் தெரிந்த ஒருவர் உதவிக்கு வேண்டுமே! போலீசுக்கு துப்பு சொல்லும், &#8220;இன்பார்மர்&#8221; ஒருவரை ஏற்பாடு செய்து கொடுத்தனர் வேண்டியவர்கள்.</span><br />
<span style="color:#30020a;">இட்லி, பரோட்டா, சிக்கன், குருமா, தயிர் சாதம் என பார்சல் செய்து, கிளம்பினோம்.</span><br />
<span style="color:#30020a;">அன்றைய காலை நாளிதழ்கள் அனைத்தையும் வாங்கிக் கொண்டேன்.</span><br />
<span style="color:#30020a;">மலை ஏறத் தொடங்கியதும், &#8220;பாரஸ்ட் செக்-போஸ்ட்&#8221; தடுப்பு கம்பி வண்டியை நிறுத்தியது. வனக்காவலர் ஒருவர் வந்து, &#8220;எங்கிருந்து வர்றீங்க?&#8221; எனக் கேட்டார்.</span><br />
<span style="color:#30020a;">டிரைவிங் சீட்டில் இருந்த நாராயணன் பதில் சொன்னார்:</span><br />
<span style="color:#30020a;">&#8220;சென்னை!&#8221;</span><br />
<span style="color:#30020a;">&#8220;வாகன ஓட்டுனரே இங்கே வாருங்கள்!&#8221; சென்றார் நாராயணன்.</span><br />
<span style="color:#30020a;">&#8220;உங்க பெயர் என்ன?&#8221;</span><br />
<span style="color:#30020a;">&#8220;வயது என்ன?&#8221;</span><br />
<span style="color:#30020a;">&#8220;தகப்பனார் பெயர் &#8211; வயது என்ன?&#8221;</span><br />
<span style="color:#30020a;">&#8220;முகவரி என்ன?&#8221;</span><br />
<span style="color:#30020a;">எல்லாவற்றுக்கும் பதில் சொன்னார்.</span><br />
<span style="color:#30020a;">&#8220;எங்கே போறீங்க, அருவிக்கா&#8230; காளி கோவிலுக்கா?&#8221;</span><br />
<span style="color:#30020a;">ஒரு நிமிடம் தடுமாறிய நாராயணன், சுதாரித்து, &#8220;காளி கோவிலுக்கு&#8230;&#8221; என்றார்.</span><br />
<span style="color:#30020a;">&#8220;எதற்கு?&#8221;</span><br />
<span style="color:#30020a;">&#8220;தரிசனம் செய்ய!&#8221;</span><br />
<span style="color:#30020a;">அதையும் எழுதி, ஜீப் நுழைவு கட்டணமாக, ஆறுபது ரூபாய் கேட்டார்; அதற்கு ரசீதும் கொடுத்தார். 100 ரூபாயில் மீதம், 40ஐ அவரையே வைத்துக் கொள்ளச் சொன்னதும், வாயெல்லாம் சிரிப்பாக, பெரிய சல்யூட் அடித்து, &#8220;நல்லபடியா போய் வாங்க சார்&#8230;&#8221; என, அனுப்பி வைத்தார்!</span></p>
<p style="text-align:center;"><span style="color:#30020a;">*** </span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/getch.wordpress.com/3085/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/getch.wordpress.com/3085/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/getch.wordpress.com/3085/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/getch.wordpress.com/3085/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/getch.wordpress.com/3085/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/getch.wordpress.com/3085/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/getch.wordpress.com/3085/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/getch.wordpress.com/3085/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/getch.wordpress.com/3085/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/getch.wordpress.com/3085/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/getch.wordpress.com/3085/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/getch.wordpress.com/3085/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/getch.wordpress.com/3085/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/getch.wordpress.com/3085/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=getch.wordpress.com&amp;blog=4454835&amp;post=3085&amp;subd=getch&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://getch.wordpress.com/2011/10/15/%e0%ae%aa%e0%ae%be%e0%ae%b0%e0%af%8d%e0%ae%a4%e0%af%8d%e0%ae%a4%e0%ae%a4%e0%af%81-%e0%ae%95%e0%af%87%e0%ae%9f%e0%af%8d%e0%ae%9f%e0%ae%a4%e0%af%81-%e0%ae%aa%e0%ae%9f%e0%ae%bf%e0%ae%a4%e0%af%8d-20/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8577c3ec978785a008d71eb27a7a59a3?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">manoj1987</media:title>
		</media:content>

		<media:content url="http://getch.files.wordpress.com/2011/02/anthu.png" medium="image">
			<media:title type="html">anthu</media:title>
		</media:content>
	</item>
	</channel>
</rss>
