<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>transliteration on S Anand</title>
    <link>https://www.s-anand.net/blog/tag/transliteration/</link>
    <description>Recent content in transliteration on S Anand</description>
    <generator>Hugo -- 0.164.0</generator>
    <language>en-us</language>
    <lastBuildDate>Mon, 23 Mar 2009 15:35:45 +0000</lastBuildDate>
    <atom:link href="https://www.s-anand.net/blog/tag/transliteration/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Tamil spelling corrector</title>
      <link>https://www.s-anand.net/blog/tamil-spelling-corrector/</link>
      <pubDate>Tue, 01 May 2007 12:00:00 +0000</pubDate>
      <guid>https://www.s-anand.net/blog/tamil-spelling-corrector/</guid>
      <description>&lt;p&gt;The Internet has a lot of tamil song lyrics in English. Finding them is not easy, though. Two problems. The lyrics are fragmented: there&amp;rsquo;s no one site to search them. And Google doesn&amp;rsquo;t help. It doesn&amp;rsquo;t know that alaipaayudhe, alaipaayuthe and alaipayuthey are the same word.&lt;/p&gt;
&lt;p&gt;This is similar to the problem I faced with &lt;a href=&#34;https://www.s-anand.net/blog/hindi-songs-online/&#34;&gt;tamil audio&lt;/a&gt;. The solution, as before, is to make an index, and provide a search interface that is tolerant of English spellings of Tamil words. But I want to go a step further. &lt;strong&gt;Is it possible to display these lyrics in Tamil?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;My &lt;a href=&#34;https://www.s-anand.net/blog/Tamil_transliterator.html&#34;&gt;Tamil Transliterator&lt;/a&gt; does a lousy job of this. Though it&amp;rsquo;s tolerant of mistakes, it&amp;rsquo;s ignorant of spelling and grammer. So,&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;kanda nal muthalai kathal peruguthadi&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&amp;hellip; becomes&amp;hellip;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;kanda nal muthalai kathal peruguthadi&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&amp;hellip; when in fact we want&amp;hellip;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;kanda naaL muthalaay kaathal peruguthadi&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;(If you&amp;rsquo;re viewing this on an RSS reader, check &lt;a href=&#34;https://www.s-anand.net/blog/tamil-spelling-corrector/&#34;&gt;my post&lt;/a&gt; to see what I mean.)&lt;/p&gt;
&lt;p&gt;I need an automated Tamil spelling corrector. Reading &lt;a href=&#34;http://www.norvig.com/spell-correct.html&#34;&gt;Peter Norvig&amp;rsquo;s &amp;ldquo;How to Write a Spelling Corrector&amp;rdquo;&lt;/a&gt; and actually having understood it, I gave spelling correction in Tamil a shot.&lt;/p&gt;
&lt;p&gt;Norvig&amp;rsquo;s approach, in simple terms, is this:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Get a dictionary&lt;/li&gt;
&lt;li&gt;Tweak the word you want to check (add a letter, delete one, swap 2 letters, etc.)&lt;/li&gt;
&lt;li&gt;Pick all tweaks that get you to a valid word on the dictionary&lt;/li&gt;
&lt;li&gt;Choose the most likely correction (most common correct word, adjusted for the probability of that mistake happening)&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Making a dictionary is easy. I just need lots of Tamil literature, and then I pick out words from it. For now, I&amp;rsquo;m just using the texts in &lt;a href=&#34;http://www.tamil.net/projectmadurai&#34;&gt;Project Madurai&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Tweaking the word to check is easy. Norvig&amp;rsquo;s article has a working code example.&lt;/p&gt;
&lt;p&gt;Picking valid tweaks is easy. Just check against the dictionary.&lt;/p&gt;
&lt;p&gt;The tough part is choosing the likely correction. For each valid word, I need the probability of having made this particular error.&lt;/p&gt;
&lt;p&gt;Let&amp;rsquo;s take an example. I&amp;rsquo;ve spelt kathal. A list of valid tweaks to this word include: kal, kol, kadal, kanal, and kaadhal. For each of these, I need to figure out how often the valid tweaks occur, and the probability that I typed kathal when I really meant one of these tweaks. This is what such a calculation would look like:&lt;/p&gt;
&lt;table&gt;
	&lt;thead&gt;
			&lt;tr&gt;
					&lt;th&gt;Tweak&lt;/th&gt;
					&lt;th&gt;Frequency&lt;/th&gt;
					&lt;th&gt;Probability of typing kathal&lt;/th&gt;
					&lt;th&gt;Product&lt;/th&gt;
			&lt;/tr&gt;
	&lt;/thead&gt;
	&lt;tbody&gt;
			&lt;tr&gt;
					&lt;td&gt;kal&lt;/td&gt;
					&lt;td&gt;1&lt;/td&gt;
					&lt;td&gt;0.04&lt;/td&gt;
					&lt;td&gt;0.04&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;kol&lt;/td&gt;
					&lt;td&gt;4&lt;/td&gt;
					&lt;td&gt;0.02&lt;/td&gt;
					&lt;td&gt;0.08&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;kadal&lt;/td&gt;
					&lt;td&gt;10&lt;/td&gt;
					&lt;td&gt;0.1&lt;/td&gt;
					&lt;td&gt;1.0&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;kanal&lt;/td&gt;
					&lt;td&gt;1&lt;/td&gt;
					&lt;td&gt;0.01&lt;/td&gt;
					&lt;td&gt;0.01&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;kaadhal&lt;/td&gt;
					&lt;td&gt;6&lt;/td&gt;
					&lt;td&gt;0.25&lt;/td&gt;
					&lt;td&gt;1.50&lt;/td&gt;
			&lt;/tr&gt;
	&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;Once we have this, we can see that kaadhal is the right one &amp;ndash; it has the maximum value (1.50) in the last column, where we multiply the frequency and the probability.&lt;/p&gt;
