<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-12470452</id><updated>2011-12-05T12:53:35.810+05:30</updated><category term='tamil softwares'/><category term='ekalappai'/><category term='phusion passenger'/><category term='Technical'/><category term='VMWare'/><category term='songs'/><category term='tamil'/><category term='python'/><category term='cplusplus'/><category term='software'/><category term='Linux'/><category term='rails'/><category term='typing'/><category term='Qt'/><category term='mod_rails'/><category term='redmine'/><category term='pyside'/><category term='Namakkal'/><category term='tamilblogs'/><category term='India'/><category term='google'/><title type='text'>Mugunth's Blog</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://mugunth.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://mugunth.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Mugunth/முகுந்த்</name><uri>http://www.blogger.com/profile/08819517001563246095</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>35</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-12470452.post-5630023374317252322</id><published>2010-11-25T01:53:00.005+05:30</published><updated>2011-06-06T19:21:23.191+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='pyside'/><category scheme='http://www.blogger.com/atom/ns#' term='python'/><category scheme='http://www.blogger.com/atom/ns#' term='Qt'/><title type='text'>Getting started with pyside - Python for Qt</title><content type='html'>&lt;a href="http://www.pyside.org/"&gt;Pyside &lt;/a&gt;lets us to develop Qt applications using python language.  I started to trying out pyside recently. And I will be writing my pyside learning in the form of tutorial as my learning progresses.&lt;br /&gt;&lt;br /&gt;Here are the steps to get started in pyside:&lt;br /&gt;1. Download and install python 2.7 from here: &lt;a href="http://www.python.org/download/"&gt;http://www.python.org/download/&lt;/a&gt;&lt;br /&gt; exact URL used by me: &lt;a href="http://www.python.org/ftp/python/2.7/python-2.7.msi"&gt;http://www.python.org/ftp/python/2.7/python-2.7.msi&lt;/a&gt;&lt;br /&gt;pyside doesn't support python 3.x yet.&lt;br /&gt;&lt;br /&gt;2. After that add the python path to the environmental variables in the windows. If we run python in command window, we should get the following result to confirm python is installed correctly :&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;C:\&gt;python&lt;br /&gt;Python 2.7 (r27:82525, Jul  4 2010, 09:01:59) [MSC v.1500 32 bit (Intel)] on win&lt;br /&gt;32&lt;br /&gt;Type "help", "copyright", "credits" or "license" for more information.&lt;br /&gt;&gt;&gt;&gt; &lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;3. download pyside and install it. I used the windows binary for python 2.7 from here: &lt;a href="http://developer.qt.nokia.com/wiki/PySideBinariesWindows"&gt;http://developer.qt.nokia.com/wiki/PySideBinariesWindows&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Direct URL to download this: &lt;a href="http://www.pyside.org/files/pkg/PySide-0.4.2qt47.win32-py2.7.exe"&gt;http://www.pyside.org/files/pkg/PySide-0.4.2qt47.win32-py2.7.exe&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;3.a. In ubuntu linux(version 10.04 &amp; 10.10) pyside can be installed using the following commands:&lt;br /&gt;&lt;blockquote&gt;&lt;br /&gt;  sudo add-apt-repository ppa:pyside&lt;br /&gt;  sudo apt-get update&lt;br /&gt;  sudo apt-get install python-pyside&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;4.After its done, run the following hello world python script:&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;&lt;br /&gt;import sys&lt;br /&gt;from PySide import QtCore, QtGui&lt;br /&gt; &lt;br /&gt;app = QtGui.QApplication(sys.argv)&lt;br /&gt; &lt;br /&gt;win = QtGui.QWidget()&lt;br /&gt; &lt;br /&gt;win.resize(320, 240)  &lt;br /&gt;win.setWindowTitle("Hello, World!") &lt;br /&gt;win.show()  &lt;br /&gt; &lt;br /&gt;sys.exit(app.exec_())&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;If you are able to get a window launched, then it confirms that you have pyside installed in your system and ready to explore pyside in detail.&lt;br /&gt;&lt;br /&gt;6. optional- Once you have learned the basics, you might want to take advantage of the Qt tools like Qt Designer to speed up your development. Those tools are available as part of the Qt SDK download. You can download Qt SDK for windows from here:&lt;br /&gt;&lt;a href="http://qt.nokia.com/downloads"&gt;http://qt.nokia.com/downloads&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;7. Optional - You can speed up your Pyside learning by following the examples given in pyside website. &lt;br /&gt;You can download the examples package from this URL: &lt;a href="http://qt.gitorious.org/pyside/pyside-examples/archive-tarball/mast"&gt;http://qt.gitorious.org/pyside/pyside-examples/archive-tarball/mast&lt;/a&gt;er&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/12470452-5630023374317252322?l=mugunth.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mugunth.blogspot.com/feeds/5630023374317252322/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=12470452&amp;postID=5630023374317252322&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/5630023374317252322'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/5630023374317252322'/><link rel='alternate' type='text/html' href='http://mugunth.blogspot.com/2010/11/getting-started-with-pyside-python-for.html' title='Getting started with pyside - Python for Qt'/><author><name>Mugunth/முகுந்த்</name><uri>http://www.blogger.com/profile/08819517001563246095</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-12470452.post-7372999963940358553</id><published>2010-11-19T19:38:00.002+05:30</published><updated>2010-11-19T19:41:45.643+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='tamil softwares'/><category scheme='http://www.blogger.com/atom/ns#' term='ekalappai'/><title type='text'>eKalappai 3.0 released.</title><content type='html'>eKalappai 3.0 version is released.&lt;br /&gt;&lt;br /&gt;Here are the main features supported in this version:&lt;br /&gt;- Supports following 5 keyboards to type Tamil in Unicode encoding: Tamil99 , Phonetic, Typewriter, Bamini, Inscript&lt;br /&gt;- Keyboard shortcut (F2 key) to toggle between English and Tamil keyboards.&lt;br /&gt;- Users can change the shortcut key to toggle between English and Tamil keyboards.&lt;br /&gt;- The keyboard logic is stored in external files in scim-tables format(which is used in: http://www.scim-im.org/scim project) and some of the existing keyboards from SCIM project are reused here.&lt;br /&gt;- Tamil99 and Tamil-typewriter keymaps are made so as to near fully conform to Tamil Nadu government's prescriptive standards for extension to Unicode as in G.O.Ms 29 dated 23-06-2010 and documents attached tender call of Tamil Virtual Academy TVA/SW/2010-11.&lt;br /&gt;(Ref URLs : i) http://www.tn.gov.in/gosdb/gorders/it/it_e_29_2010.pdf ii) http://tenders.tn.gov.in/pubnowtend/uploaded/TD_tvu53245_teder_document_... )&lt;br /&gt;&lt;br /&gt;eKalappai 3.0 can be downloaded in the following URLs:&lt;br /&gt;&lt;a href="http://thamizha.com/project/ekalappai"&gt;http://thamizha.com/project/ekalappai&lt;/a&gt;&lt;br /&gt;&lt;a href="http://code.google.com/p/ekalappai/downloads/list"&gt;http://code.google.com/p/ekalappai/downloads/list&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;(Reference: http://thamizha.com/news/ekalappai-30-released)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/12470452-7372999963940358553?l=mugunth.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mugunth.blogspot.com/feeds/7372999963940358553/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=12470452&amp;postID=7372999963940358553&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/7372999963940358553'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/7372999963940358553'/><link rel='alternate' type='text/html' href='http://mugunth.blogspot.com/2010/11/ekalappai-30-released.html' title='eKalappai 3.0 released.'/><author><name>Mugunth/முகுந்த்</name><uri>http://www.blogger.com/profile/08819517001563246095</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-12470452.post-6248677315218630786</id><published>2010-09-18T18:48:00.004+05:30</published><updated>2010-09-18T19:01:12.746+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='typing'/><category scheme='http://www.blogger.com/atom/ns#' term='tamil'/><category scheme='http://www.blogger.com/atom/ns#' term='software'/><category scheme='http://www.blogger.com/atom/ns#' term='ekalappai'/><title type='text'>eKalappai 3.0 Beta3 released.</title><content type='html'>eKalappai 3.0 beta3 is released in our project code page - &lt;a href="http://code.google.com/p/ekalappai/"&gt;http://code.google.com/p/ekalappai/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Features available in "eKalappai 3.0 Beta3 version":&lt;br /&gt;1. Contains following 5 keyboards:&lt;br /&gt; Tamil99 , Phonetic, Typewriter, Bamini, Inscript&lt;br /&gt;2. Single click installer/uninstaller&lt;br /&gt;3. Keyboard shortcut (F2 key) to toggle between English and Tamil keyboards. &lt;br /&gt;4. Users can change the shortcut key &lt;br /&gt;&lt;br /&gt;It contains 5 keyboards, has option for the user to change shortcut keys to toggle keyboards. Other than these visible changes, there is a major improvement in the code. &lt;br /&gt;&lt;br /&gt;The keyboard logic is re-written to handle scim-tables format which is used by &lt;a href="http://www.scim-im.org/"&gt;scim project&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;All the 5 keyboards available now are in scim-table format. They all reside under keyboards folder inside the installation directory. &lt;br /&gt;&lt;br /&gt;This means, users who like to tweak the keyboards, can directly open the keyboard files in a notepad and edit! The format of the keyboard files are very simple and self explanatory, you can view them &lt;a href="http://code.google.com/p/ekalappai/source/browse/#svn/trunk/installer/app/keyboards"&gt;here&lt;/a&gt;. &lt;br /&gt;&lt;br /&gt;This scim-tables support opens up possibility to support any language easily. We have to just write a keyboard file using notepad and few changes in source code. So next releases will support more languages ! &lt;br /&gt;&lt;br /&gt;Keep watching &lt;a href="http://code.google.com/p/ekalappai/"&gt;http://code.google.com/p/ekalappai/&lt;/a&gt; :)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/12470452-6248677315218630786?l=mugunth.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mugunth.blogspot.com/feeds/6248677315218630786/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=12470452&amp;postID=6248677315218630786&amp;isPopup=true' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/6248677315218630786'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/6248677315218630786'/><link rel='alternate' type='text/html' href='http://mugunth.blogspot.com/2010/09/ekalappai-30-beta3-released.html' title='eKalappai 3.0 Beta3 released.'/><author><name>Mugunth/முகுந்த்</name><uri>http://www.blogger.com/profile/08819517001563246095</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-12470452.post-5198810686698594543</id><published>2010-04-02T14:08:00.003+05:30</published><updated>2010-04-02T14:11:59.622+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='typing'/><category scheme='http://www.blogger.com/atom/ns#' term='tamil'/><category scheme='http://www.blogger.com/atom/ns#' term='software'/><category scheme='http://www.blogger.com/atom/ns#' term='ekalappai'/><title type='text'>eKalappai 3.0 Beta1 released.</title><content type='html'>eKalappai 3.0 beta1, first beta version for Open-source ekalappai 3.0 series is released in our project code page - &lt;a href="http://code.google.com/p/ekalappai/"&gt;http://code.google.com/p/ekalappai/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;It contains Phonetic and tamil99 keyboards. Users can try this and let us know the issues/feedback.&lt;br /&gt;&lt;br /&gt;Features available in "eKalappai 3.0 Beta1 version":&lt;br /&gt;1. tamil99 and phonetic support&lt;br /&gt;2. Single click installer/uninstaller&lt;br /&gt;3. Keyboard shortcut (ESC key) to switch between English and Tamil keyboards.&lt;br /&gt;&lt;br /&gt;It can be downloaded from &lt;a href="http://code.google.com/p/ekalappai/downloads/list"&gt;http://code.google.com/p/ekalappai/downloads/list&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Its an open-source project and anyone with c++ knowledge can participate.  I request C++ programmers help to improve this product. Write to me if you are interested in this project.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/12470452-5198810686698594543?l=mugunth.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mugunth.blogspot.com/feeds/5198810686698594543/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=12470452&amp;postID=5198810686698594543&amp;isPopup=true' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/5198810686698594543'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/5198810686698594543'/><link rel='alternate' type='text/html' href='http://mugunth.blogspot.com/2010/04/ekalappai-30-beta1-released.html' title='eKalappai 3.0 Beta1 released.'/><author><name>Mugunth/முகுந்த்</name><uri>http://www.blogger.com/profile/08819517001563246095</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-12470452.post-1685237207305493772</id><published>2010-03-07T20:48:00.003+05:30</published><updated>2010-03-07T20:55:18.630+05:30</updated><title type='text'>eKalappai 3.0 Alpha released.</title><content type='html'>I have released &lt;span style="font-weight: bold; font-style: italic;"&gt;"eKalappai 3.0 Alpha version"&lt;/span&gt; with following features:&lt;br /&gt;1. tamil99 and phonetic support&lt;br /&gt;2. Single click installer&lt;br /&gt;3. Keyboard short cut (ESC key) to switch between English and Tamil keyboards.&lt;br /&gt;&lt;br /&gt;It can be downloaded from &lt;a href="http://code.google.com/p/ekalappai/downloads/list"&gt;http://code.google.com/p/ekalappai/downloads/list&lt;/a&gt; .&lt;br /&gt;&lt;br /&gt;I request volunteers to use this version and report your bugs in this page:&lt;br /&gt;&lt;a href="http://code.google.com/p/ekalappai/issues/list"&gt;http://code.google.com/p/ekalappai/issues/list&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/12470452-1685237207305493772?l=mugunth.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mugunth.blogspot.com/feeds/1685237207305493772/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=12470452&amp;postID=1685237207305493772&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/1685237207305493772'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/1685237207305493772'/><link rel='alternate' type='text/html' href='http://mugunth.blogspot.com/2010/03/ekalappai-30-alpha-released.html' title='eKalappai 3.0 Alpha released.'/><author><name>Mugunth/முகுந்த்</name><uri>http://www.blogger.com/profile/08819517001563246095</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-12470452.post-6526665964842490411</id><published>2010-02-10T04:51:00.004+05:30</published><updated>2010-02-10T05:23:56.296+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='tamil'/><category scheme='http://www.blogger.com/atom/ns#' term='cplusplus'/><category scheme='http://www.blogger.com/atom/ns#' term='ekalappai'/><title type='text'>eKalappai OSS source code released under GPL v3 licence</title><content type='html'>I have released the source files for the&lt;a href="http://code.google.com/p/ekalappai"&gt; new eKalappai&lt;/a&gt; under GPL V3 license.  Its available at this location:&lt;br /&gt;&lt;a href="http://code.google.com/p/ekalappai/source/browse/"&gt;http://code.google.com/p/ekalappai/source/browse/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;After spending a long time researching and learning in the net I have managed to bring out this opensource version of our popular ekalappai software.  I request intrested C++ programmers to play with this code &amp;amp; give feedback. Also you are welcome to join the project and contribute in whatever way(coding, testing, documentation, writing about the project and spread word) possible.&lt;br /&gt;&lt;br /&gt;My primary objective was not to use any commercial paid compilers. Also I wanted this code to be as portable as possible so that in future we can get this working in other operating systems. The current working ekalappai is created using&lt;a href="http://qt.nokia.com/downloads"&gt; Qt(opensource) &lt;/a&gt;&amp;amp;&lt;a href="http://www.microsoft.com/express/Downloads/#2008-Visual-CPP"&gt; VC++ express &lt;/a&gt;(this is a free version provided by Microsoft).&lt;br /&gt;&lt;br /&gt;It will be possible to remove VC++ express dependency by creating the required dll using Qt. But I havent figured this yet. Hope to do that in future.&lt;br /&gt;&lt;br /&gt;I will write a detailed developer documentation on building ekalappai using the code soon.  Keep watching the ekalappai project page &lt;a href="http://code.google.com/p/ekalappai"&gt;http://code.google.com/p/ekalappai&lt;/a&gt; for updates. Also join our discussions in our mailing list (&lt;a href="http://groups.google.com/group/freetamilcomputing"&gt;FreeTamilComputing list&lt;/a&gt;).&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/12470452-6526665964842490411?l=mugunth.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mugunth.blogspot.com/feeds/6526665964842490411/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=12470452&amp;postID=6526665964842490411&amp;isPopup=true' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/6526665964842490411'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/6526665964842490411'/><link rel='alternate' type='text/html' href='http://mugunth.blogspot.com/2010/02/ekalappai-oss-source-code-released.html' title='eKalappai OSS source code released under GPL v3 licence'/><author><name>Mugunth/முகுந்த்</name><uri>http://www.blogger.com/profile/08819517001563246095</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-12470452.post-2121987319019822841</id><published>2008-08-20T21:21:00.002+05:30</published><updated>2008-08-20T21:38:28.114+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='tamil'/><category scheme='http://www.blogger.com/atom/ns#' term='google'/><title type='text'>Google supports tamil now :)</title><content type='html'>Its great to know google now supports tamil language.&lt;br /&gt;More details here: &lt;a href="http://googleblog.blogspot.com/2008/08/google-in-tamil.html"&gt;http://googleblog.blogspot.com/2008/08/google-in-tamil.html&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/12470452-2121987319019822841?l=mugunth.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mugunth.blogspot.com/feeds/2121987319019822841/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=12470452&amp;postID=2121987319019822841&amp;isPopup=true' title='6 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/2121987319019822841'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/2121987319019822841'/><link rel='alternate' type='text/html' href='http://mugunth.blogspot.com/2008/08/google-supports-tamil-now.html' title='Google supports tamil now :)'/><author><name>Mugunth/முகுந்த்</name><uri>http://www.blogger.com/profile/08819517001563246095</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>6</thr:total></entry><entry><id>tag:blogger.com,1999:blog-12470452.post-1546365921692469752</id><published>2008-07-08T00:26:00.004+05:30</published><updated>2008-08-07T13:16:15.114+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='mod_rails'/><category scheme='http://www.blogger.com/atom/ns#' term='phusion passenger'/><category scheme='http://www.blogger.com/atom/ns#' term='redmine'/><category scheme='http://www.blogger.com/atom/ns#' term='rails'/><title type='text'>Steps to deploy redmine application in ubuntu 8.04 using mod_rails(passenger).</title><content type='html'>&lt;a href="http://www.redmine.org/"&gt;Redmine&lt;/a&gt; is my favourite project management tool written in ruby on rails. Recently I deployed this i a Ubuntu 8.04 machine using Apache2 + mod_rails.  &lt;a href="http://modrails.com/"&gt;Mod_rails&lt;/a&gt; is a apache module which has made rails deployment as easy as php deployment. You can find more details about mod_rails here: &lt;a href="http://modrails.com/"&gt;http://www.modrails.com &lt;/a&gt;&lt;br /&gt;I was able to install mod_rails and deploy redmine after doing some googling and trial &amp;amp; Errors&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Here are the steps for deploying redmine using modrails in ubuntu 8.04:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;1. Intalled Ruby language, build essential(to build gems later) and related dependent components using apt-get.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;$ sudo apt-get install ruby irb ri rdoc ruby1.8-dev libzlib-ruby libyaml-ruby libreadline-ruby libncurses-ruby libcurses-ruby libruby libruby-extras libfcgi-ruby1.8 build-essential libopenssl-ruby libdbm-ruby libdbi-ruby libdbd-sqlite3-ruby sqlite3 libsqlite3-dev libsqlite3-ruby libxml-ruby libxml2-dev&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;2. Downloaded ruby gems:&lt;br /&gt;&lt;span style="font-style: italic;"&gt;$ wget http://rubyforge.org/frs/download.php/38646/rubygems-1.2.0.tgz&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;3. untared the rubygems-1.2.0.tgz package and installed rubygems.&lt;br /&gt;&lt;span style="font-style: italic;"&gt;$ tar -xvf rubygems-1.2.0.tgz &lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;$ cd rubygems-1.2.0/&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;$ ruby setup.rb&lt;/span&gt;&lt;br /&gt;$ sudo ln -s /usr/bin/gem1.8 /usr/bin/gem (use this if /usr/bin/gem link is not created)&lt;br /&gt;&lt;br /&gt;4. Installed rails version 2.0.2 using gems. As of now Redmine works only on rails version 2.0.2 (it wont work in rails 2.1.x)&lt;br /&gt;&lt;span style="font-style: italic;"&gt;$ gem install rails --version 2.0.2&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;5. Install mod_rails(passenger). mod_rails is called as Phusion Passenger and the gem package name is passenger. Lets refer to it as passenger hereafter.&lt;br /&gt;Mod_rails requires apache2-threaded-dev apache module to be installed.&lt;br /&gt;&lt;span style="font-style: italic;"&gt;$ apt-get install apache2-threaded-dev &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;$ gem install passenger&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;6. Install passenger as apache module&lt;br /&gt;&lt;span style="font-style: italic;"&gt;$ passenger-install-apache2-module  &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;7.Deploy redmine application&lt;br /&gt;Download redmine and copy redmine folder inside web folders /var/www/&lt;br /&gt;else there will be problem in showing css files and images.&lt;br /&gt;redmine should be in this folder /var/www/redmine&lt;br /&gt;create the database and modify the config files as mentioned in the redmine install document.&lt;br /&gt;&lt;br /&gt;8.Apache2 configuration changes:&lt;br /&gt;&lt;span style="font-style: italic;"&gt;$ cd /etc/apache2/sites-available/&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;$ sudo mv default default.bkp&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Create a new default file with the following contents.&lt;br /&gt;------------------------------------------------&lt;br /&gt;NameVirtualHost *&lt;br /&gt;&lt;br /&gt;&lt;virtualhost&gt;&lt;br /&gt;&lt;br /&gt;ServerName  &lt;hostname&gt;&lt;br /&gt;ServerAlias &lt;host&gt;&lt;br /&gt;&lt;br /&gt;DocumentRoot /var/www/redmine/public&lt;br /&gt;&lt;br /&gt;&lt;directory&gt;&lt;br /&gt;        Options Indexes FollowSymLinks MultiViews&lt;br /&gt;        AllowOverride None&lt;br /&gt;        Order allow,deny&lt;br /&gt;        allow from all&lt;br /&gt;&lt;/directory&gt;&lt;br /&gt;&lt;br /&gt; ErrorLog /var/log/apache2/error.log&lt;br /&gt;&lt;br /&gt; LogLevel warn&lt;br /&gt;&lt;br /&gt; CustomLog /var/log/apache2/access.log combined&lt;br /&gt; ServerSignature On&lt;br /&gt;&lt;br /&gt;&lt;/host&gt;&lt;br /&gt;-----------------------------------------------------------------&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;9. Restart apache&lt;br /&gt;&lt;span style="font-style: italic;"&gt;$ sudo /etc/init.d/apache2 restart&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;10. Browse http://localhost , redmine should show up in the browser.&lt;br /&gt;&lt;br /&gt;Reference:&lt;br /&gt;&lt;a href="http://www.rubyhead.com/2008/04/25/installing-ruby-rails-on-ubuntu-804-hardy-heron/"&gt;http://www.rubyhead.com/2008/04/25/installing-ruby-rails-on-ubuntu-804-hardy-heron/&lt;/a&gt;&lt;/hostname&gt;&lt;/virtualhost&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/12470452-1546365921692469752?l=mugunth.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mugunth.blogspot.com/feeds/1546365921692469752/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=12470452&amp;postID=1546365921692469752&amp;isPopup=true' title='6 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/1546365921692469752'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/1546365921692469752'/><link rel='alternate' type='text/html' href='http://mugunth.blogspot.com/2008/07/steps-to-deploy-redmine-application-in.html' title='Steps to deploy redmine application in ubuntu 8.04 using mod_rails(passenger).'/><author><name>Mugunth/முகுந்த்</name><uri>http://www.blogger.com/profile/08819517001563246095</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>6</thr:total></entry><entry><id>tag:blogger.com,1999:blog-12470452.post-6177936174552329408</id><published>2008-04-20T00:43:00.002+05:30</published><updated>2008-04-20T00:54:33.947+05:30</updated><title type='text'>TamilNadu govt school textbooks available online</title><content type='html'>Got to know this news from &lt;a href="http://groups.yahoo.com/group/tamil-ulagam/message/39303"&gt;Tamilulagam discussion list&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Tamil Nadu Government has published its school texts books online(its has been mentioned as for viewing purpose only).&lt;br /&gt;Its available at this URL:  &lt;a href="http://www.textbooksonline.tn.nic.in/"&gt;http://www.textbooksonline.tn.nic.in&lt;/a&gt;/&lt;br /&gt;&lt;br /&gt;It might be helpful in many ways to students and parents(who are computer savvy). And more importantly it provides open access to the content thats being taught in Tamil Nadu schools.&lt;br /&gt;&lt;br /&gt;I dont think any other state in India has done this yet.&lt;br /&gt;&lt;br /&gt;Good move by Tamil Nadu Govt.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/12470452-6177936174552329408?l=mugunth.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mugunth.blogspot.com/feeds/6177936174552329408/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=12470452&amp;postID=6177936174552329408&amp;isPopup=true' title='6 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/6177936174552329408'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/6177936174552329408'/><link rel='alternate' type='text/html' href='http://mugunth.blogspot.com/2008/04/tamilnadu-govt-school-textbooks.html' title='TamilNadu govt school textbooks available online'/><author><name>Mugunth/முகுந்த்</name><uri>http://www.blogger.com/profile/08819517001563246095</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>6</thr:total></entry><entry><id>tag:blogger.com,1999:blog-12470452.post-7984306784353865954</id><published>2008-03-01T10:40:00.000+05:30</published><updated>2008-03-01T10:41:09.148+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='India'/><category scheme='http://www.blogger.com/atom/ns#' term='Namakkal'/><title type='text'>Verdict within 110 hrs of commiting crime in India!</title><content type='html'>Gone are the days in India where courts deliver judgement after ages...&lt;br /&gt;&lt;br /&gt;A court in &lt;a href="http://en.wikipedia.org/wiki/Namakkal"&gt;Namakkal&lt;/a&gt; (my native place), India has &lt;a href="http://www.chennaionline.com/colnews/newsitem.asp?NEWSID=%7B62D1E835-E9BF-4369-923A-A3B9138D238E%7D&amp;amp;CATEGORYNAME=CHN"&gt;delivered verdict in a murder case within 110 hours&lt;/a&gt; of the crime.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/12470452-7984306784353865954?l=mugunth.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mugunth.blogspot.com/feeds/7984306784353865954/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=12470452&amp;postID=7984306784353865954&amp;isPopup=true' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/7984306784353865954'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/7984306784353865954'/><link rel='alternate' type='text/html' href='http://mugunth.blogspot.com/2008/02/verdict-within-110-hrs-of-commiting.html' title='Verdict within 110 hrs of commiting crime in India!'/><author><name>Mugunth/முகுந்த்</name><uri>http://www.blogger.com/profile/08819517001563246095</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-12470452.post-3876494174087498628</id><published>2007-12-17T00:31:00.000+05:30</published><updated>2007-12-17T01:16:44.967+05:30</updated><title type='text'>Tamil bloggers meet at Pondicherry</title><content type='html'>Last week I had a chance to attend tamil bloggers workshop in &lt;a href="http://en.wikipedia.org/wiki/Puducherry"&gt;pondicherry.&lt;/a&gt; The workshop was organised by &lt;a href="http://pudhuvaitamilbloggers.org/"&gt;pondicherry tamil bloggers&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;This workshop is a continuation of a series of workshops organized by tamil bloggers in various parts of tamilnadu recently.&lt;br /&gt;&lt;br /&gt;About 200 members participated in this workshop. Participants were introduced to technical details of creating and maintaining their blogs in tamil language. Its well organized and there were lot of publicity done. Pondicherry Legislative Assembly speaker and Bharathidasan University vice chancellor are some of the noted figures who participated in this workshop.&lt;br /&gt;&lt;br /&gt;I took a session on using &lt;a href="http://ta.wikipedia.org/wiki/%E0%AE%8E-%E0%AE%95%E0%AE%B2%E0%AE%AA%E0%AF%8D%E0%AE%AA%E0%AF%88"&gt;ekalappai&lt;/a&gt;&lt;a href="http://ta.wikipedia.org/wiki/%E0%AE%8E-%E0%AE%95%E0%AE%B2%E0%AE%AA%E0%AF%8D%E0%AE%AA%E0%AF%88"&gt; &lt;/a&gt;- tamil typing software for windows.&lt;br /&gt;&lt;br /&gt;You can the pictures taken in the workshop:&lt;br /&gt;&lt;a href="http://tamilveli-news.blogspot.com/"&gt;http://tamilveli-news.blogspot.com/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;This shows that tamil bloggers are growing in numbers and getting organized.&lt;br /&gt;In this bloggers meet, some of us decided to take tamil computing workshops to next step. Thus &lt;a style="font-weight: bold;" href="http://osaichella.blogspot.com/2007/12/1000.html"&gt;"Project Tamil Ready"&lt;/a&gt; was born. More details about project tamil ready is in &lt;a href="http://osaichella.blogspot.com/2007/12/1000.html"&gt;chella's blog.&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;My assumption is, there are roughly 3000 tamil blogs which is the highest in any Indian language. Even in hindi there are roughly only about 1000 blogs (if anybody else have a disputing figure please feel free to comment).&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/12470452-3876494174087498628?l=mugunth.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mugunth.blogspot.com/feeds/3876494174087498628/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=12470452&amp;postID=3876494174087498628&amp;isPopup=true' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/3876494174087498628'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/3876494174087498628'/><link rel='alternate' type='text/html' href='http://mugunth.blogspot.com/2007/12/tamil-bloggers-meet-at-pondicherry.html' title='Tamil bloggers meet at Pondicherry'/><author><name>Mugunth/முகுந்த்</name><uri>http://www.blogger.com/profile/08819517001563246095</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-12470452.post-3633767712209064743</id><published>2007-11-25T22:58:00.000+05:30</published><updated>2007-11-25T23:50:54.645+05:30</updated><title type='text'>Tamils Protest in Malaysia</title><content type='html'>I have lived in Malaysia for about 4 years and have known the problems faced by the tamil community.&lt;br /&gt;&lt;br /&gt;I watched with heavy heart some of the videos in the net. The way the peaceful protest were handled by Malaysian authorities is very bad. The world leaders should condemn this.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.youtube.com/watch?v=m96FCTKHNA8"&gt;&lt;br /&gt;Ethnic Indians protest in Malaysia&lt;/a&gt;&lt;br /&gt;&lt;object width="425" height="355"&gt;&lt;param name="movie" value="http://www.youtube.com/v/m96FCTKHNA8&amp;rel=1"&gt;&lt;/param&gt;&lt;param name="wmode" value="transparent"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/m96FCTKHNA8&amp;rel=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.youtube.com/watch?v=1Gx3VRW_2-k"&gt;&lt;br /&gt;Sucking tear gas and laced-water&lt;/a&gt;&lt;br /&gt;&lt;object width="425" height="355"&gt;&lt;param name="movie" value="http://www.youtube.com/v/1Gx3VRW_2-k&amp;rel=1"&gt;&lt;/param&gt;&lt;param name="wmode" value="transparent"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/1Gx3VRW_2-k&amp;rel=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/12470452-3633767712209064743?l=mugunth.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mugunth.blogspot.com/feeds/3633767712209064743/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=12470452&amp;postID=3633767712209064743&amp;isPopup=true' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/3633767712209064743'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/3633767712209064743'/><link rel='alternate' type='text/html' href='http://mugunth.blogspot.com/2007/11/tamils-protest-in-malaysia.html' title='Tamils Protest in Malaysia'/><author><name>Mugunth/முகுந்த்</name><uri>http://www.blogger.com/profile/08819517001563246095</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-12470452.post-1548412346136566906</id><published>2007-09-03T15:05:00.000+05:30</published><updated>2007-09-03T15:10:39.861+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='Technical'/><category scheme='http://www.blogger.com/atom/ns#' term='VMWare'/><category scheme='http://www.blogger.com/atom/ns#' term='Linux'/><title type='text'>How to increase the VMWare (preallocated) disk space.</title><content type='html'>I have started using &lt;a href="http://releases.ubuntu.com/7.04/"&gt;ubuntu 7.04 (Feisty Fawn)&lt;/a&gt; recently. But for some of our office work, I needed older version of &lt;a href="http://releases.ubuntu.com/6.06/"&gt;ubuntu(6.06)&lt;/a&gt;. And for that I used VMWare.&lt;br /&gt;&lt;br /&gt;Initially I allocated 6GB space to ubuntu 6.06 virtual machine, which I found that is not sufficient for my work. So decided to increase it to 10GB. And after some search in google found a way to increase &lt;a href="http://www.vmware.com/"&gt;VMWare&lt;/a&gt; disks spaces. Following blog entry is to record the steps which I followed and it might be useful for others also.&lt;br /&gt;&lt;br /&gt;I initially tried to increase ubuntu6.06 virtual machine disk size using the following commands:&lt;br /&gt;&lt;span style="font-style: italic;"&gt;$cd /var/lib/vmware/Virtual Machines/Ubuntu6.04&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;$vmware-vdiskmanager -x 10Gb Ubuntu6.04.vmdk&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;It gave the following errors:&lt;br /&gt;Using log file /tmp/vmware-msubramanian/vdiskmanager.log&lt;br /&gt;This disk is part of a snapshot chain in '/var/lib/vmware/Virtual Machines/Ubuntu6.04/Ubuntu6.04.vmx'.&lt;br /&gt;The selected operation can only be executed on a disk with no snapshots.&lt;br /&gt;&lt;br /&gt;I found I have snapshots of ubuntu6.06 vmware disk.&lt;br /&gt;&lt;br /&gt;Used the following method to remove the snapshots:&lt;br /&gt;In the VMWare menu, used the Remove Snapshot option,&lt;br /&gt;VM --&gt; Remove Snapshot ..  ( This is done while the Virtual machine is switched off)&lt;br /&gt;&lt;br /&gt;Again tried using vmware-vdiskmanager it worked.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;$vmware-vdiskmanager -x 10Gb Ubuntu6.04.vmdk&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;Using log file /tmp/vmware-msubramanian/vdiskmanager.log&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;  Grow: 100% done.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;The old geometry C/H/S of the disk is: 783/255/63&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;The new geometry C/H/S of the disk is: 1305/255/63&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;Disk expansion completed successfully.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;WARNING: If the virtual disk is partitioned, you must use a third-party&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;         utility in the virtual machine to expand the size of the&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;         partitions. For more information, see:&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;         http://www.vmware.com/support/kb/enduser/std_adp.php?p_faqid=1647&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;$&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/12470452-1548412346136566906?l=mugunth.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mugunth.blogspot.com/feeds/1548412346136566906/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=12470452&amp;postID=1548412346136566906&amp;isPopup=true' title='6 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/1548412346136566906'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/1548412346136566906'/><link rel='alternate' type='text/html' href='http://mugunth.blogspot.com/2007/09/how-to-increase-vmware-preallocated.html' title='How to increase the VMWare (preallocated) disk space.'/><author><name>Mugunth/முகுந்த்</name><uri>http://www.blogger.com/profile/08819517001563246095</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>6</thr:total></entry><entry><id>tag:blogger.com,1999:blog-12470452.post-4607697932358916811</id><published>2007-04-25T01:52:00.000+05:30</published><updated>2007-04-25T02:12:37.152+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='tamilblogs'/><title type='text'>Tamil blogging community gets media coverage.</title><content type='html'>Oflate the number of bloggers who write in &lt;a href="http://en.wikipedia.org/wiki/Tamil_language"&gt;tamil language&lt;/a&gt; have grown considerably. I assume there could be more than 1000 active tamil blogs currently.&lt;br /&gt;&lt;a href="http://tamilblogs.com/"&gt;tamilblogs.com&lt;/a&gt; aggregator(which I maintain) aggregates content from about &lt;a href="http://tamilblogs.com/sources.php"&gt;650 tamilblogs&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Recently tamil bloggers held a get together in chennai. And it was covered by popular tamil TV channel Makkal TV.  This TV show can be seen in &lt;a href="http://madavillagam.blogspot.com/2007/04/blog-post_24.html"&gt;YouTube here&lt;/a&gt;. This sort of media coverage for a bloggers get together is a good sign. This will help to get attention of the public towards  blogging. And this will lead to increase in the number of tamil bloggers.&lt;br /&gt;&lt;br /&gt;I would love to see a strong &amp;amp; responsible tamil blogging community which will act as an alternate media.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/12470452-4607697932358916811?l=mugunth.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mugunth.blogspot.com/feeds/4607697932358916811/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=12470452&amp;postID=4607697932358916811&amp;isPopup=true' title='11 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/4607697932358916811'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/4607697932358916811'/><link rel='alternate' type='text/html' href='http://mugunth.blogspot.com/2007/04/tamil-blogging-community-gets-media.html' title='Tamil blogging community gets media coverage.'/><author><name>Mugunth/முகுந்த்</name><uri>http://www.blogger.com/profile/08819517001563246095</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>11</thr:total></entry><entry><id>tag:blogger.com,1999:blog-12470452.post-7217863968752981754</id><published>2007-04-01T00:35:00.000+05:30</published><updated>2007-04-01T01:05:20.638+05:30</updated><title type='text'>tamilblogs opensourced!</title><content type='html'>I have been maintaining &lt;a href="http://tamilblogs.com/"&gt;http://tamilblogs.com&lt;/a&gt; for sometime. This is a blogs aggregator which aggregates over 650 blogs written in my native language &lt;a href="http://en.wikipedia.org/wiki/Tamil_language"&gt;tamil &lt;/a&gt;. Initially I created tamilblogs.com using an opensource blogs aggregatory - &lt;a href="http://gregarius.net/"&gt;gregarius &lt;/a&gt;.  Later due to performance issues I switched to another opensource blogs aggregator called &lt;a href="http://sourceforge.net/projects/lilina/"&gt;lilina&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Later I added mysql database support to tamilblogs using code from another similar opensource project &lt;a href="http://sourceforge.net/projects/lylina/"&gt;lylina&lt;/a&gt;.  Some of my tamil blogger friends have requested me for the complete sourcecode of the software  used in tamilblogs. After few more such requests I thought opensourcing this tamilblogs software would be helpful to many.&lt;br /&gt;&lt;br /&gt;Thus was born the new blogs aggregator by name tamilblogs here: &lt;a href="http://code.google.com/p/tamilblogs/"&gt;http://code.google.com/p/tamilblogs/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Right now one of blogger &lt;a href="http://masivakumar.blogspot.com/"&gt;masivakumar &lt;/a&gt;has joined me in this project. I hope many more will join and enhance this project.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/12470452-7217863968752981754?l=mugunth.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mugunth.blogspot.com/feeds/7217863968752981754/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=12470452&amp;postID=7217863968752981754&amp;isPopup=true' title='6 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/7217863968752981754'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/7217863968752981754'/><link rel='alternate' type='text/html' href='http://mugunth.blogspot.com/2007/03/tamilblogs-opensourced.html' title='tamilblogs opensourced!'/><author><name>Mugunth/முகுந்த்</name><uri>http://www.blogger.com/profile/08819517001563246095</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>6</thr:total></entry><entry><id>tag:blogger.com,1999:blog-12470452.post-6071019759407906232</id><published>2007-02-27T11:38:00.000+05:30</published><updated>2007-02-27T12:15:16.074+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='songs'/><category scheme='http://www.blogger.com/atom/ns#' term='tamil'/><title type='text'>Tamil Song Search</title><content type='html'>Recently thro one of my friend I got to know about this website: &lt;a href="http://www.s-anand.net/tamil"&gt;http://www.s-anand.net/tamil&lt;/a&gt;&lt;br /&gt;Its a wonderful service. Using this we can search for a particular song and start hearing it. The search can be made based on the song name or movie name.&lt;br /&gt;&lt;br /&gt;For example, I am great fan of late &lt;a href="http://en.wikipedia.org/wiki/M._G._Ramachandran"&gt;MGR's&lt;/a&gt; songs. When I typed MGR in the search bar, it brought me some of the &lt;a href="http://en.wikipedia.org/wiki/M._G._Ramachandran"&gt;MGR's&lt;/a&gt; songs as below.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_ZpPTt3lZOXA/RePRTMKYw2I/AAAAAAAAAAU/EeRzarVaCxo/s1600-h/tamilsongsearch.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://2.bp.blogspot.com/_ZpPTt3lZOXA/RePRTMKYw2I/AAAAAAAAAAU/EeRzarVaCxo/s320/tamilsongsearch.JPG" alt="" id="BLOGGER_PHOTO_ID_5036098935942857570" border="0" /&gt;&lt;/a&gt;There are thousands of tamil songs around, its really very useful software.&lt;br /&gt;&lt;br /&gt;I wonder why no tamil techie has thought about this earlier (including me :) ) !&lt;br /&gt;&lt;br /&gt;Great work! Thanks a lot &lt;a href="http://www.s-anand.net/"&gt;Anand &lt;/a&gt;for creating this.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/12470452-6071019759407906232?l=mugunth.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mugunth.blogspot.com/feeds/6071019759407906232/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=12470452&amp;postID=6071019759407906232&amp;isPopup=true' title='19 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/6071019759407906232'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/6071019759407906232'/><link rel='alternate' type='text/html' href='http://mugunth.blogspot.com/2007/02/tamil-song-search.html' title='Tamil Song Search'/><author><name>Mugunth/முகுந்த்</name><uri>http://www.blogger.com/profile/08819517001563246095</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_ZpPTt3lZOXA/RePRTMKYw2I/AAAAAAAAAAU/EeRzarVaCxo/s72-c/tamilsongsearch.JPG' height='72' width='72'/><thr:total>19</thr:total></entry><entry><id>tag:blogger.com,1999:blog-12470452.post-116608668706709881</id><published>2006-12-14T13:48:00.000+05:30</published><updated>2006-12-15T08:20:27.246+05:30</updated><title type='text'>TamilKey 0.3 (Thamizh Visai) released.</title><content type='html'>&lt;a href="http://tamilkey.mozdev.org"&gt;TamilKey or ThamizhVisai&lt;/a&gt;(as its called in tamil) is an extension for typing tamil inside firefox,thunderbird &amp;amp; chatzilla. Its one of the projects initiated and being maintained by a group tamil freesoftware volunteers under &lt;a href="http://thamizha.com"&gt;thamizha.com&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Tamilkey version 0.3 was released on 12 Dec 2006 and release anouncement was made by our team member &lt;a href="http://higopi.blogspot.com"&gt;Gopi &lt;/a&gt;in &lt;a href="http://lists.thamizha.com/pipermail/freetamilcomputing_lists.thamizha.com/2006-December/000139.html"&gt;freetamilcomputing list&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;This release has following new features:&lt;br /&gt;1. Support for Bamini and Typewriter keyboard layouts.&lt;br /&gt;&lt;a href="http://www.geocities.com/umapathyXP/bamini.html"&gt;Bamini keyboard&lt;/a&gt; is popular among Srilankan Tamils and &lt;a href="http://www.tamilanjal.com/usage/kbdtyp.htm"&gt;Typewriter keyboard&lt;/a&gt; is popular among the Tamil Nadu tamils.&lt;br /&gt;&lt;br /&gt;2. User Shortcut option - Now users can set their own shortcuts for various keyboard settings and for switching from english to tamil typing.&lt;br /&gt;&lt;br /&gt;3. And also &lt;a href="http://tamilkey.mozdev.org/bugs.html"&gt;many bugs &lt;/a&gt;were fixed in this release.&lt;br /&gt;&lt;br /&gt;Almost all the development work related to this version 0.3 was done by &lt;a href="http://higopi.blogspot.com"&gt;Gopi&lt;/a&gt;.  And also &lt;a href="http://lists.thamizha.com/mailman/listinfo/freetamilcomputing_lists.thamizha.com"&gt;Freetamilcomputing list&lt;/a&gt; members &lt;a href="http://ravithinks.blogspot.com/"&gt;Ravi&lt;/a&gt;, Thi.Va., Sethu contributed to this release greatly by testing this release and finding bugs.&lt;br /&gt;&lt;br /&gt;This can be downloaded from the following locations:&lt;br /&gt;&lt;a href="http://tamilkey.mozdev.org/installation.html"&gt;http://tamilkey.mozdev.org/installation.html&lt;/a&gt;&lt;br /&gt;&lt;a href="https://addons.mozilla.org/firefox/2994/"&gt;https://addons.mozilla.org/firefox/2994/&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/12470452-116608668706709881?l=mugunth.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mugunth.blogspot.com/feeds/116608668706709881/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=12470452&amp;postID=116608668706709881&amp;isPopup=true' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/116608668706709881'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/116608668706709881'/><link rel='alternate' type='text/html' href='http://mugunth.blogspot.com/2006/12/tamilkey-03-thamizh-visai-released.html' title='TamilKey 0.3 (Thamizh Visai) released.'/><author><name>Mugunth/முகுந்த்</name><uri>http://www.blogger.com/profile/08819517001563246095</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-12470452.post-116365576827085565</id><published>2006-11-16T11:02:00.000+05:30</published><updated>2006-11-16T11:12:48.286+05:30</updated><title type='text'>My home town in news!</title><content type='html'>Recently my home town &lt;a href="http://en.wikipedia.org/wiki/Namakkal"&gt;Namakkal &lt;/a&gt;- became first town in India to get &lt;span style="font-size:85%;"&gt;ISO 14001&lt;/span&gt;  certification. I am really proud about this.&lt;br /&gt;&lt;a href="http://www.hindu.com/mag/2006/04/09/stories/2006040900210400.htm"&gt;http://www.hindu.com/mag/2006/04/09/stories/2006040900210400.htm&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;I hope other cities in India too follow &lt;a href="http://en.wikipedia.org/wiki/Namakkal"&gt;Namakkal &lt;/a&gt;and become clean and efficiently managed cities.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/12470452-116365576827085565?l=mugunth.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mugunth.blogspot.com/feeds/116365576827085565/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=12470452&amp;postID=116365576827085565&amp;isPopup=true' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/116365576827085565'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/116365576827085565'/><link rel='alternate' type='text/html' href='http://mugunth.blogspot.com/2006/11/my-home-town-in-news.html' title='My home town in news!'/><author><name>Mugunth/முகுந்த்</name><uri>http://www.blogger.com/profile/08819517001563246095</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-12470452.post-115734924158224060</id><published>2006-09-04T11:19:00.000+05:30</published><updated>2006-09-04T11:31:27.853+05:30</updated><title type='text'>'Crocodile Hunter' Steve Irwin Killed</title><content type='html'>Just saw this news in BBC site &lt;a href="http://news.bbc.co.uk/2/hi/asia-pacific/5311298.stm"&gt;http://news.bbc.co.uk/2/hi/asia-pacific/5311298.stm &lt;/a&gt;&lt;br /&gt;I used to watch with awe &lt;a href="http://en.wikipedia.org/wiki/Steve_Irwin"&gt;Steve Irwin's&lt;/a&gt; wildlife programs in TV. I feel sad about his sudden death.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/12470452-115734924158224060?l=mugunth.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mugunth.blogspot.com/feeds/115734924158224060/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=12470452&amp;postID=115734924158224060&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/115734924158224060'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/115734924158224060'/><link rel='alternate' type='text/html' href='http://mugunth.blogspot.com/2006/09/crocodile-hunter-steve-irwin-killed.html' title='&apos;Crocodile Hunter&apos; Steve Irwin Killed'/><author><name>Mugunth/முகுந்த்</name><uri>http://www.blogger.com/profile/08819517001563246095</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-12470452.post-115639908036968180</id><published>2006-08-24T11:18:00.000+05:30</published><updated>2006-08-24T11:28:00.390+05:30</updated><title type='text'>SumatraPDF viewer - A light weight PDF reader</title><content type='html'>In my windows machine, I havent installed any PDF reader since I was not using windows system often. Yesterday I came across a light weight PDF viewer for windows by name Sumatra PDF viewer. &lt;a href="http://blog.kowalczyk.info/software/sumatrapdf/"&gt;http://blog.kowalczyk.info/software/sumatrapdf/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;I liked it very much for the following reasons:&lt;br /&gt;1. Its light weight compared to &lt;a href="http://www.adobe.com/products/acrobat/readstep2.html"&gt;Adobe Acrobat reader.&lt;/a&gt;&lt;br /&gt;2. It serves its purpose of showing the pdf files cleanly.&lt;br /&gt;3. Its a &lt;a href="http://en.wikipedia.org/wiki/Free_software"&gt;freesoftware .&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;I have installed it and started using it as my primary and only PDF viewer.&lt;br /&gt;&lt;br /&gt;Of cource it has few sortcomings too. Right now it doesnt have printing support. But I hope soon these features will be available since its a freesoftware. And by nature freesoftwares evolves thro community participation&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/12470452-115639908036968180?l=mugunth.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mugunth.blogspot.com/feeds/115639908036968180/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=12470452&amp;postID=115639908036968180&amp;isPopup=true' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/115639908036968180'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/115639908036968180'/><link rel='alternate' type='text/html' href='http://mugunth.blogspot.com/2006/08/sumatrapdf-viewer-light-weight-pdf.html' title='SumatraPDF viewer - A light weight PDF reader'/><author><name>Mugunth/முகுந்த்</name><uri>http://www.blogger.com/profile/08819517001563246095</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-12470452.post-115372294647942052</id><published>2006-07-24T11:53:00.000+05:30</published><updated>2006-07-24T12:09:04.166+05:30</updated><title type='text'>Updated tamil firerfox extensions</title><content type='html'>Last week I updated two of my firefox extensions.&lt;br /&gt;1. Tamil language extension (&lt;a href="https://addons.mozilla.org/firefox/2989/"&gt;https://addons.mozilla.org/firefox/2989/&lt;/a&gt; )&lt;br /&gt;I had created a tamil language extension (&lt;a href="https://addons.mozilla.org/firefox/512/"&gt;https://addons.mozilla.org/firefox/512/&lt;/a&gt;) that works only on version 1.0.x . Even though I have updated this tamil extension to work in version 1.5 some time back, but could find time to updated the extension in addons.mozilla.org only last week.&lt;br /&gt;&lt;br /&gt;2. Tamilkey extension:&lt;br /&gt;Tamilkey is a utility to type tamil in firefox/thunderbird/chatzilla directly. Its now available at &lt;a href="https://addons.mozilla.org/firefox/2994/"&gt;https://addons.mozilla.org/firefox/2994/&lt;/a&gt;&lt;br /&gt;It was created by myself and &lt;a href="http://mugunth.blogspot.com/2006/01/tamilkey-firefox-extension-to-type.html"&gt;released on Pongal day (14-01-2006)&lt;/a&gt; .&lt;br /&gt;Later &lt;a href="http://valaipadhivan.blogspot.com/"&gt;voice of wings&lt;/a&gt; joined and enhanced the utility by completely rewriting the code.&lt;br /&gt;&lt;br /&gt;Tamilkey project website URL: &lt;a href="http://tamilkey.mozdev.org"&gt;http://tamilkey.mozdev.org&lt;br /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/12470452-115372294647942052?l=mugunth.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mugunth.blogspot.com/feeds/115372294647942052/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=12470452&amp;postID=115372294647942052&amp;isPopup=true' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/115372294647942052'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/115372294647942052'/><link rel='alternate' type='text/html' href='http://mugunth.blogspot.com/2006/07/updated-tamil-firerfox-extensions.html' title='Updated tamil firerfox extensions'/><author><name>Mugunth/முகுந்த்</name><uri>http://www.blogger.com/profile/08819517001563246095</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-12470452.post-115022087038999578</id><published>2006-06-13T21:43:00.000+05:30</published><updated>2006-06-14T10:08:32.900+05:30</updated><title type='text'>Chennai in google earth</title><content type='html'>Google has released a new version (release 4 beta) of their google earth yesterday. Details of this release is here: &lt;a href="http://earth.google.com/earth4.html"&gt;http://earth.google.com/earth4.html &lt;/a&gt;&lt;br /&gt;&lt;br /&gt;I am happy about this release for two reasons:&lt;br /&gt;1. Google earth is available for Linux machines. So now I am able to install google earth in my linux laptop.&lt;br /&gt;2. Google earth features my favorite place chennai (its also my home state capital). Its now possible to see more details(street level details) of chennai. Previously google earth used to show in detail only Bangalore, New Delhi, Bombay &amp; Hydrabad cities in India. For some unknown reason chennai was left out by google. I am happy that atleast now google earth shows chennai in detail.&lt;br /&gt;&lt;br /&gt;Following screen shot shows chennai&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://static.flickr.com/55/166567295_8ed8c82ac5.jpg?v=0"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 320px;" src="http://static.flickr.com/55/166567295_8ed8c82ac5.jpg?v=0" alt="" border="0" /&gt;&lt;/a&gt;'s famous Anna Flyover in google earth.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/12470452-115022087038999578?l=mugunth.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mugunth.blogspot.com/feeds/115022087038999578/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=12470452&amp;postID=115022087038999578&amp;isPopup=true' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/115022087038999578'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/115022087038999578'/><link rel='alternate' type='text/html' href='http://mugunth.blogspot.com/2006/06/chennai-in-google-earth.html' title='Chennai in google earth'/><author><name>Mugunth/முகுந்த்</name><uri>http://www.blogger.com/profile/08819517001563246095</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-12470452.post-113863964785792556</id><published>2006-01-30T21:41:00.000+05:30</published><updated>2006-01-30T22:21:25.310+05:30</updated><title type='text'>A tamil transliteration pluggin for Gaim</title><content type='html'>&lt;tt&gt; &lt;a href="http://gaim.sourceforge.net/"&gt;Gaim &lt;/a&gt;is a popular opensource IM utility. I use Gaim to communicate with my friends using various protocols like Yahoo/MSN/IRC etc. It works both in Linux &amp; Windows (also &lt;/tt&gt;in BSD,  MacOS X )&lt;br /&gt;&lt;tt&gt;&lt;br /&gt;For typing tamil in any windows program, I use a keyboard driver software by name &lt;a href="http://thamizha.com/modules/mydownloads/viewcat.php?cid=3"&gt;ekalappai &lt;/a&gt;(which is also created by me). But somehow ekalappai cannot be used with Gaim. It simply does not work. So far no time to debug this. So whenever I use Gaim in windows I type tamil text in notepad then copy &amp;amp; paste in Gaim and send it.&lt;br /&gt;&lt;br /&gt;Now there is a solution to this problem. Anna University student &lt;a href="http://mailvarun.blogspot.com"&gt;Varun &lt;/a&gt;has created a plugin for Gaim transliterate english text typed in gaim message window to tamil.&lt;br /&gt;&lt;br /&gt;You can read about this plugin in &lt;a href="http://mailvarun.blogspot.com/2006/01/my-first-gaim-plugin.html"&gt;Varun's blog.&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Congrats Varun !&lt;br /&gt;&lt;br /&gt;&lt;/tt&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/12470452-113863964785792556?l=mugunth.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mugunth.blogspot.com/feeds/113863964785792556/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=12470452&amp;postID=113863964785792556&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/113863964785792556'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/113863964785792556'/><link rel='alternate' type='text/html' href='http://mugunth.blogspot.com/2006/01/tamil-transliteration-pluggin-for-gaim.html' title='A tamil transliteration pluggin for Gaim'/><author><name>Mugunth/முகுந்த்</name><uri>http://www.blogger.com/profile/08819517001563246095</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-12470452.post-113718127577804162</id><published>2006-01-14T01:08:00.000+05:30</published><updated>2006-01-14T01:21:55.273+05:30</updated><title type='text'>Tamilkey - a firefox extension to type tamil.</title><content type='html'>I am happy to announce the release of&lt;a href="http://tamilkey.mozdev.org"&gt; tamilkey firefox extension&lt;/a&gt; on this &lt;a href="http://www.pongalfestival.org/the-harvest-festival.html"&gt;Pongal day&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Using tamilkey firefox extension firefox users will be able to type tamil without need for any external programs like &lt;a href="http://thamizha.com/modules/mydownloads/viewcat.php?cid=3"&gt;ekalappai&lt;/a&gt;.&lt;br /&gt;Currently tamilnet99 and Anjal keyboard layouts are supported by tamilkey. I am planning to add more keyboard layouts in future.&lt;br /&gt;Tamilkey can be downloaded from &lt;a href="http://tamilkey.mozdev.org"&gt;http://tamilkey.mozdev.org  &lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/12470452-113718127577804162?l=mugunth.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mugunth.blogspot.com/feeds/113718127577804162/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=12470452&amp;postID=113718127577804162&amp;isPopup=true' title='5 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/113718127577804162'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/113718127577804162'/><link rel='alternate' type='text/html' href='http://mugunth.blogspot.com/2006/01/tamilkey-firefox-extension-to-type.html' title='Tamilkey - a firefox extension to type tamil.'/><author><name>Mugunth/முகுந்த்</name><uri>http://www.blogger.com/profile/08819517001563246095</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>5</thr:total></entry><entry><id>tag:blogger.com,1999:blog-12470452.post-113688181527781402</id><published>2006-01-10T13:45:00.000+05:30</published><updated>2006-01-10T14:14:10.760+05:30</updated><title type='text'>An Online Tamil Keyboard to type tamil from anywhere...</title><content type='html'>I have often found myself unable to write tamil from cyber cafes. Many cybercafes dont have tamil input software installed in their computers. To address this problem i wrote a javascript utility for typping tamil and have hosted in my &lt;a href="http://developer.thamizha.com"&gt;developer.thamizha.com &lt;/a&gt;site.&lt;br /&gt;&lt;br /&gt;I have named it as Online Tamil Keyboard. URL for Online Tamil Keyboard : &lt;a href="http://developer.thamizha.com/tamilkey.html"&gt;http://developer.thamizha.com/tamilkey.html &lt;/a&gt;&lt;br /&gt;&lt;br /&gt;As of now I have given option for two keyboard layouts&lt;br /&gt;1. Anjal layout - This is most popular keyboard among tamils who havent learned Tamil typewriter or Tamilnet99 keyboards.&lt;br /&gt;&lt;br /&gt;2. &lt;a href="http://www.tamilvu.org/Tamilnet99/keystand.htm"&gt;Tamilnet99 keyboard &lt;/a&gt;layout - This is the keyboard recognised by Tamil Nadu Government. Using this keyboard we can type tamil very fast. I personally use this.&lt;br /&gt;&lt;br /&gt;I plan to add Bamini keyboard (which is popular among Srilankan Tamils) and TamilTypewriter layout (which is popular among those who have learned Tamil Typewriter) in future.&lt;br /&gt;&lt;br /&gt;And this only works in Firefox browser as of now. I am trying to figure out a way to make it work in Internet Explorer (I would greatly appreciate if any one helped me on this ).&lt;br /&gt;&lt;br /&gt;I hope this Online Tamil Keyboard page would be helpful in some way to Tamil users :)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/12470452-113688181527781402?l=mugunth.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mugunth.blogspot.com/feeds/113688181527781402/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=12470452&amp;postID=113688181527781402&amp;isPopup=true' title='16 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/113688181527781402'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/113688181527781402'/><link rel='alternate' type='text/html' href='http://mugunth.blogspot.com/2006/01/online-tamil-keyboard-to-type-tamil.html' title='An Online Tamil Keyboard to type tamil from anywhere...'/><author><name>Mugunth/முகுந்த்</name><uri>http://www.blogger.com/profile/08819517001563246095</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>16</thr:total></entry><entry><id>tag:blogger.com,1999:blog-12470452.post-113432106663451542</id><published>2005-12-11T22:35:00.000+05:30</published><updated>2005-12-11T22:41:06.646+05:30</updated><title type='text'>Connecting to IRC from Airtel's broadband connection</title><content type='html'>I use &lt;a href="http://www.airtel-broadband.com/"&gt;Airtel broadband&lt;/a&gt; in my home. I noticed sometime back that I could not connect to any IRC channels from my home.&lt;br /&gt;&lt;br /&gt;Then after googling about similar problem faced by others found a solution for that.&lt;br /&gt;&lt;br /&gt;Airtel seems block port 6667 which is usually the default port used by IRC clients.&lt;br /&gt;&lt;br /&gt;So to connect to IRC ports other than 6667 should be used if connecting using Airtel&lt;br /&gt;&lt;br /&gt;I use port: 7000 for connecting to my favorite IRC channels.&lt;br /&gt;For example to connect to my Tamil localization channel #thamizha in freenode, i use the following command in  my firefox browser (with chatzilla Plugin) address box:&lt;br /&gt;&lt;a href="irc://irc.freenode.net:7000/thamizha"&gt;irc://irc.freenode.net:7000/thamizha&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;I hope this tip might be useful to some of you who use Airtel internet connection in India :)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/12470452-113432106663451542?l=mugunth.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mugunth.blogspot.com/feeds/113432106663451542/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=12470452&amp;postID=113432106663451542&amp;isPopup=true' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/113432106663451542'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/113432106663451542'/><link rel='alternate' type='text/html' href='http://mugunth.blogspot.com/2005/12/connecting-to-irc-from-airtels.html' title='Connecting to IRC from Airtel&apos;s broadband connection'/><author><name>Mugunth/முகுந்த்</name><uri>http://www.blogger.com/profile/08819517001563246095</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-12470452.post-113389736619478489</id><published>2005-12-07T00:55:00.000+05:30</published><updated>2005-12-07T01:14:30.556+05:30</updated><title type='text'>New tamil unicode encoding proposal - My opinion</title><content type='html'>Recently Tamil Nadu Government website has posted a proposal for new tamil unicode standard (named as TUNE ) and have asked for comments. &lt;p style="margin-bottom: 0in;"&gt;The details are in this URL: &lt;a href="http://www.tunerfc.tn.gov.in/"&gt;http://www.tunerfc.tn.gov.in/&lt;/a&gt;&lt;/p&gt;  &lt;p style="margin-bottom: 0in;"&gt;Problem statement given by TUNE team is: "As a result, Tamil Language, the script of which is NOT a "Complex Script" unlike other Indian Languages had also been considered as a "Complex Script" and the Unicode encoding developed employing level-2 implementation (instead of level-1) resulting in an unwieldy coding scheme for Tamil.  "&lt;/p&gt;     &lt;p style="margin-bottom: 0in;"&gt;My understanding is that the above statement says the following two points:&lt;br /&gt;1. Tamil unicode has been made into complex unnecessarily [ My opinion: so what ??? ]&lt;/p&gt;&lt;p style="margin-bottom: 0in;"&gt;&lt;br /&gt;&lt;/p&gt;2. The Unicode encoding developed employing level-2 implementation (instead of level-1) resulting in an unwieldy coding scheme for Tamil. [ My opinion: This sounds more to be an opinion of the TUNE creators. This statement dont have any factual backing. ]&lt;br /&gt;&lt;br /&gt; &lt;p style="margin-bottom: 0in;"&gt;Above problem statement itself appear very weak. I don't find a need for proposing a new Tamil Unicode standard.&lt;/p&gt;&lt;p style="margin-bottom: 0in;"&gt;&lt;br /&gt;&lt;/p&gt;  &lt;p style="margin-bottom: 0in;"&gt;And I find the paper gives the following incorrect information:&lt;/p&gt;  &lt;p style="margin-bottom: 0in;"&gt;&lt;span style="color: rgb(255, 102, 102);"&gt;"Tamil Unicode support is yet to be available in other operating systems like MacOS, Linux , etc"&lt;/span&gt;&lt;/p&gt;&lt;p style="margin-bottom: 0in;"&gt;&lt;br /&gt;[4th sentence under the heading Other shortcomings in this URL: &lt;a href="http://www.tunerfc.tn.gov.in/TUNE-an_introduction.htm"&gt;http://www.tunerfc.tn.gov.in/TUNE-an_introduction.htm &lt;/a&gt;]&lt;/p&gt;  &lt;p style="margin-bottom: 0in;"&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-bottom: 0in;"&gt;Tamil unicode is very well supported in Linux operating systems. Linux Distros like FC4 comes&lt;br /&gt;with out of box tamil unicode support.&lt;/p&gt;  &lt;p style="margin-bottom: 0in;"&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-bottom: 0in;"&gt;Also this paper says another problem with existing unicode standard is vendors like Adobe are yet to support tamil Unicode standard.  &lt;/p&gt; &lt;p style="margin-bottom: 0in;"&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-bottom: 0in;"&gt;This is absurd, the authors of this new proposal should ask the vendors like Adobe to support for tamil unicode in their applications instead of trying to change tamil unicode standard for vendor not supporting.  &lt;/p&gt;  &lt;p style="margin-bottom: 0in;"&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-bottom: 0in;"&gt;Current status of tamil unicode standard is as follows:&lt;/p&gt; &lt;p style="margin-bottom: 0in;"&gt;1. Unicode tamil is supported very well in linux, Windows &amp; Mac platforms.  &lt;/p&gt; &lt;p style="margin-bottom: 0in;"&gt;2. Most Applications have now tamil unicode support (e.g. Tamil Mozilla &amp; Tamil OpenOffice are already available)&lt;/p&gt; &lt;p style="margin-bottom: 0in;"&gt;3. Most of the tamil websites are now in Unicode&lt;/p&gt; &lt;p style="margin-bottom: 0in;"&gt;5. There are over 1000 Tamil bloggers writing in unicode tamil.  &lt;/p&gt; &lt;p style="margin-bottom: 0in;"&gt;[ There are about 846 tamil bloggers listed in http://www.thamizmanam.com/tamilblogs/index.php alone , there are lot more listed in technograti and not in thamizmanam.com ]&lt;/p&gt;  &lt;p style="margin-bottom: 0in;"&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-bottom: 0in;"&gt;Existing tamil unicode standard works fine in every aspect. And it is gaining acceptance among vendors and users very fast.&lt;/p&gt;  &lt;p style="margin-bottom: 0in; font-style: italic; color: rgb(204, 102, 204);"&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="margin-bottom: 0in; font-style: italic; color: rgb(204, 102, 204);"&gt;&lt;span style="font-weight: bold;"&gt;There is absolutely no need to change the existing tamil unicode. Efforts like TUNE should not be encouraged at all. I find such efforts are mere waste of time and energy.&lt;/span&gt;  &lt;/p&gt;  &lt;p style="margin-bottom: 0in;"&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-bottom: 0in;"&gt;At the same time I am not religious about supporting current tamil unicode support only.&lt;br /&gt;If by chance, unicode consortium accepts the new tamil unicode proposal (which is a distant possibility) , then I too will start using/supporting new tamil unicode standard.  &lt;/p&gt; &lt;p style="margin-bottom: 0in;"&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-bottom: 0in;"&gt;Until then I will continue to support and popularize the existing tamil unicode standard.&lt;/p&gt; &lt;p style="margin-bottom: 0in;"&gt;  &lt;/p&gt; &lt;p style="margin-bottom: 0in;"&gt;&lt;br /&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/12470452-113389736619478489?l=mugunth.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mugunth.blogspot.com/feeds/113389736619478489/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=12470452&amp;postID=113389736619478489&amp;isPopup=true' title='6 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/113389736619478489'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/113389736619478489'/><link rel='alternate' type='text/html' href='http://mugunth.blogspot.com/2005/12/new-tamil-unicode-encoding-proposal-my.html' title='New tamil unicode encoding proposal - My opinion'/><author><name>Mugunth/முகுந்த்</name><uri>http://www.blogger.com/profile/08819517001563246095</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>6</thr:total></entry><entry><id>tag:blogger.com,1999:blog-12470452.post-113241781463075452</id><published>2005-11-19T21:51:00.000+05:30</published><updated>2005-11-19T22:20:31.016+05:30</updated><title type='text'>Built firefox (1.6a1) from my windows XP machine !</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://static.flickr.com/34/64797366_7c59de430a.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 320px;" src="http://static.flickr.com/34/64797366_7c59de430a.jpg" alt="" border="0" /&gt;&lt;/a&gt;Today I attempted &amp;amp; Succeeded to build the latest source of firefox in my Windows XP machine.&lt;br /&gt;I followed the instructions from this page: &lt;a href="http://gemal.dk/mozilla/build.html"&gt;http://gemal.dk/mozilla/build.html&lt;/a&gt; .&lt;br /&gt;&lt;br /&gt;I have Airtel's 128Kbps (max) brandband connection at my home.&lt;br /&gt;It took about 2 hours to download the source and another 2 hours to build the firefox.&lt;br /&gt;&lt;br /&gt;Its was a wonderful experience to build our own copy of firefox and to use it.&lt;br /&gt;&lt;br /&gt;I am writing this blog from my "homemade" browser :)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/12470452-113241781463075452?l=mugunth.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mugunth.blogspot.com/feeds/113241781463075452/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=12470452&amp;postID=113241781463075452&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/113241781463075452'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/113241781463075452'/><link rel='alternate' type='text/html' href='http://mugunth.blogspot.com/2005/11/built-firefox-16a1-from-my-windows-xp.html' title='Built firefox (1.6a1) from my windows XP machine !'/><author><name>Mugunth/முகுந்த்</name><uri>http://www.blogger.com/profile/08819517001563246095</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-12470452.post-112895855400222283</id><published>2005-10-10T20:48:00.000+05:30</published><updated>2005-10-10T21:09:41.433+05:30</updated><title type='text'>New job for me!</title><content type='html'>I have joined &lt;a href="http://spikesource.com"&gt;spikesource&lt;/a&gt; in bangalore on 3rd of October.&lt;br /&gt;&lt;br /&gt;Spikesource is a startup company started to facilitate the adoption of open source softwares in the enterprise. &lt;br /&gt;&lt;br /&gt;I like free/opensource concepts. I like the freedom it gives to the users and programmers. &lt;br /&gt;And free/opensource softwares gives an unlimmited oppurchunity for learning new technologies.&lt;br /&gt;&lt;br /&gt;When I got this offer from spikesource, I just could not resist it :) &lt;br /&gt;&lt;br /&gt;Spikesource India is looking for programmers who are passionate about free/Opensource softwares. Let me know if you are intrested.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/12470452-112895855400222283?l=mugunth.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mugunth.blogspot.com/feeds/112895855400222283/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=12470452&amp;postID=112895855400222283&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/112895855400222283'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/112895855400222283'/><link rel='alternate' type='text/html' href='http://mugunth.blogspot.com/2005/10/new-job-for-me.html' title='New job for me!'/><author><name>Mugunth/முகுந்த்</name><uri>http://www.blogger.com/profile/08819517001563246095</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-12470452.post-112643200904519226</id><published>2005-09-11T14:20:00.000+05:30</published><updated>2005-09-11T18:32:41.486+05:30</updated><title type='text'>Software freedom day 10 sep 2005 @ Chennai</title><content type='html'>Yesterday &lt;a href="http://www.chennailug.org/"&gt;Chennai Linux Users group&lt;/a&gt; and Tamil Nadu Science and Technology foundation jointly celebrated &lt;a href="http://www.chennailug.org/wiki/Software_Freedom_Day"&gt;Software freedom day in chennai.&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;As part of it the following functions were organised at Birla Planatorium , kotturpuram, Chennai.&lt;br /&gt;1. FOSS and Linux Demo Day&lt;br /&gt;GNU/Linux and various Freesoftwares were shown to the public in about 10 PCs. This showed the power of Freesoftwares to the visited.&lt;br /&gt;It should be noted that , for this program the &lt;a href="http://www.chennailug.org/"&gt;Chennai Linux Users group&lt;/a&gt; &lt;a href="http://www.chennailug.org/wiki/List_of_Volunteers_%26_Machine_Lenders_for_the_LDD%2C_SFD_at_TNSTC"&gt;volunteers have brought their own PCs&lt;/a&gt; for this event.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;2. FOSS Training to 50 School Teachers&lt;br /&gt;In this program school teachers were given briefing about GNU/Linux and other free softwares.&lt;br /&gt;And the 11 std science sylabus about linux was also covered in this training.&lt;br /&gt;I hope this program would have been very helpful to the teachers who attended.&lt;br /&gt;&lt;br /&gt;Below are some of the pictures taken in that event...&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://tinypic.com/dmt9o8.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px;" src="http://tinypic.com/dmt9o8.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://tinypic.com/dmt9w3.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px;" src="http://tinypic.com/dmt9w3.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://tinypic.com/dmtaaw.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px;" src="http://tinypic.com/dmtaaw.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://tinypic.com/dmtaia.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px;" src="http://tinypic.com/dmtaia.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://tinypic.com/dmtgtc.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px;" src="http://tinypic.com/dmtgtc.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://tinypic.com/dmthcx.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px;" src="http://tinypic.com/dmthcx.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://tinypic.com/dmthl2.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px;" src="http://tinypic.com/dmthl2.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://tinypic.com/dmths6.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px;" src="http://tinypic.com/dmths6.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://tinypic.com/dmtj55.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px;" src="http://tinypic.com/dmtj55.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://tinypic.com/dmtj7l.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px;" src="http://tinypic.com/dmtj7l.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://tinypic.com/dmtjd3.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px;" src="http://tinypic.com/dmtjd3.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://tinypic.com/dmtjj6.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px;" src="http://tinypic.com/dmtjj6.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://tinypic.com/dmtjpe.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px;" src="http://tinypic.com/dmtjpe.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://tinypic.com/dmtjt4.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px;" src="http://tinypic.com/dmtjt4.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://tinypic.com/dmtjz9.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px;" src="http://tinypic.com/dmtjz9.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/12470452-112643200904519226?l=mugunth.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mugunth.blogspot.com/feeds/112643200904519226/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=12470452&amp;postID=112643200904519226&amp;isPopup=true' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/112643200904519226'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/112643200904519226'/><link rel='alternate' type='text/html' href='http://mugunth.blogspot.com/2005/09/software-freedom-day-10-sep-2005.html' title='Software freedom day 10 sep 2005 @ Chennai'/><author><name>Mugunth/முகுந்த்</name><uri>http://www.blogger.com/profile/08819517001563246095</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-12470452.post-112486013532874239</id><published>2005-08-24T10:27:00.000+05:30</published><updated>2005-08-24T10:38:55.340+05:30</updated><title type='text'>Finding DNS errors in our website</title><content type='html'>I came to know about an excellent online tool for finding DNS errors in our website yesterday.&lt;br /&gt;I have been facing problem in acessing my &lt;a href="http://thamizha.com"&gt;thamizha.com&lt;/a&gt; &amp; &lt;a href="http://mugunth.tamilblogs.com"&gt;dnsreport.com&lt;/a&gt; from &lt;a href="http://www.mugunth.tamilblogs.com/?itemid=46"&gt;Navan's comment in my Tamil blog entry&lt;/a&gt; yesterday.&lt;br /&gt;It seems to be a very usefull online tool for finding DNS errors in our websites. It had showed some errors in my &lt;a href="http://thamizha.com"&gt;tamilblogs.com&lt;/a&gt; DNS issue...&lt;br /&gt;&lt;br /&gt;Similary another usefull website for finding much more online info is: &lt;a href="http://dnsstuff.com/"&gt;http://dnsstuff.com/&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/12470452-112486013532874239?l=mugunth.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mugunth.blogspot.com/feeds/112486013532874239/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=12470452&amp;postID=112486013532874239&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/112486013532874239'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/112486013532874239'/><link rel='alternate' type='text/html' href='http://mugunth.blogspot.com/2005/08/finding-dns-errors-in-our-website.html' title='Finding DNS errors in our website'/><author><name>Mugunth/முகுந்த்</name><uri>http://www.blogger.com/profile/08819517001563246095</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-12470452.post-112452278106964504</id><published>2005-08-20T12:30:00.000+05:30</published><updated>2005-08-20T13:09:43.776+05:30</updated><title type='text'>SKIM installation issue in Xandros</title><content type='html'>As I have mentioned in my earlier blog entry, I have started experimenting with Xandros. My main obstacle in using Xandros for my day to day browsing is typing tamil in it.&lt;br /&gt;Many tools have been created by tamil community for this , but i am sorry to say, nothing is perfect and nothing is complete...&lt;br /&gt;&lt;br /&gt;Recently I heard about SCIM and SKIM utilities which seems to be able to solve the tamil typing problem in Linux. SCIM stands for Smart common Input Method platform. You can find more details about this project in this URL: &lt;a href="http://www.scim-im.org/"&gt;http://www.scim-im.org/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;There is a discussion thread going on in tamilinux yahoogroup about this. You  can see check at this URL:&lt;a href="http://groups.yahoo.com/group/tamilinix/messages"&gt; http://groups.yahoo.com/group/tamilinix/messages&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;I too tried my hand in installing SKIM in my Xandros linux box. But could not succeed. Here are the detailed steps I followed:&lt;br /&gt;&lt;br /&gt;1. Downloaded skim-1.4.1 package downloaded from &lt;a href="http://prdownloads.sourceforge.net/scim/skim-1.4.1.tar.bz2"&gt;http://prdownloads.sourceforge.net/scim/skim-1.4.1.tar.bz2&lt;/a&gt;&lt;br /&gt;2. extracted the package using xandros update manager copied to my local folder (/home/mugunth )&lt;br /&gt;3.  Installed using ./configure command as mentioned in the install document. I received the following error messages:&lt;br /&gt;&lt;span style="color: rgb(204, 102, 204); font-style: italic;"&gt;mugunthlin:/home/mugunth/skim-1.4.1# ./configure&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 102, 204); font-style: italic;"&gt;Checking for Python : /usr/bin/python&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 102, 204); font-style: italic;"&gt;Checking for SCons : Use Bundled scons.&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 102, 204); font-style: italic;"&gt;Checking for kde-config : kde-config was found&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 102, 204); font-style: italic;"&gt;Checking for kde version : 3.3.0&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 102, 204); font-style: italic;"&gt;Checking for the qt library : qt was not found&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 102, 204); font-style: italic;"&gt;Please set QTDIR first (/usr/lib/qt3?) or try scons -h for more options&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 102, 204); font-style: italic;"&gt;mugunthlin:/home/mugunth/skim-1.4.1#&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;4. I installed KDE development environment using Xandros networks&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://tinypic.com/auwevb.png"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 320px;" src="http://tinypic.com/auwevb.png" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Xandros networks is excellent tool and using this its possible to download and install popular packages easily. see in the right the screenshot of how Xandros Networks window appears...&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;5. Again tried installaling skim by issuing ./configure command, this time the following error messages were got:&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 102, 204); font-style: italic;"&gt;mugunthlin:/home/mugunth/skim-1.4.1# ./configure&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 102, 204); font-style: italic;"&gt;Checking for Python : /usr/bin/python&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 102, 204); font-style: italic;"&gt;Checking for SCons : Use Bundled scons.&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 102, 204); font-style: italic;"&gt;Checking for kde-config : kde-config was found&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 102, 204); font-style: italic;"&gt;Checking for kde version : 3.3.0&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 102, 204); font-style: italic;"&gt;Checking for the qt library : qt was found as /usr&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 102, 204); font-style: italic;"&gt;Checking for uic : uic was found as /usr/bin/uic&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 102, 204); font-style: italic;"&gt;Checking for moc : moc was found as /usr/bin/moc&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 102, 204); font-style: italic;"&gt;Checking for the qt includes : the qt headers were found in /usr/include/qt3/&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 102, 204); font-style: italic;"&gt;Checking for the kde includes : the kde headers were found in /usr/include/kde/&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 102, 204); font-style: italic;"&gt;Checking for pkg-config : Found&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 102, 204); font-style: italic;"&gt;Checking for scim &gt;= 1.3.3 ... Not Found&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 102, 204); font-style: italic;"&gt;Checking for scim-x11utils ... Not Found&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 102, 204); font-style: italic;"&gt;scim &gt;= 1.3.3 was not found (mandatory).&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 102, 204); font-style: italic;"&gt;Perhaps you should add the directory containing "scim.pc"&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 102, 204); font-style: italic;"&gt;to the PKG_CONFIG_PATH environment variable&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 102, 204); font-style: italic;"&gt;mugunthlin:/home/mugunth/skim-1.4.1#&lt;/span&gt;&lt;span style="font-style: italic;"&gt; &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;6. Now scim is found to be missing. So i downloaded scim 1.4.0 from the URL &lt;a href="http://prdownloads.sourceforge.net/scim/scim-1.4.0.tar.gz?download"&gt;http://prdownloads.sourceforge.net/scim/scim-1.4.0.tar.gz?download&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;7. Compiled and installed scim 1.4.0 as per the instruction given in its INSTALL file.&lt;br /&gt;8. Again tried configuring SKIM , this time it went thro succesfully.&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 102, 204); font-style: italic;"&gt;mugunthlin:/home/mugunth/skim-1.4.1# ./configure&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 102, 204); font-style: italic;"&gt;Checking for Python : /usr/bin/python&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 102, 204); font-style: italic;"&gt;Checking for SCons : Use Bundled scons.&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 102, 204); font-style: italic;"&gt;Checking for kde-config : kde-config was found&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 102, 204); font-style: italic;"&gt;Checking for kde version : 3.3.0&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 102, 204); font-style: italic;"&gt;Checking for the qt library : qt was found as /usr&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 102, 204); font-style: italic;"&gt;Checking for uic : uic was found as /usr/bin/uic&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 102, 204); font-style: italic;"&gt;Checking for moc : moc was found as /usr/bin/moc&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 102, 204); font-style: italic;"&gt;Checking for the qt includes : the qt headers were found in /usr/include/qt3/&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 102, 204); font-style: italic;"&gt;Checking for the kde includes : the kde headers were found in /usr/include/kde/&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 102, 204); font-style: italic;"&gt;Checking for scim &gt;= 1.3.3 ... Found&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 102, 204); font-style: italic;"&gt;Checking for scim-x11utils ... Found&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 102, 204); font-style: italic;"&gt;mugunthlin:/home/mugunth/skim-1.4.1# &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;9. Tried to compile SKIM using ./scons command (as mentioned in the readme file)&lt;br /&gt;After compiling for a while compilation terminated with one error , the following error was received:&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 102, 204); font-style: italic;"&gt;g++ -DNO_CONFIG_H -I/usr/include/kde -I/usr/include/qt3 -DENABLE_DEBUG=0 -DQT_THREAD_SUPPORT -D_REENTRANT -fPIC -O2 -DNDEBUG -DNO_DEBUG -DQT_NO_TRANSLATION -I. -Iplugins/mainwindow/applet -c -o plugins/mainwindow/applet/skimapplet.os plugins/mainwindow/applet/skimapplet.cpp&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 102, 204); font-style: italic;"&gt;plugins/mainwindow/applet/skimapplet.cpp:35: error: visibility arg must be one&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 102, 204); font-style: italic;"&gt; of "default", "hidden", "protected" or "internal"&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 102, 204); font-style: italic;"&gt;scons: *** [plugins/mainwindow/applet/skimapplet.os] Error 1&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 102, 204); font-style: italic;"&gt;scons: building terminated because of errors.&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 102, 204); font-style: italic;"&gt;mugunthlin:/home/mugunth/skim-1.4.1# &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;10. Since SKIM 1.4.1 gave error, I decided to try older version 1.4.0 , downloaded skim 1.4.0 from the URL: http://prdownloads.sourceforge.net/scim/skim-1.4.0.tar.bz2?download&lt;br /&gt;SKIM 1.4.0 too gave the same error.&lt;br /&gt;&lt;br /&gt;Searched the web for similar errors , could not find one... so logged a bug report in scim sourceforge page.  &lt;a href="https://sourceforge.net/tracker/index.php?func=detail&amp;aid=1264365&amp;amp;amp;amp;amp;group_id=108454&amp;amp;atid=650539"&gt;&lt;click&gt;&lt;/click&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Nothing much I could do further , anyone have clue about the above compilation error.. please let me know...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/12470452-112452278106964504?l=mugunth.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mugunth.blogspot.com/feeds/112452278106964504/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=12470452&amp;postID=112452278106964504&amp;isPopup=true' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/112452278106964504'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/112452278106964504'/><link rel='alternate' type='text/html' href='http://mugunth.blogspot.com/2005/08/skim-installation-issue-in-xandros.html' title='SKIM installation issue in Xandros'/><author><name>Mugunth/முகுந்த்</name><uri>http://www.blogger.com/profile/08819517001563246095</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-12470452.post-112381938641438444</id><published>2005-08-12T09:23:00.000+05:30</published><updated>2005-08-12T12:30:59.633+05:30</updated><title type='text'>XandrOS Linux - excellent choice for Newbies</title><content type='html'>I Have recently formated my system and installed WindowsXP and Xandros Linux in dual boot mode. So far I am able to most of my work using Xandros instead of relying on Windows.&lt;br /&gt;&lt;br /&gt;So far I am able to the following in Xandros:&lt;br /&gt;1. Connect to BSNL Broadband internet.&lt;br /&gt;2. Able to install ttf fonts.&lt;br /&gt;3. View Tamil internet pages - Tamil rendering is very good.&lt;br /&gt;4. Print Documents.&lt;br /&gt;5. Access my windows partition files&lt;br /&gt;6. Run windows applications like notepad, Internet Explorer in Xandros Linux using Crossover office setup.&lt;br /&gt;7. Open/edit/create all the microsoft word/Excel/powerpoint files using Openoffice&lt;br /&gt;&lt;br /&gt;My major irritant with Xandros as of now:&lt;br /&gt;I am not able to type in Tamil. Tried all the available tamil IM utilities but so far not able to succeed..&lt;br /&gt;&lt;br /&gt;Need to hack the Input methods to create a suitable typing utility...&lt;br /&gt;&lt;br /&gt;Besides the above problem in typing tamil, for other English usage , Xandros linux seems to be an excellent choice for ordinary users.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/12470452-112381938641438444?l=mugunth.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mugunth.blogspot.com/feeds/112381938641438444/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=12470452&amp;postID=112381938641438444&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/112381938641438444'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/112381938641438444'/><link rel='alternate' type='text/html' href='http://mugunth.blogspot.com/2005/08/xandros-linux-excellent-choice-for.html' title='XandrOS Linux - excellent choice for Newbies'/><author><name>Mugunth/முகுந்த்</name><uri>http://www.blogger.com/profile/08819517001563246095</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-12470452.post-112222181878420480</id><published>2005-07-24T21:32:00.000+05:30</published><updated>2005-07-24T21:46:58.790+05:30</updated><title type='text'>Got settled in chennai!</title><content type='html'>This is a status update to my friends....&lt;br /&gt;After being in Malaysia for about 4 years , I have got transfered to chennai effective from May&lt;br /&gt;2005.&lt;br /&gt;Stayed in my sisters house in Thambaram for about 2 months and searched for houses in Adyar area (near my office).&lt;br /&gt;&lt;br /&gt;Got a house &amp; settled in kotturpuram , got BSNL broadband connection recently in my new house. But it had developed some problem and not working for the past 2 days.&lt;br /&gt;Hope to get it rectified and become active in online world again...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/12470452-112222181878420480?l=mugunth.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mugunth.blogspot.com/feeds/112222181878420480/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=12470452&amp;postID=112222181878420480&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/112222181878420480'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/112222181878420480'/><link rel='alternate' type='text/html' href='http://mugunth.blogspot.com/2005/07/got-settled-in-chennai.html' title='Got settled in chennai!'/><author><name>Mugunth/முகுந்த்</name><uri>http://www.blogger.com/profile/08819517001563246095</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-12470452.post-111458432042207343</id><published>2005-04-27T12:14:00.000+05:30</published><updated>2005-04-27T12:15:20.423+05:30</updated><title type='text'>Started blogging in English too...</title><content type='html'>I have decided to do some blogging in English too...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/12470452-111458432042207343?l=mugunth.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mugunth.blogspot.com/feeds/111458432042207343/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=12470452&amp;postID=111458432042207343&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/111458432042207343'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/12470452/posts/default/111458432042207343'/><link rel='alternate' type='text/html' href='http://mugunth.blogspot.com/2005/04/started-blogging-in-english-too.html' title='Started blogging in English too...'/><author><name>Mugunth/முகுந்த்</name><uri>http://www.blogger.com/profile/08819517001563246095</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry></feed>