&lt;p&gt;(You probably realise how small my dictionary is, looking at the frequencies. Well, that&amp;rsquo;s how big &lt;a href=&#34;http://www.tamil.net/projectmadurai&#34;&gt;Project Madurai&lt;/a&gt; is. But increasing the size of a dictionary is a trivial problem.)&lt;/p&gt;
&lt;p&gt;Anyway, getting the frequency is easy. How do I get the probabilities, though? That&amp;rsquo;s what I&amp;rsquo;m working on right now.&lt;/p&gt;
&lt;hr&gt;
&lt;h2 id=&#34;comments&#34;&gt;Comments&lt;/h2&gt;
&lt;!-- wp-comments-start --&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;SDW&lt;/strong&gt; &lt;em&gt;1 May 2007 9:01 am&lt;/em&gt;:
Hi there, with regards to &amp;lsquo;Thendral Ennai Mutham Itathu&amp;rsquo; as described on &lt;a href=&#34;http://www.s-anand.net/blog/classical-ilayaraja/&#34;&gt;http://www.s-anand.net/blog/classical-ilayaraja/&lt;/a&gt;, the female voice was not SPS but B.S. Sasirekha. fyi please.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;ரவிசங்கர்&lt;/strong&gt; &lt;em&gt;4 May 2007 5:33 pm&lt;/em&gt;:
நல்ல முயற்சி, அணுகுமுறை.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Ravi&lt;/strong&gt; &lt;em&gt;11 May 2007 2:36 pm&lt;/em&gt;:
Good article. I am very interested in text analysis, phrase extraction too (and statistical machine translation, if you will :) Is not probability just the number of occurences of each of these divided by total number of occurence? Maybe I am missing something. Did you also consider using Vikatan or Kumudam article data in addition to Project Madurai to get contemporary word counts and probabilities? It is one of my projects to create a word frequency list for Tamil. Now that I see another active soul, I might start the project :) Python or ruby I am wondering&amp;hellip;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;kooliip&lt;/strong&gt; &lt;em&gt;1 May 2007 12:00 pm&lt;/em&gt;:
meaning for saroja sama nikalo&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;GANESH&lt;/strong&gt; &lt;em&gt;1 May 2007 12:00 pm&lt;/em&gt;:
I LOVE YOU SUJA CHELLAM&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;a href=&#34;mailto:hajaroz@yahoo.com&#34;&gt;hajaroz@yahoo.com&lt;/a&gt;&lt;/strong&gt; &lt;em&gt;1 May 2007 12:00 pm&lt;/em&gt;:
please give me that spelling checking software&amp;hellip;.it is very good and it is new one&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;v.arul&lt;/strong&gt; &lt;em&gt;14 Aug 2008 6:39 am&lt;/em&gt;:
Give me the correct tamil spelling for unnippaga&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;shamu&lt;/strong&gt; &lt;em&gt;10 Sep 2008 12:17 am&lt;/em&gt;:
தமிழ்லில் எழுதுவதற்கு முய்ற்சி&lt;br&gt;
ந்ன்றி&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;nita&lt;/strong&gt; &lt;em&gt;29 Dec 2009 3:39 pm&lt;/em&gt;:
hi i would like to know if there are any resources online which would help me to check if my spellings in tamil typing are right? i am not very confortable with tamil so i can use the help of spell check, i would be most greatful! kindly help, thanks:)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;prabhu&lt;/strong&gt; &lt;em&gt;13 Aug 2011 8:43 am&lt;/em&gt;:
Hi anand,
Do you have any tamil spell checker tool online. If yes, please provide the link asap. Thanks in advance.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;thamizh selvan&lt;/strong&gt; &lt;em&gt;19 Mar 2011 4:09 pm&lt;/em&gt;:
i want to know the exact spelling of thamizh selvan in tamil . whether a connecting letter will come between thamizh and selvan or not .. thank you&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;chandroo&lt;/strong&gt; &lt;em&gt;19 Aug 2012 6:02 am&lt;/em&gt;:
I need a Tamil spell checking software.Please tell me.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;saranraj&lt;/strong&gt; &lt;em&gt;1 Jan 2013 9:00 am&lt;/em&gt;:
Please let me know the correct spelling for the tamil word &amp;ldquo;Nadathanum&amp;rdquo;.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;a href=&#34;https://github.com/arcturusannamalai/open-tamil&#34;&gt;Muthu&lt;/a&gt;&lt;/strong&gt; &lt;em&gt;29 Apr 2015 5:37 am&lt;/em&gt;:
You may do easy text processing of Tamil content using open-tamil library in Python.
$ pip install open-tamil
To convert your data into Tamil letters (not Unicode code-points) you can type in Python,
&lt;blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;import tamil
letters = tamil.utf8.get_letters( data )
Thanks,
-Muthu&lt;/p&gt;
&lt;/blockquote&gt;
&lt;/blockquote&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;!-- wp-comments-end --&gt;
</description>
    </item>
    <item>
      <title>Google search in Tamil</title>
      <link>https://www.s-anand.net/blog/google-search-in-tamil/</link>
      <pubDate>Fri, 06 Oct 2006 12:00:00 +0000</pubDate>
      <guid>https://www.s-anand.net/blog/google-search-in-tamil/</guid>
      <description>&lt;p&gt;When I wrote my &lt;a href=&#34;https://www.s-anand.net/blog/tamil-song-lyrics-quiz-2000s/&#34;&gt;Tamil song lyrics quizzes&lt;/a&gt;, I had two problems:&lt;/p&gt;&lt;ol&gt;
&lt;li&gt;I can&#39;t write in Tamil (not on paper, nor on a computer)&lt;/li&gt;
&lt;li&gt;&lt;b&gt;I can&#39;t spell right in Tamil&lt;/b&gt; (&amp;#2984; vs &amp;#2985;, &amp;#2992; vs &amp;#2993;)&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;I overcame the first using a &lt;a href=&#34;https://www.s-anand.net/blog/tamil-transliterator/&#34;&gt;Tamil transliterator&lt;/a&gt;. I write in English, and you see it in Tamil.&lt;/p&gt;
&lt;p&gt;The problem of &amp;#2984; vs &amp;#2985; was simple. &amp;#2984; occurs as the first letter of a word, and just before &amp;#2980;. Nowhere else. (Is this always true?)&lt;/p&gt;
&lt;p&gt;But &amp;#2992; vs &amp;#2993; can&#39;t be solved except through experience, and I&#39;m short of that. So, rather than bother my family with every quiz, I used the wisdom of crowds. I googled both spellings of the word. &lt;b&gt;The correct spelling has more Google hits than the incorrect one&lt;/b&gt;.&lt;/p&gt;
&lt;p&gt;I did this so often, I made a Google gadget out of it.&lt;/p&gt;
&lt;script src=&#34;http://gmodules.com/ig/ifr?url=http://www.s-anand.net/a/tamilsearchgadget.xml&amp;synd=open&amp;w=320&amp;h=400&amp;title=Tamil+Google+Search&amp;border=http%3A%2F%2Fgmodules.com%2Fig%2Fimages%2F&amp;output=js&#34;&gt;&lt;/script&gt;
&lt;p&gt;Just &lt;b&gt;type the word in English, click &#39;Search&#39;, and my gadget will search in tamil&lt;/b&gt;. It&#39;s amazing how much stuff there is in Tamil on the Web, from song lyrics to texts (thirukkuraL, for example).&lt;/p&gt;
&lt;p&gt;You can add this gadget to:&lt;/p&gt;&lt;ul&gt;
&lt;li&gt;your desktop (in the Search Gadgets box, type &#34;http://www.s-anand.net/a/tamilsearchgadget.xml&#34;)&lt;/li&gt;
&lt;li&gt;your website or blog (&lt;a href=&#34;http://gmodules.com/ig/creator?synd=open&amp;url=http://www.s-anand.net/a/tamilsearchgadget.xml&#34;&gt;click here for the code&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;Google Reader. &lt;a href=&#34;http://fusion.google.com/add?feedurl=http%3A//www.s-anand.net/a/tamilsearchgadget.xml&#34;&gt;&lt;img src=&#34;http://buttons.googlesyndication.com/fusion/add.gif&#34; width=&#34;104&#34; height=&#34;17&#34; border=&#34;0&#34; alt=&#34;Add to Google&#34;&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Here&#39;s the transliteration table:&lt;/p&gt;
&lt;table class=&#34;numbers lines&#34;&gt;
&lt;tr&gt;&lt;th&gt;Tamil&lt;/th&gt;&lt;th&gt;English&lt;/th&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;#2949;&lt;/td&gt;&lt;td&gt;a               &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;#2950;&lt;/td&gt;&lt;td&gt;A or aa &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;#2951;&lt;/td&gt;&lt;td&gt;i               &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;#2952;&lt;/td&gt;&lt;td&gt;I or ee &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;#2953;&lt;/td&gt;&lt;td&gt;u               &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;#2954;&lt;/td&gt;&lt;td&gt;U or oo &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;#2958;&lt;/td&gt;&lt;td&gt;e               &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;#2959;&lt;/td&gt;&lt;td&gt;E               &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;#2960;&lt;/td&gt;&lt;td&gt;ai              &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;#2962;&lt;/td&gt;&lt;td&gt;o               &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;#2963;&lt;/td&gt;&lt;td&gt;O               &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;#2964;&lt;/td&gt;&lt;td&gt;au              &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;#2965;&lt;/td&gt;&lt;td&gt;k or g  &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;#2969;&lt;/td&gt;&lt;td&gt;n               &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;#2970;&lt;/td&gt;&lt;td&gt;ch or s &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;#2972;&lt;/td&gt;&lt;td&gt;j               &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;#2974;&lt;/td&gt;&lt;td&gt;n               &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;#2975;&lt;/td&gt;&lt;td&gt;t or d  &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;#2979;&lt;/td&gt;&lt;td&gt;N               &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;#2980;&lt;/td&gt;&lt;td&gt;th or dh&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;#2984;&lt;/td&gt;&lt;td&gt;n               &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;#2986;&lt;/td&gt;&lt;td&gt;p or b  &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;#2990;&lt;/td&gt;&lt;td&gt;m               &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;#2991;&lt;/td&gt;&lt;td&gt;y               &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;#2992;&lt;/td&gt;&lt;td&gt;r               &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;#2994;&lt;/td&gt;&lt;td&gt;l               &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;#2997;&lt;/td&gt;&lt;td&gt;v               &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;#2996;&lt;/td&gt;&lt;td&gt;zh              &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;#2995;&lt;/td&gt;&lt;td&gt;L               &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;#2993;&lt;/td&gt;&lt;td&gt;R               &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;#2999;&lt;/td&gt;&lt;td&gt;sh              &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;#3000;&lt;/td&gt;&lt;td&gt;S               &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;#3001;&lt;/td&gt;&lt;td&gt;h               &lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;
&lt;hr&gt;
&lt;h2 id=&#34;comments&#34;&gt;Comments&lt;/h2&gt;
&lt;!-- wp-comments-start --&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Madhu&lt;/strong&gt; &lt;em&gt;7 Oct 2006 6:27 am&lt;/em&gt;:
You should be at google:) and google is now considering buying youtube - remember when i posted a comment once, you said why will they buy:)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;S Anand&lt;/strong&gt; &lt;em&gt;7 Oct 2006 11:01 am&lt;/em&gt;:
Yeah, I remember the comment. Good call! Guess YOU&amp;rsquo;re the one who should be at Google :-)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;oskar lewis&lt;/strong&gt; &lt;em&gt;7 Oct 2006 12:57 pm&lt;/em&gt;:
I&amp;rsquo; ve put some links on my blog that can help you translating&amp;hellip; &lt;a href=&#34;http://www.oskarlewis.com/weblog/archives/1317&#34;&gt;http://www.oskarlewis.com/weblog/archives/1317&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Vasant&lt;/strong&gt; &lt;em&gt;7 Oct 2006 5:39 pm&lt;/em&gt;:
Hi, guess something&amp;rsquo;s wrong with your RSS feeds.. they don&amp;rsquo;t seem to reflect your latest posts&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;S Anand&lt;/strong&gt; &lt;em&gt;7 Oct 2006 6:20 pm&lt;/em&gt;:
Vasant, I subscribe to my own RSS feeds. They seem fine. Are you subscribing to &lt;a href=&#34;http://feeds.feedburner.com/sanand&#34;&gt;http://feeds.feedburner.com/sanand&lt;/a&gt;? Which RSS reader are you using? And what&amp;rsquo;s the latest post you see?&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Vasant&lt;/strong&gt; &lt;em&gt;8 Oct 2006 4:43 am&lt;/em&gt;:
I was subscribing to &lt;a href=&#34;http://www.geocities.com/root&#34;&gt;http://www.geocities.com/root&lt;/a&gt;_node/sanand.xml. Works fine with the other URL. Will change - Thanks&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Madhu&lt;/strong&gt; &lt;em&gt;9 Oct 2006 11:40 am&lt;/em&gt;:
Not able to download the gadget though. not available in google gadgets as well. would you have a link? Hope google scans ur page and reports that youtube was my idea and look at my email and automatically send me an offer;)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;S Anand&lt;/strong&gt; &lt;em&gt;9 Oct 2006 12:02 pm&lt;/em&gt;:
That&amp;rsquo;s funny, the links in the post work for me&amp;hellip; &lt;a href=&#34;http://gmodules.com/ig/creator?synd=open&amp;amp;url=http://www.s-anand.net/a/tamilsearchgadget.xml&#34;&gt;This link&lt;/a&gt; should add it to your Google home page. Don&amp;rsquo;t think you can &amp;ldquo;download&amp;rdquo; it, though. You can at best add it to Google Desktop.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Madhu&lt;/strong&gt; &lt;em&gt;12 Oct 2006 8:18 am&lt;/em&gt;:
Ok. Am able to download it as a gadget though. It says add to webpage.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Madhu&lt;/strong&gt; &lt;em&gt;17 Oct 2006 11:01 am&lt;/em&gt;:
This is an interesting website - &lt;a href=&#34;https://www.blinkx.com&#34;&gt;www.blinkx.com&lt;/a&gt;, unlike youtube and google video you can search for a variety of video sources here. Might be bought out by one of the GYM companies soon!&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Kesavan.M&lt;/strong&gt; &lt;em&gt;30 Oct 2006 10:05 am&lt;/em&gt;:
Thanks.., No more words&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Sudar&lt;/strong&gt; &lt;em&gt;4 Jan 2007 10:15 am&lt;/em&gt;:
It is fine that you did this gadget. I liked it very much. Any such project it pipeline. Can you give this transliteration table in table form?&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Sanjai Gandhi&lt;/strong&gt; &lt;em&gt;14 Feb 2007 1:53 pm&lt;/em&gt;:
its a genius thing&amp;hellip;amazing&amp;hellip;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Sathuragiri vEL&lt;/strong&gt; &lt;em&gt;26 Feb 2007 4:30 am&lt;/em&gt;:
You can have a look at &lt;a href=&#34;https://www.tise.velirs.com&#34;&gt;www.tise.velirs.com&lt;/a&gt;. We use a simialar approach but has made it more simpler.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;saravanan&lt;/strong&gt; &lt;em&gt;18 Mar 2007 5:10 am&lt;/em&gt;:
please help me how to conducts seminar about liver enzymes in liver cancer help from introduction to conclution&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;ரவிசங்கர்&lt;/strong&gt; &lt;em&gt;4 May 2007 5:25 pm&lt;/em&gt;:
நல்ல Gadget. ஆனா, பலம்-பழம், கள - கல் போன்ற வேறுபாடுகளை அறிய இந்த கூகுள் அணுகுமுறை உதவாது :) தமிழ் அகரமுதலிகள் தான் உதவும். பார்க்க - &lt;a href=&#34;http://blog.ravidreams.net/?p=152&#34;&gt;http://blog.ravidreams.net/?p=152&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;thuvan&lt;/strong&gt; &lt;em&gt;30 Oct 2008 12:29 pm&lt;/em&gt;:
we can&amp;rsquo;t convert from Tamil word to English word&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;tamil priyan&lt;/strong&gt; &lt;em&gt;21 May 2009 7:09 pm&lt;/em&gt;:
Check out &lt;a href=&#34;http://kandupidi.com/editor&#34;&gt;http://kandupidi.com/editor&lt;/a&gt; . It supports both google tranliteration as well as english phonetic typing as well which many people prefer. There is a gadget for this as well.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;a href=&#34;http://donthave&#34;&gt;John Francis&lt;/a&gt;&lt;/strong&gt; &lt;em&gt;25 Oct 2011 11:34 am&lt;/em&gt;:
finding very hard to browse in tamil and i wish to have DEMO SCREEN TO download the steps to use them immeaditely&lt;/li&gt;
&lt;/ul&gt;
&lt;!-- wp-comments-end --&gt;
</description>
    </item>
    <item>
      <title>Making a Tamil transliterator</title>
      <link>https://www.s-anand.net/blog/making-a-tamil-transliterator/</link>
      <pubDate>Mon, 28 Aug 2006 12:00:00 +0000</pubDate>
      <guid>https://www.s-anand.net/blog/making-a-tamil-transliterator/</guid>
      <description>&lt;p&gt;I&#39;ve built a simple &lt;a href=&#34;https://www.s-anand.net/blog/tamil-transliterator/&#34;&gt;Tamil transliterator&lt;/a&gt;. You can type in words in English and it will spell them out in Tamil. You can copy-paste the Tamil above into Microsoft Word, etc.&lt;/p&gt;
&lt;p&gt;You may need to &lt;a href=&#34;http://ta.wikipedia.org/wiki/Wikipedia:Font_help#Windows_2000.2F_XP.2F_2003_Family&#34;&gt;turn on tamil scripts&lt;/a&gt; to see the Tamil fonts above. If you have Windows 98, it may not work well. If you&#39;ve visited this page recently, you will need to refresh this page as well (press F5).&lt;/p&gt;
&lt;p&gt;Browse through my &lt;a href=&#34;http://transliterate.googlecode.com/&#34;&gt;Javascript&lt;/a&gt; to see how it works. Feel free to reuse.&lt;/p&gt;
&lt;p&gt;I&#39;ve also made a Google Gadget that &lt;a href=&#34;https://www.s-anand.net/blog/google-search-in-tamil/&#34;&gt;searches Google in Tamil&lt;/a&gt; using this tool.&lt;/p&gt;
&lt;p&gt;Here&#39;s what to type:&lt;/p&gt;
&lt;style&gt;table#tamil_transliterator td { border-top: 1px solid #dbdbff; padding-right: 10px; } &lt;/style&gt;
&lt;table class=&#34;numbers lines&#34;&gt;
&lt;tr&gt;&lt;th&gt;Tamil&lt;/th&gt;&lt;th&gt;English&lt;/th&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;#2949;&lt;/td&gt;&lt;td&gt;a       &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;#2950;&lt;/td&gt;&lt;td&gt;A or aa &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;#2951;&lt;/td&gt;&lt;td&gt;i       &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;#2952;&lt;/td&gt;&lt;td&gt;I or ee &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;#2953;&lt;/td&gt;&lt;td&gt;u       &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;#2954;&lt;/td&gt;&lt;td&gt;U or oo &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;#2958;&lt;/td&gt;&lt;td&gt;e       &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;#2959;&lt;/td&gt;&lt;td&gt;E       &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;#2960;&lt;/td&gt;&lt;td&gt;ai      &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;#2962;&lt;/td&gt;&lt;td&gt;o       &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;#2963;&lt;/td&gt;&lt;td&gt;O       &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;#2964;&lt;/td&gt;&lt;td&gt;au      &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;#2965;&lt;/td&gt;&lt;td&gt;k or g  &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;#2969;&lt;/td&gt;&lt;td&gt;n       &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;#2970;&lt;/td&gt;&lt;td&gt;ch or s &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;#2972;&lt;/td&gt;&lt;td&gt;j       &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;#2974;&lt;/td&gt;&lt;td&gt;n       &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;#2975;&lt;/td&gt;&lt;td&gt;t or d  &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;#2979;&lt;/td&gt;&lt;td&gt;N       &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;#2980;&lt;/td&gt;&lt;td&gt;th or dh&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;#2984;&lt;/td&gt;&lt;td&gt;n       &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;#2986;&lt;/td&gt;&lt;td&gt;p or b  &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;#2990;&lt;/td&gt;&lt;td&gt;m       &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;#2991;&lt;/td&gt;&lt;td&gt;y       &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;#2992;&lt;/td&gt;&lt;td&gt;r       &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;#2994;&lt;/td&gt;&lt;td&gt;l       &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;#2997;&lt;/td&gt;&lt;td&gt;v       &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;#2996;&lt;/td&gt;&lt;td&gt;zh      &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;#2995;&lt;/td&gt;&lt;td&gt;L       &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;#2993;&lt;/td&gt;&lt;td&gt;R       &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;#2999;&lt;/td&gt;&lt;td&gt;sh      &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;#3000;&lt;/td&gt;&lt;td&gt;S       &lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;#3001;&lt;/td&gt;&lt;td&gt;h       &lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;
&lt;p&gt;I also have a &lt;a href=&#34;https://www.s-anand.net/blog/google-search-in-tamil/&#34;&gt;gadget that lets you search in Tamil&lt;/a&gt;.&lt;/p&gt;
&lt;hr&gt;
&lt;h2 id=&#34;comments&#34;&gt;Comments&lt;/h2&gt;
&lt;!-- wp-comments-start --&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Arun&lt;/strong&gt; &lt;em&gt;31 Aug 2006 8:29 am&lt;/em&gt;:
Very cool. Why the UI change?&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;S Anand&lt;/strong&gt; &lt;em&gt;31 Aug 2006 10:55 am&lt;/em&gt;:
Mostly because I wanted to shift focus from &amp;ldquo;linking&amp;rdquo; to &amp;ldquo;writing&amp;rdquo;.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Sathya&lt;/strong&gt; &lt;em&gt;31 Aug 2006 11:06 am&lt;/em&gt;:
wow &amp;hellip; the commenting is back ! great ! In my spare time I would test this and if possible enhance the transtamil. Currently &amp;ldquo;Aiyya&amp;rdquo; does not get transliterated and so on.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;S Anand&lt;/strong&gt; &lt;em&gt;31 Aug 2006 4:19 pm&lt;/em&gt;:
Try &amp;lsquo;aiyya&amp;rsquo; with the small &amp;lsquo;a&amp;rsquo;. That works. I am allowing only lowercase except for long vowels.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Arun&lt;/strong&gt; &lt;em&gt;1 Sep 2006 6:23 am&lt;/em&gt;:
Ah, ok. Just a suggestion. Maybe you could use up more of the screen width? Lot of screen real-estate is not used currently (at least, on Firefox), so there&amp;rsquo;s a lot of scrolling (down) to do.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;S Anand&lt;/strong&gt; &lt;em&gt;1 Sep 2006 7:13 am&lt;/em&gt;:
Arun, I thought a lot about this. While this makes it tougher on people who visit my site a lot, most newcomers find a linear flow easier. Since 90% of the traffic to my site is newcomers (most regular readers use RSS), I thought it best to design it this way. Just curious &amp;ndash; what do you scroll down for? The links?&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Arun&lt;/strong&gt; &lt;em&gt;1 Sep 2006 11:55 am&lt;/em&gt;:
I scrowl down for the links, yes. Actually, I don&amp;rsquo;t check all of them out when I first see your updates. Usually, return 2-3 times a day, when I am more in the mood to read. I sometimes tend to return to your old posts 4-5 days later. Also, I was a bit confused about the separation between the links and your writings. I didn&amp;rsquo;t realize that till you explained in your previous comment. Actually, I see your updates on google reader, but for whatever reason, I check your page too. Don&amp;rsquo;t know why I do that! :-)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;sathish&lt;/strong&gt; &lt;em&gt;21 Sep 2006 3:59 am&lt;/em&gt;:
very nice anand. Thank you.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Vidya&lt;/strong&gt; &lt;em&gt;6 Oct 2006 5:42 am&lt;/em&gt;:
how can i get sri?&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Vidya&lt;/strong&gt; &lt;em&gt;6 Oct 2006 5:45 am&lt;/em&gt;:
got it.. Dont bother to reply&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;RMurali&lt;/strong&gt; &lt;em&gt;20 Nov 2006 7:06 pm&lt;/em&gt;:
Dear Anand, I got to know your site while searching London on youtube videos. you are doing a good job. keep it up !&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Victor&lt;/strong&gt; &lt;em&gt;17 Jan 2007 10:21 pm&lt;/em&gt;:
try aeiou as a word. remains as aeiou. Seems to be a method to the madness since these are all vowels&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;venkatachalam&lt;/strong&gt; &lt;em&gt;18 Jan 2007 4:46 pm&lt;/em&gt;:
thsi is very nice.can you please tell me which free software help me to do this transliteration.pl mail to &lt;a href=&#34;mailto:bvchalam1946@gmail.com&#34;&gt;bvchalam1946@gmail.com&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Siva Prasadh&lt;/strong&gt; &lt;em&gt;12 Apr 2007 3:28 pm&lt;/em&gt;:
Its very useful i like it very much&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;senthil&lt;/strong&gt; &lt;em&gt;28 Aug 2006 12:00 pm&lt;/em&gt;:
its good buddy.. very easy&amp;hellip;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;sridhar&lt;/strong&gt; &lt;em&gt;28 Aug 2006 12:00 pm&lt;/em&gt;:
Superappu&amp;hellip;..!&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;sriram&lt;/strong&gt; &lt;em&gt;28 Aug 2006 12:00 pm&lt;/em&gt;:
how do you write the character &amp;lsquo;akk&amp;rsquo;? (Aaytha ezhuthu), as in &amp;lsquo;fa&amp;rsquo; inn faathima?&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;meenakshi&lt;/strong&gt; &lt;em&gt;28 Aug 2006 12:00 pm&lt;/em&gt;:
great tool!! checked it and worked very well, only issue i had was i could not figure out how to get the nya working, as in kavinyar.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Kavitha&lt;/strong&gt; &lt;em&gt;28 Aug 2006 12:00 pm&lt;/em&gt;:
Ur site is simply excellent. Very very useful for Tamilians&amp;hellip;.Tamil Patru Ullavanga across the world.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;ராஜ் தொழில்நுட்பம்.com&lt;/strong&gt; &lt;em&gt;28 Aug 2006 12:00 pm&lt;/em&gt;:
வணக்கம் ஐயா,&lt;br&gt;
தமிழ் எண்கள் க, உ ஆகியவை செயல்படுத்தச்செய்தால் மிக நன்று. இருந்தாலும் மிக அருமை.&lt;br&gt;
இங்ஙனம், ராஜ்&lt;br&gt;
thozhilnutpam.com; geocities.com/tamildictionary&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;RAAJARAM K&lt;/strong&gt; &lt;em&gt;28 Aug 2006 12:00 pm&lt;/em&gt;:
மிக அருமை. இண்டெர்னெட் ல் இல்லாத போது உபயோகிப்பது எவ்வாறு என்று தெரிவித்தால் நன்றாக இருக்கும்.&lt;/li&gt;
&lt;/ul&gt;
&lt;!-- wp-comments-end --&gt;
</description>
    </item>
    <item>
      <title>Sanskrit transliterator</title>
      <link>https://www.s-anand.net/blog/sanskrit-transliterator/</link>
      <pubDate>Mon, 28 Aug 2006 12:00:00 +0000</pubDate>
      <guid>https://www.s-anand.net/blog/sanskrit-transliterator/</guid>
      <description>&lt;p&gt;I&amp;rsquo;ve built a simple &lt;a href=&#34;https://www.s-anand.net/blog/sanskrit-transliterator/&#34;&gt;Sanskrit transliterator&lt;/a&gt;. You can type in words in English and it will spell them out in Sanskrit. You can copy-paste the Tamil above into Microsoft Word, etc.&lt;/p&gt;
&lt;p&gt;Browse through my &lt;a href=&#34;http://transliterate.googlecode.com/&#34;&gt;Javascript&lt;/a&gt; to see how it works. Feel free to reuse.&lt;/p&gt;
&lt;hr&gt;
&lt;h2 id=&#34;comments&#34;&gt;Comments&lt;/h2&gt;
&lt;!-- wp-comments-start --&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;ND&lt;/strong&gt; &lt;em&gt;28 Aug 2006 12:00 pm&lt;/em&gt;:
Real good and absolutely quick!&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Saurabh&lt;/strong&gt; &lt;em&gt;28 Aug 2006 12:00 pm&lt;/em&gt;:
Good work, wonder how many use Sanskrit these days though! One more thing, specific to Mac users, is that Indic support is still not mature for Firefox. Safari, the inbuilt browser does a decent job though. There was an extra &amp;ldquo;S&amp;rdquo; that was appearing after each letter in Safari.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Madhu&lt;/strong&gt; &lt;em&gt;28 Aug 2006 12:00 pm&lt;/em&gt;:
Awesome, again what ur doing at Infy consulting, u shud be developing products at google:)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;KK&lt;/strong&gt; &lt;em&gt;28 Aug 2006 12:00 pm&lt;/em&gt;:
It is really awesome&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;vikram&lt;/strong&gt; &lt;em&gt;28 Aug 2006 12:00 pm&lt;/em&gt;:
i cannot see any translation in firefox 1.5.0.12 version&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Animesh&lt;/strong&gt; &lt;em&gt;28 Aug 2006 12:00 pm&lt;/em&gt;:
Good tool, but the transliteration scheme should be replaced by more standard one.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Ashwin (you know me!!)&lt;/strong&gt; &lt;em&gt;28 Aug 2006 12:00 pm&lt;/em&gt;:
nice one buddy!!although how would you deal with ambiguities like &amp;ldquo;om&amp;rdquo; ?&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Anand&lt;/strong&gt; &lt;em&gt;28 Aug 2006 12:00 pm&lt;/em&gt;:
Hmm, I wonder&amp;hellip;can you please check if the small &amp;lsquo;&amp;lsquo;i&amp;rsquo;&amp;rsquo; maatra works fine? I gave the word &amp;lsquo;&amp;lsquo;janani&amp;rsquo;&amp;rsquo; and the &amp;lsquo;&amp;lsquo;i&amp;rsquo;&amp;rsquo; gave me the maatra AFTER the second &amp;lsquo;&amp;rsquo;na&amp;rsquo;&amp;rsquo;, while it should be BEFORE. The big &amp;lsquo;&amp;lsquo;ii&amp;rsquo;&amp;rsquo;/&amp;lsquo;&amp;lsquo;I&amp;rsquo;&amp;rsquo; works fine. Also words like &amp;lsquo;&amp;lsquo;chithram&amp;rsquo;&amp;rsquo; etc - basically wherever there is a small &amp;lsquo;&amp;lsquo;i&amp;rsquo;&amp;rsquo;!&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Rama Krishna&lt;/strong&gt; &lt;em&gt;28 Aug 2006 12:00 pm&lt;/em&gt;:
Really Good. Keep up the good work&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;mohana&lt;/strong&gt; &lt;em&gt;28 Aug 2006 12:00 pm&lt;/em&gt;:
try this&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;swami neelkanth&lt;/strong&gt; &lt;em&gt;28 Aug 2006 12:00 pm&lt;/em&gt;:
thanks&lt;/li&gt;
&lt;/ul&gt;
&lt;!-- wp-comments-end --&gt;
</description>
    </item>
  </channel>
</rss>
