<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.smc.org.in/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Pravs</id>
	<title>SMC Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.smc.org.in/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Pravs"/>
	<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/Special:Contributions/Pravs"/>
	<updated>2026-05-29T22:22:32Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.40.1</generator>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=GSoC/2014/Project_ideas&amp;diff=4712</id>
		<title>GSoC/2014/Project ideas</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=GSoC/2014/Project_ideas&amp;diff=4712"/>
		<updated>2014-03-14T17:22:32Z</updated>

		<summary type="html">&lt;p&gt;Pravs: /* Language filter for diaspora */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;center&amp;gt; &lt;br /&gt;
&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt; &amp;lt;big&amp;gt;&#039;&#039;&#039;Apart from the following ideas , you can propose your own ideas&#039;&#039;&#039;&amp;lt;/big&amp;gt;&amp;lt;/font&amp;gt;&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Potential Mentors=&lt;br /&gt;
# Santhosh Thottingal (&#039;&#039;&#039;santhosh&#039;&#039;&#039; on irc.freenode.net)&lt;br /&gt;
# Baiju M (&#039;&#039;&#039;baijum&#039;&#039;&#039; on irc.freenode.net)&lt;br /&gt;
# Praveen A (&#039;&#039;&#039;j4v4m4n&#039;&#039;&#039; on irc.freenode.net)&lt;br /&gt;
# Rajeesh K Nambiar (&#039;&#039;&#039;rajeeshknambiar&#039;&#039;&#039; on irc.freenode.net)&lt;br /&gt;
# Vasudev Kammath (&#039;&#039;&#039;copyninja&#039;&#039;&#039; on irc.freenode.net)&lt;br /&gt;
# Jishnu Mohan (&#039;&#039;&#039;jishnu7&#039;&#039;&#039; on irc.freenode.net)&lt;br /&gt;
# Hrishikesh K.B (&#039;&#039;&#039;stultus&#039;&#039;&#039; on irc.freenode.net)&lt;br /&gt;
# Anivar Aravind (&#039;&#039;&#039;anivar&#039;&#039;&#039; on irc.freenode.net)&lt;br /&gt;
# Anilkumar K V (&#039;&#039;&#039;anilkumar&#039;&#039;&#039; on irc.freenode.net)&lt;br /&gt;
# Sajjad Anwar (&#039;&#039;&#039;geohacker&#039;&#039;&#039; on irc.freenode.net)&lt;br /&gt;
# Deepa V Gopinath (&#039;&#039;&#039;deepagopinath&#039;&#039;&#039; on irc.freenode.net)&lt;br /&gt;
# jain Basil  (&#039;&#039;&#039;jainbasil&#039;&#039;&#039; on irc.freenode.net)&lt;br /&gt;
# Ershad K (&#039;&#039;&#039;ershad&#039;&#039;&#039; on irc.freenode.net&lt;br /&gt;
# Navaneeth (&#039;&#039;&#039;nkn__&#039;&#039;&#039; on irc.freenode.net)&lt;br /&gt;
# Nishan Naseer (&#039;&#039;&#039;nishan&#039;&#039;&#039; on irc.freenode.net)&lt;br /&gt;
# Nandaja Varma (&#039;&#039;&#039;gem&#039;&#039;&#039; on irc.freenode.net)&lt;br /&gt;
&lt;br /&gt;
=Ideas for Google Summer of Code 2014=&lt;br /&gt;
* Please Read the [http://wiki.smc.org.in/SoC/2014#FAQ FAQ]&lt;br /&gt;
* If you want to propose an idea, please do it in [http://lists.smc.org.in/listinfo.cgi/student-projects-smc.org.in student projects mailing list]&lt;br /&gt;
&lt;br /&gt;
=Projects with confirmed mentors=&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== A spell checker for Indic language that understands inflections ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Project&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
SILPA project has a spellchecker written using python with a not so simple algorithm. But still it is not capable of handling inflection and agglutination occurring in Indian languages especially south Indian languages. The dictionary we have for Malayalam spellchecker have about 150000 words. Of course we can expand the dictionary, but that doesn&#039;t have much value since words can be formed in Malayalam or Tamil etc by joining multiple words. In addition to that, words get inflected based on grammar forms(sandhi), plural, gender etc. Hunspell has a system to handle this, but so far nobody succeeded in getting it working for multi level suffix stripping as required for Malayalam. Some times a Malayalam word can be formed by more than 5 words joining together. We will need a word splitting logic or a table taking care of all patterns. The project is to attempt solving this with hunspell. If that is not feasible(hunspell upstream is not active), develop an algorithm and implement it.&lt;br /&gt;
&lt;br /&gt;
Recently Tamil attempted developing a spellchecker using Hunspell with multi level suffix stripping. You can see the result here https://github.com/thamizha/solthiruthi. &lt;br /&gt;
Our attempt should be first to use Hunspell to achieve spellchecking with agglutination and inflection. Probably it will require lot of scripting to generate suffix patterns, we can ask help from existing language communities too. If Hunspell has limitation with multi level suffxes- sometimes Indian languages require more than 5 levels of suffix stripping, we need to document it(bug and documentation) and try to attempt python based solution on top of SILPA framework.&lt;br /&gt;
&lt;br /&gt;
The project is not about coding an existing algorithm, but to develop and implement an algorithm.&lt;br /&gt;
&lt;br /&gt;
Hunspell&#039;s limitations can be understood from [[User:%E0%B4%B8%E0%B4%A8%E0%B5%8D%E0%B4%A4%E0%B5%8B%E0%B4%B7%E0%B5%8D/HunspellConversation| this conversation]] we had with the author of Hunspell in 2008&lt;br /&gt;
&lt;br /&gt;
Homework to do before submitting applications:&lt;br /&gt;
# Use Hunspell in any Indian language like Malayalam for spell correction in editors or word processors and understand the limitations&lt;br /&gt;
# Study the nature of inflection and agglutination in Indian languages, read existing documents on this(ask for documents too) and note down your observations&lt;br /&gt;
# Study Hunspell and other spellcheckers to see how this problem is addressed&lt;br /&gt;
# Understand how a spell checker works. How to write a spellchecker from scratch?&lt;br /&gt;
# Come up with a plan about addressing the issue.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;[https://savannah.nongnu.org/task/index.php?12558 Savannah Task]&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Complexity&#039;&#039;&#039;: Advanced&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Confirmed Mentor&#039;&#039;&#039;: Santhosh Thottingal&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;How to contact the mentor&#039;&#039;&#039;: IRC - santhosh on #smc-project on Freenode&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Expertise required&#039;&#039;&#039;: Average level understanding of grammar system of at least one Indian language and complete the homework as listed above.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;What the student will learn&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
==Indic rendering support in ConTeXt==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Project&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
ConTeXt is another TeX macro system similar to LaTeX but much more suitable for design. To find more information about ConTeXt, see the wiki http://wiki.contextgarden.net/Main_Page. ConTeXt MKII  have Indic language rendering support using XeTeX. but MKII is deprecated, and the new MKIV backend doesn&#039;t support Indic rendering yet. The aim of this project is to add support to Inidic rendering to ConTeXt MKIV. XeTeX is using Harfbuzz to do correct Indic rendering.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;More Details&#039;&#039;&#039;: A partially working patch by Rajeesh for MKIV lua code is available. ConTeXt mkii (deprecated) can work with XeTeX backend for Indic rendering. Here is a sample file:&lt;br /&gt;
 \usemodule[simplefonts]&lt;br /&gt;
 \definefontfeature[malayalam][script=mlym]&lt;br /&gt;
 \setmainfont[Rachana][features=malayalam]&lt;br /&gt;
 \starttext&lt;br /&gt;
 മലയാളം \TeX ഉപയോഗിച്ച് ടൈപ്പ്സെറ്റ് ചെയ്തത്&lt;br /&gt;
 \stoptext&lt;br /&gt;
Generate the output using command&lt;br /&gt;
 texexec --xetex &amp;lt;file.tex&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;[https://savannah.nongnu.org/task/index.php?12559 Savannah Task]&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Complexity&#039;&#039;&#039; : Advanced&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Confirmed Mentor&#039;&#039;&#039; : Rajeesh K Nambiar&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;How to contact the mentor&#039;&#039;&#039;: IRC - rajeeshknambiar on #smc-project on Freenode&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Expertise required&#039;&#039;&#039;: Understanding of the TeX system, experience in either LaTeX or ConTeXt and basic understanding of Indic language rendering. MKIV uses Lua, familiarity with Lua, opentype specifications or Harfbuzz will be added advantage.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;What the students will learn&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Language model and Acoustic model for Malayalam language for speech recognition system in CMU Sphinx==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Project&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
CMU Sphinx is a large vocabulary, speaker independent speech recognition codebase and suite of tools, which can be used to develop speech recognition system in any language. To develop an automatic speech recognition system in a language, acoustic model and language model has to framed for that particular language.  Acoustic models characterize how sound changes over time. It captures the characteristics of basic recognition units. The language model describes the likelihood, probability, or penalty taken when a sequence or collection of words is seen. It attempts to convey behavior of the language and tries to predict the occurrence of specific word sequences possible in the language. Once these two models are developed, it will be useful to every one doing research in speech processing. For Indian languages Hindi, Tamil, Telugu and Marati, ASR systems have been developed using sphinx engine. In this project work is aimed at developing acoustic model and language model for Malayalam.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Background Reading&#039;&#039;&#039;&lt;br /&gt;
* [http://www.cs.cmu.edu/~gopalakr/publications/spdatabases_specom05.pdf &#039;Development of Indian Language Speech Databases for Large Vocabulary Speech Recognition Systems&#039;], Gopalakrishna  Anumanchipalli, Rahul Chitturi, Sachin Joshi, Rohit Kumar, Satinder Pal Singh, R.N.V. Sitaram, S P Kishore&lt;br /&gt;
* [http://www.aclweb.org/anthology/W/W12/W12-5808.pdf &amp;quot;Automatic Pronunciation Evaluation And Mispronunciation Detection Using CMUSphinx&amp;quot;], Ronanki Srikanth, James Salsman&lt;br /&gt;
* http://www.speech.cs.cmu.edu/&lt;br /&gt;
* http://cmusphinx.sourceforge.net/wiki/tutorial&lt;br /&gt;
* [http://www.ijarcsse.com &amp;quot;HTK Based Telugu Speech Recognition&amp;quot;], P. Vijai Bhaskar, AVNIET ,Hyderabad, Prof. Dr. S. Rama Mohan Rao, A.Gopi &lt;br /&gt;
* [http://www.cs.cmu.edu/~araza/Automatic_Speech_Recognition_System_for_Urdu.PDF &amp;quot;Design and  Development of an Automatic Speech Recognition System for Urdu&amp;quot;], Agha Ali Raza,  M.Sc. Thesis, FAST‐National University of Computer and Emerging Sciences &lt;br /&gt;
* [http://www.ccis2k.org/iajit/PDF/vol.6,no.2/11IASRUCSS186.pdf &amp;quot;Investigation Arabic Speech Recognition Using CMU Sphinx System&amp;quot;], Hassan Satori1, 2, Hussein Hiyassat3, Mostafa Harti1, 2, and Noureddine Chenfour&lt;br /&gt;
* [http://www.try.idv.tw/static-resources/homework/pr/PR_Final_Report.pdf &amp;quot;Understanding the CMU Sphinx Speech Recognition System&amp;quot;], Chun-Feng Liao&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Complexity&#039;&#039;&#039; : &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Confirmed Mentor&#039;&#039;&#039; : Deepa P Gopinath&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;How to contact the mentor&#039;&#039;&#039;: IRC - deepagopinath on #smc-project on Freenode&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Expertise required&#039;&#039;&#039;: &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;What the students will learn&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==SILPA Project Based==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===SILPA Project Improvements===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Project&#039;&#039;&#039;: &lt;br /&gt;
&lt;br /&gt;
This is set of ideas needed to improve the existing SILPA infrastructure. We have decided following tasks as part of this project&lt;br /&gt;
&lt;br /&gt;
# Provide REST API to SILPA without disturbing existing JSONRPC API&lt;br /&gt;
# Improve the Transliteration module&lt;br /&gt;
# Integrate [https://github.com/Project-SILPA/flask-webfonts Flask Webfonts] extension with SILPA to provide Webfonts support.&lt;br /&gt;
&lt;br /&gt;
==== Provide REST like API for SILPA ====&lt;br /&gt;
&lt;br /&gt;
SILPA provides JSONRPC API currently which is also utilized by the templates of framework. JSONRPC is not well supported in all languages and results in [https://en.wikipedia.org/wiki/Not_invented_here NIH code]. So we would like to provide REST like HTTP based API&#039;s for SILPA and at the same time leave the current JSONRPC code untouched for backward compatibility reasons.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Objectives&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
* Develop module or use existing module to provide REST like API&#039;s&lt;br /&gt;
* API should support GET and POST. [http://www.w3.org/2001/tag/doc/whenToUseGet.html When to use GET?].&lt;br /&gt;
&lt;br /&gt;
Many people have doubt on how the API should look like. We can give twitter API (https://dev.twitter.com/docs/api) as example &lt;br /&gt;
Sample API calls :&lt;br /&gt;
-------------------------------------------------------------&lt;br /&gt;
    POST api.silpa.org.in/payyans/ASCII2Unicode&lt;br /&gt;
    Paramets: text, font&lt;br /&gt;
    Response: JSON data&lt;br /&gt;
-------------------------------------------------------------&lt;br /&gt;
    POST api.silpa.org.in/payyans/Unicode2ASCII&lt;br /&gt;
    Paramets: text, font&lt;br /&gt;
    Response: JSON data&lt;br /&gt;
-------------------------------------------------------------&lt;br /&gt;
Generic: &lt;br /&gt;
    GET/POST (http://api.silpa.org.in/module/function_name or http://silpa.org.in/api/module/function_name)&lt;br /&gt;
    Parameters: function parameters&lt;br /&gt;
    Response: JSON encoded return value from function&lt;br /&gt;
&lt;br /&gt;
====  Improve Transliteration module ====&lt;br /&gt;
&lt;br /&gt;
We have a Transliteration module which supports transliteration from any Indic language to other Indic language and also support to English to Indic and Indic to English transliteration. Also we support IPA and ISO15919 transliteration system. But the module isn&#039;t in perfect shape and has lot of bugs. With this idea we would like to improve the following parts&lt;br /&gt;
&lt;br /&gt;
# Improve cross indic language transliteration system. Currently only Malayalam and Kannada are working without any external language support, all other Indian languages are first transliterated to Malayalam and then transliterated to target Indic language. We want to remove this cycle from source -&amp;gt; Malayalam -&amp;gt; target.&lt;br /&gt;
# English to IPA transliteration is currently broken and this needs to be fixed. See [https://github.com/Project-SILPA/Transliteration/issues/3 IPA transliteration bug].&lt;br /&gt;
# Once the IPA transliteration issue above is fixed, imporve English to Indic transliteration system using IPA. Currently English to Indic transliteration system is done using CMU Sphinx dictionary which is having limited set of words which inturn limits the output of English to Indic transliteration system.&lt;br /&gt;
# Improve IS015919 to Indic transliteration system see [https://github.com/Project-SILPA/Transliteration/issues/4 IS015919 to Indic transliteration].&lt;br /&gt;
&lt;br /&gt;
CLDR has transliteration data for Indic languages. We can explore it and see the feasibility. For an intermediate representation of the scripts either IPA can be used or ISO 15919 standard can be used. All these must be supplemented with exception rules and special case handling to achieve more perfect result.&lt;br /&gt;
&lt;br /&gt;
==== Integrating flask-webfonts extension with SILPA ====&lt;br /&gt;
&lt;br /&gt;
SILPA used to have a Webfonts module for serving Indian language fonts as Webfonts for browsers. During GSOC 2013 it was separated as an extension to Flask framework which can be generally used with any Flask powered app. The current code can be found at [https://github.com/Project-SILPA/flask-webfonts]. The module is not fine tuned yet so below are the objectives.&lt;br /&gt;
&lt;br /&gt;
# The module is not yet fine tuned and using it will make other modules break. This needs to be fixed (Can be checked with &#039;webfonts&#039; branch of SILPA code on github.&lt;br /&gt;
# Write tests to check the functionalities.&lt;br /&gt;
# Adhere to Flask extension guidelines and submit the modules to Flask extensions directory.&lt;br /&gt;
# Write a tool which can take a directory containing fonts file or single font file and generate configuration file needed by the extension. (A possible such tool which is outdated can be found at [https://github.com/copyninja/fontinfo])&lt;br /&gt;
# Provide HTTP api&#039;s through flask extension which can expose the CSS for applications.&lt;br /&gt;
&lt;br /&gt;
For all tasks above we expect documentation, test cases from the students as deliverable. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Complexity&#039;&#039;&#039; : Intermediate&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Confirmed Mentors&#039;&#039;&#039; : Vasudev Kamath, Jishnu Mohan&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;How to contact the mentors&#039;&#039;&#039;: IRC -&lt;br /&gt;
*Vasudev Kamath - copyninja on #smc-project and #silpa on Freenode&lt;br /&gt;
*Jishnu Mohan - jishnu7 on #smc-project and #silpa on Freenode&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Mailing List&#039;&#039;&#039;: silpa-discuss@nongnu.org &amp;lt;preferred&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Expertise required&#039;&#039;&#039;: Python , Flask , Jinja , HTML, Javascript&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;What the students will learn&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
# Writing applications using Flask&lt;br /&gt;
# Various Transliteration system knolwedge&lt;br /&gt;
# Webfonts knowledge and writing extensions for Flask&lt;br /&gt;
# Test drive development.&lt;br /&gt;
&lt;br /&gt;
===Android SDK for Silpa===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Project&#039;&#039;&#039;: &lt;br /&gt;
&lt;br /&gt;
Port possible Silpa modules to java and create SDK so that other developers can use this for their apps. Modules like Indic Render, Transliteration, Payyas has really good potential in android because of the fragmentation exists in Android and lack for proper Indic support. This SDK will help developers to support their Indic app in wide range of android devices.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Objectives&#039;&#039;&#039;:&lt;br /&gt;
&amp;lt;Please note this idea is for a SDK, not an app or just a java port&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*All modules need to be ported to java so that it can be used inside an Android Project.&lt;br /&gt;
*Other applications should be able to use this Silpa library to easy integrate features (as a SDK) from our modules. Eg.&lt;br /&gt;
**Transliteration - Developer can specify a text input inside the  application needs transliteration, and our SDK should take care of the  transliteration process whenever user inputs text to that field.&lt;br /&gt;
**Render module - Detect whether necessary font is available in the  system, if it is not, render text as image and replace text with this.&lt;br /&gt;
**All modules can be explained like this.&lt;br /&gt;
*Investigate whether image rendering part of render module can be done in device, inside application itself. Few ways to implement that are&lt;br /&gt;
**Compiling cairo/pango with ndk&lt;br /&gt;
**Compiling Harffbuzz from AOSP tree with ndk&lt;br /&gt;
**Based on the result of rendering module investigation, we can device on whether to use server side rendering or not.&lt;br /&gt;
**Pack popular fonts with the SDK, Use it to display text if device doesn&#039;t have required font. (there are few hacks to get better rendering in older versions of android). Developer should be able to force rendering using packaged font, to get consistency across devices.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;Better to prepare SDK with helper than preparing application itself. SDK aka library&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Complexity&#039;&#039;&#039; : Advanced&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Confirmed Mentors&#039;&#039;&#039; : Hrishikesh K. B, Jishnu Mohan, Aashik S&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;How to contact the mentor&#039;&#039;&#039;: IRC -&lt;br /&gt;
*Hrishikesh K B - stultus on on #smc-project and #silpa on Freenode&lt;br /&gt;
*Jishnu Mohan - jishnu7 on #smc-project and #silpa on Freenode&lt;br /&gt;
*Aashik S - irumbumoideen on #smc-project on Freenode&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Expertise required&#039;&#039;&#039;: Java, Android, Python&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;What the students will learn&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
===Converting indic processing modules currently in SILPA into javascript modules library===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Project&#039;&#039;&#039;: &lt;br /&gt;
&lt;br /&gt;
Port some of the silpa algorithms to node modules. Several modules, alogorithms in SILPA project is done in python now. But porting them to javascript helps developers. For example, cross language transliteration can be done javascript too if we port the algorithm and transliteration rules. Similarly the approximate search can be ported. A flexibile fuzzy search on the web pages will be possible if we have the algorithm in javascript.&lt;br /&gt;
&lt;br /&gt;
Proposed javascript module pattern is https://github.com/umdjs/umd&lt;br /&gt;
&lt;br /&gt;
Student proposals should have a list of alogorithms planning to port, planned demo applications, planned documentation details, and publishing details(Example: npm registry)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Complexity&#039;&#039;&#039; : &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Confirmed Mentor&#039;&#039;&#039; : Santhosh Thottingal, Jishnu Mohan&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;How to contact the mentor&#039;&#039;&#039;: IRC - jishnu7 santhosh on #smc-project and #silpa on Freenode&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039; Mailing List&#039;&#039;&#039;: silpa-discuss@nongnu.org&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Expertise required&#039;&#039;&#039;: javascript, python&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;What the students will learn&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
===Integrate Varnam into Silpa===&lt;br /&gt;
&lt;br /&gt;
Create a Silpa module which hosts [http://www.varnamproject.com varnam]. This includes making a python port for libvarnam and making a Silpa module which uses the python port. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Complexity&#039;&#039;&#039; : Medium&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Confirmed Mentor&#039;&#039;&#039; : Navaneeth K N&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;How to contact the mentor&#039;&#039;&#039;: IRC - nkn__ on #smc-project and #silpa on Freenode&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039; Mailing List&#039;&#039;&#039;: silpa-discuss@nongnu.org&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Expertise required&#039;&#039;&#039;: C, Python&lt;br /&gt;
&lt;br /&gt;
==Language filter for diaspora==&lt;br /&gt;
&lt;br /&gt;
Diaspora is a Free Software, federated social networking platform. Diaspora users post in many languages. When people use more than one language in their posts, it is inconvenient for people who don&#039;t understand a language. This task is to tag every post with languages used in the post, ideally detected automatically, but with an option to override it. Once each post has a language tag, people should be able to choose their preferred language and posts in other languages should be hidden by default. Also provide an option to translate posts and comments.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Complexity&#039;&#039;&#039; : &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Confirmed Mentors&#039;&#039;&#039; : Pirate Praveen, Ershad K&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;How to contact the mentors&#039;&#039;&#039;: IRC  &lt;br /&gt;
*Pirate Praveen - j4v4m4n on #smc-project on Freenode&lt;br /&gt;
*Ershad K - ershad on #smc-project on Freenode&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Expertise required&#039;&#039;&#039;: Ruby on Rails&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Upstream discussion&#039;&#039;&#039;: https://www.loomio.org/d/4vTqCj5X/language-filter-for-diaspora-as-a-gsoc-project&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;What the students will learn&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
==Varnam Based==&lt;br /&gt;
&lt;br /&gt;
Varnam is a cross-platform predictive transliterator for Indian languages. It works mostly like Google&#039;s transliterate, but shows key differences in the way word tokenization is done. It has a learning system built in which allows Varnam to make smart predictions. &lt;br /&gt;
&lt;br /&gt;
There are varnam clients available as [https://addons.mozilla.org/en-US/firefox/addon/varnam-transliteration-base/ Firefox]] &amp;amp; [https://chrome.google.com/webstore/detail/varnam-ime/abcfkeabpcanobhdmcmdabejaamephaf Chrome addon] and an [https://gitorious.org/varnamproject/libvarnam-ibus/source/d939adf50024013902c27310c03ef21a9210cdcb IBus engine].&lt;br /&gt;
&lt;br /&gt;
To try out Varnam, navigate to [http://varnamproject.com/editor[http://varnamproject.com/editor]]. Currently it support Hindi and Malayalam.&lt;br /&gt;
&lt;br /&gt;
* [http://www.varnamproject.com/docs/faq FAQ]&lt;br /&gt;
* [http://www.varnamproject.com/docs Documentation]&lt;br /&gt;
* [http://www.varnamproject.com/docs/contributing Contributors guide &amp;amp; ideas to work on]&lt;br /&gt;
&lt;br /&gt;
Apart from the following ideas, you can propose your own idea. &lt;br /&gt;
&lt;br /&gt;
===Programming language bindings &amp;amp; varnam-daemon===&lt;br /&gt;
&lt;br /&gt;
Varnam is written on C which makes interoperability with other languages easy. There are language bindings available for `NodeJs` and `Ruby`. Supporting Varnam in multiple languages allows projects to use varnam easily to enable Indian language input.&lt;br /&gt;
&lt;br /&gt;
To make using varnam from different languages easier, make a cross platform standalone process which uses `libvarnam` shared library and exposes a RPC API over network. This allows any programming language with a socket support can be used with libvarnam. This also makes language bindings fairly easy because they don&#039;t have to work with the native interoperability support. The protocol can be a simple text based protocol for all the commands that `libvarnam` supports. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Complexity&#039;&#039;&#039; : Advanced&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Confirmed Mentor&#039;&#039;&#039; : Navaneeth K N&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;How to contact the mentor&#039;&#039;&#039;: IRC - nkn__ on #smc-project on Freenode&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Expertise required&#039;&#039;&#039;: C&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Improvements to the REST API===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Project&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
This includes rewrite of the current implementation in `golang` and add support for WebSockets to improve the input experience. This also&lt;br /&gt;
includes making scripts that would ease embedding input on any webpage. All the changes done will go live on[1]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Complexity&#039;&#039;&#039; : Advanced&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Confirmed Mentor&#039;&#039;&#039; : Navaneeth K N&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;How to contact the mentor&#039;&#039;&#039;: IRC - nkn__ on #smc-project on Freenode&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Expertise required&#039;&#039;&#039;: Basic understanding of golang and C&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;What the students will learn&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Improve the learning system===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Project&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
The main goal of this is to improve how varnam tokenizes when learning words. Today, when a word is learned, varnam takes all the possible prefixes into account and learn all of them to improve future suggestions. But sometimes, this is not enough to predict good suggestions. An improvement is suggested which will try to infer the base form of the word under learning.&lt;br /&gt;
&lt;br /&gt;
Varnam has a learning system built-in which can learn words and it can also learn possible other ways to write a word. Consider the following example. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
learn(&amp;quot;भारत&amp;quot;) = [bharat, bhaarath, bharath]&lt;br /&gt;
transliterate(&amp;quot;bharat&amp;quot;) = भारत&lt;br /&gt;
transliterate(&amp;quot;bhaarath&amp;quot;) = भारत&lt;br /&gt;
transliterate(&amp;quot;bharath&amp;quot;) = भारत&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Varnam also learns a word&#039;s prefixes so that it can produce better predictions for any word which has the same prefix. So in this case, with just learning the word &amp;quot;भारत&amp;quot;, varnam can predict &amp;quot;bharateey&amp;quot; = &amp;quot;भारतीय&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
The proposed idea talks about making this learn better. One example is infer the word &amp;quot;भारत&amp;quot; when learning भारतीय. Something like a porter stemmer implementation but integrated into the varnam framework so that&lt;br /&gt;
new language support can be added easily.&lt;br /&gt;
&lt;br /&gt;
This idea also includes improving concurrency support for learn. Currently, learn can&#039;t be called concurrently because of the restrictions on the SQLite. So every learn has to be sequentially done. This needs to be improved by having a simple internal queue from which words gets queued when the learn is busy. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Complexity&#039;&#039;&#039; : Advanced&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Confirmed Mentor&#039;&#039;&#039; : Navaneeth K N&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;How to contact the mentor&#039;&#039;&#039;: IRC - nkn__ on #smc-project on Freenode&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Expertise required&#039;&#039;&#039;:  Knowledge in C, Ruby (basics)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;What the students will learn&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
===Create an Android IME===&lt;br /&gt;
&lt;br /&gt;
Android has an extensible input method system. Use that to make a IME which uses varnam internally. This includes, getting `libvarnam` compiled on android first. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Complexity&#039;&#039;&#039; : Advanced&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Expertise required&#039;&#039;&#039;:  C, Android, Java&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Confirmed Mentor&#039;&#039;&#039; : Navaneeth K N&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;How to contact the mentor&#039;&#039;&#039;: IRC - nkn__ on #smc-project on Freenode&lt;br /&gt;
&lt;br /&gt;
===Enable varnam&#039;s suggestions system to be used from Inscript or any other input system===&lt;br /&gt;
&lt;br /&gt;
Varnam has knowledge about lot of words. This idea proposes a method to use these words and provide suggestions for other input systems. Basically, in Varnam, the API call will be something like,&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
varnam_get_suggestions (handle, &amp;quot;भारत&amp;quot;);&lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This will fetch all the suggestions which has the given prefix. &lt;br /&gt;
&lt;br /&gt;
`varnam_get_suggestions` needs to keep track of the previous words and use [http://en.wikipedia.org/wiki/N-gram n-gram] based dataset to filter the results. This should also learn the words back into the word corpus that varnam is using. Filtering suggestions won&#039;t be just a prefix search, but it will have knowledge about how text can be written in the target language and provide smart filtering. Searching in a large corpus and providing real-time suggestions makes this a challenging task. &lt;br /&gt;
&lt;br /&gt;
Once this is implemented in `libvarnam`, it can be used in the ibus-engine.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Complexity&#039;&#039;&#039; : Advanced&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Expertise required&#039;&#039;&#039;:  C, Unicode &amp;amp; encodings&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Confirmed Mentor&#039;&#039;&#039; : Navaneeth K N&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;How to contact the mentor&#039;&#039;&#039;: IRC - nkn__ on #smc-project on Freenode&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Word corpus synchronization ===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Project&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
Create a cross-platform synchronization tool which can upload/download the word corpus from offline IMEs like varnam-ibus[2]. This helps to build the online words corpus easily.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Complexity&#039;&#039;&#039; : Medium&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Confirmed Mentor&#039;&#039;&#039; : Navaneeth K N&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;How to contact the mentor&#039;&#039;&#039;: IRC - nkn__ on #smc-project on Freenode&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Expertise required&#039;&#039;&#039;:  Knowledge in C/golang&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;What the students will learn&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [1]: http://www.varnamproject.com&lt;br /&gt;
* [2]: https://gitorious.org/varnamproject/libvarnam-ibus/&lt;br /&gt;
&lt;br /&gt;
==Adding Braille Keyboard layouts for Indian Languages to m17n Library==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Project&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
Project is building support for Bharati Braille keyboard layouts in GNU/Linux systemes.  Bharati Braille standard is the official Braille standard in India. A regular QWERTY keyboard is used for data entry. SDF-JKL keys are used for six dots of Braille. This support need to be built as m17n layouts. This will enable visually challenged people who studied braille layouts to use GNU/Linux systems easily with the help of Audio feedback from TTS&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;More Details&#039;&#039;&#039;&lt;br /&gt;
* http://www.acharya.gen.in:8080/disabilities/bh_brl.php&lt;br /&gt;
* http://en.wikipedia.org/wiki/Bharati_Braille&lt;br /&gt;
* http://www.nongnu.org/m17n/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Complexity&#039;&#039;&#039; : &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Confirmed Mentor&#039;&#039;&#039; : Anilkumar K V&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;How to contact the mentor&#039;&#039;&#039;: IRC - anilkumar on #smc-project on Freenode&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Expertise required&#039;&#039;&#039;: &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;What the students will learn&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
==Grandham ==&lt;br /&gt;
&lt;br /&gt;
=== Adding MARC21 import/export feature in Grandham ===&lt;br /&gt;
&lt;br /&gt;
We need a feature in Grandham to import and parse data from MARC21 documents. We should also be able to export existing data in MARC21.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Complexity&#039;&#039;&#039; : High&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Confirmed Mentor&#039;&#039;&#039; : Ershad K&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;How to contact the mentor&#039;&#039;&#039;: IRC - ershad on #smc-project on Freenode&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Expertise required&#039;&#039;&#039;: Knowledge in Ruby/Ruby on Rails&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;What the students will learn&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [1]: http://dev.grandham.org&lt;br /&gt;
* [2]: https://github.com/smc/grandham&lt;br /&gt;
&lt;br /&gt;
=Projects with unconfirmed mentors=&lt;/div&gt;</summary>
		<author><name>Pravs</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=GSoC/2014/Project_ideas&amp;diff=4576</id>
		<title>GSoC/2014/Project ideas</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=GSoC/2014/Project_ideas&amp;diff=4576"/>
		<updated>2014-02-05T09:43:57Z</updated>

		<summary type="html">&lt;p&gt;Pravs: adding language filter for diaspora&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;center&amp;gt;&lt;br /&gt;
&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;This Page is under development&amp;lt;/font&amp;gt;&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Ideas for Google Summer of Code 2014=&lt;br /&gt;
* Please Read the [http://wiki.smc.org.in/SoC/2013#FAQ FAQ]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;&#039;&#039;&#039;Apart from the following ideas , you can propose your own ideas&#039;&#039;&#039;&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you want to propose an idea, please do it in [http://lists.smc.org.in/listinfo.cgi/discuss-smc.org.in project mailing list]&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== A spell checker for Indic language that understands inflections ==&lt;br /&gt;
&#039;&#039;&#039;Project&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
SILPA project has a spellchecker written using python with a not so simple algorithm. But still it is not capable of handling inflection and agglutination occurring in Indian languages especially south Indian languages. The dictionary we have for Malayalam spellchecker have about 150000 words. Of course we can expand the dictionary, but that doesn&#039;t have much value since words can be formed in Malayalam or Tamil etc by joining multiple words. In addition to that, words get inflected based on grammar forms(sandhi), plural, gender etc. Hunspell has a system to handle this, but so far nobody succeeded in getting it working for multi level suffix stripping as required for Malayalam. Some times a Malayalam word can be formed by more than 5 words joining together. We will need a word splitting logic or a table taking care of all patterns. The project is to attempt solving this with hunspell. If that is not feasible(hunspell upstream is not active), develop an algorithm and implement it.&lt;br /&gt;
&lt;br /&gt;
Recently Tamil attempted developing a spellchecker using Hunspell with multi level suffix stripping. You can see the result here https://github.com/thamizha/solthiruthi. &lt;br /&gt;
Our attempt should be first to use Hunspell to achieve spellchecking with agglutination and inflection. Probably it will require lot of scripting to generate suffix patterns, we can ask help from existing language communities too. If Hunspell has limitation with multi level suffxes- sometimes Indian languages require more than 5 levels of suffix stripping, we need to document it(bug and documentation) and try to attempt python based solution on top of SILPA framework.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;[https://savannah.nongnu.org/task/index.php?12558 Savannah Task]&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Expertise required&#039;&#039;&#039;: Average level understanding of grammar system of at least one Indian language&lt;br /&gt;
* Complexity: Advanced&lt;br /&gt;
* &#039;&#039;&#039;Mentor&#039;&#039;&#039; : Santhosh Thottingal&lt;br /&gt;
&lt;br /&gt;
==Indic rendering support in ConTeXt==&lt;br /&gt;
&#039;&#039;&#039;Project&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
ConTeXt is another TeX macro system similar to LaTeX but much more suitable for design. To find more information about ConTeXt, see the wiki http://wiki.contextgarden.net/Main_Page. ConTeXt MKII  have Indic language rendering support using XeTeX. but MKII is deprecated, and the new MKIV backend doesn&#039;t support Indic rendering yet. The aim of this project is to add support to Inidic rendering to ConTeXt MKIV. XeTeX is using Harfbuzz to do correct Indic rendering.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;[https://savannah.nongnu.org/task/index.php?12559 Savannah Task]&lt;br /&gt;
* &#039;&#039;&#039;Expertise required&#039;&#039;&#039;: Understanding of the TeX system, experience in either LaTeX or ConTeXt and basic understanding of Indic language rendering. MKIV uses Lua, familiarity with Lua, opentype specifications or Harfbuzz will be added advantage.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Mentor&#039;&#039;&#039; : Rajeesh K Nambiar&lt;br /&gt;
* &#039;&#039;&#039;Complexity&#039;&#039;&#039; : Advanced&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;More Details&#039;&#039;&#039;: A partially working patch by Rajeesh for MKIV lua code is available. ConTeXt mkii (deprecated) can work with XeTeX backend for Indic rendering. Here is a sample file:&lt;br /&gt;
 \usemodule[simplefonts]&lt;br /&gt;
 \definefontfeature[malayalam][script=mlym]&lt;br /&gt;
 \setmainfont[Rachana][features=malayalam]&lt;br /&gt;
 \starttext&lt;br /&gt;
 മലയാളം \TeX ഉപയോഗിച്ച് ടൈപ്പ്സെറ്റ് ചെയ്തത്&lt;br /&gt;
 \stoptext&lt;br /&gt;
Generate the output using command&lt;br /&gt;
 texexec --xetex &amp;lt;file.tex&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Language model and Acoustic model for Malayalam language for speech recognition system in CMU Sphinx==&lt;br /&gt;
&lt;br /&gt;
CMU Sphinx is a large vocabulary, speaker independent speech recognition codebase and suite of tools, which can be used to develop speech recognition system in any language. To develop an automatic speech recognition system in a language, acoustic model and language model has to framed for that particular language.  Acoustic models characterize how sound changes over time. It captures the characteristics of basic recognition units. The language model describes the likelihood, probability, or penalty taken when a sequence or collection of words is seen. It attempts to convey behavior of the language and tries to predict the occurrence of specific word sequences possible in the language. Once these two models are developed, it will be useful to every one doing research in speech processing. For Indian languages Hindi, Tamil, Telugu and Marati, ASR systems have been developed using sphinx engine. In this project work is aimed at developing acoustic model and language model for Malayalam.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Mentor&#039;&#039;&#039;:  Deepa P. Gopinath&lt;br /&gt;
=== Background Reading ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://www.cs.cmu.edu/~gopalakr/publications/spdatabases_specom05.pdf &#039;Development of Indian Language Speech Databases for Large Vocabulary Speech Recognition Systems&#039;], Gopalakrishna  Anumanchipalli, Rahul Chitturi, Sachin Joshi, Rohit Kumar, Satinder Pal Singh, R.N.V. Sitaram, S P Kishore&lt;br /&gt;
&lt;br /&gt;
* [http://www.aclweb.org/anthology/W/W12/W12-5808.pdf &amp;quot;Automatic Pronunciation Evaluation And Mispronunciation Detection Using CMUSphinx&amp;quot;], Ronanki Srikanth, James Salsman&lt;br /&gt;
&lt;br /&gt;
* http://www.speech.cs.cmu.edu/&lt;br /&gt;
* http://cmusphinx.sourceforge.net/wiki/tutorial&lt;br /&gt;
&lt;br /&gt;
* [http://www.ijarcsse.com &amp;quot;HTK Based Telugu Speech Recognition&amp;quot;], P. Vijai Bhaskar, AVNIET ,Hyderabad, Prof. Dr. S. Rama Mohan Rao, A.Gopi &lt;br /&gt;
&lt;br /&gt;
* [http://www.cs.cmu.edu/~araza/Automatic_Speech_Recognition_System_for_Urdu.PDF &amp;quot;Design and  Development of an Automatic Speech Recognition System for Urdu&amp;quot;], Agha Ali Raza,  M.Sc. Thesis, FAST‐National University of Computer and Emerging Sciences &lt;br /&gt;
&lt;br /&gt;
* [http://www.ccis2k.org/iajit/PDF/vol.6,no.2/11IASRUCSS186.pdf &amp;quot;Investigation Arabic Speech Recognition Using CMU Sphinx System&amp;quot;], Hassan Satori1, 2, Hussein Hiyassat3, Mostafa Harti1, 2, and Noureddine Chenfour&lt;br /&gt;
&lt;br /&gt;
* [http://www.try.idv.tw/static-resources/homework/pr/PR_Final_Report.pdf &amp;quot;Understanding the CMU Sphinx Speech Recognition System&amp;quot;], Chun-Feng Liao&lt;br /&gt;
&lt;br /&gt;
==Language filter for diaspora==&lt;br /&gt;
&lt;br /&gt;
Diaspora is a Free Software, federated social networking platform. Diaspora users post in many languages. When people use more than one language in their posts, it is inconvenient for people who don&#039;t understand a language. This task is to tag every post with languages used in the post, ideally detected automatically, but with an option to override it. Once each post has a language tag, people should be able to choose their preferred language and posts in other languages should be hidden by default. Also provide an option to translate posts and comments.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Expertise required&#039;&#039;&#039;: Ruby on Rails&lt;br /&gt;
* &#039;&#039;&#039;Mentor&#039;&#039;&#039;: Pirate Praveen, Ershad K&lt;/div&gt;</summary>
		<author><name>Pravs</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=User:Pravs&amp;diff=4354</id>
		<title>User:Pravs</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=User:Pravs&amp;diff=4354"/>
		<updated>2013-09-03T14:31:05Z</updated>

		<summary type="html">&lt;p&gt;Pravs: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;table  style=&amp;quot;float: right;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;{{KDEContributor}}&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&lt;br /&gt;
{{GnomeContributor}}&lt;br /&gt;
&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==പ്രൊഫൈല്‍==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- lifted from https://poddery.com/posts/699691 --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
He was worked  around 8 years in IT field with Hewlett-Packard as a Free Software consultant in Bangalore and Cupertino, and with RedHat in Pune as Senior System Administrator. He completed his Btech in Electrical and Electronics Engineering from NIT Calicut.&lt;br /&gt;
&lt;br /&gt;
Praveen is a debian developer and started the debian-diaspora project, which is aimed at making diaspora easy to be installed on debian based systems. He maintains quite a few packages for diaspora. He is also a huge fan and advocate of #freesoftware, #privacy and freedom of #speech.&lt;br /&gt;
&lt;br /&gt;
He is also a mentor to the #GSoC program under Swathanthra Malayalam Computing and through #SMC and other #FOSS Communities, he have inspired many to follow the path of #freedom and #opensource. He is one of the guys who initially had the idea to save poddery.com and run a campaign for the same. He also conducts computer classes along with his friends at a school in Pandav Nagar, #pune and teach domestic workers of Shramik Mahila Morcha as part of #pirate #computer center of Pirate Party of India.&lt;/div&gt;</summary>
		<author><name>Pravs</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=User:Pravs&amp;diff=4353</id>
		<title>User:Pravs</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=User:Pravs&amp;diff=4353"/>
		<updated>2013-09-03T14:25:30Z</updated>

		<summary type="html">&lt;p&gt;Pravs: profile added&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==പ്രൊഫൈല്‍==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- lifted from https://poddery.com/posts/699691 --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
He was worked  around 8 years in IT field with Hewlett-Packard as a Free Software consultant in Bangalore and Cupertino, and as Senior System Administrtor at RedHat in Pune.&lt;br /&gt;
&lt;br /&gt;
Praveen is a debian developer and started the debian-diaspora project, which is aimed at making diaspora easy to be installed on debian based systems. He maintains quite a few packages for diaspora. He is also a huge fan and advocate of #freesoftware, #privacy and freedom of #speech.&lt;br /&gt;
&lt;br /&gt;
He is also a mentor to the #GSoC program under Swathanthra Malayalam Computing and through #SMC and other #FOSS Communities, he have inspired many to follow the path of #freedom and #opensource. He is one of the guys who initially had the idea to save poddery.com and run a campaign for the same. He also conducts computer classes along with his friends at a school in Pandav Nagar, #pune and teach domestic workers of Shramik Mahila Morcha as part of #pirate #computer center of Pirate Party of India.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table  style=&amp;quot;float: right;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;{{KDEContributor}}&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&lt;br /&gt;
{{GnomeContributor}}&lt;br /&gt;
&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;/div&gt;</summary>
		<author><name>Pravs</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=Local_lists&amp;diff=4352</id>
		<title>Local lists</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=Local_lists&amp;diff=4352"/>
		<updated>2013-09-03T11:59:30Z</updated>

		<summary type="html">&lt;p&gt;Pravs: creating lists&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==തിരുവനന്തപുരം==&lt;br /&gt;
# fsug tvm&lt;br /&gt;
&lt;br /&gt;
== കൊല്ലം ==&lt;br /&gt;
# [http://www.freelists.org/list/ssug-kollam SSUG Kollam]&lt;br /&gt;
&lt;br /&gt;
==എറണാംകുളം==&lt;br /&gt;
&lt;br /&gt;
# ilug kochin&lt;br /&gt;
&lt;br /&gt;
==പാലക്കാട്==&lt;br /&gt;
# [http://plus.sarovar.org plus]&lt;br /&gt;
# allforabacus&lt;br /&gt;
&lt;br /&gt;
==മലപ്പുറം==&lt;br /&gt;
# [http://www.freelists.org/list/ssug-malappuram ssug malappuram]&lt;br /&gt;
# mes-fsug&lt;br /&gt;
&lt;br /&gt;
==കോഴിക്കോട്==&lt;br /&gt;
# [http://www.freelists.org/list/ssug-calicut fsug calicut]&lt;/div&gt;</summary>
		<author><name>Pravs</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=%E0%B4%B8%E0%B5%8D%E0%B4%B5%E0%B4%A4%E0%B4%A8%E0%B5%8D%E0%B4%A4%E0%B5%8D%E0%B4%B0%E0%B4%AE%E0%B4%B2%E0%B4%AF%E0%B4%BE%E0%B4%B3%E0%B4%82%E0%B4%95%E0%B4%AE%E0%B5%8D%E0%B4%AA%E0%B5%8D%E0%B4%AF%E0%B5%82%E0%B4%9F%E0%B5%8D%E0%B4%9F%E0%B4%BF%E0%B4%99%E0%B5%8D%E0%B4%99%E0%B4%BF%E0%B4%A8%E0%B5%8D%E0%B4%B1%E0%B5%86_%E0%B4%92%E0%B4%B0%E0%B5%81_%E0%B4%B5%E0%B5%8D%E0%B4%AF%E0%B4%BE%E0%B4%B4%E0%B4%B5%E0%B4%9F%E0%B5%8D%E0%B4%9F%E0%B4%82/SMC_Camp&amp;diff=4351</id>
		<title>സ്വതന്ത്രമലയാളംകമ്പ്യൂട്ടിങ്ങിന്റെ ഒരു വ്യാഴവട്ടം/SMC Camp</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=%E0%B4%B8%E0%B5%8D%E0%B4%B5%E0%B4%A4%E0%B4%A8%E0%B5%8D%E0%B4%A4%E0%B5%8D%E0%B4%B0%E0%B4%AE%E0%B4%B2%E0%B4%AF%E0%B4%BE%E0%B4%B3%E0%B4%82%E0%B4%95%E0%B4%AE%E0%B5%8D%E0%B4%AA%E0%B5%8D%E0%B4%AF%E0%B5%82%E0%B4%9F%E0%B5%8D%E0%B4%9F%E0%B4%BF%E0%B4%99%E0%B5%8D%E0%B4%99%E0%B4%BF%E0%B4%A8%E0%B5%8D%E0%B4%B1%E0%B5%86_%E0%B4%92%E0%B4%B0%E0%B5%81_%E0%B4%B5%E0%B5%8D%E0%B4%AF%E0%B4%BE%E0%B4%B4%E0%B4%B5%E0%B4%9F%E0%B5%8D%E0%B4%9F%E0%B4%82/SMC_Camp&amp;diff=4351"/>
		<updated>2013-09-03T11:53:34Z</updated>

		<summary type="html">&lt;p&gt;Pravs: /* ഒന്നാം തലം */ മെയിലിങ്ങ് ലിസ്റ്റ് പരിചയപ്പെടുത്തണം താത്പര്യമുള്ളവരുടെ പേരു് വിവരങ്ങള്‍&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{PU|AnnualMeet2013/SMC Camp}}&lt;br /&gt;
=ക്യാമ്പിനെ കുറിച്ച്=&lt;br /&gt;
&lt;br /&gt;
=ക്യാമ്പുകളുടെ പൊതുഘടന=&lt;br /&gt;
&lt;br /&gt;
* [http://etherpad.wikimedia.org/p/smc2013 അവതരണങ്ങളുണ്ടാക്കാനുള്ള വിവരങ്ങള്‍ ഇവിടെ]&lt;br /&gt;
&lt;br /&gt;
# Language computing&lt;br /&gt;
# Malayalam computing initiatives&lt;br /&gt;
##Free Malayalam computing intiative&lt;br /&gt;
###Blog&lt;br /&gt;
###Wikipedia&lt;br /&gt;
###Other initiatives&lt;br /&gt;
##Proprietary&lt;br /&gt;
#Community initiatives vs individual initiatives&lt;br /&gt;
#Groups and mode of communication.&lt;br /&gt;
#Mailing list/community/groups/discussion forums&lt;br /&gt;
#Bug reporting/fixing/contributing&lt;br /&gt;
#Community practices&lt;br /&gt;
#Coding practices&lt;br /&gt;
#Mailing list practices&lt;br /&gt;
#Project philosophy&lt;br /&gt;
#Job opportunity is free software and language computing&lt;br /&gt;
#Future&lt;br /&gt;
&lt;br /&gt;
=ഒന്നാം തലം=&lt;br /&gt;
ഒന്നാം തലം പ്രധാനമായും എഞ്ചിനീയറിങ്ങ് കോളേജുകളേയും കമ്പ്യൂട്ടര്‍ പ്രോഗ്രാം ചെയ്യുന്നത് മുഖ്യവിഷയമാക്കിയിട്ടുള്ളവരെയും ഉദ്ദേശ്ശിച്ചുള്ളതാണ്. ഇതില്‍ കമ്പ്യുട്ടര്‍ പ്രോഗ്രാമിങ്ങ് രീതികള്‍ വേര്‍ഷന്‍ കണ്ട്രോളിങ്ങ് തുടങ്ങിയവയ്ക്ക് പ്രാധ്യാന്യം കൊടുക്കുന്ന രീതിയില്‍ സജീകരിക്കണം. പരിപാടി നടത്തുന്ന ജില്ലയിലെ സജീവ മെയിലിങ്ങ് ലിസ്റ്റിലും എസ്എംസി ലിസ്റ്റിലും ചേരാന്‍ ക്ഷണിയ്ക്കണം. സജീവ [[local_lists|മെയിലിങ്ങ് ലിസ്റ്റുകളുടെ പട്ടിക ഇവിടെ]].&lt;br /&gt;
&lt;br /&gt;
ഇതുവഴി വിദ്യാര്‍ത്ഥികള്‍ക്ക് ഡെവലപ്പര്‍ കൂട്ടായ്മകളുമായി ഇടപെടാന്‍ സഹായിക്കുക എന്നാണ് ഉദ്ദേശിക്കുന്നത്. താഴെ പറയുന്ന വിഭാഗങ്ങളിയാണ് ക്ലാസുകള്‍ നിര്‍ദ്ദേശിക്കുന്നത്.&lt;br /&gt;
&lt;br /&gt;
# Unix Commads&lt;br /&gt;
# Bug reporting and bug handling&lt;br /&gt;
# Version Controlling&lt;br /&gt;
# Good coding practices&lt;br /&gt;
# Interacting with a developer community&lt;br /&gt;
&lt;br /&gt;
തുടര്‍ന്നു് ബന്ധപ്പെടാന്‍ താഴെ പറയുന്ന കാര്യങ്ങളില്‍ താത്പര്യമുള്ളവരുടെ പേരും ഇമെയിലും ഫോണ്‍ നമ്പറും വേടിയ്ക്കാം.&lt;br /&gt;
&lt;br /&gt;
* തുടര്‍ന്നും ഇതു് പോലുള്ള പരിപാടികള്‍ വേണമെന്നാഗ്രഹിയ്ക്കുന്നവര്‍&lt;br /&gt;
* ഇതു് പോലുള്ള പരിപാടികള്‍ നടത്താന്‍ സഹായിക്കാനാഗ്രഹിയ്ക്കുന്നവര്‍&lt;br /&gt;
* ചെറിയ പ്രൊജക്റ്റുകലിലൂടെ സ്വതന്ത്ര സോഫ്റ്റ്‌വെയര്‍ സംഭാവന തുടങ്ങാന്‍ ആഗ്രഹിയ്ക്കുന്നവര്‍&lt;br /&gt;
&lt;br /&gt;
[[വാര്‍ഷികപൊതുപരിപാടി_2013/SMC_Camp/Level1|കൂടുതല്‍ വിവരങ്ങള്‍ക്ക്]]&lt;br /&gt;
&lt;br /&gt;
=രണ്ടാം തലം=&lt;br /&gt;
പ്രധാനമായും സങ്കേതികേതര വിഷയങ്ങള്‍ പ്രത്യേകിച്ചും മലയാളം ഭാഷ പഠിക്കുന്നവരെ ലക്ഷ്യം വെച്ചുള്ളതാണ് ഇത്. ഇവിടെ OCR പരീശീലിപ്പിക്കുന്ന രീതി മുതല്‍ കമ്പ്യൂട്ടര്‍ ഭാഷയെ കൈകാര്യം  ചെയ്യുന്ന രീതി വരെ ആകാം&lt;br /&gt;
=മൂന്നാം തലം=&lt;br /&gt;
പ്രധാനമായും ചിത്രകല അഭ്യസിക്കുന്ന വരെ ഉദ്ദേശിച്ചാണ്. ഇവിടെ പ്രാധാന്യം ലിപിരൂപങ്ങള്‍, ഐക്കണ്‍, തീം തുടങ്ങി user interface design and usabilty വരെ പ്രതീക്ഷിക്കുന്നു&lt;br /&gt;
=നാലാം തലം=&lt;br /&gt;
പ്രോഗ്രാമിങ്ങ് അല്ലാതെ സാങ്കേതിക വിദ്യ കൈകാര്യം ചെയ്യുന്ന പ്രത്യേകിച്ച് IT@School പരിശീലകരെ ലക്ഷ്യം വെച്ചുള്ളത്&lt;br /&gt;
=അഞ്ചാം തലം=&lt;br /&gt;
പൊതുവായി മലയാളം കമ്പ്യൂട്ടറില്‍ ഇന്‍സ്റ്റാള്‍ ചെയ്യാനും ഉപയോഗിക്കാനുമുള്ള പരീശീലനം ആണ് ഇതിലൂടെ ലക്ഷ്യം വെക്കുന്നത്.&lt;/div&gt;</summary>
		<author><name>Pravs</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=%E0%B4%B8%E0%B5%8D%E0%B4%B5%E0%B4%A4%E0%B4%A8%E0%B5%8D%E0%B4%A4%E0%B5%8D%E0%B4%B0%E0%B4%AE%E0%B4%B2%E0%B4%AF%E0%B4%BE%E0%B4%B3%E0%B4%82%E0%B4%95%E0%B4%AE%E0%B5%8D%E0%B4%AA%E0%B5%8D%E0%B4%AF%E0%B5%82%E0%B4%9F%E0%B5%8D%E0%B4%9F%E0%B4%BF%E0%B4%99%E0%B5%8D%E0%B4%99%E0%B4%BF%E0%B4%A8%E0%B5%8D%E0%B4%B1%E0%B5%86_%E0%B4%92%E0%B4%B0%E0%B5%81_%E0%B4%B5%E0%B5%8D%E0%B4%AF%E0%B4%BE%E0%B4%B4%E0%B4%B5%E0%B4%9F%E0%B5%8D%E0%B4%9F%E0%B4%82/SMC_Camp&amp;diff=4350</id>
		<title>സ്വതന്ത്രമലയാളംകമ്പ്യൂട്ടിങ്ങിന്റെ ഒരു വ്യാഴവട്ടം/SMC Camp</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=%E0%B4%B8%E0%B5%8D%E0%B4%B5%E0%B4%A4%E0%B4%A8%E0%B5%8D%E0%B4%A4%E0%B5%8D%E0%B4%B0%E0%B4%AE%E0%B4%B2%E0%B4%AF%E0%B4%BE%E0%B4%B3%E0%B4%82%E0%B4%95%E0%B4%AE%E0%B5%8D%E0%B4%AA%E0%B5%8D%E0%B4%AF%E0%B5%82%E0%B4%9F%E0%B5%8D%E0%B4%9F%E0%B4%BF%E0%B4%99%E0%B5%8D%E0%B4%99%E0%B4%BF%E0%B4%A8%E0%B5%8D%E0%B4%B1%E0%B5%86_%E0%B4%92%E0%B4%B0%E0%B5%81_%E0%B4%B5%E0%B5%8D%E0%B4%AF%E0%B4%BE%E0%B4%B4%E0%B4%B5%E0%B4%9F%E0%B5%8D%E0%B4%9F%E0%B4%82/SMC_Camp&amp;diff=4350"/>
		<updated>2013-09-03T11:44:10Z</updated>

		<summary type="html">&lt;p&gt;Pravs: /* ക്യാമ്പുകളുടെ പൊതുഘടന */ എഥര്‍പാഡിലേയ്ക്കുള്ള കണ്ണി ചേര്‍ത്തു&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{PU|AnnualMeet2013/SMC Camp}}&lt;br /&gt;
=ക്യാമ്പിനെ കുറിച്ച്=&lt;br /&gt;
&lt;br /&gt;
=ക്യാമ്പുകളുടെ പൊതുഘടന=&lt;br /&gt;
&lt;br /&gt;
* [http://etherpad.wikimedia.org/p/smc2013 അവതരണങ്ങളുണ്ടാക്കാനുള്ള വിവരങ്ങള്‍ ഇവിടെ]&lt;br /&gt;
&lt;br /&gt;
# Language computing&lt;br /&gt;
# Malayalam computing initiatives&lt;br /&gt;
##Free Malayalam computing intiative&lt;br /&gt;
###Blog&lt;br /&gt;
###Wikipedia&lt;br /&gt;
###Other initiatives&lt;br /&gt;
##Proprietary&lt;br /&gt;
#Community initiatives vs individual initiatives&lt;br /&gt;
#Groups and mode of communication.&lt;br /&gt;
#Mailing list/community/groups/discussion forums&lt;br /&gt;
#Bug reporting/fixing/contributing&lt;br /&gt;
#Community practices&lt;br /&gt;
#Coding practices&lt;br /&gt;
#Mailing list practices&lt;br /&gt;
#Project philosophy&lt;br /&gt;
#Job opportunity is free software and language computing&lt;br /&gt;
#Future&lt;br /&gt;
&lt;br /&gt;
=ഒന്നാം തലം=&lt;br /&gt;
ഒന്നാം തലം പ്രധാനമായും എഞ്ചിനീയറിങ്ങ് കോളേജുകളേയും കമ്പ്യൂട്ടര്‍ പ്രോഗ്രാം ചെയ്യുന്നത് മുഖ്യവിഷയമാക്കിയിട്ടുള്ളവരെയും ഉദ്ദേശ്ശിച്ചുള്ളതാണ്. ഇതില്‍ കമ്പ്യുട്ടര്‍ പ്രോഗ്രാമിങ്ങ് രീതികള്‍ വേര്‍ഷന്‍ കണ്ട്രോളിങ്ങ് തുടങ്ങിയവയ്ക്ക് പ്രാധ്യാന്യം കൊടുക്കുന്ന രീതിയില്‍ സജീകരിക്കണം.&lt;br /&gt;
&lt;br /&gt;
ഇതുവഴി വിദ്യാർത്ഥികൾക്ക് ഡെവലപ്പർ കൂട്ടായ്മകളുമായി ഇടപെടാൻ സഹായിക്കുക എന്നാണ് ഉദ്ദേശിക്കുന്നത്. താഴെ പറയുന്ന വിഭാഗങ്ങളിയാണ് ക്ലാസുകൾ നിർദ്ദേശിക്കുന്നത്.&lt;br /&gt;
&lt;br /&gt;
# Unix Commads&lt;br /&gt;
# Bug reporting and bug handling&lt;br /&gt;
# Version Controlling&lt;br /&gt;
# Good coding practices&lt;br /&gt;
# Interacting with a developer community&lt;br /&gt;
&lt;br /&gt;
[[വാര്‍ഷികപൊതുപരിപാടി_2013/SMC_Camp/Level1|കൂടുതല്‍ വിവരങ്ങള്‍ക്ക്]]&lt;br /&gt;
&lt;br /&gt;
=രണ്ടാം തലം=&lt;br /&gt;
പ്രധാനമായും സങ്കേതികേതര വിഷയങ്ങള്‍ പ്രത്യേകിച്ചും മലയാളം ഭാഷ പഠിക്കുന്നവരെ ലക്ഷ്യം വെച്ചുള്ളതാണ് ഇത്. ഇവിടെ OCR പരീശീലിപ്പിക്കുന്ന രീതി മുതല്‍ കമ്പ്യൂട്ടര്‍ ഭാഷയെ കൈകാര്യം  ചെയ്യുന്ന രീതി വരെ ആകാം&lt;br /&gt;
=മൂന്നാം തലം=&lt;br /&gt;
പ്രധാനമായും ചിത്രകല അഭ്യസിക്കുന്ന വരെ ഉദ്ദേശിച്ചാണ്. ഇവിടെ പ്രാധാന്യം ലിപിരൂപങ്ങള്‍, ഐക്കണ്‍, തീം തുടങ്ങി user interface design and usabilty വരെ പ്രതീക്ഷിക്കുന്നു&lt;br /&gt;
=നാലാം തലം=&lt;br /&gt;
പ്രോഗ്രാമിങ്ങ് അല്ലാതെ സാങ്കേതിക വിദ്യ കൈകാര്യം ചെയ്യുന്ന പ്രത്യേകിച്ച് IT@School പരിശീലകരെ ലക്ഷ്യം വെച്ചുള്ളത്&lt;br /&gt;
=അഞ്ചാം തലം=&lt;br /&gt;
പൊതുവായി മലയാളം കമ്പ്യൂട്ടറില്‍ ഇന്‍സ്റ്റാള്‍ ചെയ്യാനും ഉപയോഗിക്കാനുമുള്ള പരീശീലനം ആണ് ഇതിലൂടെ ലക്ഷ്യം വെക്കുന്നത്.&lt;/div&gt;</summary>
		<author><name>Pravs</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=%E0%B4%B5%E0%B4%BE%E0%B4%B0%E0%B5%8D%E2%80%8D%E0%B4%B7%E0%B4%BF%E0%B4%95%E0%B4%AA%E0%B5%8A%E0%B4%A4%E0%B5%81%E0%B4%AA%E0%B4%B0%E0%B4%BF%E0%B4%AA%E0%B4%BE%E0%B4%9F%E0%B4%BF_2013/%E0%B4%95%E0%B5%82%E0%B4%9F%E0%B4%BF%E0%B4%AF%E0%B4%BE%E0%B4%B2%E0%B5%8B%E0%B4%9A%E0%B4%A8%E0%B4%95%E0%B4%B3%E0%B5%8D%E2%80%8D/%E0%B4%90%E0%B4%B8%E0%B4%BE%E0%B4%B1%E0%B5%8D%E0%B4%B1%E0%B5%8D_%E0%B4%93%E0%B4%97%E0%B4%B8%E0%B5%8D%E0%B4%B1%E0%B5%8D%E0%B4%B1%E0%B5%8D29&amp;diff=4325</id>
		<title>വാര്‍ഷികപൊതുപരിപാടി 2013/കൂടിയാലോചനകള്‍/ഐസാറ്റ് ഓഗസ്റ്റ്29</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=%E0%B4%B5%E0%B4%BE%E0%B4%B0%E0%B5%8D%E2%80%8D%E0%B4%B7%E0%B4%BF%E0%B4%95%E0%B4%AA%E0%B5%8A%E0%B4%A4%E0%B5%81%E0%B4%AA%E0%B4%B0%E0%B4%BF%E0%B4%AA%E0%B4%BE%E0%B4%9F%E0%B4%BF_2013/%E0%B4%95%E0%B5%82%E0%B4%9F%E0%B4%BF%E0%B4%AF%E0%B4%BE%E0%B4%B2%E0%B5%8B%E0%B4%9A%E0%B4%A8%E0%B4%95%E0%B4%B3%E0%B5%8D%E2%80%8D/%E0%B4%90%E0%B4%B8%E0%B4%BE%E0%B4%B1%E0%B5%8D%E0%B4%B1%E0%B5%8D_%E0%B4%93%E0%B4%97%E0%B4%B8%E0%B5%8D%E0%B4%B1%E0%B5%8D%E0%B4%B1%E0%B5%8D29&amp;diff=4325"/>
		<updated>2013-08-30T14:50:26Z</updated>

		<summary type="html">&lt;p&gt;Pravs: ഐസാറ്റിലെ മിനിറ്റ്സ്&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;ഐസാറ്റില്‍ (aisat.ac.in) നിന്നും ഫിലിപ്, ജെസ്സി എന്നിവരും സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടറിനു് വേണ്ടി സൂരജ് കേണോത്ത്, ഋഷികേശ് കെബി, പ്രവീണ്‍ എ, വിഷ്ണു എം എന്നിവരുമുണ്ടായിരുന്നു. ഈ ഒത്തുചേരല്‍ ഒരുക്കിയ ബോബിന്‍സന്‍ രണ്ടു് ഭാഗത്തു് നിന്നും സംസാരിച്ചു.&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;/div&gt;</summary>
		<author><name>Pravs</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=%E0%B4%B8%E0%B5%8D%E0%B4%B5%E0%B4%A4%E0%B4%A8%E0%B5%8D%E0%B4%A4%E0%B5%8D%E0%B4%B0%E0%B4%AE%E0%B4%B2%E0%B4%AF%E0%B4%BE%E0%B4%B3%E0%B4%82%E0%B4%95%E0%B4%AE%E0%B5%8D%E0%B4%AA%E0%B5%8D%E0%B4%AF%E0%B5%82%E0%B4%9F%E0%B5%8D%E0%B4%9F%E0%B4%BF%E0%B4%99%E0%B5%8D%E0%B4%99%E0%B4%BF%E0%B4%A8%E0%B5%8D%E0%B4%B1%E0%B5%86_%E0%B4%92%E0%B4%B0%E0%B5%81_%E0%B4%B5%E0%B5%8D%E0%B4%AF%E0%B4%BE%E0%B4%B4%E0%B4%B5%E0%B4%9F%E0%B5%8D%E0%B4%9F%E0%B4%82&amp;diff=4324</id>
		<title>സ്വതന്ത്രമലയാളംകമ്പ്യൂട്ടിങ്ങിന്റെ ഒരു വ്യാഴവട്ടം</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=%E0%B4%B8%E0%B5%8D%E0%B4%B5%E0%B4%A4%E0%B4%A8%E0%B5%8D%E0%B4%A4%E0%B5%8D%E0%B4%B0%E0%B4%AE%E0%B4%B2%E0%B4%AF%E0%B4%BE%E0%B4%B3%E0%B4%82%E0%B4%95%E0%B4%AE%E0%B5%8D%E0%B4%AA%E0%B5%8D%E0%B4%AF%E0%B5%82%E0%B4%9F%E0%B5%8D%E0%B4%9F%E0%B4%BF%E0%B4%99%E0%B5%8D%E0%B4%99%E0%B4%BF%E0%B4%A8%E0%B5%8D%E0%B4%B1%E0%B5%86_%E0%B4%92%E0%B4%B0%E0%B5%81_%E0%B4%B5%E0%B5%8D%E0%B4%AF%E0%B4%BE%E0%B4%B4%E0%B4%B5%E0%B4%9F%E0%B5%8D%E0%B4%9F%E0%B4%82&amp;diff=4324"/>
		<updated>2013-08-30T13:14:33Z</updated>

		<summary type="html">&lt;p&gt;Pravs: /* കൂടിയാലോചനകള്‍ */ ഐസാറ്റ്&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{PU|AnnualMeet2013}}&lt;br /&gt;
[[File:Smc-logo.png|thumb|]]&lt;br /&gt;
സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ്ങ് വാര്‍ഷികപൊതുപരിപാടി&lt;br /&gt;
ഒക്ടോബര്‍ 13,14,15&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;
* [[User:Pravs| പ്രവീണ്‍ അരിമ്പ്രത്തൊടിയില്‍]]&lt;br /&gt;
&lt;br /&gt;
=== തൃശ്ശൂര്‍ ===&lt;br /&gt;
* [[User:Manojk|Manojk]] ([[User talk:Manojk|talk]])&lt;br /&gt;
&lt;br /&gt;
== കൂടിയാലോചനകള്‍ ==&lt;br /&gt;
* [[വാര്‍ഷികപൊതുപരിപാടി_2013/കൂടിയാലോചനകള്‍/ഐസാറ്റ്_ഓഗസ്റ്റ്29|എറണാംകുളം ഐസാറ്റ് ഓഗസ്റ്റ് 29 വ്യാഴം]]&lt;br /&gt;
* [[വാര്‍ഷികപൊതുപരിപാടി_2013/കൂടിയാലോചനകള്‍/പിജി_സെന്റര്‍_ഓഗസ്റ്റ്28|തൃശ്ശൂര്‍ പിജി സെന്ററില്‍ ഓഗസ്റ്റ് 28 ബുധന്‍]]&lt;br /&gt;
* [[വാര്‍ഷികപൊതുപരിപാടി_2013/IRC_25-08-2013|ഐആര്‍സ് വഴി ഓഗസ്റ്റ് 25 ഞായര്‍]]&lt;br /&gt;
&lt;br /&gt;
== മുമ്പേ തീര്‍ക്കേണ്ടവ ==&lt;br /&gt;
*[[വാര്‍ഷികപൊതുപരിപാടി_2013/SMC_Camp|SMC ക്യാമ്പുകള്‍]]&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;
===രണ്ടാം ദിവസം===&lt;br /&gt;
===മൂന്നാം ദിവസം===&lt;br /&gt;
[[വാര്‍ഷികപൊതുപരിപാടി 2013/കാര്യപരിപാടി/വിക്കിസംഗമം]]&lt;/div&gt;</summary>
		<author><name>Pravs</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=%E0%B4%B5%E0%B4%BE%E0%B4%B0%E0%B5%8D%E2%80%8D%E0%B4%B7%E0%B4%BF%E0%B4%95%E0%B4%AA%E0%B5%8A%E0%B4%A4%E0%B5%81%E0%B4%AA%E0%B4%B0%E0%B4%BF%E0%B4%AA%E0%B4%BE%E0%B4%9F%E0%B4%BF_2013/%E0%B4%95%E0%B5%82%E0%B4%9F%E0%B4%BF%E0%B4%AF%E0%B4%BE%E0%B4%B2%E0%B5%8B%E0%B4%9A%E0%B4%A8%E0%B4%95%E0%B4%B3%E0%B5%8D%E2%80%8D/%E0%B4%AA%E0%B4%BF%E0%B4%9C%E0%B4%BF_%E0%B4%B8%E0%B5%86%E0%B4%A8%E0%B5%8D%E0%B4%B1%E0%B4%B0%E0%B5%8D%E2%80%8D_%E0%B4%93%E0%B4%97%E0%B4%B8%E0%B5%8D%E0%B4%B1%E0%B5%8D%E0%B4%B1%E0%B5%8D28&amp;diff=4270</id>
		<title>വാര്‍ഷികപൊതുപരിപാടി 2013/കൂടിയാലോചനകള്‍/പിജി സെന്റര്‍ ഓഗസ്റ്റ്28</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=%E0%B4%B5%E0%B4%BE%E0%B4%B0%E0%B5%8D%E2%80%8D%E0%B4%B7%E0%B4%BF%E0%B4%95%E0%B4%AA%E0%B5%8A%E0%B4%A4%E0%B5%81%E0%B4%AA%E0%B4%B0%E0%B4%BF%E0%B4%AA%E0%B4%BE%E0%B4%9F%E0%B4%BF_2013/%E0%B4%95%E0%B5%82%E0%B4%9F%E0%B4%BF%E0%B4%AF%E0%B4%BE%E0%B4%B2%E0%B5%8B%E0%B4%9A%E0%B4%A8%E0%B4%95%E0%B4%B3%E0%B5%8D%E2%80%8D/%E0%B4%AA%E0%B4%BF%E0%B4%9C%E0%B4%BF_%E0%B4%B8%E0%B5%86%E0%B4%A8%E0%B5%8D%E0%B4%B1%E0%B4%B0%E0%B5%8D%E2%80%8D_%E0%B4%93%E0%B4%97%E0%B4%B8%E0%B5%8D%E0%B4%B1%E0%B5%8D%E0%B4%B1%E0%B5%8D28&amp;diff=4270"/>
		<updated>2013-08-29T02:08:10Z</updated>

		<summary type="html">&lt;p&gt;Pravs: മിനിറ്റ്സ് ചേര്‍ക്കുന്നു&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;പങ്കെടുത്തവര്‍ - സൂരജ് കേണോത്ത്, മനോജ് കെ, ആര്‍ക്ക് അര്‍ജുന്‍, രഞ്ജിത് പി, പ്രവീണ്‍ എ, ഋഷികേശ് കെബി, നന്ദജ വര്‍മ്മ, ജതിന്‍, വിഷ്ണു പ്രകാശ്&lt;br /&gt;
 &lt;br /&gt;
1. എസ്എംസി ക്യാമ്പ് - ഘടന, ആളുകള്‍ (more clarity needed)&lt;br /&gt;
&lt;br /&gt;
2. ഒക്ടോബര്‍ 13 - 5 മണി വരെ എജിഎം&lt;br /&gt;
&lt;br /&gt;
3. 5.30 മുതല്‍ short films + documentary&lt;br /&gt;
(Gundert - മറ്റുള്ളവ ഇനിയും തീരുമാനിയ്ക്കാനുണ്ടു്. മനോജും രഞ്ജിത്ത് മാഷും എം-സോണ്‍, നവചിത്ര എന്നിവരുമായി സംസാരിച്ചു് തീരുമാനിയ്ക്കും)&lt;br /&gt;
&lt;br /&gt;
4. 14നു് 9.30 - കമ്പ്യൂട്ടറില്‍ ഹരിശ്രീ&lt;br /&gt;
&lt;br /&gt;
5. ഉദ്ഘാടനം (ഉദ്ഘാടകന്‍ തീരുമാനമായില്ല)&lt;br /&gt;
&lt;br /&gt;
6. ക്യാമ്പുകളുടെ ഉദ്ഘാടനം ഏകദേശ തീരുമാനം (കെ ജയകുമാര്‍, മലയാളം യൂണിവേഴ്സിറ്റി - നേരിട്ടോ സ്ട്രീം ചെയ്തോ പറ്റുമോന്നു് ശ്രമിയ്ക്കണം)&lt;br /&gt;
എത്രയും വേഗം കോളേജുകളുമായി തീരുമാനിച്ചു് നടപ്പിലാക്കണം&lt;br /&gt;
&lt;br /&gt;
7. ഉദ്ഘാടന ദിവസത്തെ മറ്റു് പരിപാടികള്‍&lt;br /&gt;
മലയാളം കമ്പ്യൂട്ടിങ്ങിന്റെ ചരിത്രം, പ്രധാന വ്യക്തികള്‍, സംഘടനകള്‍, പ്രവര്‍ത്തനങ്ങള്‍ - മഹേഷ് മംഗലാട്ട്, അനിവര്‍ അരവിന്ദ്, വിമല്‍ ജോസഫ്&lt;br /&gt;
&lt;br /&gt;
8. എക്സിബിഷന്‍ - ആന്‍ഡ്രോയിഡ്, വിക്കിപ്പീഡിയ, ബ്ലോഗിങ്ങ്, അച്ചടി (സ്ക്രൈബസ്, സീടെക്), ഫ്രീഡം ടോസ്റ്റര്‍ - ഫോണ്ടുകള്‍, മറ്റു് ടൂളുകള്‍, ഡിസ്ട്രിബ്യൂഷന്‍സ് പകര്‍ത്തിയെടുക്കാനുള്ള സംവിധാനം ഉണ്ടായിരിയ്ക്കണം.. 13 മുതല്‍ തയ്യാറാവണം&lt;br /&gt;
&lt;br /&gt;
ചുമതല - നന്ദജ, ആര്‍ക്ക് അര്‍ജുന്‍ (എഞ്ചിനീയറിംഗ് വിദ്യാര്‍ത്ഥികളുടെ സഹായം തേടാം)&lt;br /&gt;
&lt;br /&gt;
9. ജിസോക് അവതരണങ്ങള്‍ - 3. പ്രധാന ഹാളില്‍ തന്നെ&lt;br /&gt;
&lt;br /&gt;
10. സാങ്കേതികവിദ്യയുമായി അധികം ഇടപഴകാത്ത ശ്രോതാക്കളെ എങ്ങനെ പിടിച്ചിരുത്താം?&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;
11. ക്യാമ്പുകളുടെ പ്രമേയങ്ങള്‍&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;/div&gt;</summary>
		<author><name>Pravs</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=%E0%B4%B8%E0%B5%8D%E0%B4%B5%E0%B4%A4%E0%B4%A8%E0%B5%8D%E0%B4%A4%E0%B5%8D%E0%B4%B0%E0%B4%AE%E0%B4%B2%E0%B4%AF%E0%B4%BE%E0%B4%B3%E0%B4%82%E0%B4%95%E0%B4%AE%E0%B5%8D%E0%B4%AA%E0%B5%8D%E0%B4%AF%E0%B5%82%E0%B4%9F%E0%B5%8D%E0%B4%9F%E0%B4%BF%E0%B4%99%E0%B5%8D%E0%B4%99%E0%B4%BF%E0%B4%A8%E0%B5%8D%E0%B4%B1%E0%B5%86_%E0%B4%92%E0%B4%B0%E0%B5%81_%E0%B4%B5%E0%B5%8D%E0%B4%AF%E0%B4%BE%E0%B4%B4%E0%B4%B5%E0%B4%9F%E0%B5%8D%E0%B4%9F%E0%B4%82&amp;diff=4269</id>
		<title>സ്വതന്ത്രമലയാളംകമ്പ്യൂട്ടിങ്ങിന്റെ ഒരു വ്യാഴവട്ടം</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=%E0%B4%B8%E0%B5%8D%E0%B4%B5%E0%B4%A4%E0%B4%A8%E0%B5%8D%E0%B4%A4%E0%B5%8D%E0%B4%B0%E0%B4%AE%E0%B4%B2%E0%B4%AF%E0%B4%BE%E0%B4%B3%E0%B4%82%E0%B4%95%E0%B4%AE%E0%B5%8D%E0%B4%AA%E0%B5%8D%E0%B4%AF%E0%B5%82%E0%B4%9F%E0%B5%8D%E0%B4%9F%E0%B4%BF%E0%B4%99%E0%B5%8D%E0%B4%99%E0%B4%BF%E0%B4%A8%E0%B5%8D%E0%B4%B1%E0%B5%86_%E0%B4%92%E0%B4%B0%E0%B5%81_%E0%B4%B5%E0%B5%8D%E0%B4%AF%E0%B4%BE%E0%B4%B4%E0%B4%B5%E0%B4%9F%E0%B5%8D%E0%B4%9F%E0%B4%82&amp;diff=4269"/>
		<updated>2013-08-29T02:00:31Z</updated>

		<summary type="html">&lt;p&gt;Pravs: കൂടിയാലോചനകള്‍ ചേര്‍ത്തു&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{PU|AnnualMeet2013}}&lt;br /&gt;
[[File:Smc-logo.png|thumb|]]&lt;br /&gt;
സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ്ങ് വാര്‍ഷികപൊതുപരിപാടി&lt;br /&gt;
ഒക്ടോബര്‍ 13,14,15&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;
* [[User:Pravs| പ്രവീണ്‍ അരിമ്പ്രത്തൊടിയില്‍]]&lt;br /&gt;
=== തൃശ്ശൂര്‍ ===&lt;br /&gt;
* [[User:Manojk|Manojk]] ([[User talk:Manojk|talk]])&lt;br /&gt;
&lt;br /&gt;
== കൂടിയാലോചനകള്‍ ==&lt;br /&gt;
&lt;br /&gt;
* [[വാര്‍ഷികപൊതുപരിപാടി_2013/കൂടിയാലോചനകള്‍/പിജി_സെന്റര്‍_ഓഗസ്റ്റ്28|തൃശ്ശൂര്‍ പിജി സെന്ററില്‍ ഓഗസ്റ്റ് 28 ബുധന്‍]]&lt;br /&gt;
* ഐആര്‍സ് വഴി ഓഗസ്റ്റ് 25 ഞായര്‍&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;
===രണ്ടാം ദിവസം===&lt;br /&gt;
===മൂന്നാം ദിവസം===&lt;br /&gt;
&lt;br /&gt;
== മുമ്പേ തീര്‍ക്കേണ്ടവ ==&lt;/div&gt;</summary>
		<author><name>Pravs</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=%E0%B4%B8%E0%B5%8D%E0%B4%B5%E0%B4%A4%E0%B4%A8%E0%B5%8D%E0%B4%A4%E0%B5%8D%E0%B4%B0%E0%B4%AE%E0%B4%B2%E0%B4%AF%E0%B4%BE%E0%B4%B3%E0%B4%82%E0%B4%95%E0%B4%AE%E0%B5%8D%E0%B4%AA%E0%B5%8D%E0%B4%AF%E0%B5%82%E0%B4%9F%E0%B5%8D%E0%B4%9F%E0%B4%BF%E0%B4%99%E0%B5%8D%E0%B4%99%E0%B4%BF%E0%B4%A8%E0%B5%8D%E0%B4%B1%E0%B5%86_%E0%B4%92%E0%B4%B0%E0%B5%81_%E0%B4%B5%E0%B5%8D%E0%B4%AF%E0%B4%BE%E0%B4%B4%E0%B4%B5%E0%B4%9F%E0%B5%8D%E0%B4%9F%E0%B4%82&amp;diff=4199</id>
		<title>സ്വതന്ത്രമലയാളംകമ്പ്യൂട്ടിങ്ങിന്റെ ഒരു വ്യാഴവട്ടം</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=%E0%B4%B8%E0%B5%8D%E0%B4%B5%E0%B4%A4%E0%B4%A8%E0%B5%8D%E0%B4%A4%E0%B5%8D%E0%B4%B0%E0%B4%AE%E0%B4%B2%E0%B4%AF%E0%B4%BE%E0%B4%B3%E0%B4%82%E0%B4%95%E0%B4%AE%E0%B5%8D%E0%B4%AA%E0%B5%8D%E0%B4%AF%E0%B5%82%E0%B4%9F%E0%B5%8D%E0%B4%9F%E0%B4%BF%E0%B4%99%E0%B5%8D%E0%B4%99%E0%B4%BF%E0%B4%A8%E0%B5%8D%E0%B4%B1%E0%B5%86_%E0%B4%92%E0%B4%B0%E0%B5%81_%E0%B4%B5%E0%B5%8D%E0%B4%AF%E0%B4%BE%E0%B4%B4%E0%B4%B5%E0%B4%9F%E0%B5%8D%E0%B4%9F%E0%B4%82&amp;diff=4199"/>
		<updated>2013-08-26T04:57:55Z</updated>

		<summary type="html">&lt;p&gt;Pravs: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ്ങ് വാര്‍ഷികപൊതുപരിപാടി&lt;br /&gt;
ഒക്ടോബര്‍ 13,14,15&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;
== പ്രചരണപരിപാടികള്‍ ==&lt;br /&gt;
&lt;br /&gt;
ഓരോ ജില്ലയിലും എഞ്ചിനീയറിങ്ങ് കോളേജുകളെ കേന്ദ്രമാക്കി മലയാളം കമ്പ്യൂട്ടിങ്ങ് പരിചയപ്പെടുത്തുന്ന ഒരു പരിപാടിയെങ്കിലും നടത്തണം. നിങ്ങള്‍ക്കു് ഈ ശ്രമത്തില്‍ സഹായിയ്ക്കാനാകുമെങ്കില്‍ താഴെ പേരു് ചേര്‍ക്കുക.&lt;br /&gt;
&lt;br /&gt;
=== തിരുവനന്തപുരം ===&lt;br /&gt;
=== കൊല്ലം ===&lt;br /&gt;
=== പാലക്കാടു് ===&lt;br /&gt;
* [[User:Pravs| പ്രവീണ്‍ അരിമ്പ്രത്തൊടിയില്‍]]&lt;br /&gt;
&lt;br /&gt;
== സ്പോണ്‍സര്‍ഷിപ്പ് ==&lt;br /&gt;
&lt;br /&gt;
== മീഡിയ പബ്ലിസിറ്റി ==&lt;br /&gt;
&lt;br /&gt;
=== സോഷ്യല്‍ മീഡിയ===&lt;/div&gt;</summary>
		<author><name>Pravs</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=%E0%B4%B8%E0%B5%8D%E0%B4%B5%E0%B4%A4%E0%B4%A8%E0%B5%8D%E0%B4%A4%E0%B5%8D%E0%B4%B0%E0%B4%AE%E0%B4%B2%E0%B4%AF%E0%B4%BE%E0%B4%B3%E0%B4%82%E0%B4%95%E0%B4%AE%E0%B5%8D%E0%B4%AA%E0%B5%8D%E0%B4%AF%E0%B5%82%E0%B4%9F%E0%B5%8D%E0%B4%9F%E0%B4%BF%E0%B4%99%E0%B5%8D%E0%B4%99%E0%B4%BF%E0%B4%A8%E0%B5%8D%E0%B4%B1%E0%B5%86_%E0%B4%92%E0%B4%B0%E0%B5%81_%E0%B4%B5%E0%B5%8D%E0%B4%AF%E0%B4%BE%E0%B4%B4%E0%B4%B5%E0%B4%9F%E0%B5%8D%E0%B4%9F%E0%B4%82&amp;diff=4198</id>
		<title>സ്വതന്ത്രമലയാളംകമ്പ്യൂട്ടിങ്ങിന്റെ ഒരു വ്യാഴവട്ടം</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=%E0%B4%B8%E0%B5%8D%E0%B4%B5%E0%B4%A4%E0%B4%A8%E0%B5%8D%E0%B4%A4%E0%B5%8D%E0%B4%B0%E0%B4%AE%E0%B4%B2%E0%B4%AF%E0%B4%BE%E0%B4%B3%E0%B4%82%E0%B4%95%E0%B4%AE%E0%B5%8D%E0%B4%AA%E0%B5%8D%E0%B4%AF%E0%B5%82%E0%B4%9F%E0%B5%8D%E0%B4%9F%E0%B4%BF%E0%B4%99%E0%B5%8D%E0%B4%99%E0%B4%BF%E0%B4%A8%E0%B5%8D%E0%B4%B1%E0%B5%86_%E0%B4%92%E0%B4%B0%E0%B5%81_%E0%B4%B5%E0%B5%8D%E0%B4%AF%E0%B4%BE%E0%B4%B4%E0%B4%B5%E0%B4%9F%E0%B5%8D%E0%B4%9F%E0%B4%82&amp;diff=4198"/>
		<updated>2013-08-26T04:56:51Z</updated>

		<summary type="html">&lt;p&gt;Pravs: /* പ്രചരണപരിപാടികള്‍ */ എല്ലാ ജില്ലയിലും ഒരു പരിപാടിയെങ്കിലും നടത്തുക&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ്ങ് വാര്‍ഷികപൊതുപരിപാടി&lt;br /&gt;
ഒക്ടോബര്‍ 13,14,15&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;
== പ്രചരണപരിപാടികള്‍ ==&lt;br /&gt;
&lt;br /&gt;
ഓരോ ജില്ലയിലും എഞ്ചിനീയറിങ്ങ് കോളേജുകളെ കേന്ദ്രമാക്കി മലയാളം കമ്പ്യൂട്ടിങ്ങ് പരിചയപ്പെടുത്തുന്ന ഒരു പരിപാടിയെങ്കിലും നടത്തണം. നിങ്ങള്‍ക്കു് ഈ ശ്രമത്തില്‍ സഹായിയ്ക്കാനാകുമെങ്കില്‍ താഴെ പേരു് ചേര്‍ക്കുക.&lt;br /&gt;
&lt;br /&gt;
=== തിരുവനന്തപുരം ===&lt;br /&gt;
=== കൊല്ലം ===&lt;br /&gt;
=== പാലക്കാടു് ==&lt;br /&gt;
* [[User:Pravs| പ്രവീണ്‍ അരിമ്പ്രത്തൊടിയില്‍]]&lt;br /&gt;
&lt;br /&gt;
== സ്പോണ്‍സര്‍ഷിപ്പ് ==&lt;br /&gt;
&lt;br /&gt;
== മീഡിയ പബ്ലിസിറ്റി ==&lt;br /&gt;
&lt;br /&gt;
=== സോഷ്യല്‍ മീഡിയ===&lt;/div&gt;</summary>
		<author><name>Pravs</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=File:LogbookCover.png&amp;diff=4178</id>
		<title>File:LogbookCover.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=File:LogbookCover.png&amp;diff=4178"/>
		<updated>2013-08-20T15:01:10Z</updated>

		<summary type="html">&lt;p&gt;Pravs: Pravs uploaded a new version of &amp;amp;quot;File:LogbookCover.png&amp;amp;quot;: ചെറിയ പതിപ്പു് ചേര്‍ക്കുന്നു (പൂര്‍ണ്ണ വലിപ്പത്തിലുള്ള പടം മീഡിയവി&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Pravs</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=%E0%B4%92%E0%B4%B0%E0%B5%81_%E0%B4%A8%E0%B4%BF%E0%B4%B0%E0%B5%80%E0%B4%95%E0%B5%8D%E0%B4%B7%E0%B4%95%E0%B4%A8%E0%B5%8D%E0%B4%B1%E0%B5%86_%E0%B4%95%E0%B5%81%E0%B4%B1%E0%B4%BF%E0%B4%AA%E0%B5%8D%E0%B4%AA%E0%B5%81%E0%B4%95%E0%B5%BE_-_%E0%B4%AA%E0%B5%8D%E0%B4%B0%E0%B4%B8%E0%B4%BE%E0%B4%A7%E0%B4%A8%E0%B4%82&amp;diff=4177</id>
		<title>ഒരു നിരീക്ഷകന്റെ കുറിപ്പുകൾ - പ്രസാധനം</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=%E0%B4%92%E0%B4%B0%E0%B5%81_%E0%B4%A8%E0%B4%BF%E0%B4%B0%E0%B5%80%E0%B4%95%E0%B5%8D%E0%B4%B7%E0%B4%95%E0%B4%A8%E0%B5%8D%E0%B4%B1%E0%B5%86_%E0%B4%95%E0%B5%81%E0%B4%B1%E0%B4%BF%E0%B4%AA%E0%B5%8D%E0%B4%AA%E0%B5%81%E0%B4%95%E0%B5%BE_-_%E0%B4%AA%E0%B5%8D%E0%B4%B0%E0%B4%B8%E0%B4%BE%E0%B4%A7%E0%B4%A8%E0%B4%82&amp;diff=4177"/>
		<updated>2013-08-20T05:34:33Z</updated>

		<summary type="html">&lt;p&gt;Pravs: ടൊറന്റ് കണ്ണി ചേര്‍ത്തു&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{PU|Logbook_of_an_Observer_-_Publication}}&lt;br /&gt;
[[File:LogbookCover.png|thumb|200px|Logbook of an Observer (കവര്‍ പേജ്) by ഹിരണ്‍ വേണുഗോപാല്‍]] &lt;br /&gt;
&lt;br /&gt;
Logbook of an Observer is a collection of blog posts on Free Software, Society, Formula One Racing and many other topics by Jinesh KJ. He is the author of Malayalam phonetic input method called Lalitha, he was a Google Summer of Code student with Swathanthra Malayalam Computing in 2007, he contributed to silpa Indic Language Computing project and pypdflib, he was part of two efforts to build ona OCR for Malayalam, he contributed to Malayalam translation of gnu.org web pages,  he was also active in laguage standardization efforts. This book is a memorial to our friend Jinesh Kanjirangattil Jayaraman or jinsbond from his friends. We lost him to Lukemia on September 29, 2011 in CMS Vellore. It also contain notes from his hospital bed and memorials from his friends.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [[:File:Logbook.pdf| Digital Copy (PDF)]] - via [https://thepiratebay.sx/torrent/8831114 Bit Torent]&lt;br /&gt;
* [https://gitorious.org/logbook-of-an-observer/logbook-of-an-observer Source in XeTex]&lt;br /&gt;
&lt;br /&gt;
ജിനേഷിന്റെ ലേഖനങ്ങളുടെയും , ജിനേഷിനെക്കുറിച്ചുള്ള സുഹൃത്തുക്കളുടെ ഓര്‍മ്മക്കുറിപ്പുകളുടെയും സമാഹാരം -  &#039;&#039;&#039;A Logbook of an Observer - ഒരു നിരീക്ഷകന്റെ കുറിപ്പുകള്‍&#039;&#039;&#039;, ഫെബ്രുവരിയില്‍ പ്രസിദ്ധീകൃതമാവുകയാണ്. ഇതിന്റെ പ്രകാശനം സെപ്റ്റംബറില്‍ എം ഇ എസ് കോളേജില്‍ നടന്ന [[ഓര്‍മ്മകളില്‍_ജിനേഷ്_,_SMC_കൂട്ടായ്മ|എസ് എം സി കൂട്ടായ്മയില്‍]] നടന്ന വിവരം താങ്കള്‍ അറിഞ്ഞുകാണുമല്ലോ.&lt;br /&gt;
കണ്ണൂരിലെ അകം ബുക്സാണ് പ്രസാധകര്‍. 200 രൂപയാണ് മുഖവില നിശ്ചയിച്ചിരിക്കുന്നത്.  ഒരു പകര്‍പ്പ് വേണ്ടവര്‍ താഴെ പേരു് നല്‍കുക. അകം ബൂക്സിന്റെ വിതരണ ശൃംഖല വഴിയും ഇതു് ലഭ്യമാണു്. കൂടാതെ ഇത്തരത്തില്‍ പേര് ചേര്‍ത്തവരില്‍ നിന്ന് 200 രൂപ ശേഖരിക്കുന്നതിനും പുസ്തകം എത്തിക്കുന്നതിനും സന്നദ്ധപ്രവര്‍ത്തകരെ ആവശ്യമുണ്ട്. &lt;br /&gt;
നിങ്ങള്‍ സഹായിക്കാന്‍ സന്നദ്ധനാണെങ്കില്‍ എസ് എം സി മെയിലിങ്ങ് ലിസ്റ്റില്‍ സന്നദ്ധത അറിയിക്കുക. &lt;br /&gt;
&lt;br /&gt;
* [[:File:Logbook.pdf|ഡിജിറ്റല്‍ പതിപ്പു് (പിഡിഎഫ്)]] - [https://thepiratebay.sx/torrent/8831114 ബിറ്റ് ടൊറന്റായി]&lt;br /&gt;
* [https://gitorious.org/logbook-of-an-observer/logbook-of-an-observer സീ‍ടെക്കില്‍ തയ്യാറാക്കിയ സ്രോതസ്സ്]&lt;br /&gt;
&lt;br /&gt;
== പുസ്തകം ആവശ്യമുള്ളവര്‍==&lt;br /&gt;
# ഋഷികേശ് കെ ബി -   കോഴിക്കോട്.  - 4 കോപ്പികള്‍ &lt;br /&gt;
# മനോജ്.കെ - തൃശ്ശൂര്‍&lt;br /&gt;
# സുഗീഷ് - തിരുവനന്തപുരം &lt;br /&gt;
# സെബിന്‍ ഏബ്രഹാം ജേക്കബ്, തിരുവനന്തപുരം&lt;br /&gt;
# കെവിന്‍ - ചെന്നൈ&lt;br /&gt;
# ഡോ. മഹേഷ് മംഗലാട്ട് - മാഹി&lt;br /&gt;
# ഹാരിസ് ഇബ്രാഹിം കെ. വി. - എടപ്പാള്‍&lt;br /&gt;
# അനിവര്‍ അരവിന്ദ് - ബാംഗ്ലൂര്‍  5 കോപ്പികള്‍&lt;br /&gt;
# രജീഷ് കെ നമ്പ്യാര്‍ - കണ്ണൂര്‍&lt;br /&gt;
# സജീവ്‌ കെ , എഫ ആര്‍ ഐ , -  പീച്ചി തൃശൂര്‍ [FEC]&lt;br /&gt;
# റമീസ് റഹ്മാന്‍ - തിരുവനന്തപുരം&lt;br /&gt;
# അനീഷ് - തിരുവനന്തപുരം &lt;br /&gt;
# പ്രവീണ്‍ അരിമ്പ്രത്തൊടിയില്‍ - പൂനെ&lt;br /&gt;
# നെടുമ്പാല ജയ്സെന്‍ - നന്മണ്ട, കോഴിക്കോടു്&lt;br /&gt;
# ബാലശങ്കര്‍ സി - കാലടി, എറണാകുളം&lt;br /&gt;
# നന്ദജ വര്‍മ്മ - തൃശ്ശൂര്‍ &lt;br /&gt;
# അഭിഷേക് ജേക്കബ് - പാലക്കാട്&lt;br /&gt;
# ആശുതോഷ് ജെ ജി - തിരുവനന്തപുരം, ഇമെയില്‍: ajg അറ്റ് asutosh.in&lt;br /&gt;
# Chithrasenan N E, Modern Book Centre, Near GPo, Gandhari Amman Kovil Road, Trivandrum-1, ph;9447811555, chithran അറ്റ് gmail.com &lt;br /&gt;
# ടി.സി.രാജേഷ്, യു-35, &#039;ശ്രീജിത്ത്&#039;, ഉദിയന്നൂര്‍ ലെയ്ന്‍, മരുതുംകുഴി, കാഞ്ഞിരംപാറ പി.ഒ, തിരുവനന്തപുരം- 695030&lt;br /&gt;
# ദിലീപ് നായര്‍ (മത്താപ്പ്) - എറണാകുളം&lt;br /&gt;
# സന്തോഷ് തോട്ടിങ്ങല്‍ - പാലക്കാട്&lt;br /&gt;
# അനി പീറ്റര്‍ - പൂനെ - 3 കോപ്പികള്‍&lt;br /&gt;
# ജിഷ്ണു മോഹന്‍ - ബാംഗ്ലൂര്‍&lt;br /&gt;
# കുമാര്‍ വൈക്കം &lt;br /&gt;
# കണ്ണന്‍ ഷണ്‍മുഖം - കൊല്ലം&lt;br /&gt;
* &amp;lt;താങ്കള്‍ക്ക് പുസ്തകം ആവശ്യമെങ്കില്‍ ഇവിടെ പേരു ചേര്‍ക്കുക&amp;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;
* &amp;lt;താങ്കള്‍ സഹായിക്കാന്‍ സന്നദ്ധനാണെങ്കില്‍ മെയിലിങ്ങ് ലിസ്റ്റില്‍ സന്നദ്ധത അറിയിക്കുക.&amp;gt;&lt;br /&gt;
=== വിതരണത്തിന്റെ തല്‍സ്ഥിതി ===&lt;br /&gt;
* മനോജ് (തൃശ്ശൂര്‍) = 50copy (Ph:-൯൪൯൫൫൧൩൮൭൪)&lt;br /&gt;
* അനിവര്‍(ബാഗ്ലൂര്‍) = 10copy&lt;br /&gt;
* പ്രവീണ്‍ (മലപ്പുറം) = 10copy&lt;/div&gt;</summary>
		<author><name>Pravs</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=%E0%B4%92%E0%B4%B0%E0%B5%81_%E0%B4%A8%E0%B4%BF%E0%B4%B0%E0%B5%80%E0%B4%95%E0%B5%8D%E0%B4%B7%E0%B4%95%E0%B4%A8%E0%B5%8D%E0%B4%B1%E0%B5%86_%E0%B4%95%E0%B5%81%E0%B4%B1%E0%B4%BF%E0%B4%AA%E0%B5%8D%E0%B4%AA%E0%B5%81%E0%B4%95%E0%B5%BE_-_%E0%B4%AA%E0%B5%8D%E0%B4%B0%E0%B4%B8%E0%B4%BE%E0%B4%A7%E0%B4%A8%E0%B4%82&amp;diff=4176</id>
		<title>ഒരു നിരീക്ഷകന്റെ കുറിപ്പുകൾ - പ്രസാധനം</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=%E0%B4%92%E0%B4%B0%E0%B5%81_%E0%B4%A8%E0%B4%BF%E0%B4%B0%E0%B5%80%E0%B4%95%E0%B5%8D%E0%B4%B7%E0%B4%95%E0%B4%A8%E0%B5%8D%E0%B4%B1%E0%B5%86_%E0%B4%95%E0%B5%81%E0%B4%B1%E0%B4%BF%E0%B4%AA%E0%B5%8D%E0%B4%AA%E0%B5%81%E0%B4%95%E0%B5%BE_-_%E0%B4%AA%E0%B5%8D%E0%B4%B0%E0%B4%B8%E0%B4%BE%E0%B4%A7%E0%B4%A8%E0%B4%82&amp;diff=4176"/>
		<updated>2013-08-20T05:25:43Z</updated>

		<summary type="html">&lt;p&gt;Pravs: english description added&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{PU|Logbook_of_an_Observer_-_Publication}}&lt;br /&gt;
[[File:LogbookCover.png|thumb|200px|Logbook of an Observer (കവര്‍ പേജ്) by ഹിരണ്‍ വേണുഗോപാല്‍]] &lt;br /&gt;
&lt;br /&gt;
Logbook of an Observer is a collection of blog posts on Free Software, Society, Formula One Racing and many other topics by Jinesh KJ. He is the author of Malayalam phonetic input method called Lalitha, he was a Google Summer of Code student with Swathanthra Malayalam Computing in 2007, he contributed to silpa Indic Language Computing project and pypdflib, he was part of two efforts to build ona OCR for Malayalam, he contributed to Malayalam translation of gnu.org web pages,  he was also active in laguage standardization efforts. This book is a memorial to our friend Jinesh Kanjirangattil Jayaraman or jinsbond from his friends. We lost him to Lukemia on September 29, 2011 in CMS Vellore. It also contain notes from his hospital bed and memorials from his friends.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [[:File:Logbook.pdf| Digital Copy (PDF)]]&lt;br /&gt;
* [https://gitorious.org/logbook-of-an-observer/logbook-of-an-observer Source in XeTex]&lt;br /&gt;
&lt;br /&gt;
ജിനേഷിന്റെ ലേഖനങ്ങളുടെയും , ജിനേഷിനെക്കുറിച്ചുള്ള സുഹൃത്തുക്കളുടെ ഓര്‍മ്മക്കുറിപ്പുകളുടെയും സമാഹാരം -  &#039;&#039;&#039;A Logbook of an Observer - ഒരു നിരീക്ഷകന്റെ കുറിപ്പുകള്‍&#039;&#039;&#039;, ഫെബ്രുവരിയില്‍ പ്രസിദ്ധീകൃതമാവുകയാണ്. ഇതിന്റെ പ്രകാശനം സെപ്റ്റംബറില്‍ എം ഇ എസ് കോളേജില്‍ നടന്ന [[ഓര്‍മ്മകളില്‍_ജിനേഷ്_,_SMC_കൂട്ടായ്മ|എസ് എം സി കൂട്ടായ്മയില്‍]] നടന്ന വിവരം താങ്കള്‍ അറിഞ്ഞുകാണുമല്ലോ.&lt;br /&gt;
കണ്ണൂരിലെ അകം ബുക്സാണ് പ്രസാധകര്‍. 200 രൂപയാണ് മുഖവില നിശ്ചയിച്ചിരിക്കുന്നത്.  ഒരു പകര്‍പ്പ് വേണ്ടവര്‍ താഴെ പേരു് നല്‍കുക. അകം ബൂക്സിന്റെ വിതരണ ശൃംഖല വഴിയും ഇതു് ലഭ്യമാണു്. കൂടാതെ ഇത്തരത്തില്‍ പേര് ചേര്‍ത്തവരില്‍ നിന്ന് 200 രൂപ ശേഖരിക്കുന്നതിനും പുസ്തകം എത്തിക്കുന്നതിനും സന്നദ്ധപ്രവര്‍ത്തകരെ ആവശ്യമുണ്ട്. &lt;br /&gt;
നിങ്ങള്‍ സഹായിക്കാന്‍ സന്നദ്ധനാണെങ്കില്‍ എസ് എം സി മെയിലിങ്ങ് ലിസ്റ്റില്‍ സന്നദ്ധത അറിയിക്കുക. &lt;br /&gt;
&lt;br /&gt;
* [[:File:Logbook.pdf|ഡിജിറ്റല്‍ പതിപ്പു് (പിഡിഎഫ്)]]&lt;br /&gt;
* [https://gitorious.org/logbook-of-an-observer/logbook-of-an-observer സീ‍ടെക്കില്‍ തയ്യാറാക്കിയ സ്രോതസ്സ്]&lt;br /&gt;
&lt;br /&gt;
== പുസ്തകം ആവശ്യമുള്ളവര്‍==&lt;br /&gt;
# ഋഷികേശ് കെ ബി -   കോഴിക്കോട്.  - 4 കോപ്പികള്‍ &lt;br /&gt;
# മനോജ്.കെ - തൃശ്ശൂര്‍&lt;br /&gt;
# സുഗീഷ് - തിരുവനന്തപുരം &lt;br /&gt;
# സെബിന്‍ ഏബ്രഹാം ജേക്കബ്, തിരുവനന്തപുരം&lt;br /&gt;
# കെവിന്‍ - ചെന്നൈ&lt;br /&gt;
# ഡോ. മഹേഷ് മംഗലാട്ട് - മാഹി&lt;br /&gt;
# ഹാരിസ് ഇബ്രാഹിം കെ. വി. - എടപ്പാള്‍&lt;br /&gt;
# അനിവര്‍ അരവിന്ദ് - ബാംഗ്ലൂര്‍  5 കോപ്പികള്‍&lt;br /&gt;
# രജീഷ് കെ നമ്പ്യാര്‍ - കണ്ണൂര്‍&lt;br /&gt;
# സജീവ്‌ കെ , എഫ ആര്‍ ഐ , -  പീച്ചി തൃശൂര്‍ [FEC]&lt;br /&gt;
# റമീസ് റഹ്മാന്‍ - തിരുവനന്തപുരം&lt;br /&gt;
# അനീഷ് - തിരുവനന്തപുരം &lt;br /&gt;
# പ്രവീണ്‍ അരിമ്പ്രത്തൊടിയില്‍ - പൂനെ&lt;br /&gt;
# നെടുമ്പാല ജയ്സെന്‍ - നന്മണ്ട, കോഴിക്കോടു്&lt;br /&gt;
# ബാലശങ്കര്‍ സി - കാലടി, എറണാകുളം&lt;br /&gt;
# നന്ദജ വര്‍മ്മ - തൃശ്ശൂര്‍ &lt;br /&gt;
# അഭിഷേക് ജേക്കബ് - പാലക്കാട്&lt;br /&gt;
# ആശുതോഷ് ജെ ജി - തിരുവനന്തപുരം, ഇമെയില്‍: ajg അറ്റ് asutosh.in&lt;br /&gt;
# Chithrasenan N E, Modern Book Centre, Near GPo, Gandhari Amman Kovil Road, Trivandrum-1, ph;9447811555, chithran അറ്റ് gmail.com &lt;br /&gt;
# ടി.സി.രാജേഷ്, യു-35, &#039;ശ്രീജിത്ത്&#039;, ഉദിയന്നൂര്‍ ലെയ്ന്‍, മരുതുംകുഴി, കാഞ്ഞിരംപാറ പി.ഒ, തിരുവനന്തപുരം- 695030&lt;br /&gt;
# ദിലീപ് നായര്‍ (മത്താപ്പ്) - എറണാകുളം&lt;br /&gt;
# സന്തോഷ് തോട്ടിങ്ങല്‍ - പാലക്കാട്&lt;br /&gt;
# അനി പീറ്റര്‍ - പൂനെ - 3 കോപ്പികള്‍&lt;br /&gt;
# ജിഷ്ണു മോഹന്‍ - ബാംഗ്ലൂര്‍&lt;br /&gt;
# കുമാര്‍ വൈക്കം &lt;br /&gt;
# കണ്ണന്‍ ഷണ്‍മുഖം - കൊല്ലം&lt;br /&gt;
* &amp;lt;താങ്കള്‍ക്ക് പുസ്തകം ആവശ്യമെങ്കില്‍ ഇവിടെ പേരു ചേര്‍ക്കുക&amp;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;
* &amp;lt;താങ്കള്‍ സഹായിക്കാന്‍ സന്നദ്ധനാണെങ്കില്‍ മെയിലിങ്ങ് ലിസ്റ്റില്‍ സന്നദ്ധത അറിയിക്കുക.&amp;gt;&lt;br /&gt;
=== വിതരണത്തിന്റെ തല്‍സ്ഥിതി ===&lt;br /&gt;
* മനോജ് (തൃശ്ശൂര്‍) = 50copy (Ph:-൯൪൯൫൫൧൩൮൭൪)&lt;br /&gt;
* അനിവര്‍(ബാഗ്ലൂര്‍) = 10copy&lt;br /&gt;
* പ്രവീണ്‍ (മലപ്പുറം) = 10copy&lt;/div&gt;</summary>
		<author><name>Pravs</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=Template:MainPageNoticeBoard&amp;diff=4175</id>
		<title>Template:MainPageNoticeBoard</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=Template:MainPageNoticeBoard&amp;diff=4175"/>
		<updated>2013-08-20T04:43:24Z</updated>

		<summary type="html">&lt;p&gt;Pravs: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MainPageNoticeBoardTemplate&lt;br /&gt;
|പ്രധാന അറിയിപ്പ് = ജിനേഷിന്റെ ലേഖനങ്ങളുടെയും , ജിനേഷിനെക്കുറിച്ചുള്ള സുഹൃത്തുക്കളുടെ ഓര്‍മ്മക്കുറിപ്പുകളുടെയും സമാഹാരം - A Logbook of an Observer - ഒരു നിരീക്ഷകന്റെ കുറിപ്പുകള്‍, വിതരണത്തിനു് തയ്യാറായിട്ടുണ്ടു്. [[Logbook_of_an_Observer_-_Publication |കൂടുതല്‍ വിവരങ്ങള്‍]]&lt;br /&gt;
|ചിത്രം =LogbookCover.png&lt;br /&gt;
|മറ്റ് അറിയിപ്പുകള്‍ =&lt;br /&gt;
* ഗൂഗിള്‍ സമ്മര്‍ ഓഫ് കോഡ് 2013 (GSoC 2013)ല്‍ മെന്ററിങ്ങ് ഓര്‍ഗനൈസേഷനായി എസ് എം  സി തിരഞ്ഞെടുക്കപ്പെട്ടു , [[SoC/2013|GSoC 2013 താള്‍ ]] കാണുക&lt;br /&gt;
*ViBGYOR Film Collectiveന്റെ പ്രതിമാസ സ്ക്രീനിങ്ങിന്റെ ഭാഗമായി ജൂലൈ 30, ചൊവ്വാഴ്ച, വൈകീട്ട് 6.30 ന് കേരള സാഹിത്യ അക്കാദമി വൈലോപ്പിള്ളി ഹാളില്‍ ഗുണ്ടര്‍ട്ടിനെപ്പറ്റിയുള്ള Gundert-The man, The Language (2012) ഡോക്യുമെന്ററി സ്ക്രീനിങ്ങ് സ്വതന്ത്രമലയാളം കമ്പ്യൂട്ടിങ്ങുമായിച്ചേര്‍ന്ന് സംഘടിപ്പിക്കുന്നു. [[Gundert Film Screening|കൂടുതല്‍]]&lt;br /&gt;
*ഡെബിയന്റെ ഏഴാം പതിപ്പായ വീസിയുടെ റിലീസ് പാര്‍ട്ടി മേയ് 5നു്, തിരുവന്തപുരത്തെ SPACEല്‍ വച്ച് സംഘടിപ്പിച്ചു. [[ReleasePartyWheezy|കൂടുതല്‍]] &lt;br /&gt;
*സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ്ങു് സന്നദ്ധപ്രവര്‍ത്തകരുടെ വാര്‍ഷിക സമ്മേളനം സമ്മേളനം സെപ്റ്റംബര്‍ 29, 30 തിയ്യതികളില്‍ കുറ്റിപ്പുറം MES കോളേജില്‍ വച്ച് നടന്നു. കൂടുതല്‍ [[ഓര്‍മ്മകളില്‍ ജിനേഷ് , SMC കൂട്ടായ്മ]]&lt;br /&gt;
* ഗ്നോം 3.4 റിലീസ് പാര്‍ട്ടി ഏപ്രില്‍ 7ന് MES എഞ്ചിനീയങ് കോളേജ്, കുറ്റിപ്പുറത്ത് നടന്നു. [[GNOME_3.4_Release_Party|കൂടുതല്‍ വിവരങ്ങള്‍]]&lt;br /&gt;
* സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ്ങ് പരിപാലിക്കുന്ന മലയാളം ഫോണ്ടുകളുടെ അഞ്ചാം പതിപ്പ് പ്രസിദ്ധീകരിച്ചു. [http://thottingal.in/blog/2012/03/10/new-version-of-malayalam-fonts-released  കൂടുതല്‍ വിവരങ്ങള്‍]&lt;br /&gt;
*കെ.ഡി.ഇ 4.7 ന്റെ പരിഭാഷ പുരോഗമിക്കുന്നു. താങ്കള്‍ക്കും ഈ സംരംഭത്തില്‍ പങ്കുചേരാം. [[KDE-4.7_Sprint|കൂടുതല്‍ വിവരങ്ങള്‍]]&lt;br /&gt;
* [http://www.gnome3.org ഗ്നോം 3.0]യുടെ ഔദ്യോഗിക പ്രകാശനം ഏപ്രില്‍ 6 ന് MES ലും  വിദ്യ *യിലും [http://wiki.smc.org.in/Gnome3/LaunchParty കൂടുതല്‍  വിവരങ്ങള്‍ ]&lt;br /&gt;
*MES കോളേജും സിക്സ്‌വെയര്‍ ടെക്നോളജീസും സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ്ങിന്റെയും MES-FSUG,S@IT എന്നിവയുടെയും സഹായത്തോടെ വിദ്യാര്‍ത്ഥികള്‍ക്കായി ഒരു സോഫ്റ്റ്‌വെയര്‍ വികസന ക്യാമ്പ് കുറ്റിപ്പുറത്ത് ഫെബ്രുവരി 27നു് സംഘടിപ്പിച്ചു. [[Developer_Camp/MES| കൂടുതല്‍ വിവരങ്ങള്‍]]&lt;br /&gt;
*രണ്ടാമത്തെ മലയാളം-ഫ്യുവല്‍ ക്യാമ്പ്, ഫെബ്രുവരി 22, 23 തീയതികളില്‍ കൊടുങ്ങല്ലുര്‍ കുഞ്ഞിക്കുട്ടന്‍ തമ്പുരാന്‍ കോളേജില്‍ വച്ച് സംഘടിപ്പിച്ചു. [[Malayalam-FUEL/kodungallur| കൂടുതല്‍ വിവരങ്ങള്‍]]&lt;br /&gt;
*ഫോസ് മീറ്റിനോടനുബന്ധിച്ചു് ഫെബ്രുവരി ആറിനു് മലയാളം-ഫ്യുവല്‍ ക്യാമ്പ് കോഴിക്കോടു് എന്‍ഐടിയില്‍ നടന്നു. [[Malayalam-FUEL/NITC| കൂടുതല്‍ വിവരങ്ങള്‍]]&lt;br /&gt;
*സ്വതന്ത്രമലയാളം കമ്പ്യൂട്ടിങ്ങിന്റെ ഒമ്പതാമത് ക്യാമ്പ് ഡിസംബര്‍ 3 ന് ആലുവയിലെ MES കോളേജ് മാറമ്പള്ളിയില്‍ വച്ച് നടന്നു.[[http://mesmarampally.org| കൂടുതല്‍ വിവരങ്ങള്‍]]&lt;br /&gt;
*വിദ്യാ അക്കാദമിയും സിക്സ്‌വെയര്‍ ടെക്നോളജീസും സ്വതന്ത്രമലയാളംകമ്പ്യൂട്ടിങ്ങിന്റെയും തൃശ്ശൂര്‍ സ്വതന്ത്രസോഫ്റ്റ്‌വെയര്‍ യൂസര്‍ ഗ്രൂപ്പിന്റെയും സഹായത്തോടെ വിദ്യാര്‍ത്ഥികള്‍ക്കായി ഒരു സോഫ്റ്റ്‌വെയര്‍ വികസന ക്യാമ്പ് തൃശ്ശൂരില്‍ നവംബര്‍ 29നു് സംഘടിപ്പിച്ചു.  [[Developer_Camp/VAST| കൂടുതല്‍ വിവരങ്ങള്‍]]&lt;br /&gt;
*സ്വതന്ത്രമലയാളം കമ്പ്യൂട്ടിങ്ങിന്റെ എട്ടാമതു ക്യാമ്പ് ഒക്ടോബര്‍ 2 ന് ,തൃശ്ശൂരിലെ വിദ്യ അക്കാദമി ഓഫ് സയന്‍സ് ആന്‍ഡ്‌ ടെക്നോളജിയില്‍ വച്ച് സംഘടിപ്പിച്ചു.[[Localisation_Camp/8_VAST| കൂടുതല്‍ വിവരങ്ങള്‍]]&lt;br /&gt;
*ഫയര്‍ഫോക്സ് വെബ് ബ്രൗസറിന്റെ 3.6.8 പതിപ്പ് മലയാളം  വേര്‍ഷന്‍ ഔദ്യോഗികമായി പുറത്തിറങ്ങി !! കൂടുതല്‍ വിവരങ്ങള്‍ക്ക് [[ഫയര്‍ഫോക്സ്_മലയാളം_പത്രക്കുറിപ്പ്| പത്രക്കുറിപ്പ്]] കാണുക  &lt;br /&gt;
* കെഡിഇ 4.5 ല്‍ മലയാളം തുടര്‍ന്നും ലഭ്യമാക്കാന്‍ [http://l10n.kde.org/stats/gui/trunk-kde4/essential/ അടിസ്ഥാന പാക്കേജുകളുടെ] പരിഭാഷ പുരോഗമിയ്ക്കുന്നു. താങ്കള്‍ക്കും സഹായിക്കാം!! കൂടുതല്‍ വിവരങ്ങള്‍ക്കും ഈ സംരംഭത്തില്‍ പങ്കുചേരുന്നതിനും [[KDE_Malayalam|കെ.ഡി.ഇ മലയാളം]] താള്‍ കാണുക.&lt;br /&gt;
* പൂനെയിലെ ശിബിരത്തിന്റെ തുടര്‍ച്ചയായി പയ്യന്‍സിനെ ദേവനാഗരി പഠിപ്പിയ്ക്കാനുള്ള ശ്രമം ഓഗസ്റ്റ് 22 നു് നടന്നു [[Localisation_Camp/Pune/Payyans_Workout|കൂടുതല്‍ വിവരങ്ങള്‍]]&lt;br /&gt;
* പാലക്കാട് ബിഗ് ബസാര്‍ സ്കൂളില്‍ (വലിയങ്ങാടി സ്ക്കൂളില്‍) വച്ചു് ഏഴാമതു് സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ്ങ് ക്യാമ്പ്, ജൂലൈ 10, 11 തിയ്യതികളില്‍ നടന്നു. [[Localisation_Camp/Palakkad|കൂടുതല്‍ വിവരങ്ങള്‍]]&lt;br /&gt;
*കുറ്റിപ്പുറം എം.ഇ.എസ്. എഞ്ചിനിയറിങ്ങ് കോളേജില്‍ വച്ചു് ആറാമത് സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ്ങ് ക്യാമ്പ്, ജൂണ്‍ 30 -ന് നടന്നു. [http://gnulabs.org/mesce/l10n കൂടുതല്‍ വിവരങ്ങള്‍]&lt;br /&gt;
* കൊച്ചിയിലെ Free Learning Institute-ല്‍ വച്ച് അഞ്ചാമതു സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ്ങ് ക്യാമ്പ്, മേയ് 24,25 തിയ്യതികളിലായി നടന്നു. [[Localisation_Camp/5_Cochin_24,25_May_2010|കൂടുതല്‍ വിവരങ്ങള്‍]]&lt;br /&gt;
*അങ്കമാലി ഫിസാറ്റിലെ ഐസ്‌ഫോസ് കോണ്‍ഫറന്‍സില്‍ വച്ചു് നാലാമതു് സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ്ങ് ക്യാമ്പ്, ഏപ്രില്‍ 20, 21 തിയ്യതികളിലായി നടന്നു. [[Localisation_Camp/ICEFOSS|കൂടുതല്‍ വിവരങ്ങള്‍]]&lt;br /&gt;
* തിരുവനന്തപുരത്തു് സ്പേസിന്റെ ഓഫീസില്‍ വച്ചു് മൂന്നാമതു് സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ്ങ് ക്യാമ്പ്, മാര്‍ച്ച് 27, 28 തിയ്യതികളിലായി നടന്നു. [[Localisation_Camp/Space|കൂടുതല്‍ വിവരങ്ങള്‍]]&lt;br /&gt;
* പൂനെയിലെ റെഡ് ഹാറ്റിന്റെ ഓഫീസില്‍ വച്ചു് രണ്ടാം സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ്ങ് ക്യാമ്പ്, മാര്‍ച്ച് 20, 21 തിയ്യതികളിലായി നടന്നു. [[Localisation_Camp/Pune|കൂടുതല്‍ വിവരങ്ങള്‍]]&lt;br /&gt;
* കോഴിക്കോടു് ദേവഗിരി കോളേജില്‍ വച്ചു് ഒന്നാം സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ്ങ് ക്യാമ്പ്, ഫെബ്രുവരി 27, 28 തിയ്യതികളിലായി നടന്നു. [[Localisation_Camp/Devagiri|കൂടുതല്‍ വിവരങ്ങള്‍]]&lt;br /&gt;
* കോഴിക്കോടു് എന്‍ഐടിയില്‍ വച്ചു് നടക്കുന്ന ഫോസ് മീറ്റില്‍ നമ്മളും പങ്കെടുത്തു. [[Localisation_Hut|കൂടുതല്‍ വിവരങ്ങള്‍]]&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Pravs</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=%E0%B4%92%E0%B4%B0%E0%B5%81_%E0%B4%A8%E0%B4%BF%E0%B4%B0%E0%B5%80%E0%B4%95%E0%B5%8D%E0%B4%B7%E0%B4%95%E0%B4%A8%E0%B5%8D%E0%B4%B1%E0%B5%86_%E0%B4%95%E0%B5%81%E0%B4%B1%E0%B4%BF%E0%B4%AA%E0%B5%8D%E0%B4%AA%E0%B5%81%E0%B4%95%E0%B5%BE_-_%E0%B4%AA%E0%B5%8D%E0%B4%B0%E0%B4%B8%E0%B4%BE%E0%B4%A7%E0%B4%A8%E0%B4%82&amp;diff=4174</id>
		<title>ഒരു നിരീക്ഷകന്റെ കുറിപ്പുകൾ - പ്രസാധനം</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=%E0%B4%92%E0%B4%B0%E0%B5%81_%E0%B4%A8%E0%B4%BF%E0%B4%B0%E0%B5%80%E0%B4%95%E0%B5%8D%E0%B4%B7%E0%B4%95%E0%B4%A8%E0%B5%8D%E0%B4%B1%E0%B5%86_%E0%B4%95%E0%B5%81%E0%B4%B1%E0%B4%BF%E0%B4%AA%E0%B5%8D%E0%B4%AA%E0%B5%81%E0%B4%95%E0%B5%BE_-_%E0%B4%AA%E0%B5%8D%E0%B4%B0%E0%B4%B8%E0%B4%BE%E0%B4%A7%E0%B4%A8%E0%B4%82&amp;diff=4174"/>
		<updated>2013-08-20T04:36:36Z</updated>

		<summary type="html">&lt;p&gt;Pravs: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{PU|Logbook_of_an_Observer_-_Publication}}&lt;br /&gt;
[[File:LogbookCover.png|thumb|200px|Logbook of an Observer (കവര്‍ പേജ്) by ഹിരണ്‍ വേണുഗോപാല്‍]] &lt;br /&gt;
&lt;br /&gt;
ജിനേഷിന്റെ ലേഖനങ്ങളുടെയും , ജിനേഷിനെക്കുറിച്ചുള്ള സുഹൃത്തുക്കളുടെ ഓര്‍മ്മക്കുറിപ്പുകളുടെയും സമാഹാരം -  &#039;&#039;&#039;A Logbook of an Observer - ഒരു നിരീക്ഷകന്റെ കുറിപ്പുകള്‍&#039;&#039;&#039;, ഫെബ്രുവരിയില്‍ പ്രസിദ്ധീകൃതമാവുകയാണ്. ഇതിന്റെ പ്രകാശനം സെപ്റ്റംബറില്‍ എം ഇ എസ് കോളേജില്‍ നടന്ന [[ഓര്‍മ്മകളില്‍_ജിനേഷ്_,_SMC_കൂട്ടായ്മ|എസ് എം സി കൂട്ടായ്മയില്‍]] നടന്ന വിവരം താങ്കള്‍ അറിഞ്ഞുകാണുമല്ലോ.&lt;br /&gt;
കണ്ണൂരിലെ അകം ബുക്സാണ് പ്രസാധകര്‍. 200 രൂപയാണ് മുഖവില നിശ്ചയിച്ചിരിക്കുന്നത്.  ഒരു പകര്‍പ്പ് വേണ്ടവര്‍ താഴെ പേരു് നല്‍കുക. അകം ബൂക്സിന്റെ വിതരണ ശൃംഖല വഴിയും ഇതു് ലഭ്യമാണു്. കൂടാതെ ഇത്തരത്തില്‍ പേര് ചേര്‍ത്തവരില്‍ നിന്ന് 200 രൂപ ശേഖരിക്കുന്നതിനും പുസ്തകം എത്തിക്കുന്നതിനും സന്നദ്ധപ്രവര്‍ത്തകരെ ആവശ്യമുണ്ട്. &lt;br /&gt;
നിങ്ങള്‍ സഹായിക്കാന്‍ സന്നദ്ധനാണെങ്കില്‍ എസ് എം സി മെയിലിങ്ങ് ലിസ്റ്റില്‍ സന്നദ്ധത അറിയിക്കുക. &lt;br /&gt;
&lt;br /&gt;
* [[:File:Logbook.pdf|ഡിജിറ്റല്‍ പതിപ്പു് (പിഡിഎഫ്)]]&lt;br /&gt;
* [https://gitorious.org/logbook-of-an-observer/logbook-of-an-observer സീ‍ടെക്കില്‍ തയ്യാറാക്കിയ സ്രോതസ്സ്]&lt;br /&gt;
&lt;br /&gt;
== പുസ്തകം ആവശ്യമുള്ളവര്‍==&lt;br /&gt;
# ഋഷികേശ് കെ ബി -   കോഴിക്കോട്.  - 4 കോപ്പികള്‍ &lt;br /&gt;
# മനോജ്.കെ - തൃശ്ശൂര്‍&lt;br /&gt;
# സുഗീഷ് - തിരുവനന്തപുരം &lt;br /&gt;
# സെബിന്‍ ഏബ്രഹാം ജേക്കബ്, തിരുവനന്തപുരം&lt;br /&gt;
# കെവിന്‍ - ചെന്നൈ&lt;br /&gt;
# ഡോ. മഹേഷ് മംഗലാട്ട് - മാഹി&lt;br /&gt;
# ഹാരിസ് ഇബ്രാഹിം കെ. വി. - എടപ്പാള്‍&lt;br /&gt;
# അനിവര്‍ അരവിന്ദ് - ബാംഗ്ലൂര്‍  5 കോപ്പികള്‍&lt;br /&gt;
# രജീഷ് കെ നമ്പ്യാര്‍ - കണ്ണൂര്‍&lt;br /&gt;
# സജീവ്‌ കെ , എഫ ആര്‍ ഐ , -  പീച്ചി തൃശൂര്‍ [FEC]&lt;br /&gt;
# റമീസ് റഹ്മാന്‍ - തിരുവനന്തപുരം&lt;br /&gt;
# അനീഷ് - തിരുവനന്തപുരം &lt;br /&gt;
# പ്രവീണ്‍ അരിമ്പ്രത്തൊടിയില്‍ - പൂനെ&lt;br /&gt;
# നെടുമ്പാല ജയ്സെന്‍ - നന്മണ്ട, കോഴിക്കോടു്&lt;br /&gt;
# ബാലശങ്കര്‍ സി - കാലടി, എറണാകുളം&lt;br /&gt;
# നന്ദജ വര്‍മ്മ - തൃശ്ശൂര്‍ &lt;br /&gt;
# അഭിഷേക് ജേക്കബ് - പാലക്കാട്&lt;br /&gt;
# ആശുതോഷ് ജെ ജി - തിരുവനന്തപുരം, ഇമെയില്‍: ajg അറ്റ് asutosh.in&lt;br /&gt;
# Chithrasenan N E, Modern Book Centre, Near GPo, Gandhari Amman Kovil Road, Trivandrum-1, ph;9447811555, chithran അറ്റ് gmail.com &lt;br /&gt;
# ടി.സി.രാജേഷ്, യു-35, &#039;ശ്രീജിത്ത്&#039;, ഉദിയന്നൂര്‍ ലെയ്ന്‍, മരുതുംകുഴി, കാഞ്ഞിരംപാറ പി.ഒ, തിരുവനന്തപുരം- 695030&lt;br /&gt;
# ദിലീപ് നായര്‍ (മത്താപ്പ്) - എറണാകുളം&lt;br /&gt;
# സന്തോഷ് തോട്ടിങ്ങല്‍ - പാലക്കാട്&lt;br /&gt;
# അനി പീറ്റര്‍ - പൂനെ - 3 കോപ്പികള്‍&lt;br /&gt;
# ജിഷ്ണു മോഹന്‍ - ബാംഗ്ലൂര്‍&lt;br /&gt;
# കുമാര്‍ വൈക്കം &lt;br /&gt;
# കണ്ണന്‍ ഷണ്‍മുഖം - കൊല്ലം&lt;br /&gt;
* &amp;lt;താങ്കള്‍ക്ക് പുസ്തകം ആവശ്യമെങ്കില്‍ ഇവിടെ പേരു ചേര്‍ക്കുക&amp;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;
* &amp;lt;താങ്കള്‍ സഹായിക്കാന്‍ സന്നദ്ധനാണെങ്കില്‍ മെയിലിങ്ങ് ലിസ്റ്റില്‍ സന്നദ്ധത അറിയിക്കുക.&amp;gt;&lt;br /&gt;
=== വിതരണത്തിന്റെ തല്‍സ്ഥിതി ===&lt;br /&gt;
* മനോജ് (തൃശ്ശൂര്‍) = 50copy (Ph:-൯൪൯൫൫൧൩൮൭൪)&lt;br /&gt;
* അനിവര്‍(ബാഗ്ലൂര്‍) = 10copy&lt;br /&gt;
* പ്രവീണ്‍ (മലപ്പുറം) = 10copy&lt;/div&gt;</summary>
		<author><name>Pravs</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=%E0%B4%92%E0%B4%B0%E0%B5%81_%E0%B4%A8%E0%B4%BF%E0%B4%B0%E0%B5%80%E0%B4%95%E0%B5%8D%E0%B4%B7%E0%B4%95%E0%B4%A8%E0%B5%8D%E0%B4%B1%E0%B5%86_%E0%B4%95%E0%B5%81%E0%B4%B1%E0%B4%BF%E0%B4%AA%E0%B5%8D%E0%B4%AA%E0%B5%81%E0%B4%95%E0%B5%BE_-_%E0%B4%AA%E0%B5%8D%E0%B4%B0%E0%B4%B8%E0%B4%BE%E0%B4%A7%E0%B4%A8%E0%B4%82&amp;diff=4173</id>
		<title>ഒരു നിരീക്ഷകന്റെ കുറിപ്പുകൾ - പ്രസാധനം</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=%E0%B4%92%E0%B4%B0%E0%B5%81_%E0%B4%A8%E0%B4%BF%E0%B4%B0%E0%B5%80%E0%B4%95%E0%B5%8D%E0%B4%B7%E0%B4%95%E0%B4%A8%E0%B5%8D%E0%B4%B1%E0%B5%86_%E0%B4%95%E0%B5%81%E0%B4%B1%E0%B4%BF%E0%B4%AA%E0%B5%8D%E0%B4%AA%E0%B5%81%E0%B4%95%E0%B5%BE_-_%E0%B4%AA%E0%B5%8D%E0%B4%B0%E0%B4%B8%E0%B4%BE%E0%B4%A7%E0%B4%A8%E0%B4%82&amp;diff=4173"/>
		<updated>2013-08-20T04:35:40Z</updated>

		<summary type="html">&lt;p&gt;Pravs: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{PU|Logbook_of_an_Observer_-_Publication}}&lt;br /&gt;
[[File:LogbookCover.png|thumb|200px|Logbook of an Observer (കവര്‍ പേജ്) by ഹിരണ്‍ വേണുഗോപാല്‍]] &lt;br /&gt;
&lt;br /&gt;
ജിനേഷിന്റെ ലേഖനങ്ങളുടെയും , ജിനേഷിനെക്കുറിച്ചുള്ള സുഹൃത്തുക്കളുടെ ഓര്‍മ്മക്കുറിപ്പുകളുടെയും സമാഹാരം -  &#039;&#039;&#039;A Logbook of an Observer - ഒരു നിരീക്ഷകന്റെ കുറിപ്പുകള്‍&#039;&#039;&#039;, ഫെബ്രുവരിയില്‍ പ്രസിദ്ധീകൃതമാവുകയാണ്. ഇതിന്റെ പ്രകാശനം സെപ്റ്റംബറില്‍ എം ഇ എസ് കോളേജില്‍ നടന്ന [[ഓര്‍മ്മകളില്‍_ജിനേഷ്_,_SMC_കൂട്ടായ്മ|എസ് എം സി കൂട്ടായ്മയില്‍]] നടന്ന വിവരം താങ്കള്‍ അറിഞ്ഞുകാണുമല്ലോ.&lt;br /&gt;
കണ്ണൂരിലെ അകം ബുക്സാണ് പ്രസാധകര്‍. 200 രൂപയാണ് മുഖവില നിശ്ചയിച്ചിരിക്കുന്നത്.  ഒരു പകര്‍പ്പ് വേണ്ടവര്‍ താഴെ പേരു് നല്‍കുക. അകം ബൂക്സിന്റെ വിതരണ ശൃംഖല വഴിയും ഇതു് ലഭ്യമാണു്. കൂടാതെ ഇത്തരത്തില്‍ പേര് ചേര്‍ത്തവരില്‍ നിന്ന് 200 രൂപ ശേഖരിക്കുന്നതിനും പുസ്തകം എത്തിക്കുന്നതിനും സന്നദ്ധപ്രവര്‍ത്തകരെ ആവശ്യമുണ്ട്. &lt;br /&gt;
നിങ്ങള്‍ സഹായിക്കാന്‍ സന്നദ്ധനാണെങ്കില്‍ എസ് എം സി മെയിലിങ്ങ് ലിസ്റ്റില്‍ സന്നദ്ധത അറിയിക്കുക. &lt;br /&gt;
&lt;br /&gt;
* [[:File:Logbook.pdf|ഡിജിറ്റല്‍ പതിപ്പു് (പിഡിഎഫ്)]]&lt;br /&gt;
* [https://gitorious.org/logbook-of-an-observer/logbook-of-an-observer|സീ‍ടെക്കില്‍ തയ്യാറാക്കിയ സ്രോതസ്സ്]&lt;br /&gt;
&lt;br /&gt;
== പുസ്തകം ആവശ്യമുള്ളവര്‍==&lt;br /&gt;
# ഋഷികേശ് കെ ബി -   കോഴിക്കോട്.  - 4 കോപ്പികള്‍ &lt;br /&gt;
# മനോജ്.കെ - തൃശ്ശൂര്‍&lt;br /&gt;
# സുഗീഷ് - തിരുവനന്തപുരം &lt;br /&gt;
# സെബിന്‍ ഏബ്രഹാം ജേക്കബ്, തിരുവനന്തപുരം&lt;br /&gt;
# കെവിന്‍ - ചെന്നൈ&lt;br /&gt;
# ഡോ. മഹേഷ് മംഗലാട്ട് - മാഹി&lt;br /&gt;
# ഹാരിസ് ഇബ്രാഹിം കെ. വി. - എടപ്പാള്‍&lt;br /&gt;
# അനിവര്‍ അരവിന്ദ് - ബാംഗ്ലൂര്‍  5 കോപ്പികള്‍&lt;br /&gt;
# രജീഷ് കെ നമ്പ്യാര്‍ - കണ്ണൂര്‍&lt;br /&gt;
# സജീവ്‌ കെ , എഫ ആര്‍ ഐ , -  പീച്ചി തൃശൂര്‍ [FEC]&lt;br /&gt;
# റമീസ് റഹ്മാന്‍ - തിരുവനന്തപുരം&lt;br /&gt;
# അനീഷ് - തിരുവനന്തപുരം &lt;br /&gt;
# പ്രവീണ്‍ അരിമ്പ്രത്തൊടിയില്‍ - പൂനെ&lt;br /&gt;
# നെടുമ്പാല ജയ്സെന്‍ - നന്മണ്ട, കോഴിക്കോടു്&lt;br /&gt;
# ബാലശങ്കര്‍ സി - കാലടി, എറണാകുളം&lt;br /&gt;
# നന്ദജ വര്‍മ്മ - തൃശ്ശൂര്‍ &lt;br /&gt;
# അഭിഷേക് ജേക്കബ് - പാലക്കാട്&lt;br /&gt;
# ആശുതോഷ് ജെ ജി - തിരുവനന്തപുരം, ഇമെയില്‍: ajg അറ്റ് asutosh.in&lt;br /&gt;
# Chithrasenan N E, Modern Book Centre, Near GPo, Gandhari Amman Kovil Road, Trivandrum-1, ph;9447811555, chithran അറ്റ് gmail.com &lt;br /&gt;
# ടി.സി.രാജേഷ്, യു-35, &#039;ശ്രീജിത്ത്&#039;, ഉദിയന്നൂര്‍ ലെയ്ന്‍, മരുതുംകുഴി, കാഞ്ഞിരംപാറ പി.ഒ, തിരുവനന്തപുരം- 695030&lt;br /&gt;
# ദിലീപ് നായര്‍ (മത്താപ്പ്) - എറണാകുളം&lt;br /&gt;
# സന്തോഷ് തോട്ടിങ്ങല്‍ - പാലക്കാട്&lt;br /&gt;
# അനി പീറ്റര്‍ - പൂനെ - 3 കോപ്പികള്‍&lt;br /&gt;
# ജിഷ്ണു മോഹന്‍ - ബാംഗ്ലൂര്‍&lt;br /&gt;
# കുമാര്‍ വൈക്കം &lt;br /&gt;
# കണ്ണന്‍ ഷണ്‍മുഖം - കൊല്ലം&lt;br /&gt;
* &amp;lt;താങ്കള്‍ക്ക് പുസ്തകം ആവശ്യമെങ്കില്‍ ഇവിടെ പേരു ചേര്‍ക്കുക&amp;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;
* &amp;lt;താങ്കള്‍ സഹായിക്കാന്‍ സന്നദ്ധനാണെങ്കില്‍ മെയിലിങ്ങ് ലിസ്റ്റില്‍ സന്നദ്ധത അറിയിക്കുക.&amp;gt;&lt;br /&gt;
=== വിതരണത്തിന്റെ തല്‍സ്ഥിതി ===&lt;br /&gt;
* മനോജ് (തൃശ്ശൂര്‍) = 50copy (Ph:-൯൪൯൫൫൧൩൮൭൪)&lt;br /&gt;
* അനിവര്‍(ബാഗ്ലൂര്‍) = 10copy&lt;br /&gt;
* പ്രവീണ്‍ (മലപ്പുറം) = 10copy&lt;/div&gt;</summary>
		<author><name>Pravs</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=%E0%B4%92%E0%B4%B0%E0%B5%81_%E0%B4%A8%E0%B4%BF%E0%B4%B0%E0%B5%80%E0%B4%95%E0%B5%8D%E0%B4%B7%E0%B4%95%E0%B4%A8%E0%B5%8D%E0%B4%B1%E0%B5%86_%E0%B4%95%E0%B5%81%E0%B4%B1%E0%B4%BF%E0%B4%AA%E0%B5%8D%E0%B4%AA%E0%B5%81%E0%B4%95%E0%B5%BE_-_%E0%B4%AA%E0%B5%8D%E0%B4%B0%E0%B4%B8%E0%B4%BE%E0%B4%A7%E0%B4%A8%E0%B4%82&amp;diff=4172</id>
		<title>ഒരു നിരീക്ഷകന്റെ കുറിപ്പുകൾ - പ്രസാധനം</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=%E0%B4%92%E0%B4%B0%E0%B5%81_%E0%B4%A8%E0%B4%BF%E0%B4%B0%E0%B5%80%E0%B4%95%E0%B5%8D%E0%B4%B7%E0%B4%95%E0%B4%A8%E0%B5%8D%E0%B4%B1%E0%B5%86_%E0%B4%95%E0%B5%81%E0%B4%B1%E0%B4%BF%E0%B4%AA%E0%B5%8D%E0%B4%AA%E0%B5%81%E0%B4%95%E0%B5%BE_-_%E0%B4%AA%E0%B5%8D%E0%B4%B0%E0%B4%B8%E0%B4%BE%E0%B4%A7%E0%B4%A8%E0%B4%82&amp;diff=4172"/>
		<updated>2013-08-20T04:34:04Z</updated>

		<summary type="html">&lt;p&gt;Pravs: പിഡിഎഫ് പതിപ്പു് ചേര്‍ത്തു&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{PU|Logbook_of_an_Observer_-_Publication}}&lt;br /&gt;
[[File:Logbook.png|thumb|200px|Logbook of an Observer (കവര്‍ പേജ്) by ഹിരണ്‍ വേണുഗോപാല്‍]] &lt;br /&gt;
&lt;br /&gt;
ജിനേഷിന്റെ ലേഖനങ്ങളുടെയും , ജിനേഷിനെക്കുറിച്ചുള്ള സുഹൃത്തുക്കളുടെ ഓര്‍മ്മക്കുറിപ്പുകളുടെയും സമാഹാരം -  &#039;&#039;&#039;A Logbook of an Observer - ഒരു നിരീക്ഷകന്റെ കുറിപ്പുകള്‍&#039;&#039;&#039;, ഫെബ്രുവരിയില്‍ പ്രസിദ്ധീകൃതമാവുകയാണ്. ഇതിന്റെ പ്രകാശനം സെപ്റ്റംബറില്‍ എം ഇ എസ് കോളേജില്‍ നടന്ന [[ഓര്‍മ്മകളില്‍_ജിനേഷ്_,_SMC_കൂട്ടായ്മ|എസ് എം സി കൂട്ടായ്മയില്‍]] നടന്ന വിവരം താങ്കള്‍ അറിഞ്ഞുകാണുമല്ലോ.&lt;br /&gt;
കണ്ണൂരിലെ അകം ബുക്സാണ് പ്രസാധകര്‍. 200 രൂപയാണ് മുഖവില നിശ്ചയിച്ചിരിക്കുന്നത്.  ഒരു പകര്‍പ്പ് വേണ്ടവര്‍ താഴെ പേരു് നല്‍കുക. അകം ബൂക്സിന്റെ വിതരണ ശൃംഖല വഴിയും ഇതു് ലഭ്യമാണു്. കൂടാതെ ഇത്തരത്തില്‍ പേര് ചേര്‍ത്തവരില്‍ നിന്ന് 200 രൂപ ശേഖരിക്കുന്നതിനും പുസ്തകം എത്തിക്കുന്നതിനും സന്നദ്ധപ്രവര്‍ത്തകരെ ആവശ്യമുണ്ട്. &lt;br /&gt;
നിങ്ങള്‍ സഹായിക്കാന്‍ സന്നദ്ധനാണെങ്കില്‍ എസ് എം സി മെയിലിങ്ങ് ലിസ്റ്റില്‍ സന്നദ്ധത അറിയിക്കുക. &lt;br /&gt;
&lt;br /&gt;
* [[File:Logbook.pdf|ഡിജിറ്റല്‍ പതിപ്പു് (പിഡിഎഫ്)]]&lt;br /&gt;
* [[https://gitorious.org/logbook-of-an-observer/logbook-of-an-observer|സീ‍ടെക്കില്‍ തയ്യാറാക്കിയ സ്രോതസ്സ്]]&lt;br /&gt;
&lt;br /&gt;
== പുസ്തകം ആവശ്യമുള്ളവര്‍==&lt;br /&gt;
# ഋഷികേശ് കെ ബി -   കോഴിക്കോട്.  - 4 കോപ്പികള്‍ &lt;br /&gt;
# മനോജ്.കെ - തൃശ്ശൂര്‍&lt;br /&gt;
# സുഗീഷ് - തിരുവനന്തപുരം &lt;br /&gt;
# സെബിന്‍ ഏബ്രഹാം ജേക്കബ്, തിരുവനന്തപുരം&lt;br /&gt;
# കെവിന്‍ - ചെന്നൈ&lt;br /&gt;
# ഡോ. മഹേഷ് മംഗലാട്ട് - മാഹി&lt;br /&gt;
# ഹാരിസ് ഇബ്രാഹിം കെ. വി. - എടപ്പാള്‍&lt;br /&gt;
# അനിവര്‍ അരവിന്ദ് - ബാംഗ്ലൂര്‍  5 കോപ്പികള്‍&lt;br /&gt;
# രജീഷ് കെ നമ്പ്യാര്‍ - കണ്ണൂര്‍&lt;br /&gt;
# സജീവ്‌ കെ , എഫ ആര്‍ ഐ , -  പീച്ചി തൃശൂര്‍ [FEC]&lt;br /&gt;
# റമീസ് റഹ്മാന്‍ - തിരുവനന്തപുരം&lt;br /&gt;
# അനീഷ് - തിരുവനന്തപുരം &lt;br /&gt;
# പ്രവീണ്‍ അരിമ്പ്രത്തൊടിയില്‍ - പൂനെ&lt;br /&gt;
# നെടുമ്പാല ജയ്സെന്‍ - നന്മണ്ട, കോഴിക്കോടു്&lt;br /&gt;
# ബാലശങ്കര്‍ സി - കാലടി, എറണാകുളം&lt;br /&gt;
# നന്ദജ വര്‍മ്മ - തൃശ്ശൂര്‍ &lt;br /&gt;
# അഭിഷേക് ജേക്കബ് - പാലക്കാട്&lt;br /&gt;
# ആശുതോഷ് ജെ ജി - തിരുവനന്തപുരം, ഇമെയില്‍: ajg അറ്റ് asutosh.in&lt;br /&gt;
# Chithrasenan N E, Modern Book Centre, Near GPo, Gandhari Amman Kovil Road, Trivandrum-1, ph;9447811555, chithran അറ്റ് gmail.com &lt;br /&gt;
# ടി.സി.രാജേഷ്, യു-35, &#039;ശ്രീജിത്ത്&#039;, ഉദിയന്നൂര്‍ ലെയ്ന്‍, മരുതുംകുഴി, കാഞ്ഞിരംപാറ പി.ഒ, തിരുവനന്തപുരം- 695030&lt;br /&gt;
# ദിലീപ് നായര്‍ (മത്താപ്പ്) - എറണാകുളം&lt;br /&gt;
# സന്തോഷ് തോട്ടിങ്ങല്‍ - പാലക്കാട്&lt;br /&gt;
# അനി പീറ്റര്‍ - പൂനെ - 3 കോപ്പികള്‍&lt;br /&gt;
# ജിഷ്ണു മോഹന്‍ - ബാംഗ്ലൂര്‍&lt;br /&gt;
# കുമാര്‍ വൈക്കം &lt;br /&gt;
# കണ്ണന്‍ ഷണ്‍മുഖം - കൊല്ലം&lt;br /&gt;
* &amp;lt;താങ്കള്‍ക്ക് പുസ്തകം ആവശ്യമെങ്കില്‍ ഇവിടെ പേരു ചേര്‍ക്കുക&amp;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;
* &amp;lt;താങ്കള്‍ സഹായിക്കാന്‍ സന്നദ്ധനാണെങ്കില്‍ മെയിലിങ്ങ് ലിസ്റ്റില്‍ സന്നദ്ധത അറിയിക്കുക.&amp;gt;&lt;br /&gt;
=== വിതരണത്തിന്റെ തല്‍സ്ഥിതി ===&lt;br /&gt;
* മനോജ് (തൃശ്ശൂര്‍) = 50copy (Ph:-൯൪൯൫൫൧൩൮൭൪)&lt;br /&gt;
* അനിവര്‍(ബാഗ്ലൂര്‍) = 10copy&lt;br /&gt;
* പ്രവീണ്‍ (മലപ്പുറം) = 10copy&lt;/div&gt;</summary>
		<author><name>Pravs</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=File:Logbook.pdf&amp;diff=4171</id>
		<title>File:Logbook.pdf</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=File:Logbook.pdf&amp;diff=4171"/>
		<updated>2013-08-20T04:31:38Z</updated>

		<summary type="html">&lt;p&gt;Pravs: Pravs uploaded a new version of &amp;amp;quot;File:Logbook.pdf&amp;amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;ഒരു നിരീക്ഷകന്റെ കുറിപ്പുകൾ&lt;/div&gt;</summary>
		<author><name>Pravs</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=Template:MainPageNoticeBoard&amp;diff=4170</id>
		<title>Template:MainPageNoticeBoard</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=Template:MainPageNoticeBoard&amp;diff=4170"/>
		<updated>2013-08-20T04:29:46Z</updated>

		<summary type="html">&lt;p&gt;Pravs: ഒരു നിരീക്ഷകന്റെ കുറിപ്പുകള്‍ വിതരണത്തിനു് തയ്യാറായിട്ടുണ്ടു്&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MainPageNoticeBoardTemplate&lt;br /&gt;
|പ്രധാന അറിയിപ്പ് = ജിനേഷിന്റെ ലേഖനങ്ങളുടെയും , ജിനേഷിനെക്കുറിച്ചുള്ള സുഹൃത്തുക്കളുടെ ഓര്‍മ്മക്കുറിപ്പുകളുടെയും സമാഹാരം - A Logbook of an Observer - ഒരു നിരീക്ഷകന്റെ കുറിപ്പുകള്‍, വിതരണത്തിനു് തയ്യാറായിട്ടുണ്ടു്. [[ഒരു_നിരീക്ഷകന്റെ_കുറിപ്പുകള്‍_-_പ്രസാധനം|കൂടുതല്‍ വിവരങ്ങള്‍]]&lt;br /&gt;
|ചിത്രം =LogbookCover.png&lt;br /&gt;
|മറ്റ് അറിയിപ്പുകള്‍ =&lt;br /&gt;
* ഗൂഗിള്‍ സമ്മര്‍ ഓഫ് കോഡ് 2013 (GSoC 2013)ല്‍ മെന്ററിങ്ങ് ഓര്‍ഗനൈസേഷനായി എസ് എം  സി തിരഞ്ഞെടുക്കപ്പെട്ടു , [[SoC/2013|GSoC 2013 താള്‍ ]] കാണുക&lt;br /&gt;
*ViBGYOR Film Collectiveന്റെ പ്രതിമാസ സ്ക്രീനിങ്ങിന്റെ ഭാഗമായി ജൂലൈ 30, ചൊവ്വാഴ്ച, വൈകീട്ട് 6.30 ന് കേരള സാഹിത്യ അക്കാദമി വൈലോപ്പിള്ളി ഹാളില്‍ ഗുണ്ടര്‍ട്ടിനെപ്പറ്റിയുള്ള Gundert-The man, The Language (2012) ഡോക്യുമെന്ററി സ്ക്രീനിങ്ങ് സ്വതന്ത്രമലയാളം കമ്പ്യൂട്ടിങ്ങുമായിച്ചേര്‍ന്ന് സംഘടിപ്പിക്കുന്നു. [[Gundert Film Screening|കൂടുതല്‍]]&lt;br /&gt;
*ഡെബിയന്റെ ഏഴാം പതിപ്പായ വീസിയുടെ റിലീസ് പാര്‍ട്ടി മേയ് 5നു്, തിരുവന്തപുരത്തെ SPACEല്‍ വച്ച് സംഘടിപ്പിച്ചു. [[ReleasePartyWheezy|കൂടുതല്‍]] &lt;br /&gt;
*സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ്ങു് സന്നദ്ധപ്രവര്‍ത്തകരുടെ വാര്‍ഷിക സമ്മേളനം സമ്മേളനം സെപ്റ്റംബര്‍ 29, 30 തിയ്യതികളില്‍ കുറ്റിപ്പുറം MES കോളേജില്‍ വച്ച് നടന്നു. കൂടുതല്‍ [[ഓര്‍മ്മകളില്‍ ജിനേഷ് , SMC കൂട്ടായ്മ]]&lt;br /&gt;
* ഗ്നോം 3.4 റിലീസ് പാര്‍ട്ടി ഏപ്രില്‍ 7ന് MES എഞ്ചിനീയങ് കോളേജ്, കുറ്റിപ്പുറത്ത് നടന്നു. [[GNOME_3.4_Release_Party|കൂടുതല്‍ വിവരങ്ങള്‍]]&lt;br /&gt;
* സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ്ങ് പരിപാലിക്കുന്ന മലയാളം ഫോണ്ടുകളുടെ അഞ്ചാം പതിപ്പ് പ്രസിദ്ധീകരിച്ചു. [http://thottingal.in/blog/2012/03/10/new-version-of-malayalam-fonts-released  കൂടുതല്‍ വിവരങ്ങള്‍]&lt;br /&gt;
*കെ.ഡി.ഇ 4.7 ന്റെ പരിഭാഷ പുരോഗമിക്കുന്നു. താങ്കള്‍ക്കും ഈ സംരംഭത്തില്‍ പങ്കുചേരാം. [[KDE-4.7_Sprint|കൂടുതല്‍ വിവരങ്ങള്‍]]&lt;br /&gt;
* [http://www.gnome3.org ഗ്നോം 3.0]യുടെ ഔദ്യോഗിക പ്രകാശനം ഏപ്രില്‍ 6 ന് MES ലും  വിദ്യ *യിലും [http://wiki.smc.org.in/Gnome3/LaunchParty കൂടുതല്‍  വിവരങ്ങള്‍ ]&lt;br /&gt;
*MES കോളേജും സിക്സ്‌വെയര്‍ ടെക്നോളജീസും സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ്ങിന്റെയും MES-FSUG,S@IT എന്നിവയുടെയും സഹായത്തോടെ വിദ്യാര്‍ത്ഥികള്‍ക്കായി ഒരു സോഫ്റ്റ്‌വെയര്‍ വികസന ക്യാമ്പ് കുറ്റിപ്പുറത്ത് ഫെബ്രുവരി 27നു് സംഘടിപ്പിച്ചു. [[Developer_Camp/MES| കൂടുതല്‍ വിവരങ്ങള്‍]]&lt;br /&gt;
*രണ്ടാമത്തെ മലയാളം-ഫ്യുവല്‍ ക്യാമ്പ്, ഫെബ്രുവരി 22, 23 തീയതികളില്‍ കൊടുങ്ങല്ലുര്‍ കുഞ്ഞിക്കുട്ടന്‍ തമ്പുരാന്‍ കോളേജില്‍ വച്ച് സംഘടിപ്പിച്ചു. [[Malayalam-FUEL/kodungallur| കൂടുതല്‍ വിവരങ്ങള്‍]]&lt;br /&gt;
*ഫോസ് മീറ്റിനോടനുബന്ധിച്ചു് ഫെബ്രുവരി ആറിനു് മലയാളം-ഫ്യുവല്‍ ക്യാമ്പ് കോഴിക്കോടു് എന്‍ഐടിയില്‍ നടന്നു. [[Malayalam-FUEL/NITC| കൂടുതല്‍ വിവരങ്ങള്‍]]&lt;br /&gt;
*സ്വതന്ത്രമലയാളം കമ്പ്യൂട്ടിങ്ങിന്റെ ഒമ്പതാമത് ക്യാമ്പ് ഡിസംബര്‍ 3 ന് ആലുവയിലെ MES കോളേജ് മാറമ്പള്ളിയില്‍ വച്ച് നടന്നു.[[http://mesmarampally.org| കൂടുതല്‍ വിവരങ്ങള്‍]]&lt;br /&gt;
*വിദ്യാ അക്കാദമിയും സിക്സ്‌വെയര്‍ ടെക്നോളജീസും സ്വതന്ത്രമലയാളംകമ്പ്യൂട്ടിങ്ങിന്റെയും തൃശ്ശൂര്‍ സ്വതന്ത്രസോഫ്റ്റ്‌വെയര്‍ യൂസര്‍ ഗ്രൂപ്പിന്റെയും സഹായത്തോടെ വിദ്യാര്‍ത്ഥികള്‍ക്കായി ഒരു സോഫ്റ്റ്‌വെയര്‍ വികസന ക്യാമ്പ് തൃശ്ശൂരില്‍ നവംബര്‍ 29നു് സംഘടിപ്പിച്ചു.  [[Developer_Camp/VAST| കൂടുതല്‍ വിവരങ്ങള്‍]]&lt;br /&gt;
*സ്വതന്ത്രമലയാളം കമ്പ്യൂട്ടിങ്ങിന്റെ എട്ടാമതു ക്യാമ്പ് ഒക്ടോബര്‍ 2 ന് ,തൃശ്ശൂരിലെ വിദ്യ അക്കാദമി ഓഫ് സയന്‍സ് ആന്‍ഡ്‌ ടെക്നോളജിയില്‍ വച്ച് സംഘടിപ്പിച്ചു.[[Localisation_Camp/8_VAST| കൂടുതല്‍ വിവരങ്ങള്‍]]&lt;br /&gt;
*ഫയര്‍ഫോക്സ് വെബ് ബ്രൗസറിന്റെ 3.6.8 പതിപ്പ് മലയാളം  വേര്‍ഷന്‍ ഔദ്യോഗികമായി പുറത്തിറങ്ങി !! കൂടുതല്‍ വിവരങ്ങള്‍ക്ക് [[ഫയര്‍ഫോക്സ്_മലയാളം_പത്രക്കുറിപ്പ്| പത്രക്കുറിപ്പ്]] കാണുക  &lt;br /&gt;
* കെഡിഇ 4.5 ല്‍ മലയാളം തുടര്‍ന്നും ലഭ്യമാക്കാന്‍ [http://l10n.kde.org/stats/gui/trunk-kde4/essential/ അടിസ്ഥാന പാക്കേജുകളുടെ] പരിഭാഷ പുരോഗമിയ്ക്കുന്നു. താങ്കള്‍ക്കും സഹായിക്കാം!! കൂടുതല്‍ വിവരങ്ങള്‍ക്കും ഈ സംരംഭത്തില്‍ പങ്കുചേരുന്നതിനും [[KDE_Malayalam|കെ.ഡി.ഇ മലയാളം]] താള്‍ കാണുക.&lt;br /&gt;
* പൂനെയിലെ ശിബിരത്തിന്റെ തുടര്‍ച്ചയായി പയ്യന്‍സിനെ ദേവനാഗരി പഠിപ്പിയ്ക്കാനുള്ള ശ്രമം ഓഗസ്റ്റ് 22 നു് നടന്നു [[Localisation_Camp/Pune/Payyans_Workout|കൂടുതല്‍ വിവരങ്ങള്‍]]&lt;br /&gt;
* പാലക്കാട് ബിഗ് ബസാര്‍ സ്കൂളില്‍ (വലിയങ്ങാടി സ്ക്കൂളില്‍) വച്ചു് ഏഴാമതു് സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ്ങ് ക്യാമ്പ്, ജൂലൈ 10, 11 തിയ്യതികളില്‍ നടന്നു. [[Localisation_Camp/Palakkad|കൂടുതല്‍ വിവരങ്ങള്‍]]&lt;br /&gt;
*കുറ്റിപ്പുറം എം.ഇ.എസ്. എഞ്ചിനിയറിങ്ങ് കോളേജില്‍ വച്ചു് ആറാമത് സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ്ങ് ക്യാമ്പ്, ജൂണ്‍ 30 -ന് നടന്നു. [http://gnulabs.org/mesce/l10n കൂടുതല്‍ വിവരങ്ങള്‍]&lt;br /&gt;
* കൊച്ചിയിലെ Free Learning Institute-ല്‍ വച്ച് അഞ്ചാമതു സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ്ങ് ക്യാമ്പ്, മേയ് 24,25 തിയ്യതികളിലായി നടന്നു. [[Localisation_Camp/5_Cochin_24,25_May_2010|കൂടുതല്‍ വിവരങ്ങള്‍]]&lt;br /&gt;
*അങ്കമാലി ഫിസാറ്റിലെ ഐസ്‌ഫോസ് കോണ്‍ഫറന്‍സില്‍ വച്ചു് നാലാമതു് സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ്ങ് ക്യാമ്പ്, ഏപ്രില്‍ 20, 21 തിയ്യതികളിലായി നടന്നു. [[Localisation_Camp/ICEFOSS|കൂടുതല്‍ വിവരങ്ങള്‍]]&lt;br /&gt;
* തിരുവനന്തപുരത്തു് സ്പേസിന്റെ ഓഫീസില്‍ വച്ചു് മൂന്നാമതു് സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ്ങ് ക്യാമ്പ്, മാര്‍ച്ച് 27, 28 തിയ്യതികളിലായി നടന്നു. [[Localisation_Camp/Space|കൂടുതല്‍ വിവരങ്ങള്‍]]&lt;br /&gt;
* പൂനെയിലെ റെഡ് ഹാറ്റിന്റെ ഓഫീസില്‍ വച്ചു് രണ്ടാം സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ്ങ് ക്യാമ്പ്, മാര്‍ച്ച് 20, 21 തിയ്യതികളിലായി നടന്നു. [[Localisation_Camp/Pune|കൂടുതല്‍ വിവരങ്ങള്‍]]&lt;br /&gt;
* കോഴിക്കോടു് ദേവഗിരി കോളേജില്‍ വച്ചു് ഒന്നാം സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ്ങ് ക്യാമ്പ്, ഫെബ്രുവരി 27, 28 തിയ്യതികളിലായി നടന്നു. [[Localisation_Camp/Devagiri|കൂടുതല്‍ വിവരങ്ങള്‍]]&lt;br /&gt;
* കോഴിക്കോടു് എന്‍ഐടിയില്‍ വച്ചു് നടക്കുന്ന ഫോസ് മീറ്റില്‍ നമ്മളും പങ്കെടുത്തു. [[Localisation_Hut|കൂടുതല്‍ വിവരങ്ങള്‍]]&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Pravs</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=File:LogbookCover.png&amp;diff=4169</id>
		<title>File:LogbookCover.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=File:LogbookCover.png&amp;diff=4169"/>
		<updated>2013-08-20T04:25:57Z</updated>

		<summary type="html">&lt;p&gt;Pravs: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Pravs</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=GSoC/2013/Project_ideas&amp;diff=3671</id>
		<title>GSoC/2013/Project ideas</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=GSoC/2013/Project_ideas&amp;diff=3671"/>
		<updated>2013-04-26T12:56:06Z</updated>

		<summary type="html">&lt;p&gt;Pravs: /* Developing Malayalam Calendar Support */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
=Mentors=&lt;br /&gt;
# Santhosh Thottingal (&#039;&#039;&#039;santhosh&#039;&#039;&#039; on irc.freenode.net)&lt;br /&gt;
# Baiju M (&#039;&#039;&#039;baijum&#039;&#039;&#039; on irc.freenode.net)&lt;br /&gt;
# Praveen A (&#039;&#039;&#039;j4v4m4n&#039;&#039;&#039; on irc.freenode.net)&lt;br /&gt;
# Rajeesh K Nambiar (&#039;&#039;&#039;rajeeshknambiar&#039;&#039;&#039; on irc.freenode.net)&lt;br /&gt;
# Vasudev Kammath (&#039;&#039;&#039;copyninja&#039;&#039;&#039; on irc.freenode.net)&lt;br /&gt;
# Jishnu Mohan (&#039;&#039;&#039;jishnu7&#039;&#039;&#039; on irc.freenode.net)&lt;br /&gt;
# Hrishikesh K.B (&#039;&#039;&#039;stultus&#039;&#039;&#039; on irc.freenode.net)&lt;br /&gt;
# Anivar Aravind (&#039;&#039;&#039;anivar&#039;&#039;&#039; on irc.freenode.net)&lt;br /&gt;
# Anilkumar K V (&#039;&#039;&#039;anilkumar&#039;&#039;&#039; on irc.freenode.net)&lt;br /&gt;
# Sajjad Anwar (&#039;&#039;&#039;geohacker&#039;&#039;&#039; on irc.freenode.net)&lt;br /&gt;
# Deepa V Gopinath (&#039;&#039;&#039;deepagopinath&#039;&#039;&#039; on irc.freenode.net)&lt;br /&gt;
# jain Basil  (&#039;&#039;&#039;jainbasil&#039;&#039;&#039; on irc.freenode.net)&lt;br /&gt;
&lt;br /&gt;
=Ideas for Google Summer of Code 2013=&lt;br /&gt;
* Please Read the [http://wiki.smc.org.in/SoC/2013#FAQ FAQ]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;&#039;&#039;&#039;Apart from the following ideas , you can propose your own ideas&#039;&#039;&#039;&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you want to propose an idea, please do it in [http://lists.smc.org.in/listinfo.cgi/discuss-smc.org.in project mailing list]&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Internationalize SILPA project with Wikimedia jquery projects==&lt;br /&gt;
&#039;&#039;&#039;Project&#039;&#039;&#039;: &lt;br /&gt;
&lt;br /&gt;
SILPA project has many Indic language applications, but as of now, if somebody want to input in Indian languages, there is no built in tool in it. Similarly, the application is not internationalized. Both of these can be achieved by using the [//github.com/wikimedia/jquery.ime jquery.ime] and [//github.com/wikimedia/jquery.ime jquery.i18n] libraries from Wikimedia. A sample implementation is avaliable in our [http://smc.org.in website]. The i18n should be in the SILPA flask framework with a nice templating system. Similarly the interface should have webfonts using [https://github.com/wikimedia/jquery.webfonts jquery.webfonts] library.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;[https://savannah.nongnu.org/task/index.php?12557 Savannah Task]&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Expertise required&#039;&#039;&#039;: jquery, css, html5, python , flask&lt;br /&gt;
* &#039;&#039;&#039;Mentor&#039;&#039;&#039; : Hrishikesh K B&lt;br /&gt;
====More Details====&lt;br /&gt;
* [https://github.com/wikimedia/jquery.i18n jquery.i18n]&lt;br /&gt;
* [https://github.com/wikimedia/jquery.ime jquery.ime]&lt;br /&gt;
* [https://github.com/wikimedia/jquery.webfonts jquery.webfonts]&lt;br /&gt;
&lt;br /&gt;
== A spell checker for Indic language that understands inflections ==&lt;br /&gt;
&#039;&#039;&#039;Project&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
SILPA project has a spellchecker written using python with a not so simple algorithm. But still it is not capable of handling inflection and agglutination occurring in Indian languages especially south Indian languages. The dictionary we have for Malayalam spellchecker have about 150000 words. Of course we can expand the dictionary, but that doesn&#039;t have much value since words can be formed in Malayalam or Tamil etc by joining multiple words. In addition to that, words get inflected based on grammar forms(sandhi), plural, gender etc. Hunspell has a system to handle this, but so far nobody succeeded in getting it working for multi level suffix stripping as required for Malayalam. Some times a Malayalam word can be formed by more than 5 words joining together. We will need a word splitting logic or a table taking care of all patterns. The project is to attempt solving this with hunspell. If that is not feasible(hunspell upstream is not active), develop an algorithm and implement it.&lt;br /&gt;
&lt;br /&gt;
Recently Tamil attempted developing a spellchecker using Hunspell with multi level suffix stripping. You can see the result here https://github.com/thamizha/solthiruthi. &lt;br /&gt;
Our attempt should be first to use Hunspell to achieve spellchecking with agglutination and inflection. Probably it will require lot of scripting to generate suffix patterns, we can ask help from existing language communities too. If Hunspell has limitation with multi level suffxes- sometimes Indian languages require more than 5 levels of suffix stripping, we need to document it(bug and documentation) and try to attempt python based solution on top of SILPA framework.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;[https://savannah.nongnu.org/task/index.php?12558 Savannah Task]&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Expertise required&#039;&#039;&#039;: Average level understanding of grammar system of at least one Indian language&lt;br /&gt;
* Complexity: Advanced&lt;br /&gt;
* &#039;&#039;&#039;Mentor&#039;&#039;&#039; : Santhosh Thottingal&lt;br /&gt;
&lt;br /&gt;
==Indic rendering support in ConTeXt==&lt;br /&gt;
&#039;&#039;&#039;Project&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
ConTeXt is another TeX macro system similar to LaTeX but much more suitable for design. To find more information about ConTeXt, see the wiki http://wiki.contextgarden.net/Main_Page. ConTeXt MKII  have Indic language rendering support using XeTeX. but MKII is deprecated, and the new MKIV backend doesn&#039;t support Indic rendering yet. The aim of this project is to add support to Inidic rendering to ConTeXt MKIV. XeTeX is using Harfbuzz to do correct Indic rendering.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;[https://savannah.nongnu.org/task/index.php?12559 Savannah Task]&lt;br /&gt;
* &#039;&#039;&#039;Expertise required&#039;&#039;&#039;: Understanding of the TeX system, experience in either LaTeX or ConTeXt and basic understanding of Indic language rendering. MKIV uses Lua, familiarity with Lua, opentype specifications or Harfbuzz will be added advantage.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Mentor&#039;&#039;&#039; : Rajeesh K Nambiar&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;More Details&#039;&#039;&#039;: ConTeXt mkii (deprecated) can work with XeTeX backend for Indic rendering. Here is a sample file:&lt;br /&gt;
 \usemodule[simplefonts]&lt;br /&gt;
 \definefontfeature[malayalam][script=mlym]&lt;br /&gt;
 \setmainfont[Rachana][features=malayalam]&lt;br /&gt;
 \starttext&lt;br /&gt;
 മലയാളം \TeX ഉപയോഗിച്ച് ടൈപ്പ്സെറ്റ് ചെയ്തത്&lt;br /&gt;
 \stoptext&lt;br /&gt;
Generate the output using command&lt;br /&gt;
 texexec --xetex &amp;lt;file.tex&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Automated Rendering Testing==&lt;br /&gt;
&#039;&#039;&#039;Project&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
Automated Rendering Testing system for Indic languages. Currently there exists 3 main rendering engines in computing world - Uniscribe of Microsoft, CoreText (Apple Advance Typography - AAT) of Apple and Harfbuzz for *nix systems. The Opentype font specification is maintained by Microsoft and implemented in Uniscribe, which is used as baseline for Harfbuzz. At present, there is no automated mechanism to determine if Harfbuzz is rendering complex Indic text correctly or not - someone expert in relevant language has to manually inspect the output from hb-view. The project aim is to identify and implement an automated method to test the rendering.&lt;br /&gt;
One method to do this might be to check the order of glyphs/glyph indices output by the rendering engine - this depends on the font too. A related topic is UTRRS &lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;[https://savannah.nongnu.org/task/index.php?12560 Savannah Task]&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Expertise required&#039;&#039;&#039;: Knowledge of Indic language rendering and Opentype specification.&lt;br /&gt;
* &#039;&#039;&#039;Mentor&#039;&#039;&#039; : Rajeesh K Nambiar&lt;br /&gt;
&lt;br /&gt;
====More Details====&lt;br /&gt;
* https://fedorahosted.org/utrrs/ &lt;br /&gt;
* http://tdil-dc.in/utrrs/home/about&lt;br /&gt;
&lt;br /&gt;
==Flask Based SILPA==&lt;br /&gt;
===Port remaining modules to the new flask based Silpa===&lt;br /&gt;
&#039;&#039;&#039;Project&#039;&#039;&#039;: Silpa is being re-written using flask framework. Core part is almost complete. But most of the sub modules written under old framework are need to be ported to [http://flasksilpa-indic.rhcloud.com/ new framework].&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Expertise required&#039;&#039;&#039;: Python , Flask , Jinja , HTML, Javascript&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Mentor&#039;&#039;&#039; : Vasudev/ Jishnu&lt;br /&gt;
&lt;br /&gt;
===Provide REST API for new flask based Silpa, including conversion of templates to this REST API from JSON RPC===&lt;br /&gt;
&#039;&#039;&#039;Project&#039;&#039;&#039;: Silpa is now relying on JSONRPC. We need to, either completely move to REST API or provide REST API as an additional feature.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Expertise required&#039;&#039;&#039;: Python , Flask , Jinja , HTML, Javascript&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Mentor&#039;&#039;&#039; : Vasudev/Jishnu&lt;br /&gt;
&lt;br /&gt;
===Separate templates from SILPA and have it inside modules packaged for pypi===&lt;br /&gt;
&#039;&#039;&#039;Project&#039;&#039;&#039;: The templates used as User Interface is part of SILPA. this should be separated and should come as a part of individual modules.&lt;br /&gt;
&lt;br /&gt;
[https://github.com/copyninja/Silpa-Flask/issues/4 this] should give more idea on it&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Expertise required&#039;&#039;&#039;:python,Flask, HTML,Javascript,CSS,jinja &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Mentor&#039;&#039;&#039; : Vasudev/Jishnu&lt;br /&gt;
&lt;br /&gt;
===add Urdu/Arabic support for all modules in SILPA.===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Expertise required&#039;&#039;&#039;:python,Flask, HTML,Javascript,CSS,jinja &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Mentor&#039;&#039;&#039; : Vasudev&lt;br /&gt;
&lt;br /&gt;
== Converting indic processing modules currently in SILPA into Jquery library  ==&lt;br /&gt;
&#039;&#039;&#039;Project&#039;&#039;&#039;: Port some of the silpa algorithms to Jquery.&lt;br /&gt;
&lt;br /&gt;
Several modules, alogorithms in SILPA project is done in python now. But porting them to javascript(jQuery) helps developers. For example, cross language transliteration can be done jquery too if we port the algorithm and transliteration rules. Similarly the approximate search can be ported. A flexibile fuzzy search on the web pages will be possible if we have the algorithm in jquery. ALternatively these js libraries can be used with node.js using server side js concept too.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Expertise required&#039;&#039;&#039;: javascript,JQuery, python&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Mentor&#039;&#039;&#039; :Jishnu&lt;br /&gt;
&lt;br /&gt;
==  Improving cross language transliteration system.  ==&lt;br /&gt;
&#039;&#039;&#039;Project&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
Currently only Kannada and Malayalam are perfect rest all are first converted to Malayalam then to English due to lack of language internal. Also currently for English to Indic we use CMUDict so transliteration capability is limited to words in CMUDict only probably we could develop better method for English to Indic transliteration&lt;br /&gt;
&lt;br /&gt;
CLDR has transliteration data for Indic languages. We can explore it and see the feasibility. For an intermediate representation of the scripts either IPA can be used or ISO 15919 standard can be used. All these must be supplemented with exception rules and special case handling to achieve more perfect result.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Expertise required&#039;&#039;&#039;:python&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Mentor&#039;&#039;&#039; : Vasudev/Jishnu&lt;br /&gt;
&lt;br /&gt;
==  Improving the webfonts module in Silpa using jquery.webfonts and proving more Indic and complex fonts as part of it. ==&lt;br /&gt;
&#039;&#039;&#039;Project&#039;&#039;&#039;:&lt;br /&gt;
* Currently Silpa provides 36 webfonts. add more fonts to this collection.&lt;br /&gt;
* Rewrote webfonts module to use the features of jquery.webfonts&lt;br /&gt;
* reate a repo as per jquery.webfonts specification&lt;br /&gt;
* Provide a clean api so that other websites can use our webfonts in their websites&lt;br /&gt;
* Document the usage&lt;br /&gt;
* Provide font preview and download options  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Expertise required&#039;&#039;&#039;:jQuery, Python , technical understanding about fonts &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Mentor&#039;&#039;&#039; : Jishnu&lt;br /&gt;
&lt;br /&gt;
==Building a system and API&#039;s for accessing and upadating Malayalamgrandham Bibligiography Data==&lt;br /&gt;
[http://www.malayalagrandham.com/about/ Malayala Grantha Vivaram]  is a project intended to make available reliable bibliographic information on all Malayalam books published in Kerala and elsewhere. This Open data set contains Complete bibliography data from first Impression to 1995. This project wants to add following features to Malayalagrandham DB and build it as a bibliography web service &lt;br /&gt;
* Facility for adding/linking copyright expired books to malaylagrandha vivaram &lt;br /&gt;
* Adding ISBN &amp;amp; ISBN based seller discovery &lt;br /&gt;
* Building  Interface for Publishers through with they can contribute their publication bibliography .&lt;br /&gt;
* Similar module for Libraries . That will be added to found in library section of each book&lt;br /&gt;
* A module for building qr code of bibliography with a malayalagrandham link&lt;br /&gt;
* Crowd sourced way for input and an approval queue interface for submissions. &lt;br /&gt;
* MARC21 and MARCXML support &lt;br /&gt;
* A dynamic visualisation interface for book information browsing&lt;br /&gt;
* proper API , and app work flow documentation&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Expertise required&#039;&#039;&#039;: Django / Ruby on Rails&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Mentor&#039;&#039;&#039;: Anivar&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Related Links&#039;&#039;&#039;&lt;br /&gt;
* https://github.com/smc/malayalagrandham&lt;br /&gt;
* http://malayalagrandham.com/about&lt;br /&gt;
&lt;br /&gt;
== Adding Braille Keyboard layouts for Indian Languages to m17n Library==&lt;br /&gt;
&lt;br /&gt;
Project is building support for Bharati Braille keyboard layouts in GNU/Linux systemes.  Bharati Braille standard is the official Braille standard in India. A regular QWERTY keyboard is used for data entry. SDF-JKL keys are used for six dots of Braille. This support need to be built as m17n layouts. This will enable visually challenged people who studied braille layouts to use GNU/Linux systems easily with the help of Audio feedback from TTS&lt;br /&gt;
&lt;br /&gt;
====More Details====&lt;br /&gt;
* http://www.acharya.gen.in:8080/disabilities/bh_brl.php&lt;br /&gt;
* http://en.wikipedia.org/wiki/Bharati_Braille&lt;br /&gt;
* http://www.nongnu.org/m17n/&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Mentor&#039;&#039;&#039;: Anilkumar K V&lt;br /&gt;
&lt;br /&gt;
==Developing Malayalam Calendar Support ==&lt;br /&gt;
&lt;br /&gt;
This project is to build Malayalam Calendar support to KDE. Korganiser have support for many calendars like Saka, Hijri, Jalali. The project is to build support for Malayalam Calendar (Kolla Varsham)&lt;br /&gt;
&lt;br /&gt;
Following tasks are part of this work .&lt;br /&gt;
* Building Malayalam (kollavarsham) Calendar support to KDE/KOrganiser.&lt;br /&gt;
* Add holidays and other special times.&lt;br /&gt;
&lt;br /&gt;
====More Details====&lt;br /&gt;
* Understanding of Astronomical Algorithms&lt;br /&gt;
* http://malayalam.usvishakh.net/calendars/panj_theory.pdf&lt;br /&gt;
* https://github.com/smc/smc/tree/master/calendar/java/src/org/panchanga/indic&lt;br /&gt;
&lt;br /&gt;
==== Starting Points ====&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/smc/smc/tree/master/calendar/kde Build KDE from source]&lt;br /&gt;
* Familiarize with how Saka and other calendars are done.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Mentor&#039;&#039;&#039;: Praveen A, Mahesh M&lt;br /&gt;
&lt;br /&gt;
==Language model and Acoustic model for Malayalam language for speech recognition system in CMU Sphinx==&lt;br /&gt;
&lt;br /&gt;
CMU Sphinx is a large vocabulary, speaker independent speech recognition codebase and suite of tools, which can be used to develop speech recognition system in any language. To develop an automatic speech recognition system in a language, acoustic model and language model has to framed for that particular language.  Acoustic models characterize how sound changes over time. It captures the characteristics of basic recognition units. The language model describes the likelihood, probability, or penalty taken when a sequence or collection of words is seen. It attempts to convey behavior of the language and tries to predict the occurrence of specific word sequences possible in the language. Once these two models are developed, it will be useful to every one doing research in speech processing. For Indian languages Hindi, Tamil, Telugu and Marati, ASR systems have been developed using sphinx engine. In this project work is aimed at developing acoustic model and language model for Malayalam.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Mentor&#039;&#039;&#039;:  Deepa Gopinath&lt;br /&gt;
=== Background Reading ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://www.cs.cmu.edu/~gopalakr/publications/spdatabases_specom05.pdf &#039;Development of Indian Language Speech Databases for Large Vocabulary Speech Recognition Systems&#039;], Gopalakrishna  Anumanchipalli, Rahul Chitturi, Sachin Joshi, Rohit Kumar, Satinder Pal Singh, R.N.V. Sitaram, S P Kishore&lt;br /&gt;
&lt;br /&gt;
* [http://www.aclweb.org/anthology/W/W12/W12-5808.pdf &amp;quot;Automatic Pronunciation Evaluation And Mispronunciation Detection Using CMUSphinx&amp;quot;], Ronanki Srikanth, James Salsman&lt;br /&gt;
&lt;br /&gt;
* http://www.speech.cs.cmu.edu/&lt;br /&gt;
* http://cmusphinx.sourceforge.net/wiki/tutorial&lt;br /&gt;
&lt;br /&gt;
* [http://www.ijarcsse.com &amp;quot;HTK Based Telugu Speech Recognition&amp;quot;], P. Vijai Bhaskar, AVNIET ,Hyderabad, Prof. Dr. S. Rama Mohan Rao, A.Gopi &lt;br /&gt;
&lt;br /&gt;
* [http://www.cs.cmu.edu/~araza/Automatic_Speech_Recognition_System_for_Urdu.PDF &amp;quot;Design and  Development of an Automatic Speech Recognition System for Urdu&amp;quot;], Agha Ali Raza,  M.Sc. Thesis, FAST‐National University of Computer and Emerging Sciences &lt;br /&gt;
&lt;br /&gt;
* [http://www.ccis2k.org/iajit/PDF/vol.6,no.2/11IASRUCSS186.pdf &amp;quot;Investigation Arabic Speech Recognition Using CMU Sphinx System&amp;quot;], Hassan Satori1, 2, Hussein Hiyassat3, Mostafa Harti1, 2, and Noureddine Chenfour&lt;br /&gt;
&lt;br /&gt;
* [http://www.try.idv.tw/static-resources/homework/pr/PR_Final_Report.pdf &amp;quot;Understanding the CMU Sphinx Speech Recognition System&amp;quot;], Chun-Feng Liao&lt;br /&gt;
&lt;br /&gt;
==Enhancement of Indic Language Support in Scribus==&lt;br /&gt;
&lt;br /&gt;
===Project Description===&lt;br /&gt;
&lt;br /&gt;
Scribus is an Open Source program that brings professional page layout to Linux/UNIX. Find more about scribus [http://www.scribus.net here]. Indic Languages are not supported completely in Scribus as of now. As a result of the work done by a group of developers from India, there is a branch available in Scribus public git repo which supports Indic Languages. The aim of this idea is to Enhance the Indic language support solving the following issues:&lt;br /&gt;
&lt;br /&gt;
* Harfbuzz is being used as a thrid party code in Scribus. Maintaining thirdparty code is a tedious task, this should be added as a dependency instead.&lt;br /&gt;
* Enhance hyphenation by adding hyphenation rules.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Expertise Required:&#039;&#039;&#039; Good understanding of C, C++, Qt, Harfbuz etc, cmake.&lt;br /&gt;
&lt;br /&gt;
===More information===&lt;br /&gt;
&lt;br /&gt;
* Branch indic in scribus public git repository. Clone url: git clone git://git.scribus.net/scribus.git&lt;br /&gt;
* [[Hyphenation]]&lt;br /&gt;
* [http://wiki.scribus.net/canvas/Git#To_sum_it_up_:_how_to_get_and_compile_a_specific_branch_:_indic_of_scribus.git Compile scribus indic branch] &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Mentor&#039;&#039;&#039;      : Jain Basil Aliyas (jainbasil in IRC)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Complexity&#039;&#039;&#039;  : Advanced&lt;/div&gt;</summary>
		<author><name>Pravs</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=GSoC/2013/Project_ideas&amp;diff=3670</id>
		<title>GSoC/2013/Project ideas</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=GSoC/2013/Project_ideas&amp;diff=3670"/>
		<updated>2013-04-26T12:47:05Z</updated>

		<summary type="html">&lt;p&gt;Pravs: /* Developing Malayalam Calendar Support */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
=Mentors=&lt;br /&gt;
# Santhosh Thottingal (&#039;&#039;&#039;santhosh&#039;&#039;&#039; on irc.freenode.net)&lt;br /&gt;
# Baiju M (&#039;&#039;&#039;baijum&#039;&#039;&#039; on irc.freenode.net)&lt;br /&gt;
# Praveen A (&#039;&#039;&#039;j4v4m4n&#039;&#039;&#039; on irc.freenode.net)&lt;br /&gt;
# Rajeesh K Nambiar (&#039;&#039;&#039;rajeeshknambiar&#039;&#039;&#039; on irc.freenode.net)&lt;br /&gt;
# Vasudev Kammath (&#039;&#039;&#039;copyninja&#039;&#039;&#039; on irc.freenode.net)&lt;br /&gt;
# Jishnu Mohan (&#039;&#039;&#039;jishnu7&#039;&#039;&#039; on irc.freenode.net)&lt;br /&gt;
# Hrishikesh K.B (&#039;&#039;&#039;stultus&#039;&#039;&#039; on irc.freenode.net)&lt;br /&gt;
# Anivar Aravind (&#039;&#039;&#039;anivar&#039;&#039;&#039; on irc.freenode.net)&lt;br /&gt;
# Anilkumar K V (&#039;&#039;&#039;anilkumar&#039;&#039;&#039; on irc.freenode.net)&lt;br /&gt;
# Sajjad Anwar (&#039;&#039;&#039;geohacker&#039;&#039;&#039; on irc.freenode.net)&lt;br /&gt;
# Deepa V Gopinath (&#039;&#039;&#039;deepagopinath&#039;&#039;&#039; on irc.freenode.net)&lt;br /&gt;
# jain Basil  (&#039;&#039;&#039;jainbasil&#039;&#039;&#039; on irc.freenode.net)&lt;br /&gt;
&lt;br /&gt;
=Ideas for Google Summer of Code 2013=&lt;br /&gt;
* Please Read the [http://wiki.smc.org.in/SoC/2013#FAQ FAQ]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;&#039;&#039;&#039;Apart from the following ideas , you can propose your own ideas&#039;&#039;&#039;&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you want to propose an idea, please do it in [http://lists.smc.org.in/listinfo.cgi/discuss-smc.org.in project mailing list]&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Internationalize SILPA project with Wikimedia jquery projects==&lt;br /&gt;
&#039;&#039;&#039;Project&#039;&#039;&#039;: &lt;br /&gt;
&lt;br /&gt;
SILPA project has many Indic language applications, but as of now, if somebody want to input in Indian languages, there is no built in tool in it. Similarly, the application is not internationalized. Both of these can be achieved by using the [//github.com/wikimedia/jquery.ime jquery.ime] and [//github.com/wikimedia/jquery.ime jquery.i18n] libraries from Wikimedia. A sample implementation is avaliable in our [http://smc.org.in website]. The i18n should be in the SILPA flask framework with a nice templating system. Similarly the interface should have webfonts using [https://github.com/wikimedia/jquery.webfonts jquery.webfonts] library.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;[https://savannah.nongnu.org/task/index.php?12557 Savannah Task]&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Expertise required&#039;&#039;&#039;: jquery, css, html5, python , flask&lt;br /&gt;
* &#039;&#039;&#039;Mentor&#039;&#039;&#039; : Hrishikesh K B&lt;br /&gt;
====More Details====&lt;br /&gt;
* [https://github.com/wikimedia/jquery.i18n jquery.i18n]&lt;br /&gt;
* [https://github.com/wikimedia/jquery.ime jquery.ime]&lt;br /&gt;
* [https://github.com/wikimedia/jquery.webfonts jquery.webfonts]&lt;br /&gt;
&lt;br /&gt;
== A spell checker for Indic language that understands inflections ==&lt;br /&gt;
&#039;&#039;&#039;Project&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
SILPA project has a spellchecker written using python with a not so simple algorithm. But still it is not capable of handling inflection and agglutination occurring in Indian languages especially south Indian languages. The dictionary we have for Malayalam spellchecker have about 150000 words. Of course we can expand the dictionary, but that doesn&#039;t have much value since words can be formed in Malayalam or Tamil etc by joining multiple words. In addition to that, words get inflected based on grammar forms(sandhi), plural, gender etc. Hunspell has a system to handle this, but so far nobody succeeded in getting it working for multi level suffix stripping as required for Malayalam. Some times a Malayalam word can be formed by more than 5 words joining together. We will need a word splitting logic or a table taking care of all patterns. The project is to attempt solving this with hunspell. If that is not feasible(hunspell upstream is not active), develop an algorithm and implement it.&lt;br /&gt;
&lt;br /&gt;
Recently Tamil attempted developing a spellchecker using Hunspell with multi level suffix stripping. You can see the result here https://github.com/thamizha/solthiruthi. &lt;br /&gt;
Our attempt should be first to use Hunspell to achieve spellchecking with agglutination and inflection. Probably it will require lot of scripting to generate suffix patterns, we can ask help from existing language communities too. If Hunspell has limitation with multi level suffxes- sometimes Indian languages require more than 5 levels of suffix stripping, we need to document it(bug and documentation) and try to attempt python based solution on top of SILPA framework.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;[https://savannah.nongnu.org/task/index.php?12558 Savannah Task]&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Expertise required&#039;&#039;&#039;: Average level understanding of grammar system of at least one Indian language&lt;br /&gt;
* Complexity: Advanced&lt;br /&gt;
* &#039;&#039;&#039;Mentor&#039;&#039;&#039; : Santhosh Thottingal&lt;br /&gt;
&lt;br /&gt;
==Indic rendering support in ConTeXt==&lt;br /&gt;
&#039;&#039;&#039;Project&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
ConTeXt is another TeX macro system similar to LaTeX but much more suitable for design. To find more information about ConTeXt, see the wiki http://wiki.contextgarden.net/Main_Page. ConTeXt MKII  have Indic language rendering support using XeTeX. but MKII is deprecated, and the new MKIV backend doesn&#039;t support Indic rendering yet. The aim of this project is to add support to Inidic rendering to ConTeXt MKIV. XeTeX is using Harfbuzz to do correct Indic rendering.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;[https://savannah.nongnu.org/task/index.php?12559 Savannah Task]&lt;br /&gt;
* &#039;&#039;&#039;Expertise required&#039;&#039;&#039;: Understanding of the TeX system, experience in either LaTeX or ConTeXt and basic understanding of Indic language rendering. MKIV uses Lua, familiarity with Lua, opentype specifications or Harfbuzz will be added advantage.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Mentor&#039;&#039;&#039; : Rajeesh K Nambiar&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;More Details&#039;&#039;&#039;: ConTeXt mkii (deprecated) can work with XeTeX backend for Indic rendering. Here is a sample file:&lt;br /&gt;
 \usemodule[simplefonts]&lt;br /&gt;
 \definefontfeature[malayalam][script=mlym]&lt;br /&gt;
 \setmainfont[Rachana][features=malayalam]&lt;br /&gt;
 \starttext&lt;br /&gt;
 മലയാളം \TeX ഉപയോഗിച്ച് ടൈപ്പ്സെറ്റ് ചെയ്തത്&lt;br /&gt;
 \stoptext&lt;br /&gt;
Generate the output using command&lt;br /&gt;
 texexec --xetex &amp;lt;file.tex&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Automated Rendering Testing==&lt;br /&gt;
&#039;&#039;&#039;Project&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
Automated Rendering Testing system for Indic languages. Currently there exists 3 main rendering engines in computing world - Uniscribe of Microsoft, CoreText (Apple Advance Typography - AAT) of Apple and Harfbuzz for *nix systems. The Opentype font specification is maintained by Microsoft and implemented in Uniscribe, which is used as baseline for Harfbuzz. At present, there is no automated mechanism to determine if Harfbuzz is rendering complex Indic text correctly or not - someone expert in relevant language has to manually inspect the output from hb-view. The project aim is to identify and implement an automated method to test the rendering.&lt;br /&gt;
One method to do this might be to check the order of glyphs/glyph indices output by the rendering engine - this depends on the font too. A related topic is UTRRS &lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;[https://savannah.nongnu.org/task/index.php?12560 Savannah Task]&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Expertise required&#039;&#039;&#039;: Knowledge of Indic language rendering and Opentype specification.&lt;br /&gt;
* &#039;&#039;&#039;Mentor&#039;&#039;&#039; : Rajeesh K Nambiar&lt;br /&gt;
&lt;br /&gt;
====More Details====&lt;br /&gt;
* https://fedorahosted.org/utrrs/ &lt;br /&gt;
* http://tdil-dc.in/utrrs/home/about&lt;br /&gt;
&lt;br /&gt;
==Flask Based SILPA==&lt;br /&gt;
===Port remaining modules to the new flask based Silpa===&lt;br /&gt;
&#039;&#039;&#039;Project&#039;&#039;&#039;: Silpa is being re-written using flask framework. Core part is almost complete. But most of the sub modules written under old framework are need to be ported to [http://flasksilpa-indic.rhcloud.com/ new framework].&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Expertise required&#039;&#039;&#039;: Python , Flask , Jinja , HTML, Javascript&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Mentor&#039;&#039;&#039; : Vasudev/ Jishnu&lt;br /&gt;
&lt;br /&gt;
===Provide REST API for new flask based Silpa, including conversion of templates to this REST API from JSON RPC===&lt;br /&gt;
&#039;&#039;&#039;Project&#039;&#039;&#039;: Silpa is now relying on JSONRPC. We need to, either completely move to REST API or provide REST API as an additional feature.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Expertise required&#039;&#039;&#039;: Python , Flask , Jinja , HTML, Javascript&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Mentor&#039;&#039;&#039; : Vasudev/Jishnu&lt;br /&gt;
&lt;br /&gt;
===Separate templates from SILPA and have it inside modules packaged for pypi===&lt;br /&gt;
&#039;&#039;&#039;Project&#039;&#039;&#039;: The templates used as User Interface is part of SILPA. this should be separated and should come as a part of individual modules.&lt;br /&gt;
&lt;br /&gt;
[https://github.com/copyninja/Silpa-Flask/issues/4 this] should give more idea on it&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Expertise required&#039;&#039;&#039;:python,Flask, HTML,Javascript,CSS,jinja &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Mentor&#039;&#039;&#039; : Vasudev/Jishnu&lt;br /&gt;
&lt;br /&gt;
===add Urdu/Arabic support for all modules in SILPA.===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Expertise required&#039;&#039;&#039;:python,Flask, HTML,Javascript,CSS,jinja &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Mentor&#039;&#039;&#039; : Vasudev&lt;br /&gt;
&lt;br /&gt;
== Converting indic processing modules currently in SILPA into Jquery library  ==&lt;br /&gt;
&#039;&#039;&#039;Project&#039;&#039;&#039;: Port some of the silpa algorithms to Jquery.&lt;br /&gt;
&lt;br /&gt;
Several modules, alogorithms in SILPA project is done in python now. But porting them to javascript(jQuery) helps developers. For example, cross language transliteration can be done jquery too if we port the algorithm and transliteration rules. Similarly the approximate search can be ported. A flexibile fuzzy search on the web pages will be possible if we have the algorithm in jquery. ALternatively these js libraries can be used with node.js using server side js concept too.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Expertise required&#039;&#039;&#039;: javascript,JQuery, python&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Mentor&#039;&#039;&#039; :Jishnu&lt;br /&gt;
&lt;br /&gt;
==  Improving cross language transliteration system.  ==&lt;br /&gt;
&#039;&#039;&#039;Project&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
Currently only Kannada and Malayalam are perfect rest all are first converted to Malayalam then to English due to lack of language internal. Also currently for English to Indic we use CMUDict so transliteration capability is limited to words in CMUDict only probably we could develop better method for English to Indic transliteration&lt;br /&gt;
&lt;br /&gt;
CLDR has transliteration data for Indic languages. We can explore it and see the feasibility. For an intermediate representation of the scripts either IPA can be used or ISO 15919 standard can be used. All these must be supplemented with exception rules and special case handling to achieve more perfect result.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Expertise required&#039;&#039;&#039;:python&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Mentor&#039;&#039;&#039; : Vasudev/Jishnu&lt;br /&gt;
&lt;br /&gt;
==  Improving the webfonts module in Silpa using jquery.webfonts and proving more Indic and complex fonts as part of it. ==&lt;br /&gt;
&#039;&#039;&#039;Project&#039;&#039;&#039;:&lt;br /&gt;
* Currently Silpa provides 36 webfonts. add more fonts to this collection.&lt;br /&gt;
* Rewrote webfonts module to use the features of jquery.webfonts&lt;br /&gt;
* reate a repo as per jquery.webfonts specification&lt;br /&gt;
* Provide a clean api so that other websites can use our webfonts in their websites&lt;br /&gt;
* Document the usage&lt;br /&gt;
* Provide font preview and download options  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Expertise required&#039;&#039;&#039;:jQuery, Python , technical understanding about fonts &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Mentor&#039;&#039;&#039; : Jishnu&lt;br /&gt;
&lt;br /&gt;
==Building a system and API&#039;s for accessing and upadating Malayalamgrandham Bibligiography Data==&lt;br /&gt;
[http://www.malayalagrandham.com/about/ Malayala Grantha Vivaram]  is a project intended to make available reliable bibliographic information on all Malayalam books published in Kerala and elsewhere. This Open data set contains Complete bibliography data from first Impression to 1995. This project wants to add following features to Malayalagrandham DB and build it as a bibliography web service &lt;br /&gt;
* Facility for adding/linking copyright expired books to malaylagrandha vivaram &lt;br /&gt;
* Adding ISBN &amp;amp; ISBN based seller discovery &lt;br /&gt;
* Building  Interface for Publishers through with they can contribute their publication bibliography .&lt;br /&gt;
* Similar module for Libraries . That will be added to found in library section of each book&lt;br /&gt;
* A module for building qr code of bibliography with a malayalagrandham link&lt;br /&gt;
* Crowd sourced way for input and an approval queue interface for submissions. &lt;br /&gt;
* MARC21 and MARCXML support &lt;br /&gt;
* A dynamic visualisation interface for book information browsing&lt;br /&gt;
* proper API , and app work flow documentation&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Expertise required&#039;&#039;&#039;: Django / Ruby on Rails&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Mentor&#039;&#039;&#039;: Anivar&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Related Links&#039;&#039;&#039;&lt;br /&gt;
* https://github.com/smc/malayalagrandham&lt;br /&gt;
* http://malayalagrandham.com/about&lt;br /&gt;
&lt;br /&gt;
== Adding Braille Keyboard layouts for Indian Languages to m17n Library==&lt;br /&gt;
&lt;br /&gt;
Project is building support for Bharati Braille keyboard layouts in GNU/Linux systemes.  Bharati Braille standard is the official Braille standard in India. A regular QWERTY keyboard is used for data entry. SDF-JKL keys are used for six dots of Braille. This support need to be built as m17n layouts. This will enable visually challenged people who studied braille layouts to use GNU/Linux systems easily with the help of Audio feedback from TTS&lt;br /&gt;
&lt;br /&gt;
====More Details====&lt;br /&gt;
* http://www.acharya.gen.in:8080/disabilities/bh_brl.php&lt;br /&gt;
* http://en.wikipedia.org/wiki/Bharati_Braille&lt;br /&gt;
* http://www.nongnu.org/m17n/&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Mentor&#039;&#039;&#039;: Anilkumar K V&lt;br /&gt;
&lt;br /&gt;
==Developing Malayalam Calendar Support ==&lt;br /&gt;
&lt;br /&gt;
This project is to build Malayalam Calendar support to KDE. Korganiser have support for many calendars like Saka, Hijri, Jalali. The project is to build support for Malayalam Calendar (Kolla Varsham)&lt;br /&gt;
&lt;br /&gt;
Following tasks are part of this work .&lt;br /&gt;
* Building Malayalam (kollavarsham) Calendar support to KDE/KOrganiser.&lt;br /&gt;
&lt;br /&gt;
====More Details====&lt;br /&gt;
* Understanding of Astronomical Algorithms&lt;br /&gt;
* http://malayalam.usvishakh.net/calendars/panj_theory.pdf&lt;br /&gt;
* https://github.com/smc/smc/tree/master/calendar/java/src/org/panchanga/indic&lt;br /&gt;
&lt;br /&gt;
==== Starting Points ====&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/smc/smc/tree/master/calendar/kde Build KDE from source]&lt;br /&gt;
* Familiarize with how Saka and other calendars are done.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Mentor&#039;&#039;&#039;: Praveen A, Mahesh M&lt;br /&gt;
&lt;br /&gt;
==Language model and Acoustic model for Malayalam language for speech recognition system in CMU Sphinx==&lt;br /&gt;
&lt;br /&gt;
CMU Sphinx is a large vocabulary, speaker independent speech recognition codebase and suite of tools, which can be used to develop speech recognition system in any language. To develop an automatic speech recognition system in a language, acoustic model and language model has to framed for that particular language.  Acoustic models characterize how sound changes over time. It captures the characteristics of basic recognition units. The language model describes the likelihood, probability, or penalty taken when a sequence or collection of words is seen. It attempts to convey behavior of the language and tries to predict the occurrence of specific word sequences possible in the language. Once these two models are developed, it will be useful to every one doing research in speech processing. For Indian languages Hindi, Tamil, Telugu and Marati, ASR systems have been developed using sphinx engine. In this project work is aimed at developing acoustic model and language model for Malayalam.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Mentor&#039;&#039;&#039;:  Deepa Gopinath&lt;br /&gt;
=== Background Reading ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://www.cs.cmu.edu/~gopalakr/publications/spdatabases_specom05.pdf &#039;Development of Indian Language Speech Databases for Large Vocabulary Speech Recognition Systems&#039;], Gopalakrishna  Anumanchipalli, Rahul Chitturi, Sachin Joshi, Rohit Kumar, Satinder Pal Singh, R.N.V. Sitaram, S P Kishore&lt;br /&gt;
&lt;br /&gt;
* [http://www.aclweb.org/anthology/W/W12/W12-5808.pdf &amp;quot;Automatic Pronunciation Evaluation And Mispronunciation Detection Using CMUSphinx&amp;quot;], Ronanki Srikanth, James Salsman&lt;br /&gt;
&lt;br /&gt;
* http://www.speech.cs.cmu.edu/&lt;br /&gt;
* http://cmusphinx.sourceforge.net/wiki/tutorial&lt;br /&gt;
&lt;br /&gt;
* [http://www.ijarcsse.com &amp;quot;HTK Based Telugu Speech Recognition&amp;quot;], P. Vijai Bhaskar, AVNIET ,Hyderabad, Prof. Dr. S. Rama Mohan Rao, A.Gopi &lt;br /&gt;
&lt;br /&gt;
* [http://www.cs.cmu.edu/~araza/Automatic_Speech_Recognition_System_for_Urdu.PDF &amp;quot;Design and  Development of an Automatic Speech Recognition System for Urdu&amp;quot;], Agha Ali Raza,  M.Sc. Thesis, FAST‐National University of Computer and Emerging Sciences &lt;br /&gt;
&lt;br /&gt;
* [http://www.ccis2k.org/iajit/PDF/vol.6,no.2/11IASRUCSS186.pdf &amp;quot;Investigation Arabic Speech Recognition Using CMU Sphinx System&amp;quot;], Hassan Satori1, 2, Hussein Hiyassat3, Mostafa Harti1, 2, and Noureddine Chenfour&lt;br /&gt;
&lt;br /&gt;
* [http://www.try.idv.tw/static-resources/homework/pr/PR_Final_Report.pdf &amp;quot;Understanding the CMU Sphinx Speech Recognition System&amp;quot;], Chun-Feng Liao&lt;br /&gt;
&lt;br /&gt;
==Enhancement of Indic Language Support in Scribus==&lt;br /&gt;
&lt;br /&gt;
===Project Description===&lt;br /&gt;
&lt;br /&gt;
Scribus is an Open Source program that brings professional page layout to Linux/UNIX. Find more about scribus [http://www.scribus.net here]. Indic Languages are not supported completely in Scribus as of now. As a result of the work done by a group of developers from India, there is a branch available in Scribus public git repo which supports Indic Languages. The aim of this idea is to Enhance the Indic language support solving the following issues:&lt;br /&gt;
&lt;br /&gt;
* Harfbuzz is being used as a thrid party code in Scribus. Maintaining thirdparty code is a tedious task, this should be added as a dependency instead.&lt;br /&gt;
* Enhance hyphenation by adding hyphenation rules.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Expertise Required:&#039;&#039;&#039; Good understanding of C, C++, Qt, Harfbuz etc, cmake.&lt;br /&gt;
&lt;br /&gt;
===More information===&lt;br /&gt;
&lt;br /&gt;
* Branch indic in scribus public git repository. Clone url: git clone git://git.scribus.net/scribus.git&lt;br /&gt;
* [[Hyphenation]]&lt;br /&gt;
* [http://wiki.scribus.net/canvas/Git#To_sum_it_up_:_how_to_get_and_compile_a_specific_branch_:_indic_of_scribus.git Compile scribus indic branch] &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Mentor&#039;&#039;&#039;      : Jain Basil Aliyas (jainbasil in IRC)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Complexity&#039;&#039;&#039;  : Advanced&lt;/div&gt;</summary>
		<author><name>Pravs</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=Talk:Mailing_List_Policy&amp;diff=3490</id>
		<title>Talk:Mailing List Policy</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=Talk:Mailing_List_Policy&amp;diff=3490"/>
		<updated>2013-04-18T11:06:30Z</updated>

		<summary type="html">&lt;p&gt;Pravs: define what is irresponsible&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Define what is considered irresponsible and specify who can flag someone as irresponsible. Is there a provision for appeal if some one does not agree with the moderation? --[[User:Pravs|Pravs]] ([[User talk:Pravs|talk]]) 04:06, 18 April 2013 (PDT)&lt;/div&gt;</summary>
		<author><name>Pravs</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=%E0%B4%93%E0%B4%B0%E0%B5%8D%E2%80%8D%E0%B4%AE%E0%B5%8D%E0%B4%AE%E0%B4%95%E0%B4%B3%E0%B4%BF%E0%B4%B2%E0%B5%8D%E2%80%8D_%E0%B4%9C%E0%B4%BF%E0%B4%A8%E0%B5%87%E0%B4%B7%E0%B5%8D_,_SMC_%E0%B4%95%E0%B5%82%E0%B4%9F%E0%B5%8D%E0%B4%9F%E0%B4%BE%E0%B4%AF%E0%B5%8D%E0%B4%AE&amp;diff=3250</id>
		<title>ഓര്‍മ്മകളില്‍ ജിനേഷ് , SMC കൂട്ടായ്മ</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=%E0%B4%93%E0%B4%B0%E0%B5%8D%E2%80%8D%E0%B4%AE%E0%B5%8D%E0%B4%AE%E0%B4%95%E0%B4%B3%E0%B4%BF%E0%B4%B2%E0%B5%8D%E2%80%8D_%E0%B4%9C%E0%B4%BF%E0%B4%A8%E0%B5%87%E0%B4%B7%E0%B5%8D_,_SMC_%E0%B4%95%E0%B5%82%E0%B4%9F%E0%B5%8D%E0%B4%9F%E0%B4%BE%E0%B4%AF%E0%B5%8D%E0%B4%AE&amp;diff=3250"/>
		<updated>2012-09-27T09:17:59Z</updated>

		<summary type="html">&lt;p&gt;Pravs: small changes&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{prettyurl|Annual Meet 2012}}&lt;br /&gt;
സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ്ങു് സന്നദ്ധപ്രവര്‍ത്തകരുടെ വാര്‍ഷിക സമ്മേളനം സമ്മേളനം സെപ്റ്റംബര്‍ 29, 30 തിയ്യതികളില്‍ കുറ്റിപ്പുറം MES കോളേജില്‍ വച്ച് നടത്താന്‍ തിരുമാനിച്ചിരിക്കുന്നു. &lt;br /&gt;
==&#039;&#039;&#039;കാര്യപരിപാടി &#039;&#039;&#039;== &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
MES കോളേജിലെ പൂര്‍വ്വ വിദ്യാര്‍ത്ഥിയായ ജിനേഷിന്റെ ഓര്‍മക്കായി CSE ഡിപാര്‍ട്ട്മെന്റ്‌ , SMC നയിക്കുന്ന ഒരു ചടങ്ങ് നടത്താന്‍ തീരുമാനിച്ചിരിക്കുന്നു. ജിനേഷിന്റെയും, അദ്ദേഹത്തിന്റെ SMC യിലെക്കും, ഫ്രീ സോഫ്റ്റ്‌വെയറിലേയ്ക്കുമുള്ള സംഭാവനകളെയും ഓര്‍ത്തു നടത്തുന്ന ഈ ചടങ്ങ് സെപ്റ്റെംബര്‍ 29, 30 തീയതികളില്‍,  MES കോളേജില്‍ വച്ചാണ് നടത്തുവാനാണ്  ഉദ്ദേശികുന്നത്. ഇതേ ചടങ്ങില്‍, ജിനേഷിന്റെ സംഭാവനകളും നിരീക്ഷണങ്ങളും അടങ്ങിയ പുസ്തകത്തിന്റെ പ്രകാശനവും ഉണ്ടകുന്നതാണ്. കൂടാതെ OCR എന്ന സാങ്കേതിക വിദ്യയുടെ മലയാളം പതിപ്പിനെ  പരിചയപെടുത്തുന്നതിനോടൊപ്പം  സാങ്കേതിക സംവാദങ്ങളും ഉള്‍കൊള്ളിച്ചിരിക്കുന്നു. പരിപാടികള്‍ താഴെ.&lt;br /&gt;
&lt;br /&gt;
[[പ്രമാണം:Logbook of an Observer (cover page).jpg|thumb|200px|Logbook of an Observer (കവര്‍ പേജ്) by ഹിരണ്‍ വേണുഗോപാല്‍]] &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;September 29,2012 (At Auditorium)&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
9:30am - 10:45am &lt;br /&gt;
* Talk on Contributions of Jineesh (Sebin, Naveen, Suresh)&lt;br /&gt;
 - Sebin is editor of Malayalam internet news portal malayal.am. Jinesh wrote many articles in this portal.&lt;br /&gt;
 - Naveen is Jinesh&#039;s friend from IIT Hyderabad&lt;br /&gt;
 - Suresh was Jinesh&#039;s mentor for Google Summer of code&lt;br /&gt;
* Talk on Contributions of Shyam K (Sooraj, PP Ramachandran)&lt;br /&gt;
 - Sooraj is a member of Swathanthra Malayalam Computing Community.&lt;br /&gt;
 - PP Ramachandran is a poet and knew Shyam.&lt;br /&gt;
* Talk on SMC (Manoj K Mohan)&lt;br /&gt;
 - Manoj K Mohan is active in Swathanthra Malayalam Computing and Malayalam wiki projects&lt;br /&gt;
&lt;br /&gt;
10:45am - 11:15am&lt;br /&gt;
* Talk on OCR (Sathyan Master)&lt;br /&gt;
* Demonstration of OCR ( Naveen TS)&lt;br /&gt;
&lt;br /&gt;
11.30am - 12.45am&lt;br /&gt;
* Matrics,CSE Association MESCE, Inaguration Ceremony ( Hussain K H) &lt;br /&gt;
* Book publishing event - പ്രശസ്ത കവി പിപി രാമചന്ദ്രന്‍ ജിനേഷിന്റെ അച്ഛനു് ഒരു പകര്‍പ്പു് കൈമാറും&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2:00pm - 2:30pm &lt;br /&gt;
* A talk on Free software philosophy (അനീഷ് എ)&lt;br /&gt;
&lt;br /&gt;
2:30pm - 3:30pm&lt;br /&gt;
* Basics of shell scripting (Nakul E)&lt;br /&gt;
&lt;br /&gt;
3:30pm - 4:30pm&lt;br /&gt;
* Talk on Diaspora, Champa project, etc. (Hrishikesh K.B)&lt;br /&gt;
* Tears Of Steel - Swatahnthra Cinema show.&lt;br /&gt;
&lt;br /&gt;
1:30pm - 4:30pm ( Parallel Session At CSE Seminar Hall)&lt;br /&gt;
* Workshop on OCR &lt;br /&gt;
&lt;br /&gt;
5:30pm - 10:00pm( At CSE Lab)&lt;br /&gt;
* Hack night - start hacking/contributing with the help of people already contributing.&lt;br /&gt;
                                                                    &lt;br /&gt;
&#039;&#039;&#039;September 30,2012 (At CSE Lab)&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
9:30am - 12:30pm&lt;br /&gt;
* Introduction to Git and Github (Ershad K) &lt;br /&gt;
&lt;br /&gt;
2:00pm - 4:30pm &lt;br /&gt;
*A session on remote desktop ,remote logging and other network tools (Anandh Pavithran, staff of MESCE)&lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;&#039;സ്ഥലത്തെത്താന്‍ &#039;&#039;&#039;==&lt;br /&gt;
&lt;br /&gt;
* [http://osm.org/go/yn0Uv4gZp-- ഓപ്പണ്‍സ്ട്രീറ്റ്മാപ്പ്]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;googlemap version=&amp;quot;0.9&amp;quot; lat=&amp;quot;10.829365&amp;quot; lon=&amp;quot;76.023256&amp;quot; zoom=&amp;quot;18&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/googlemap&amp;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;
* നാലാമിടം  - [http://www.nalamidam.com/archives/15658 വേഗങ്ങള്‍ക്കു മുമ്പേ പറന്നൊരാള്‍]&lt;br /&gt;
&lt;br /&gt;
=== ഇവന്റ് പേജ് ===&lt;br /&gt;
*[http://identi.ca/event/9ff8dfbd-7201-4cd8-8e70-a40dde79771c ഐഡന്റിക്ക ഇവന്റ് പേജ്]&lt;br /&gt;
*[https://www.facebook.com/events/485994131413623/ ഫേസ്ബുക്ക് ഇവന്റ് പേജ്]&lt;br /&gt;
*[https://plus.google.com/events/cq1ndk8mva0pj57tv3dg1f3evtg ഗൂഗിള്‍ പ്ലസ്സ്]&lt;br /&gt;
&lt;br /&gt;
=== ഹാഷ് ടാഗ് ===&lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;&#039;പങ്കെടുക്കുന്നവര്‍ &#039;&#039;&#039;==&lt;br /&gt;
# റിയാസ്. ടി. കെ&lt;br /&gt;
# അനീഷ് എ.&lt;br /&gt;
# [[user:Hrishikesh.kb|ഋഷികേശ് കെ ബി]]&lt;br /&gt;
# യാഹുല്‍ ഹമീദ്&lt;br /&gt;
#രാഹുല്‍. കെ. പി&lt;br /&gt;
#[http://www.aneez.in അനീസ് പി.]&lt;br /&gt;
#[[ഉപയോക്താവ്:Manojk|മനോജ്. കെ]]&lt;br /&gt;
#നീനു ബാല്‍ &lt;br /&gt;
#പി.പി.ഹിമ&lt;br /&gt;
#രാഹുല്‍ രാജീവ്&lt;br /&gt;
#സഹല സിദ്ദീഖ്&lt;br /&gt;
#ഷഹനാസ്. പി&lt;br /&gt;
# നിയാസ് അഹമ്മദ്‌&lt;br /&gt;
# അനി പീറ്റര്‍&lt;br /&gt;
# [[User:Pravs|പ്രവീണ്‍ അരിമ്പ്രത്തൊടിയില്‍]]&lt;br /&gt;
# ഹിരണ്‍ വേണുഗോപാല്‍&lt;br /&gt;
# ജയ്സെന്‍ നെടുമ്പാല&lt;br /&gt;
# രജീഷ് കെ നമ്പ്യാര്‍&lt;br /&gt;
# ഇര്‍ഷാദ് കെ&lt;/div&gt;</summary>
		<author><name>Pravs</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=%E0%B4%93%E0%B4%B0%E0%B5%8D%E2%80%8D%E0%B4%AE%E0%B5%8D%E0%B4%AE%E0%B4%95%E0%B4%B3%E0%B4%BF%E0%B4%B2%E0%B5%8D%E2%80%8D_%E0%B4%9C%E0%B4%BF%E0%B4%A8%E0%B5%87%E0%B4%B7%E0%B5%8D_,_SMC_%E0%B4%95%E0%B5%82%E0%B4%9F%E0%B5%8D%E0%B4%9F%E0%B4%BE%E0%B4%AF%E0%B5%8D%E0%B4%AE&amp;diff=3235</id>
		<title>ഓര്‍മ്മകളില്‍ ജിനേഷ് , SMC കൂട്ടായ്മ</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=%E0%B4%93%E0%B4%B0%E0%B5%8D%E2%80%8D%E0%B4%AE%E0%B5%8D%E0%B4%AE%E0%B4%95%E0%B4%B3%E0%B4%BF%E0%B4%B2%E0%B5%8D%E2%80%8D_%E0%B4%9C%E0%B4%BF%E0%B4%A8%E0%B5%87%E0%B4%B7%E0%B5%8D_,_SMC_%E0%B4%95%E0%B5%82%E0%B4%9F%E0%B5%8D%E0%B4%9F%E0%B4%BE%E0%B4%AF%E0%B5%8D%E0%B4%AE&amp;diff=3235"/>
		<updated>2012-09-25T13:18:58Z</updated>

		<summary type="html">&lt;p&gt;Pravs: /* പങ്കെടുക്കുന്നവര്‍  */ പ്രവീണ്‍ വരുന്നുണ്ടു്&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{prettyurl|Annual Meet 2012}}&lt;br /&gt;
സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ്ങു് സന്നദ്ധപ്രവര്‍ത്തകരുടെ വാര്‍ഷിക സമ്മേളനം സമ്മേളനം സെപ്റ്റംബര്‍ 29, 30 തിയ്യതികളില്‍ കുറ്റിപ്പുറം MES കോളേജില്‍ വച്ച് നടത്താന്‍ തിരുമാനിച്ചിരിക്കുന്നു. &lt;br /&gt;
==&#039;&#039;&#039;കാര്യപരിപാടി &#039;&#039;&#039;== &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
MES കോളേജിലെ പൂര്‍വ്വ വിദ്യാര്‍ത്ഥിയായ ജിനേഷിന്റെ ഓര്‍മക്കയി CSE ഡിപാര്‍ട്ട്മെന്റ്‌ , SMC നയിക്കുന്ന ഒരു ചടങ്ങ് നടത്താന്‍ തീരുമാനിച്ചിരിക്കുന്നു. ജിനേഷിന്റെയും, അദ്ദേഹത്തിന്റെ SMC യിലെക്കും, ഫ്രീ സോഫ്റ്റ്‌വെയറിലേയ്ക്കുമുള്ള സംഭാവനകളെയും ഓര്‍ത്തു നടത്തുന്ന ഈ ചടങ്ങ് സെപ്റ്റെംബര്‍ 29, 30 തീയതികളില്‍,  MES കോളേജില്‍ വച്ചാണ് നടത്തുവാനാണ്  ഉദ്ദേശികുന്നത്. ഇതേ ചടങ്ങില്‍, ജിനേഷിന്റെ സംഭാവനകളും നിരീക്ഷണങ്ങളും അടങ്ങിയ പുസ്തകത്തിന്റെ പ്രകാശനവും, ഒപ്പം ചില സാങ്കേതിക സംവാദങ്ങളും ഉള്‍കൊള്ളിച്ചിരിക്കുന്നു. പരിപാടികള്‍ താഴെ.&lt;br /&gt;
&lt;br /&gt;
                                                        &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;September 29,2012&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
10:00am - 12:30 pm&lt;br /&gt;
* Talk on Contributions of Jineesh (Sebin, Naveen)&lt;br /&gt;
* Talk on Contributions of Shyam K (Sooraj, PP Ramachandran)&lt;br /&gt;
* A talk on SMC (Praveen)&lt;br /&gt;
* Book publishing event - പ്രശസ്ത കവി പിപി രാമചന്ദ്രന്‍ ജിനേഷിന്റെ അച്ചനു് ഒരു പകര്‍പ്പു് കൈമാറും&lt;br /&gt;
&lt;br /&gt;
2:00pm - 2:45pm&lt;br /&gt;
* A talk on Free software philosophy (അനീഷ് എ)&lt;br /&gt;
2:45pm - 3:30pm&lt;br /&gt;
* Basics of shell scripting (Nakul E)&lt;br /&gt;
3:30pm -  4:30pm&lt;br /&gt;
* Talk on Diaspora,GSOC ,Champa project, etc. (Hrishikesh K.B)&lt;br /&gt;
&lt;br /&gt;
5:30pm-10pm&lt;br /&gt;
* Hack night - start hacking/contributing with the help of people already contributing.&lt;br /&gt;
                                                                    &lt;br /&gt;
&#039;&#039;&#039;September 30,2012&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
9:30am - 12:30pm&lt;br /&gt;
* Introduction to Git and Github (Ershad K) &lt;br /&gt;
2:00pm - 4:30pm &lt;br /&gt;
*A session on remote desktop ,remote logging and other network tools (Anandh Pavithran, staff of MESCE)&lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;&#039;സ്ഥലത്തെത്താന്‍ &#039;&#039;&#039;==&lt;br /&gt;
&lt;br /&gt;
* [http://osm.org/go/yn0Uv4gZp-- ഓപ്പണ്‍സ്ട്രീറ്റ്മാപ്പ്]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;googlemap version=&amp;quot;0.9&amp;quot; lat=&amp;quot;10.829365&amp;quot; lon=&amp;quot;76.023256&amp;quot; zoom=&amp;quot;18&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/googlemap&amp;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;
* നാലാമിടം  - [http://www.nalamidam.com/archives/15658 വേഗങ്ങള്‍ക്കു മുമ്പേ പറന്നൊരാള്‍]&lt;br /&gt;
&lt;br /&gt;
=== ഇവന്റ് പേജ് ===&lt;br /&gt;
*[http://identi.ca/event/9ff8dfbd-7201-4cd8-8e70-a40dde79771c ഐഡന്റിക്ക ഇവന്റ് പേജ്]&lt;br /&gt;
*[https://www.facebook.com/events/485994131413623/ ഫേസ്ബുക്ക് ഇവന്റ് പേജ്]&lt;br /&gt;
&lt;br /&gt;
=== ഹാഷ് ടാഗ് ===&lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;&#039;പങ്കെടുക്കുന്നവര്‍ &#039;&#039;&#039;==&lt;br /&gt;
# റിയാസ്. ടി. കെ&lt;br /&gt;
# അനീഷ് എ.&lt;br /&gt;
# [[user:Hrishikesh.kb|ഋഷികേശ് കെ ബി]]&lt;br /&gt;
# യാഹുല്‍ ഹമീദ്&lt;br /&gt;
#രാഹുല്‍. കെ. പി&lt;br /&gt;
#[http://www.aneez.in അനീസ് പി.]&lt;br /&gt;
#[[ഉപയോക്താവ്:Manojk|Manojk]] ([[ഉപയോക്താവിന്റെ സംവാദം:Manojk|സംവാദം]])&lt;br /&gt;
#നീനു ബാല്‍ &lt;br /&gt;
#പി.പി.ഹിമ&lt;br /&gt;
#രാഹുല്‍ രാജീവ്&lt;br /&gt;
#സഹല സിദ്ദീഖ്&lt;br /&gt;
#ഷഹനാസ്. പി&lt;br /&gt;
# നിയാസ് അഹമ്മദ്‌&lt;br /&gt;
# അനി പീറ്റര്‍&lt;br /&gt;
# [[User:Pravs|പ്രവീണ്‍ അരിമ്പ്രത്തൊടിയില്‍]]&lt;/div&gt;</summary>
		<author><name>Pravs</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=%E0%B4%93%E0%B4%B0%E0%B5%8D%E2%80%8D%E0%B4%AE%E0%B5%8D%E0%B4%AE%E0%B4%95%E0%B4%B3%E0%B4%BF%E0%B4%B2%E0%B5%8D%E2%80%8D_%E0%B4%9C%E0%B4%BF%E0%B4%A8%E0%B5%87%E0%B4%B7%E0%B5%8D_,_SMC_%E0%B4%95%E0%B5%82%E0%B4%9F%E0%B5%8D%E0%B4%9F%E0%B4%BE%E0%B4%AF%E0%B5%8D%E0%B4%AE&amp;diff=3234</id>
		<title>ഓര്‍മ്മകളില്‍ ജിനേഷ് , SMC കൂട്ടായ്മ</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=%E0%B4%93%E0%B4%B0%E0%B5%8D%E2%80%8D%E0%B4%AE%E0%B5%8D%E0%B4%AE%E0%B4%95%E0%B4%B3%E0%B4%BF%E0%B4%B2%E0%B5%8D%E2%80%8D_%E0%B4%9C%E0%B4%BF%E0%B4%A8%E0%B5%87%E0%B4%B7%E0%B5%8D_,_SMC_%E0%B4%95%E0%B5%82%E0%B4%9F%E0%B5%8D%E0%B4%9F%E0%B4%BE%E0%B4%AF%E0%B5%8D%E0%B4%AE&amp;diff=3234"/>
		<updated>2012-09-25T12:54:31Z</updated>

		<summary type="html">&lt;p&gt;Pravs: പ്രശസ്ത കവി പിപി രാമചന്ദ്രന്‍ ജിനേഷിന്റെ അച്ചനു് ഒരു പകര്‍പ്പു് കൈമാറും&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{prettyurl|Annual Meet 2012}}&lt;br /&gt;
സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ്ങു് സന്നദ്ധപ്രവര്‍ത്തകരുടെ വാര്‍ഷിക സമ്മേളനം സമ്മേളനം സെപ്റ്റംബര്‍ 29, 30 തിയ്യതികളില്‍ കുറ്റിപ്പുറം MES കോളേജില്‍ വച്ച് നടത്താന്‍ തിരുമാനിച്ചിരിക്കുന്നു. &lt;br /&gt;
==&#039;&#039;&#039;കാര്യപരിപാടി &#039;&#039;&#039;== &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
MES കോളേജിലെ പൂര്‍വ്വ വിദ്യാര്‍ത്ഥിയായ ജിനേഷിന്റെ ഓര്‍മക്കയി CSE ഡിപാര്‍ട്ട്മെന്റ്‌ , SMC നയിക്കുന്ന ഒരു ചടങ്ങ് നടത്താന്‍ തീരുമാനിച്ചിരിക്കുന്നു. ജിനേഷിന്റെയും, അദ്ദേഹത്തിന്റെ SMC യിലെക്കും, ഫ്രീ സോഫ്റ്റ്‌വെയറിലേയ്ക്കുമുള്ള സംഭാവനകളെയും ഓര്‍ത്തു നടത്തുന്ന ഈ ചടങ്ങ് സെപ്റ്റെംബര്‍ 29, 30 തീയതികളില്‍,  MES കോളേജില്‍ വച്ചാണ് നടത്തുവാനാണ്  ഉദ്ദേശികുന്നത്. ഇതേ ചടങ്ങില്‍, ജിനേഷിന്റെ സംഭാവനകളും നിരീക്ഷണങ്ങളും അടങ്ങിയ പുസ്തകത്തിന്റെ പ്രകാശനവും, ഒപ്പം ചില സാങ്കേതിക സംവാദങ്ങളും ഉള്‍കൊള്ളിച്ചിരിക്കുന്നു. പരിപാടികള്‍ താഴെ.&lt;br /&gt;
&lt;br /&gt;
                                                        &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;September 29,2012&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
10:00am - 12:30 pm&lt;br /&gt;
* Talk on Contributions of Jineesh (Sebin, Naveen)&lt;br /&gt;
* Talk on Contributions of Shyam K (Sooraj, PP Ramachandran)&lt;br /&gt;
* A talk on SMC (Praveen)&lt;br /&gt;
* Book publishing event - പ്രശസ്ത കവി പിപി രാമചന്ദ്രന്‍ ജിനേഷിന്റെ അച്ചനു് ഒരു പകര്‍പ്പു് കൈമാറും&lt;br /&gt;
&lt;br /&gt;
2:00pm - 2:45pm&lt;br /&gt;
* A talk on Free software philosophy (അനീഷ് എ)&lt;br /&gt;
2:45pm - 3:30pm&lt;br /&gt;
* Basics of shell scripting (Nakul E)&lt;br /&gt;
3:30pm -  4:30pm&lt;br /&gt;
* Talk on Diaspora,GSOC ,Champa project, etc. (Hrishikesh K.B)&lt;br /&gt;
&lt;br /&gt;
5:30pm-10pm&lt;br /&gt;
* Hack night - start hacking/contributing with the help of people already contributing.&lt;br /&gt;
                                                                    &lt;br /&gt;
&#039;&#039;&#039;September 30,2012&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
9:30am - 12:30pm&lt;br /&gt;
* Introduction to Git and Github (Ershad K) &lt;br /&gt;
2:00pm - 4:30pm &lt;br /&gt;
*A session on remote desktop ,remote logging and other network tools (Anandh Pavithran, staff of MESCE)&lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;&#039;സ്ഥലത്തെത്താന്‍ &#039;&#039;&#039;==&lt;br /&gt;
&lt;br /&gt;
* [http://osm.org/go/yn0Uv4gZp-- ഓപ്പണ്‍സ്ട്രീറ്റ്മാപ്പ്]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;googlemap version=&amp;quot;0.9&amp;quot; lat=&amp;quot;10.829365&amp;quot; lon=&amp;quot;76.023256&amp;quot; zoom=&amp;quot;18&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/googlemap&amp;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;
* നാലാമിടം  - [http://www.nalamidam.com/archives/15658 വേഗങ്ങള്‍ക്കു മുമ്പേ പറന്നൊരാള്‍]&lt;br /&gt;
&lt;br /&gt;
=== ഇവന്റ് പേജ് ===&lt;br /&gt;
*[http://identi.ca/event/9ff8dfbd-7201-4cd8-8e70-a40dde79771c ഐഡന്റിക്ക ഇവന്റ് പേജ്]&lt;br /&gt;
*[https://www.facebook.com/events/485994131413623/ ഫേസ്ബുക്ക് ഇവന്റ് പേജ്]&lt;br /&gt;
&lt;br /&gt;
=== ഹാഷ് ടാഗ് ===&lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;&#039;പങ്കെടുക്കുന്നവര്‍ &#039;&#039;&#039;==&lt;br /&gt;
# റിയാസ്. ടി. കെ&lt;br /&gt;
# അനീഷ് എ.&lt;br /&gt;
# [[user:Hrishikesh.kb|ഋഷികേശ് കെ ബി]]&lt;br /&gt;
# യാഹുല്‍ ഹമീദ്&lt;br /&gt;
#രാഹുല്‍. കെ. പി&lt;br /&gt;
#[http://www.aneez.in അനീസ് പി.]&lt;br /&gt;
#[[ഉപയോക്താവ്:Manojk|Manojk]] ([[ഉപയോക്താവിന്റെ സംവാദം:Manojk|സംവാദം]])&lt;br /&gt;
#നീനു ബാല്‍ &lt;br /&gt;
#പി.പി.ഹിമ&lt;br /&gt;
#രാഹുല്‍ രാജീവ്&lt;br /&gt;
#സഹല സിദ്ദീഖ്&lt;br /&gt;
#ഷഹനാസ്. പി&lt;br /&gt;
# നിയാസ് അഹമ്മദ്‌&lt;br /&gt;
# അനി പീറ്റര്‍&lt;/div&gt;</summary>
		<author><name>Pravs</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=%E0%B4%93%E0%B4%B0%E0%B5%8D%E2%80%8D%E0%B4%AE%E0%B5%8D%E0%B4%AE%E0%B4%95%E0%B4%B3%E0%B4%BF%E0%B4%B2%E0%B5%8D%E2%80%8D_%E0%B4%9C%E0%B4%BF%E0%B4%A8%E0%B5%87%E0%B4%B7%E0%B5%8D_,_SMC_%E0%B4%95%E0%B5%82%E0%B4%9F%E0%B5%8D%E0%B4%9F%E0%B4%BE%E0%B4%AF%E0%B5%8D%E0%B4%AE&amp;diff=3233</id>
		<title>ഓര്‍മ്മകളില്‍ ജിനേഷ് , SMC കൂട്ടായ്മ</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=%E0%B4%93%E0%B4%B0%E0%B5%8D%E2%80%8D%E0%B4%AE%E0%B5%8D%E0%B4%AE%E0%B4%95%E0%B4%B3%E0%B4%BF%E0%B4%B2%E0%B5%8D%E2%80%8D_%E0%B4%9C%E0%B4%BF%E0%B4%A8%E0%B5%87%E0%B4%B7%E0%B5%8D_,_SMC_%E0%B4%95%E0%B5%82%E0%B4%9F%E0%B5%8D%E0%B4%9F%E0%B4%BE%E0%B4%AF%E0%B5%8D%E0%B4%AE&amp;diff=3233"/>
		<updated>2012-09-25T12:48:38Z</updated>

		<summary type="html">&lt;p&gt;Pravs: ചെറിയ തിരുത്തുകള്‍&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{prettyurl|Annual Meet 2012}}&lt;br /&gt;
സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ്ങു് സന്നദ്ധപ്രവര്‍ത്തകരുടെ വാര്‍ഷിക സമ്മേളനം സമ്മേളനം സെപ്റ്റംബര്‍ 29, 30 തിയ്യതികളില്‍ കുറ്റിപ്പുറം MES കോളേജില്‍ വച്ച് നടത്താന്‍ തിരുമാനിച്ചിരിക്കുന്നു. &lt;br /&gt;
==&#039;&#039;&#039;കാര്യപരിപാടി &#039;&#039;&#039;== &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
MES കോളേജിലെ പൂര്‍വ്വ വിദ്യാര്‍ത്ഥിയായ ജിനേഷിന്റെ ഓര്‍മക്കയി CSE ഡിപാര്‍ട്ട്മെന്റ്‌ , SMC നയിക്കുന്ന ഒരു ചടങ്ങ് നടത്താന്‍ തീരുമാനിച്ചിരിക്കുന്നു. ജിനേഷിന്റെയും, അദ്ദേഹത്തിന്റെ SMC യിലെക്കും, ഫ്രീ സോഫ്റ്റ്‌വെയറിലേയ്ക്കുമുള്ള സംഭാവനകളെയും ഓര്‍ത്തു നടത്തുന്ന ഈ ചടങ്ങ് സെപ്റ്റെംബര്‍ 29, 30 തീയതികളില്‍,  MES കോളേജില്‍ വച്ചാണ് നടത്തുവാനാണ്  ഉദ്ദേശികുന്നത്. ഇതേ ചടങ്ങില്‍, ജിനേഷിന്റെ സംഭാവനകളും നിരീക്ഷണങ്ങളും അടങ്ങിയ പുസ്തകത്തിന്റെ പ്രകാശനവും, ഒപ്പം ചില സാങ്കേതിക സംവാദങ്ങളും ഉള്‍കൊള്ളിച്ചിരിക്കുന്നു. പരിപാടികള്‍ താഴെ.&lt;br /&gt;
&lt;br /&gt;
                                                        &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;September 29,2012&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
10:00am - 12:30 pm&lt;br /&gt;
* Talk on Contributions of Jineesh (Sebin)&lt;br /&gt;
* A talk on SMC (Praveen)&lt;br /&gt;
* Book publishing event &lt;br /&gt;
&lt;br /&gt;
2:00pm - 2:45pm&lt;br /&gt;
* A talk on Free software philosophy (അനീഷ് എ)&lt;br /&gt;
2:45pm - 3:30pm&lt;br /&gt;
* Basics of shell scripting (Nakul E)&lt;br /&gt;
3:30pm -  4:30pm&lt;br /&gt;
* Talk on Diaspora,GSOC ,Champa project, etc. (Hrishikesh K.B)&lt;br /&gt;
&lt;br /&gt;
5:30pm-10pm&lt;br /&gt;
* Hack night - start hacking/contributing with the help of people already contributing.&lt;br /&gt;
                                                                    &lt;br /&gt;
&#039;&#039;&#039;September 30,2012&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
9:30am - 12:30pm&lt;br /&gt;
* Introduction to Git and Github (Ershad K) &lt;br /&gt;
2:00pm - 4:30pm &lt;br /&gt;
*A session on remote desktop ,remote logging and other network tools (Anandh Pavithran, staff of MESCE)&lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;&#039;സ്ഥലത്തെത്താന്‍ &#039;&#039;&#039;==&lt;br /&gt;
&lt;br /&gt;
* [http://osm.org/go/yn0Uv4gZp-- ഓപ്പണ്‍സ്ട്രീറ്റ്മാപ്പ്]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;googlemap version=&amp;quot;0.9&amp;quot; lat=&amp;quot;10.829365&amp;quot; lon=&amp;quot;76.023256&amp;quot; zoom=&amp;quot;18&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/googlemap&amp;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;
* നാലാമിടം  - [http://www.nalamidam.com/archives/15658 വേഗങ്ങള്‍ക്കു മുമ്പേ പറന്നൊരാള്‍]&lt;br /&gt;
&lt;br /&gt;
=== ഇവന്റ് പേജ് ===&lt;br /&gt;
*[http://identi.ca/event/9ff8dfbd-7201-4cd8-8e70-a40dde79771c ഐഡന്റിക്ക ഇവന്റ് പേജ്]&lt;br /&gt;
*[https://www.facebook.com/events/485994131413623/ ഫേസ്ബുക്ക് ഇവന്റ് പേജ്]&lt;br /&gt;
&lt;br /&gt;
=== ഹാഷ് ടാഗ് ===&lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;&#039;പങ്കെടുക്കുന്നവര്‍ &#039;&#039;&#039;==&lt;br /&gt;
# റിയാസ്. ടി. കെ&lt;br /&gt;
# അനീഷ് എ.&lt;br /&gt;
# [[user:Hrishikesh.kb|ഋഷികേശ് കെ ബി]]&lt;br /&gt;
# യാഹുല്‍ ഹമീദ്&lt;br /&gt;
#രാഹുല്‍. കെ. പി&lt;br /&gt;
#[http://www.aneez.in അനീസ് പി.]&lt;br /&gt;
#[[ഉപയോക്താവ്:Manojk|Manojk]] ([[ഉപയോക്താവിന്റെ സംവാദം:Manojk|സംവാദം]])&lt;br /&gt;
#നീനു ബാല്‍ &lt;br /&gt;
#പി.പി.ഹിമ&lt;br /&gt;
#രാഹുല്‍ രാജീവ്&lt;br /&gt;
#സഹല സിദ്ദീഖ്&lt;br /&gt;
#ഷഹനാസ്. പി&lt;br /&gt;
# നിയാസ് അഹമ്മദ്‌&lt;br /&gt;
# അനി പീറ്റര്‍&lt;/div&gt;</summary>
		<author><name>Pravs</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=%E0%B4%9C%E0%B4%BF%E0%B4%A8%E0%B5%86%E0%B4%B7%E0%B4%BF%E0%B4%A8%E0%B5%8D%E0%B4%B1%E0%B5%86_%E0%B4%93%E0%B4%B0%E0%B5%8D%E2%80%8D%E0%B4%AE%E0%B4%95%E0%B4%B3%E0%B4%BF%E0%B4%B2%E0%B5%8D%E2%80%8D,_SMC_%E0%B4%95%E0%B5%82%E0%B4%9F%E0%B5%8D%E0%B4%9F%E0%B4%BE%E0%B4%AF%E0%B5%8D%E0%B4%AE&amp;diff=3193</id>
		<title>ജിനെഷിന്റെ ഓര്‍മകളില്‍, SMC കൂട്ടായ്മ</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=%E0%B4%9C%E0%B4%BF%E0%B4%A8%E0%B5%86%E0%B4%B7%E0%B4%BF%E0%B4%A8%E0%B5%8D%E0%B4%B1%E0%B5%86_%E0%B4%93%E0%B4%B0%E0%B5%8D%E2%80%8D%E0%B4%AE%E0%B4%95%E0%B4%B3%E0%B4%BF%E0%B4%B2%E0%B5%8D%E2%80%8D,_SMC_%E0%B4%95%E0%B5%82%E0%B4%9F%E0%B5%8D%E0%B4%9F%E0%B4%BE%E0%B4%AF%E0%B5%8D%E0%B4%AE&amp;diff=3193"/>
		<updated>2012-08-19T17:34:34Z</updated>

		<summary type="html">&lt;p&gt;Pravs: Pravs എന്ന ഉപയോക്താവ് ജിനെഷിന്റെ ഓര്‍മകളില്‍, SMC കൂട്ടായ്മ എന്ന താൾ [[ജിനേഷിന്റെ ഓര്‍മ്മകളില്‍, SMC...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#തിരിച്ചുവിടുക [[ജിനേഷിന്റെ ഓര്‍മ്മകളില്‍, SMC കൂട്ടായ്മ]]&lt;/div&gt;</summary>
		<author><name>Pravs</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=%E0%B4%93%E0%B4%B0%E0%B5%8D%E2%80%8D%E0%B4%AE%E0%B5%8D%E0%B4%AE%E0%B4%95%E0%B4%B3%E0%B4%BF%E0%B4%B2%E0%B5%8D%E2%80%8D_%E0%B4%9C%E0%B4%BF%E0%B4%A8%E0%B5%87%E0%B4%B7%E0%B5%8D_,_SMC_%E0%B4%95%E0%B5%82%E0%B4%9F%E0%B5%8D%E0%B4%9F%E0%B4%BE%E0%B4%AF%E0%B5%8D%E0%B4%AE&amp;diff=3192</id>
		<title>ഓര്‍മ്മകളില്‍ ജിനേഷ് , SMC കൂട്ടായ്മ</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=%E0%B4%93%E0%B4%B0%E0%B5%8D%E2%80%8D%E0%B4%AE%E0%B5%8D%E0%B4%AE%E0%B4%95%E0%B4%B3%E0%B4%BF%E0%B4%B2%E0%B5%8D%E2%80%8D_%E0%B4%9C%E0%B4%BF%E0%B4%A8%E0%B5%87%E0%B4%B7%E0%B5%8D_,_SMC_%E0%B4%95%E0%B5%82%E0%B4%9F%E0%B5%8D%E0%B4%9F%E0%B4%BE%E0%B4%AF%E0%B5%8D%E0%B4%AE&amp;diff=3192"/>
		<updated>2012-08-19T17:34:34Z</updated>

		<summary type="html">&lt;p&gt;Pravs: Pravs എന്ന ഉപയോക്താവ് ജിനെഷിന്റെ ഓര്‍മകളില്‍, SMC കൂട്ടായ്മ എന്ന താൾ [[ജിനേഷിന്റെ ഓര്‍മ്മകളില്‍, SMC...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ്ങു് സന്നദ്ധപ്രവര്‍ത്തകരുടെ വാർഷിക സമ്മേളനം സമ്മേളനം സെപ്റ്റംബര്‍ 29, 30 തിയ്യതികളില്‍ കുറ്റിപ്പുറം MES കോളേജില്‍ വച്ച് നടത്താന്‍ തിരുമാനിച്ചിരിക്കുന്നു. &lt;br /&gt;
==&#039;&#039;&#039;കാര്യപരിപാടി &#039;&#039;&#039;== &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
MES കോളേജിലെ പൂര്‍വ്വ വിദ്യാര്‍ത്ഥിയായ ജിനേഷിന്റെ ഓര്‍മക്കയി CSE ഡിപാര്‍ട്ട്മെന്റ്‌ , SMC നയിക്കുന്ന ഒരു ചടങ്ങ് നടത്താന്‍ തീരുമാനിച്ചിരിക്കുന്നു. ജിനേഷിന്റെയും, അദ്ദേഹത്തിന്റെ SMC യിലെക്കും, ഫ്രീ സോഫ്റ്റ്‌വെയറിലേയ്ക്കുമുള്ള സംഭാവനകളെയും ഓര്‍ത്തു നടത്തുന്ന ഈ ചടങ്ങ് സെപ്റ്റെംബര്‍ 29, 30 തീയതികളില്‍,  MES കൊളേജില്‍ വച്ചാണ് നടത്തുവാന്‍ ഉദ്ദേശികുന്നത്. ഇതേ ചടങില്‍, ജിനെഷിന്റെ സംഭാവനകളും നിരീക്ഷണങ്ങളും അടങ്ങിയ പുസ്തകത്തിന്റെ പ്രകാശനവും, ഒപ്പം ചില സാങ്കേതിക സംവാദങ്ങളും ഉള്‍കൊള്ളിച്ചിരിക്കുന്നു. പരിപാടികള്‍ താഴെ കൊടുക്കുന്നു.&lt;br /&gt;
&lt;br /&gt;
                                                        &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;September 29,2012&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
10:00am - 12:30 pm&lt;br /&gt;
                       --&amp;gt; Talk on Contributions of Jineesh (Praveen)&lt;br /&gt;
                       --&amp;gt; A talk on SMC (Praveen)&lt;br /&gt;
                       --&amp;gt; Book publishing event &lt;br /&gt;
&lt;br /&gt;
2:00pm - 2:45pm&lt;br /&gt;
                       --&amp;gt;A talk on Free software philosophy (അനീഷ് എ)&lt;br /&gt;
2:45pm - 3:30pm&lt;br /&gt;
                       --&amp;gt;Basics of shell scripting (Nakul E)&lt;br /&gt;
3:30pm -  4:30pm&lt;br /&gt;
                       --&amp;gt;Talk on Diaspora,GSOC ,Champa project, etc. (Hrishikesh K.B)&lt;br /&gt;
&lt;br /&gt;
                                                                    &lt;br /&gt;
&#039;&#039;&#039;September 30,2012&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
9:30am - 12:30pm&lt;br /&gt;
                       --&amp;gt; Introduction to Git and Github (Ershad K) &lt;br /&gt;
2:00pm - 4:30pm &lt;br /&gt;
                       --&amp;gt; A session on remote desktop ,remote logging and&lt;br /&gt;
                            other network tools (Anandh Pavithran, staff of MESCE)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;&#039;സ്ഥലത്തെത്താന്‍ &#039;&#039;&#039;==&lt;br /&gt;
&lt;br /&gt;
* [http://osm.org/go/yn0Uv4gZp-- ഓപ്പണ്‍സ്ട്രീറ്റ്മാപ്പ്]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;googlemap version=&amp;quot;0.9&amp;quot; lat=&amp;quot;10.829365&amp;quot; lon=&amp;quot;76.023256&amp;quot; zoom=&amp;quot;18&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/googlemap&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;&#039;പങ്കെടുക്കുന്നവര്‍ &#039;&#039;&#039;==&lt;br /&gt;
# റിയാസ്. ടി. കെ&lt;br /&gt;
# അനീഷ് എ.&lt;br /&gt;
# [[user:Hrishikesh.kb|ഋഷികേശ് കെ ബി]]&lt;/div&gt;</summary>
		<author><name>Pravs</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=GNOME_3.4_Release_Party&amp;diff=3175</id>
		<title>GNOME 3.4 Release Party</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=GNOME_3.4_Release_Party&amp;diff=3175"/>
		<updated>2012-04-20T06:17:58Z</updated>

		<summary type="html">&lt;p&gt;Pravs: /* കൂടുതല്‍ വിവരങ്ങള്‍ക്ക് */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;തിയ്യതി: 2012 ഏപ്രില്‍ 7&lt;br /&gt;
&lt;br /&gt;
സമയം: രാവിലെ പത്തു് മണി&lt;br /&gt;
&lt;br /&gt;
സ്ഥലം: എംഇഎസ് എഞ്ചിനീയറിങ്ങ് കോളേജ്, കുറ്റിപ്പുറം&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--{{GNOME_3.4_Release_Party/Share}}--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== കാര്യപരിപാടി ==&lt;br /&gt;
&lt;br /&gt;
ഗ്നോം പൊതുവായും പിന്നെ 3.4 ലെ പുതിയ വിശേഷങ്ങളേയും സാദിഖ് പരിചയപ്പെടുത്തില്ലേ?&lt;br /&gt;
&lt;br /&gt;
സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ്ങിനെ പരിചയപ്പെടുത്താന്‍ അനീഷും മനോജും തയ്യാറല്ലേ?&lt;br /&gt;
&lt;br /&gt;
മലയാളം കമ്പ്യൂട്ടിങ്ങിലെ പുതിയ വിശേഷങ്ങളെ സന്തോഷ് പരിചയപ്പെടുത്തില്ലേ?&lt;br /&gt;
&lt;br /&gt;
ചര്‍ച്ച: സ്വാതന്ത്യം, സോഫ്റ്റ‌വെയര്‍, അറിവു്, സംസ്കാരം, സമൂഹം (വിഷയാവതരണം പ്രവീണ്‍ അരിമ്പ്രത്തൊടിയില്‍)&lt;br /&gt;
&lt;br /&gt;
ഗ്നോം 3.4 എന്ന പേരിലൊരു കേക്കും പിന്നെ കുറച്ചു് ബലൂണുകളും കിരണ്‍ സംഘടിപ്പിയ്കാമോ?&lt;br /&gt;
&lt;br /&gt;
മറ്റു് ആശയങ്ങളും വരട്ടെ.&lt;br /&gt;
&lt;br /&gt;
== സ്ഥലത്തെത്താന്‍ ==&lt;br /&gt;
* [http://osm.org/go/yn0Uv4gZp-- ഓപ്പണ്‍സ്ട്രീറ്റ്മാപ്പ്]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;googlemap version=&amp;quot;0.9&amp;quot; lat=&amp;quot;10.829365&amp;quot; lon=&amp;quot;76.023256&amp;quot; zoom=&amp;quot;18&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/googlemap&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== കൂടുതല്‍ വിവരങ്ങള്‍ക്ക് ==&lt;br /&gt;
&lt;br /&gt;
=== ഫേസ്ബുക്ക് ഇവന്റ് പേജ് ===&lt;br /&gt;
[https://www.facebook.com/#!/events/140762446053284/ ഗ്നോം 3.4 റിലീസ് പാര്‍ട്ടി]&lt;br /&gt;
&amp;lt;!--contact person details--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== അനുഭവക്കുറിപ്പുകുള്‍ ===&lt;br /&gt;
[http://sosaysharis.wordpress.com/2012/04/07/gnome-3-4-release-party-at-mes-kutipuram-a-day-well-spent/ ഹാരിസ് ഇബ്രാഹിം]&lt;br /&gt;
&lt;br /&gt;
=== ചിത്രങ്ങള്‍ ===&lt;br /&gt;
[https://joindiaspora.com/posts/1498418 അനീഷ് അനില്‍കുമാര്‍]&lt;br /&gt;
&lt;br /&gt;
[http://blog.aneez.in/post/20716616966/photos-from-gnome-3-4-release-party-held-at-mesce അനീസ്. പി]&lt;br /&gt;
&lt;br /&gt;
=== ചലച്ചിത്രം === &lt;br /&gt;
&lt;br /&gt;
[http://www.youtube.com/watch?v=Q9ygSFFbOO0 പ്രവീണ്‍]&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;
# കിരൺ. വി.&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;/div&gt;</summary>
		<author><name>Pravs</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=GNOME_3.4_Release_Party&amp;diff=3153</id>
		<title>GNOME 3.4 Release Party</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=GNOME_3.4_Release_Party&amp;diff=3153"/>
		<updated>2012-04-05T06:06:58Z</updated>

		<summary type="html">&lt;p&gt;Pravs: /* കാര്യപരിപാടി */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;തിയ്യതി: 2012 ഏപ്രില്‍ 7&lt;br /&gt;
&lt;br /&gt;
സമയം: രാവിലെ പത്തു് മണി&lt;br /&gt;
&lt;br /&gt;
സ്ഥലം: എംഇഎസ് എഞ്ചിനീയറിങ്ങ് കോളേജ്, കുറ്റിപ്പുറം&lt;br /&gt;
&lt;br /&gt;
== കാര്യപരിപാടി ==&lt;br /&gt;
&lt;br /&gt;
ഗ്നോം പൊതുവായും പിന്നെ 3.4 ലെ പുതിയ വിശേഷങ്ങളേയും സാദിഖ് പരിചയപ്പെടുത്തില്ലേ?&lt;br /&gt;
&lt;br /&gt;
സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ്ങിനെ പരിചയപ്പെടുത്താന്‍ അനീഷും മനോജും തയ്യാറല്ലേ?&lt;br /&gt;
&lt;br /&gt;
മലയാളം കമ്പ്യൂട്ടിങ്ങിലെ പുതിയ വിശേഷങ്ങളെ സന്തോഷ് പരിചയപ്പെടുത്തില്ലേ?&lt;br /&gt;
&lt;br /&gt;
ചര്‍ച്ച: സ്വാതന്ത്യം, സോഫ്റ്റ‌വെയര്‍, അറിവു്, സംസ്കാരം, സമൂഹം (വിഷയാവതരണം പ്രവീണ്‍ അരിമ്പ്രത്തൊടിയില്‍)&lt;br /&gt;
&lt;br /&gt;
ഗ്നോം 3.4 എന്ന പേരിലൊരു കേക്കും പിന്നെ കുറച്ചു് ബലൂണുകളും കിരണ്‍ സംഘടിപ്പിയ്കാമോ?&lt;br /&gt;
&lt;br /&gt;
മറ്റു് ആശയങ്ങളും വരട്ടെ.&lt;br /&gt;
&lt;br /&gt;
== സ്ഥലത്തെത്താന്‍ ==&lt;br /&gt;
* [http://osm.org/go/yn0Uv4gZp-- ഓപ്പണ്‍സ്ട്രീറ്റ്മാപ്പ്]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;googlemap version=&amp;quot;0.9&amp;quot; lat=&amp;quot;10.829365&amp;quot; lon=&amp;quot;76.023256&amp;quot; zoom=&amp;quot;18&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/googlemap&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== കൂടുതല്‍ വിവരങ്ങള്‍ക്ക് ==&lt;br /&gt;
&amp;lt;!--contact person details--&amp;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;
* മുഹമ്മദ് സാദിഖ് .പി.കെ&lt;br /&gt;
* നകുല്‍ എഴുത്തുപള്ളി&lt;br /&gt;
* കിരന്‍.വി.&lt;br /&gt;
* അനീസ് .പി&lt;/div&gt;</summary>
		<author><name>Pravs</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=GNOME_3.4_Release_Party&amp;diff=3151</id>
		<title>GNOME 3.4 Release Party</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=GNOME_3.4_Release_Party&amp;diff=3151"/>
		<updated>2012-04-05T04:47:48Z</updated>

		<summary type="html">&lt;p&gt;Pravs: കാര്യപരിപാടി&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;തിയ്യതി: 2012 ഏപ്രില്‍ 7&lt;br /&gt;
&lt;br /&gt;
സമയം: രാവിലെ പത്തു് മണി&lt;br /&gt;
&lt;br /&gt;
സ്ഥലം: എംഇഎസ് എഞ്ചിനീയറിങ്ങ് കോളേജ്, കുറ്റിപ്പുറം&lt;br /&gt;
&lt;br /&gt;
== കാര്യപരിപാടി ==&lt;br /&gt;
&lt;br /&gt;
ഗ്നോം പൊതുവായും പിന്നെ 3.4 ലെ പുതിയ വിശേഷങ്ങളേയും സാദിഖ് പരിചയപ്പെടുത്തില്ലേ?&lt;br /&gt;
&lt;br /&gt;
സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ്ങിനെ പരിചയപ്പെടുത്താന്‍ അനീഷും മനോജും തയ്യാറല്ലേ?&lt;br /&gt;
&lt;br /&gt;
മലയാളം കമ്പ്യൂട്ടിങ്ങിലെ പുതിയ വിശേഷങ്ങളെ സന്തോഷ് പരിചയപ്പെടുത്തില്ലേ?&lt;br /&gt;
&lt;br /&gt;
സ്വാതന്ത്യം, സോഫ്റ്റ‌വെയര്‍, അറിവു്, സംസ്കാരം, സമൂഹം എന്ന വിഷയത്തെപ്പറ്റി ഒരു ചര്‍ച്ചയ്ക്കു് ഞാന്‍ മുന്‍കൈയെടുക്കാം.&lt;br /&gt;
&lt;br /&gt;
ഗ്നോം 3.4 എന്ന പേരിലൊരു കേക്കും പിന്നെ കുറച്ചു് ബലൂണുകളും കിരണ്‍ സംഘടിപ്പിയ്കാമോ?&lt;br /&gt;
&lt;br /&gt;
മറ്റു് ആശയങ്ങളും വരട്ടെ.&lt;br /&gt;
&lt;br /&gt;
== സ്ഥലത്തെത്താന്‍ ==&lt;br /&gt;
* [http://osm.org/go/yn0Uv4gZp-- ഓപ്പണ്‍സ്ട്രീറ്റ്മാപ്പ്]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;googlemap version=&amp;quot;0.9&amp;quot; lat=&amp;quot;10.829365&amp;quot; lon=&amp;quot;76.023256&amp;quot; zoom=&amp;quot;18&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/googlemap&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== കൂടുതല്‍ വിവരങ്ങള്‍ക്ക് ==&lt;br /&gt;
&amp;lt;!--contact person details--&amp;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;
* മുഹമ്മദ് സാദിഖ് .പി.കെ&lt;br /&gt;
* നകുല്‍ എഴുത്തുപള്ളി&lt;br /&gt;
* കിരന്‍.വി.&lt;/div&gt;</summary>
		<author><name>Pravs</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=GNOME_3.4_Release_Party&amp;diff=3140</id>
		<title>GNOME 3.4 Release Party</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=GNOME_3.4_Release_Party&amp;diff=3140"/>
		<updated>2012-04-04T05:58:15Z</updated>

		<summary type="html">&lt;p&gt;Pravs: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;തിയ്യതി: 2012 ഏപ്രില്‍ 7&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;
&amp;lt;!--contact person details--&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
== പത്രക്കുറിപ്പ് == &lt;br /&gt;
&lt;br /&gt;
== പങ്കെടുക്കുന്നവര്‍ ==&lt;br /&gt;
* പ്രവീണ്‍ അരിമ്പ്രത്തൊടിയില്‍&lt;br /&gt;
* ഏനിക്കു താല്പര്യമുണ്ദ് : ധനന്‍ഞജയ് ബാലന്‍&lt;/div&gt;</summary>
		<author><name>Pravs</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=%E0%B4%A1%E0%B5%86%E0%B4%AC%E0%B4%BF%E0%B4%AF%E0%B4%A8%E0%B5%8D%E2%80%8D_%E0%B4%AE%E0%B4%B2%E0%B4%AF%E0%B4%BE%E0%B4%B3%E0%B4%82/%E0%B4%A1%E0%B5%86%E0%B4%AC%E0%B4%BF%E0%B4%AF%E0%B4%A8%E0%B5%8D%E2%80%8D_%E0%B4%87%E0%B4%A8%E0%B5%8D%E2%80%8D%E0%B4%B8%E0%B5%8D%E0%B4%B1%E0%B5%8D%E0%B4%B1%E0%B4%BE%E0%B4%B3%E0%B4%B1%E0%B4%BF%E0%B4%A8%E0%B5%8D%E0%B4%B1%E0%B5%86_%E0%B4%AE%E0%B4%B2%E0%B4%AF%E0%B4%BE%E0%B4%B3%E0%B4%82_%E0%B4%AA%E0%B4%B0%E0%B4%BF%E0%B4%AD%E0%B4%BE%E0%B4%B7&amp;diff=3130</id>
		<title>ഡെബിയന്‍ മലയാളം/ഡെബിയന്‍ ഇന്‍സ്റ്റാളറിന്റെ മലയാളം പരിഭാഷ</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=%E0%B4%A1%E0%B5%86%E0%B4%AC%E0%B4%BF%E0%B4%AF%E0%B4%A8%E0%B5%8D%E2%80%8D_%E0%B4%AE%E0%B4%B2%E0%B4%AF%E0%B4%BE%E0%B4%B3%E0%B4%82/%E0%B4%A1%E0%B5%86%E0%B4%AC%E0%B4%BF%E0%B4%AF%E0%B4%A8%E0%B5%8D%E2%80%8D_%E0%B4%87%E0%B4%A8%E0%B5%8D%E2%80%8D%E0%B4%B8%E0%B5%8D%E0%B4%B1%E0%B5%8D%E0%B4%B1%E0%B4%BE%E0%B4%B3%E0%B4%B1%E0%B4%BF%E0%B4%A8%E0%B5%8D%E0%B4%B1%E0%B5%86_%E0%B4%AE%E0%B4%B2%E0%B4%AF%E0%B4%BE%E0%B4%B3%E0%B4%82_%E0%B4%AA%E0%B4%B0%E0%B4%BF%E0%B4%AD%E0%B4%BE%E0%B4%B7&amp;diff=3130"/>
		<updated>2012-03-07T09:59:36Z</updated>

		<summary type="html">&lt;p&gt;Pravs: പരിഭാഷ ചെയ്യേണ്ട ഫയലുകള്‍ ചേര്‍ത്തു&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Reading Problems? Want to edit in malayalam? see [[help]] setting up malayalam fonts, input and rendering&lt;br /&gt;
&lt;br /&gt;
ഡെബിയനിലെ ചിത്രാധിഷ്ഠിതമായ ഇന്‍സ്റ്റോളറിന്റെ മലയാളം പരിഭാഷയുടെ പുരോഗതി ഇവിടെ നിരീക്ഷിയ്ക്കുന്നു.&lt;br /&gt;
&lt;br /&gt;
[[Image:ഇന്‍സ്റ്റലേഷന്‍ തുടങ്ങുന്നതിനുള്ള ഐച്ഛികങ്ങള്‍.jpg]] &lt;br /&gt;
&lt;br /&gt;
[http://blip.tv/file/get/Pravi-DebianInstallerBootOptions397.ogg ഇന്‍സ്റ്റലേഷന്‍ തുടങ്ങുന്നതിനുള്ള ഐച്ഛികങ്ങള്‍]&lt;br /&gt;
&lt;br /&gt;
==പരീക്ഷണ സഹായം സ്വാഗതം ചെയ്യുന്നു==&lt;br /&gt;
&lt;br /&gt;
ഡെബിയന്‍ ഇന്‍സ്റ്റോളര്‍ എച്ച് പതിപ്പു് മുതല്‍ മലയാളത്തിലും ലഭ്യമാണു്. പരിഭാഷ പരീക്ഷണത്തിനു് തയ്യാറായിരിക്കുന്നു. നിങ്ങള്‍ക്കു് qemu പോലുള്ള ഒരു എമുലേറ്ററിന്റെ സഹായത്തോടെ ഇതു് പരീക്ഷിക്കാവുന്നതാണു്. ആദ്യ പടിയായി [http://www.debian.org/devel/debian-installer/ ഡെബിയന്‍ ഇന്‍സ്റ്റോളറിന്റെ സൈറ്റില്‍] നിന്നും &#039;daily built images&#039; ലെ ഒരെണ്ണം ഡൌണ്‍ലോഡ് ചെയ്യുക.&lt;br /&gt;
&lt;br /&gt;
അതിനു ശേഷം താഴെ കൊടുത്തിരിക്കുന്ന ആജ്ഞകളുപയോഗിച്ചു് ഇതു് പരീക്ഷിക്കാവുന്നതാണു്.&lt;br /&gt;
&lt;br /&gt;
For GNU/Linux &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ qemu-img create -f qcow test.img 2G&lt;br /&gt;
Formating &#039;test.img&#039;, fmt=qcow, size=2097152 kB&lt;br /&gt;
$ qemu -hda test.img -cdrom mini.iso -boot d&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
For Windows (you have to specify the bios location also)&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ qemu-img create -f qcow test.img 2G&lt;br /&gt;
Formating &#039;test.img&#039;, fmt=qcow, size=2097152 kB&lt;br /&gt;
$ qemu -L . -hda test.img -cdrom mini.iso -boot d&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
http://www.oszoo.org/wiki/index.php/Category:Qemu_downloads ല്‍ നിന്നും qemu ഡൌണ്‍ലോഡ്  ചെയ്യാവുന്നതാണ്.&lt;br /&gt;
&lt;br /&gt;
*[http://www.flickr.com/photos/pravi/tags/debianinstallermalayalam/ Screenshots by Praveen]&lt;br /&gt;
&lt;br /&gt;
നിങ്ങള്‍ക്കു് ഉചിതമെന്ന് തോന്നുന്ന മാറ്റങ്ങള്‍ ഓരോ ലെവലിലേയും ഫയലുകളില്‍ നേരിട്ടു് വരുത്താവുന്നതാണു്. ഉദാഹരണത്തിനു് കൂടുതല്‍ വാക്യങ്ങളും ലെവല്‍1 ലായിരിക്കും. ഏതെല്ലാം ഭാഗങ്ങളാണ് ഓരോ ലെവലിലും ഉള്‍ക്കൊള്ളുന്നതു് എന്നറിയാനായി ആ ലെവലിലെ വിവരണം നോക്കുക. പരിഭാഷപ്പെടുത്തിയ ഫയലുകള്‍ debian-l10n-malayalam @ lists.debian.org എന്ന വിലാസത്തിലേയ്ക്കയയ്ക്കാം. ഈ സംരംഭത്തെക്കുറിച്ചുള്ള എന്തു് സംശയങ്ങള്‍ക്കും മുകളില്‍ പറഞ്ഞ വിലാസത്തിലേയ്ക്കെഴുതാം.&lt;br /&gt;
&lt;br /&gt;
നിങ്ങള്‍ക്കു് ചെയ്യാവുന്ന പരീക്ഷണങ്ങള്‍ താഴെ കൊടുക്കുന്നു:&lt;br /&gt;
# വ്യാകരണം&lt;br /&gt;
# സന്ദര്‍ഭത്തിനനുസരിച്ചുള്ള പരിഭാഷ (ഉദാഹരണത്തിന് no യ്ക്കു് - വേണ്ട, അല്ല എന്നീ പരിഭാഷകളുണ്ടാകാം)&lt;br /&gt;
# ഒരേ വാക്ക് തന്നെ പലയിടത്തും പല തരത്തില്‍ പരിഭാഷപ്പെടുത്തിയിട്ടുണ്ടാകാം (ഉദാഹരണത്തിന് setup - സജ്ജീകരിക്കുക, ഒരുക്കുക എന്നിങ്ങനെ പരിഭാഷപ്പെടുത്തിയിട്ടുണ്ടാകാം)&lt;br /&gt;
# ചില വാക്കുകളുടെ പരിഭാഷയേക്കാള്‍ ഉചിതം ഇംഗ്ലീഷ് വാക്കുകള്‍ തന്നെയാകാം &lt;br /&gt;
# ചില വാക്കുകളുടെ ഇംഗ്ലീഷ് വാക്കുകളേക്കാള്‍ ഉചിതം പരിഭാഷ തന്നെയാകാം (ഉദാഹരണത്തിനു് server - സേവകന്‍)&lt;br /&gt;
&lt;br /&gt;
പൊതുവായുള്ള പ്രശ്നങ്ങള്‍ http://groups.google.com/group/smc-discuss എന്ന വേദിയില്‍ ഉന്നയിക്കാവുന്നതാണു്. ഇതിനായി മുകളില്‍ കൊടുത്തിട്ടുള്ള കണ്ണിയില്‍ പോയി ചേര്‍ന്നതിനു് ശേഷം smc-discuss@googlegroups.com എന്ന വിലാസത്തില്‍ ഇമെയില്‍ അയച്ചാല്‍ മതിയാകും.&lt;br /&gt;
&lt;br /&gt;
==ഇന്‍സ്റ്റാളര്‍ പരിഭാഷ വിവരണം==&lt;br /&gt;
* [http://d-i.alioth.debian.org/doc/i18n/ എല്ലാ ലെവലുകളും ഉള്‍ക്കൊള്ളുന്ന വിവരണം]&lt;br /&gt;
* [http://anonscm.debian.org/viewvc/d-i/trunk/packages/po/ പരിഭാഷ ചെയ്യേണ്ട ഫയലുകള്‍]&lt;br /&gt;
&lt;br /&gt;
==പരിഭാഷ സ്ഥിതി വിവരം==&lt;br /&gt;
ഡെബിയന്‍ ഇന്‍സ്റ്റാളറിലെ [http://d-i.alioth.debian.org/l10n-stats/translation-status.html എല്ലാ ഭാഷകളുടേയും സ്ഥിതിവിവരം]&lt;br /&gt;
&lt;br /&gt;
* ലെവല്‍1 - [http://d-i.debian.org/l10n-stats/level1/ml.txt svn status] &lt;br /&gt;
* ലെവല്‍2 - [http://d-i.debian.org/l10n-stats/level2/ml.txt svn status] &lt;br /&gt;
* ലെവല്‍3 - [http://d-i.debian.org/l10n-stats/level3/ml.txt svn status] &lt;br /&gt;
* ലെവല്‍5 - yet to start (most of them are commandline only)&lt;br /&gt;
* [[/മാന്വല്‍| ഇന്സ്റ്റാളേഷന്‍ മാന്വല്‍]] - started&lt;br /&gt;
&lt;br /&gt;
{{debian-installer-levels_ml}}&lt;/div&gt;</summary>
		<author><name>Pravs</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=Meeting/IRC/2011Jan20&amp;diff=2120</id>
		<title>Meeting/IRC/2011Jan20</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=Meeting/IRC/2011Jan20&amp;diff=2120"/>
		<updated>2011-01-20T17:04:25Z</updated>

		<summary type="html">&lt;p&gt;Pravs: final updates&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
*** You have joined channel #smc-project  [20:58]&lt;br /&gt;
*** Topic for #smc-project: എന്റെ കമ്പ്യൂട്ടറിനു് എന്റെ ഭാഷ http://smc.org.in ||&lt;br /&gt;
    Planet SMC: http://planet.smc.org.in  || Work in Progress:&lt;br /&gt;
    http://silpa.smc.org.in || ചാമ്പ പ്രൊജക്ട് http://www.chambaproject.in&lt;br /&gt;
*** #smc-project: topic set by&lt;br /&gt;
    santhosh!73f89ac4@gateway/web/freenode/ip.115.248.154.196, 11:23:15&lt;br /&gt;
    2010/11/08&lt;br /&gt;
*** Users on #smc-project: j4v4m4n santhosh ershad apeter Vivek Polar| CIA-98&lt;br /&gt;
    @ChanServ&lt;br /&gt;
*** #smc-project modes: +nst&lt;br /&gt;
*** #smc-project was created on ശനി 2007/10/13 08:54:20  IST&lt;br /&gt;
*** ershad (~ershad@14.194.66.128) has quit: Ping timeout: 250 seconds&lt;br /&gt;
*** jinsbond007 (~jinsbond0@14.99.10.217) has joined channel #smc-project&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; hope I am not late  [20:59]&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; j4v4m4n: apeter santhosh around?  [21:00]&lt;br /&gt;
&amp;lt;santhosh&amp;gt; j4v4m4n: എന്താ പരിപാടി?&lt;br /&gt;
&amp;lt;apeter&amp;gt; hello all&lt;br /&gt;
&amp;lt;apeter&amp;gt; good to see atleast a few :)&lt;br /&gt;
&amp;lt;apeter&amp;gt; need to conduct FUEL for Malayalam and hence thought to have a&lt;br /&gt;
	 discussion about it  [21:01]&lt;br /&gt;
&amp;lt;santhosh&amp;gt; ഇത്രേം പേരു മത്യോ?&lt;br /&gt;
&amp;lt;apeter&amp;gt; atleast lets discuss things and then send the details to list  [21:02]&lt;br /&gt;
&amp;lt;santhosh&amp;gt; http://wiki.smc.org.in/Glossary&lt;br /&gt;
&amp;lt;apeter&amp;gt; j4v4m4n, ?&lt;br /&gt;
*** qwebirc45842 (75c98191@gateway/web/freenode/ip.117.201.129.145) has joined&lt;br /&gt;
    channel #smc-project&lt;br /&gt;
&amp;lt;apeter&amp;gt; santhosh, we have already discussed and planned to have the&lt;br /&gt;
	 FUEL... :)&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; santhosh: jinsbond007 apeter നമസ്കാരം  [21:03]&lt;br /&gt;
&amp;lt;apeter&amp;gt; നമസ്ക്കാരം&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; j4v4m4n: ah finally, നമസ്കാരം :)&lt;br /&gt;
&amp;lt;apeter&amp;gt; now things to discuss is when to have, who all to be invited for this&lt;br /&gt;
	 meeting? I mean any language experts ... &lt;br /&gt;
&amp;lt;apeter&amp;gt; what say?  [21:04]&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; apeter: ഏതെങ്കലും സ്ഥലവും സമയവും നിര്‍ദ്ദേശിയ്ക്കൂ&lt;br /&gt;
&amp;lt;apeter&amp;gt; j4v4m4n, jinsbond007 santhosh I was thinking whether we can have this&lt;br /&gt;
	 during NITC meet?  [21:05]&lt;br /&gt;
ERC&amp;gt; /nick ജാവാമാന്‍&lt;br /&gt;
&amp;lt;apeter&amp;gt; is it possible?&lt;br /&gt;
*** ജാവാമ is an&lt;br /&gt;
    erroneous nickname&lt;br /&gt;
&amp;lt;apeter&amp;gt; what do you guys think?&lt;br /&gt;
&amp;lt;santhosh&amp;gt; apeter: physical meaning required?&lt;br /&gt;
&amp;lt;apeter&amp;gt; santhosh, yes&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; apeter: I will be in NITC from 31st Jan to 6th Feb&lt;br /&gt;
* apeter has requested Rajesh to join&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; santhosh: yes, especially if we are onvolving language experts&lt;br /&gt;
								        [21:06]&lt;br /&gt;
* apeter has requested Rajesh to join this online meeting&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; santhosh: we can keep irc open as an option for people who cannot&lt;br /&gt;
	  make it physically  [21:07]&lt;br /&gt;
&amp;lt;apeter&amp;gt; j4v4m4n, I agree with you :)&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; j4v4m4n: santhosh when is fossmeet?  [21:08]&lt;br /&gt;
&amp;lt;santhosh&amp;gt; apeter: j4v4m4n, can we baseline our glossary? or do we need to get&lt;br /&gt;
	   comments on the entries in offline way?&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; I don&#039;t remember in feb or march?&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; apeter: but Feb first week would be too soon for arranging a meeting&lt;br /&gt;
	  of this sort&lt;br /&gt;
&amp;lt;apeter&amp;gt; jinsbond007, 4th-6th Feb&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; ok&lt;br /&gt;
&amp;lt;apeter&amp;gt; j4v4m4n, we shall give it a try..&lt;br /&gt;
&amp;lt;santhosh&amp;gt; such as, getting the comments in printed copies&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; anyway, I won&#039;t be available for any physical meetings due to my&lt;br /&gt;
	      busy schedule for I think some 4 months  [21:09]&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; jinsbond007: we can do both as I mentioned&lt;br /&gt;
&amp;lt;apeter&amp;gt; j4v4m4n, if its too much of inconvenience we shall postpond to 2nd or&lt;br /&gt;
	 3rd week Feb&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; jinsbond007: physical component has to be there&lt;br /&gt;
*** rajeshr (~rranjan@117.195.109.90) has joined channel #smc-project  [21:10]&lt;br /&gt;
&amp;lt;santhosh&amp;gt; j4v4m4n: btw, by language experts, ആരെയാ ഉദ്ദേശിക്കുന്നതു്? കമ്പ്യൂട്ടറില്‍&lt;br /&gt;
	   മലയാളം ആദ്യമായി കാണുന്നവര്‍ക്ക് പ്രായോഗികമായി നിര്‍ദ്ദേശങ്ങള്‍ തരാന്‍ കഴിയുമോ?  [21:11]&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; Hi Everybody&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; rajeshr: hi&lt;br /&gt;
&amp;lt;santhosh&amp;gt; the contexts are completely different&lt;br /&gt;
&amp;lt;apeter&amp;gt; hi rajeshr &lt;br /&gt;
&amp;lt;rajeshr&amp;gt; Sorry for late!&lt;br /&gt;
&amp;lt;apeter&amp;gt; rajeshr, no worries :)&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; j4v4m4n: apeter first these people should know the translation&lt;br /&gt;
	      and why we do it the way we do&lt;br /&gt;
&amp;lt;santhosh&amp;gt; I am not sayin that they should know how to use computers in&lt;br /&gt;
	   malayalam&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; santhosh: but most of them would have familiarity with computers&lt;br /&gt;
&amp;lt;santhosh&amp;gt; but minimal exposure and introduction is required right?  [21:12]&lt;br /&gt;
&amp;lt;apeter&amp;gt; rajeshr, maybe you can give an idea about FUEL. How do you normally&lt;br /&gt;
	 conduct the meet etc etc etc&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; j4v4m4n: the familiarity I don&#039;t think is not to be with&lt;br /&gt;
	      computer but the malayalam interface in computer and who are the&lt;br /&gt;
	      in tented audience&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; okay apeter!  [21:13]&lt;br /&gt;
*** santhosh (~santhosh@117.202.143.56) has left channel #smc-project:&lt;br /&gt;
    &amp;quot;Leaving.&amp;quot;  [21:14]&lt;br /&gt;
*** santhosh (~santhosh@117.202.143.56) has joined channel #smc-project&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; jinsbond007: santhosh we should have normal computer users too, the&lt;br /&gt;
	  idea is to get some kind of acceptance when people see experts are&lt;br /&gt;
	  there in the list, though I agree, it may not be necessary&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; As we are from translation/localization filed we know some problem&lt;br /&gt;
	  during trans&lt;br /&gt;
*** santhosh (~santhosh@117.202.143.56) has quit: Quit: Leaving.&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; one is of standadization and consistency&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; the idea is computer users, who are not net savvy and would not be&lt;br /&gt;
	  able to come to an irc meeting for whatever reason should be&lt;br /&gt;
	  involved  [21:15]&lt;br /&gt;
*** santhosh (~santhosh@117.202.143.56) has joined channel #smc-project&lt;br /&gt;
*** sebinaj (~sebinaj@117.199.11.154) has joined channel #smc-project&lt;br /&gt;
&amp;lt;santhosh&amp;gt; disconnected.. did somebody answer my qn? sorry&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; j4v4m4n: I am not against involving them, in fact most of the&lt;br /&gt;
	      time, we does consult people like hussain sir off the list&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; sebinaj: welcome&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; sebinaj: hi&lt;br /&gt;
&amp;lt;sebinaj&amp;gt; hi&lt;br /&gt;
&amp;lt;apeter&amp;gt; hi sebinaj :)  [21:16]&lt;br /&gt;
&amp;lt;sebinaj&amp;gt; was struggling with the lost passphrase :D&lt;br /&gt;
&amp;lt;sebinaj&amp;gt; problems of registering a nick&lt;br /&gt;
&amp;lt;sebinaj&amp;gt; can i read the log?&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; jinsbond007: not just hussain sir, anyone interested in seeing&lt;br /&gt;
	  Malayalam in computer should be given a chance to say their opinion&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; sebinaj: you could have logged in without password :)  [21:17]&lt;br /&gt;
*** ershad (~ershad@14.194.66.128) has joined channel #smc-project&lt;br /&gt;
&amp;lt;santhosh&amp;gt; j4v4m4n: thats what. we cannot get words contribution from people&lt;br /&gt;
	   who are very new to computers&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; j4v4m4n: anyway I guess we both got the point :)&lt;br /&gt;
* j4v4m4n copying minutes on the wiki&lt;br /&gt;
&amp;lt;santhosh&amp;gt; and even if they give it will be out of context&lt;br /&gt;
&amp;lt;santhosh&amp;gt; what I would suggest is this  [21:18]&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; my point was to use their expertise effectively, we should be&lt;br /&gt;
	      able to give them an idea of what the interface is&lt;br /&gt;
&amp;lt;santhosh&amp;gt; the FUEL program should have 2 parts&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; and who are the supposed audience for the Malayalam interface&lt;br /&gt;
&amp;lt;santhosh&amp;gt; one is a training(introduction) to all participants. say we conduct&lt;br /&gt;
	   in an arts college  [21:19]&lt;br /&gt;
&amp;lt;santhosh&amp;gt; in the second part, or as part of the traning, we show the&lt;br /&gt;
	   interface to them. ask them to use&lt;br /&gt;
&amp;lt;santhosh&amp;gt; get their user experience suggestion&lt;br /&gt;
&amp;lt;santhosh&amp;gt; I hope once they see applications in malayalam, naturally comments&lt;br /&gt;
	   will come&lt;br /&gt;
&amp;lt;apeter&amp;gt; rajeshr, any comments ?&lt;br /&gt;
&amp;lt;santhosh&amp;gt; rather than giving a word list  [21:20]&lt;br /&gt;
&amp;lt;santhosh&amp;gt; in that way, both of us can benefit&lt;br /&gt;
&amp;lt;santhosh&amp;gt; we get a localized application reviewed&lt;br /&gt;
&amp;lt;santhosh&amp;gt; and additions to our glossary/fule  [21:21]&lt;br /&gt;
&amp;lt;santhosh&amp;gt; they get training&lt;br /&gt;
&amp;lt;santhosh&amp;gt; comments?&lt;br /&gt;
*** anoop (0e60120b@gateway/web/freenode/ip.14.96.18.11) has joined channel&lt;br /&gt;
    #smc-project&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; minutes http://wiki.smc.org.in/Meeting/IRC/2011Jan20  [21:22]&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; apeter, I think translation of anything cannot be left for normal&lt;br /&gt;
	  audience, they can have several suggestions&lt;br /&gt;
&amp;lt;santhosh&amp;gt; rajeshr: correct&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; so i Think first we should sit with passionate localisers,&lt;br /&gt;
	  translators, lingusits, journalist and create a good interface&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; rajeshr: if we are doing translations for them, they should&lt;br /&gt;
	      actually be involved na?&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; anoop: hi  [21:23]&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; I don&#039;t think we have any problem in involving them, but out of one&lt;br /&gt;
	  workshop like FUEL we can come with a list where most of the people&lt;br /&gt;
	  can be agrre  [21:24]&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; like what we did for : http://svn.fedorahosted.org/svn/fuel/&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; https://fedorahosted.org/fuel/&lt;br /&gt;
&amp;lt;anoop&amp;gt; hii&lt;br /&gt;
&amp;lt;apeter&amp;gt; hello anoop   [21:25]&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; santhosh: we started our glossary from gnome glossary, but gnome&lt;br /&gt;
	  glossary was never maintained, so we were essentially forking the&lt;br /&gt;
	  glossary&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; j4v4m4n, FUEL is not exactly a glossary...its strings coming out of&lt;br /&gt;
	  3-4 levels of menus from major apps  [21:26]&lt;br /&gt;
&amp;lt;santhosh&amp;gt; j4v4m4n: our aim is better interface, right? discussing around a&lt;br /&gt;
	   wordlist will be completely out of context. so introduce malayalam&lt;br /&gt;
	   desktop the lang experts, get their feedback&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; santhosh: with actively maintained fuel list, shared among many&lt;br /&gt;
	  languages, we can have an uptodate glossary, my earlier lack of&lt;br /&gt;
	  interest to fuel was because I thought we could keep gnome glossary&lt;br /&gt;
	  updated, but that effort did not reach anywhere&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; so it is one type of review as well&lt;br /&gt;
&amp;lt;santhosh&amp;gt; naturally that will become our corrected commonly used translations&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; we have selected strings from pidgin, firefox, email clients,&lt;br /&gt;
	  OpenOffice, gdm, menus etc and combined in a list!  [21:27]&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; santhosh: yes, I agree that is important, but which should be the&lt;br /&gt;
	  starting point? a commnly used words list or some localised app?&lt;br /&gt;
								        [21:28]&lt;br /&gt;
&amp;lt;santhosh&amp;gt; rajeshr: in previous fuel meetings, how was it done? preparing a&lt;br /&gt;
	   word list and discussing one by one? or was that meeting conducted&lt;br /&gt;
	   by introducing those applications and current translation to&lt;br /&gt;
	   participants?&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; santhosh: we need both  [21:29]&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; word list is already there:&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; http://svn.fedorahosted.org/svn/fuel/fuel_pot/&lt;br /&gt;
&amp;lt;santhosh&amp;gt; j4v4m4n: I would suggest some commonly used localized application&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; santhosh: ok so lets do that first in a meeting - just to get them&lt;br /&gt;
	  started and then work on the word list&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; santhosh, we sat together for 2 days and discussded one by one &lt;br /&gt;
								        [21:30]&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; j4v4m4n: I will agree with santhosh, they need to see where the&lt;br /&gt;
	      string goes   [21:31]&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; eg. https://fedorahosted.org/fuel/wiki/fuel-maithili&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; rajeshr: lets do an initial introductory meeting, and then fuel&lt;br /&gt;
	  list, what say?  [21:32]&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; santhosh, j4v4m4n, jinsbond007: we have already conetxt for the&lt;br /&gt;
	  strings :&lt;br /&gt;
	  https://fedorahosted.org/fuel/attachment/wiki/attachments/Fuel_context.ods?format=raw&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; j4v4m4n, its upon ml community how you can go&lt;br /&gt;
&amp;lt;apeter&amp;gt; I agree with j4v4m4n   [21:33]&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; rajeshr: that has good context information and not a wordlist&lt;br /&gt;
								        [21:34]&lt;br /&gt;
ERC&amp;gt; /not just a wordlist/&lt;br /&gt;
*** not: Unknown command&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; j4v4m4n,&lt;br /&gt;
	  http://svn.fedorahosted.org/svn/fuel/fuel_pot/fuel_en_US.pot&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; ^^&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt;  /not just a wordlis/&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; rajeshr: yes we can use spreadsheet for discussion adn po for entry&lt;br /&gt;
								        [21:35]&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; this is word list and that ods file is context for that one&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; rajeshr: the work is great kudos :)&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; thanks jinsbond007 !  [21:36]&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; http://translate.sourceforge.net/wiki/guide/existing_glossaries&lt;br /&gt;
&amp;lt;santhosh&amp;gt; I think a spreadsheet is not enough. The problem is the proposed&lt;br /&gt;
	   participants will not get any idea what is is meant by this&lt;br /&gt;
	   File-&amp;gt;New-&amp;gt;... etc&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; this project consider FUEL project as a terminology dev project&lt;br /&gt;
&amp;lt;santhosh&amp;gt; we cannot do such assumption about their knowledge about the&lt;br /&gt;
	   applications. Live experience with the applications or sitting with&lt;br /&gt;
	   somebody who demo it is required  [21:37]&lt;br /&gt;
&amp;lt;santhosh&amp;gt; sebinaj: ?&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; santhosh: that I agree&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; they need to see the application&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; sebinaj: ershad anoop any comments?&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; santhosh, right we shd give demo  [21:38]&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; we did in Hindi:&lt;br /&gt;
	  https://fedorahosted.org/fuel/wiki/fuel-hindi-photovoice&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; santhosh: yes, so lets do an intital session introducing people to&lt;br /&gt;
	  localised environments and ask for live feedback and a second&lt;br /&gt;
	  session for fuel list&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; j4v4m4n: in a single day?  [21:39]&lt;br /&gt;
&amp;lt;ershad&amp;gt; jinsbond007: I lost track in between and i&#039;m yet to understand what&lt;br /&gt;
	 FUEL really is and how it works :)&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; jinsbond007: no many days apart&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; ok&lt;br /&gt;
&amp;lt;santhosh&amp;gt; &amp;quot;Outline -  Open office -Oocalc – Data – Outline. You can create an&lt;br /&gt;
	   outline of your data.&amp;quot;&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; jinsbond007: first in introduction, I can assume many would not be&lt;br /&gt;
	  using a malayalam interface&lt;br /&gt;
&amp;lt;santhosh&amp;gt; unless we demo it, this does not make any sense&lt;br /&gt;
*** santhosh (~santhosh@117.202.143.56) has left channel #smc-project:&lt;br /&gt;
    &amp;quot;Leaving.&amp;quot;  [21:40]&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; jinsbond007: it would act as a kind of trigger and when we say they&lt;br /&gt;
	  can chnage translation they don&#039;t like it would be channelising&lt;br /&gt;
	  their frustration or unhappiness to positively engaging with&lt;br /&gt;
	  community to improve translation quality&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; santhosh: the problem is again an outline comes from some other&lt;br /&gt;
	      application&lt;br /&gt;
&amp;lt;anoop&amp;gt; now i am reading about FUEL&lt;br /&gt;
*** santhosh (~santhosh@117.202.143.56) has joined channel #smc-project&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; j4v4m4n: the thing we should not forget is, its not a fancy&lt;br /&gt;
	      project but for increasing accessibility   [21:41]&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; j4v4m4n: they should understand who the target audience is :)&lt;br /&gt;
								        [21:42]&lt;br /&gt;
*** sanal_madatheth (~sanalkuma@117.196.157.243) has joined channel&lt;br /&gt;
    #smc-project&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; j4v4m4n: after the first workshop, then another workshop to&lt;br /&gt;
	      teach them how to effectively channelize their frustration?&lt;br /&gt;
								        [21:43]&lt;br /&gt;
*** qwebirc45842 (75c98191@gateway/web/freenode/ip.117.201.129.145) has quit:&lt;br /&gt;
    Ping timeout: 265 seconds&lt;br /&gt;
&amp;lt;sebinaj&amp;gt; i didn&#039;t knew, what fuel is. was reading about it.   [21:44]&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; sebinaj: hope got an idea, the thing is, you don&#039;t really need&lt;br /&gt;
	      to know what fuel is, its more about how we should go about with&lt;br /&gt;
	      translations  [21:45]&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; sebinaj: fuel is a way to standardize the translations&lt;br /&gt;
&amp;lt;sebinaj&amp;gt; hmm... thanks jinsbond007  [21:46]&lt;br /&gt;
&amp;lt;santhosh&amp;gt; can somebody update the logs, i missed some parts&lt;br /&gt;
&amp;lt;anoop&amp;gt; fuel is way to standardize the localized strings in different&lt;br /&gt;
	apps. right?  [21:47]&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; jinsbond007: first workshop would cover how to channelise part - ie,&lt;br /&gt;
	  get involved with the community&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; sebinaj, pl visit this article as well:&lt;br /&gt;
	  http://www.linux.com/archive/feature/149038&lt;br /&gt;
&amp;lt;santhosh&amp;gt; j4v4m4n: +1&lt;br /&gt;
&amp;lt;santhosh&amp;gt; j4v4m4n: so that should introduce the localized desktop to them&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; j4v4m4n: second is actually translation workshop&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; santhosh: sanal_madatheth minutes here&lt;br /&gt;
	  http://wiki.smc.org.in/Meeting/IRC/2011Jan20  [21:48]&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; jinsbond007: first meet would cover introduction and translation&lt;br /&gt;
	  workshops, second one is then sitting for fuel wordlist  [21:49]&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; jinsbond007: santhosh by second meeting they should have an idea&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; first meeting should demo all applications used in fule list and&lt;br /&gt;
	  encourage people to use Malayalam interface in their home systems,&lt;br /&gt;
	  and for actual fule wordlist discussion we should only invite people&lt;br /&gt;
	  who actually use a Malayalam interface or who have not used computer&lt;br /&gt;
	  yet  [21:50]&lt;br /&gt;
&amp;lt;santhosh&amp;gt; j4v4m4n: but practically, this will work only if we can conduct two&lt;br /&gt;
	   such meetings in same place with same audience  [21:51]&lt;br /&gt;
&amp;lt;santhosh&amp;gt; so how to go about that  [21:52]&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; santhosh: yes, only that will be useful&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; santhosh: I was just going to say that :)&lt;br /&gt;
&amp;lt;apeter&amp;gt; lets have the first meeting at nitc&lt;br /&gt;
&amp;lt;apeter&amp;gt; will that work?&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; it will work if we use the same host to some extent I guess&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; apeter: it should work, but we need to publicise and get maximum&lt;br /&gt;
	  people to participate  [21:53]&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; but still getting same audience will be difficult, but not&lt;br /&gt;
	      impossible&lt;br /&gt;
&amp;lt;santhosh&amp;gt; if we can conduct such program in association with an &amp;quot;arts&lt;br /&gt;
	   college&amp;quot;, i think it would work&lt;br /&gt;
&amp;lt;apeter&amp;gt; j4v4m4n, we can.. we have another two weeks in hand&lt;br /&gt;
&amp;lt;santhosh&amp;gt; malayalam dept. of an arts college&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; j4v4m4n: especially people who use malayalam interface and not&lt;br /&gt;
	      used computer  [21:54]&lt;br /&gt;
&amp;lt;apeter&amp;gt; santhosh, any college suggestion?&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; santhosh: then we need to think about infrastructure too&lt;br /&gt;
&amp;lt;apeter&amp;gt; we can invite them to nitc for the initial meeting&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; what do we need to conduct work shop and all&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; jinsbond007: for second part, the only requirement is people who are&lt;br /&gt;
	  already using Malayalam interface, that means even if some people&lt;br /&gt;
	  missed first meeting or some people started using Malayalam&lt;br /&gt;
	  interface after first meeting, they can still come for second&lt;br /&gt;
	  meeting, only condition for second meeting is, we won&#039;t entertain&lt;br /&gt;
	  any new Malayalam interface users at all&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; j4v4m4n: ok  [21:55]&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; jinsbond007: I mean those who would see a Malayalam interface for&lt;br /&gt;
	  the first time at the second meeting is a no no  [21:56]&lt;br /&gt;
&amp;lt;santhosh&amp;gt; we should see some colleges around calicut &lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; jinsbond007: but if they have never used a computer, that should be&lt;br /&gt;
	  fine&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; santhosh: the college in calicut, where we conducted a camp?&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; what was it devagiri college?&lt;br /&gt;
&amp;lt;apeter&amp;gt; j4v4m4n, you will be there from 30th right? will you be able to&lt;br /&gt;
	 invite malayalam dept from any arts college in calicut?&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; santhosh: fossmeet advantage is that, they are already getting a&lt;br /&gt;
	  good crowd assembled, why not use it? Hari Vishnu also can join us&lt;br /&gt;
	  in NITC  [21:57]&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; apeter: I will be busy with Chamba project, I can only spare time&lt;br /&gt;
	  for actual meeting&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; apeter: Sooraj Kenoth and Mahesh Mangalat should be able to help&lt;br /&gt;
	  with that  [21:58]&lt;br /&gt;
&amp;lt;apeter&amp;gt; j4v4m4n, okay will get that done then  [21:59]&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; so we agreed on it?&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; apeter: can you summarize?&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; apeter: talk to fossmeet folks if they can give us one session&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; we can move to next item then :)&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; apeter: you know VA Amarnath, right?  [22:00]&lt;br /&gt;
&amp;lt;apeter&amp;gt; j4v4m4n, okay. will do that tomorrow&lt;br /&gt;
&amp;lt;apeter&amp;gt; j4v4m4n, no I dont :(&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; apeter: no problem just mail them, keep me in cc&lt;br /&gt;
&amp;lt;apeter&amp;gt; j4v4m4n, sure will do that  [22:01]&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; apeter: send it to fossmeet list&lt;br /&gt;
&amp;lt;apeter&amp;gt; alrught&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; apeter: ok summarise the plan&lt;br /&gt;
&amp;lt;apeter&amp;gt; j4v4m4n, send mail to smc, fossmeet on the plan to conduct an&lt;br /&gt;
	 introductory meeting for FUEL during nitc  [22:02]&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; during fossmeet in nitc&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; :)&lt;br /&gt;
&amp;lt;apeter&amp;gt; :(  [22:03]&lt;br /&gt;
&amp;lt;apeter&amp;gt; on last day - 6th?&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; FUEL for Malayalam&lt;br /&gt;
&amp;lt;apeter&amp;gt; yes&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; and its not really FUEL for Malayalam we might discuss, &lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; it will be about translation and interfaces and methodology we&lt;br /&gt;
	      follow  [22:04]&lt;br /&gt;
&amp;lt;apeter&amp;gt; also invite a malayalam department from a good arts college in&lt;br /&gt;
	 Calicut&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; Malayalm translation quality is better than FUEL for Malayalam&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; find out if they can host us for the second session&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; translation quality, review, community process, getting involved&lt;br /&gt;
&amp;lt;apeter&amp;gt; jinsbond007, you mean with the college?  [22:05]&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; apeter: yeah&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; jinsbond007: lets think about second session later&lt;br /&gt;
&amp;lt;apeter&amp;gt; jinsbond007, okay&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; j4v4m4n: ok&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; jinsbond007: may be even in another place&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; apeter: j4v4m4n you see how important is to summarize :)&lt;br /&gt;
&amp;lt;apeter&amp;gt; jinsbond007, true :)&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; jinsbond007: hmm&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; nobody has any other comment?&lt;br /&gt;
*** sanalmadatheth (~sanalkuma@117.196.157.243) has joined channel&lt;br /&gt;
    #smc-project&lt;br /&gt;
*** sanal_madatheth (~sanalkuma@117.196.157.243) has quit: Quit: Leaving&lt;br /&gt;
								        [22:06]&lt;br /&gt;
*** sanalmadatheth (~sanalkuma@117.196.157.243) has quit: Read error:&lt;br /&gt;
    Connection reset by peer&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; we need to create a press release&lt;br /&gt;
&amp;lt;apeter&amp;gt; oh yes&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; may be posters too&lt;br /&gt;
* jinsbond007 interestingly me who haven&#039;t done a single translation so far is&lt;br /&gt;
  giving lot of suggestions&lt;br /&gt;
&amp;lt;apeter&amp;gt; okay  [22:07]&lt;br /&gt;
* j4v4m4n anyone who uses translated interface can give good suggestions&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; sebinaj: can you help with a press release?&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; ershad: anoop poster?  [22:08]&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; sebinaj: ershad anoop ping?  [22:09]&lt;br /&gt;
&amp;lt;ershad&amp;gt; j4v4m4n: Sure, I will try.&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; ershad: thanks, get help from people on smc list&lt;br /&gt;
*** santhosh (~santhosh@117.202.143.56) has quit: Quit: Leaving.  [22:10]&lt;br /&gt;
*** santhosh (~santhosh@117.202.143.56) has joined channel #smc-project&lt;br /&gt;
&amp;lt;apeter&amp;gt; hope we have covered everything  [22:11]&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; I have a little other translation related issue to discuss&lt;br /&gt;
								        [22:12]&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; apeter: I guess so&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; its of gnu.org translations&lt;br /&gt;
&amp;lt;apeter&amp;gt; please go ahead&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; jinsbond007: shoot&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; I did a review of 17 or so articles available, and put it up on&lt;br /&gt;
	      gitorious, back in november&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; jinsbond007: I think we can include that also in the session, if&lt;br /&gt;
	  time permits ie, optionally&lt;br /&gt;
&amp;lt;santhosh&amp;gt; before that, j4v4m4n we are yet to get our access to  www-ml.. no&lt;br /&gt;
	   reply from savannah guys  [22:13]&lt;br /&gt;
&amp;lt;apeter&amp;gt; rajeshr, so here we go... Thanks a lot for your time :)&lt;br /&gt;
&amp;lt;ershad&amp;gt; j4v4m4n: Ok etta.&lt;br /&gt;
&amp;lt;apeter&amp;gt; (guys sorry to interrupt)&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; santhosh: that we will tackle separately&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; thanks apeter :-)   [22:14]&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; thanks a lot to all!&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; santhosh: we should go on #savannah and discuss&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; I think its important that we push the updated translations&lt;br /&gt;
	      upstream&lt;br /&gt;
&amp;lt;santhosh&amp;gt; rajeshr: thanks!&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; rajeshr: thanks :)&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; jinsbond007: yes&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; http://gitorious.org/www-ml-clone&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; First time I came here, great community&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; has the current translation&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; I learnt lot!&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; santhosh, j4v4m4n thanks to you as well!  [22:15]&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; jinsbond007, thanks!&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; rajeshr: great to have you here, thanks!&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; sebinaj: there?&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; jinsbond007: let him reply in email or let someone else volunteer&lt;br /&gt;
								        [22:16]&lt;br /&gt;
&amp;lt;apeter&amp;gt; rajeshr, see you tomorrow :)&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; lets call it a meeting folks, I have to go and cook!&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; okay ani!&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; bye all!&lt;br /&gt;
*** rajeshr (~rranjan@117.195.109.90) has quit: Quit: अहम् गच्छामि  [22:17]&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; j4v4m4n: santhosh the thing is, even in last meeting we decided&lt;br /&gt;
	      to do the review and typesetting :)&lt;br /&gt;
&amp;lt;apeter&amp;gt; j4v4m4n, thank you. see you tomorrow&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; jinsbond007: for www-ml lets go to #savannh and discuss&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; now its 3 nd half months, so shouldn&#039;t we start talking about&lt;br /&gt;
	      the typesetting and book?&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; jinsbond007: ok lets talk then  [22:18]&lt;br /&gt;
&amp;lt;santhosh&amp;gt; jinsbond007: how many we have?&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; what articles?&lt;br /&gt;
&amp;lt;santhosh&amp;gt; sebinaj had offered some help in review/edit last time&lt;br /&gt;
&amp;lt;santhosh&amp;gt; jinsbond007: yes&lt;br /&gt;
*** ershad (~ershad@14.194.66.128) has quit: Quit: Good night :)  [22:19]&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; santhosh: 17&lt;br /&gt;
&amp;lt;santhosh&amp;gt; jinsbond007: we had some important articles not translated (IIRC)&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; santhosh: yes, that&#039;s what I was writing  [22:20]&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; how should we go about selecting articles?&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; should we do more translation?&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; jinsbond007: lets ask for volunteeres for individual articles one at&lt;br /&gt;
	  a time&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; jinsbond007: send the current list to the list and ask for&lt;br /&gt;
	  suggestions&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; j4v4m4n: ok  [22:21]&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; I think I did it two months ago :) will resent the mail once&lt;br /&gt;
	      again&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; jinsbond007: :(  [22:22]&lt;br /&gt;
&amp;lt;santhosh&amp;gt; jinsbond007: I think if we have articles list ready we can type&lt;br /&gt;
	   set. we have പ്രസാധനക്കുറിപ്പ്, അവതാരിക...all are ready&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; jinsbond007: will discuss it in calicut meeting as well&lt;br /&gt;
&amp;lt;santhosh&amp;gt; TT Srikumar had written that&lt;br /&gt;
&amp;lt;santhosh&amp;gt; and it even came in Madhyamam weekly that time  [22:23]&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; santhosh: I remember, and just read it again today on the book&lt;br /&gt;
	      shyam typeset&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; jinsbond007: lets start the tetex/lyx file in our git, if no one&lt;br /&gt;
	  willing to work with another format&lt;br /&gt;
&amp;lt;santhosh&amp;gt; j4v4m4n: tex is enough.  [22:24]&lt;br /&gt;
&amp;lt;santhosh&amp;gt; and jinsbond007 got it working perfectly in his laptop&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; santhosh: then you do it :) I&#039;m comfortable with lyx - it is latex&lt;br /&gt;
	  frontend&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; santhosh: I am facing some issues with the hyphenation, some&lt;br /&gt;
	      things are going out of bound&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; checking it out  [22:25]&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; but other wise, I am getting all rendering right&lt;br /&gt;
&amp;lt;santhosh&amp;gt; if tex is not working,  pypdflib is there :p&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; lyx I haven&#039;t tried, heard its easier to use than tex&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; lemme see, shyam got perfect typesetting, so its not impossible&lt;br /&gt;
	      :)&lt;br /&gt;
&amp;lt;santhosh&amp;gt; jinsbond007: that did not had hyphenation  [22:26]&lt;br /&gt;
&amp;lt;santhosh&amp;gt; j4v4m4n: at office or at home?  [22:27]&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; lyx is whyswig&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; santhosh: office&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; wysiwyg&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; jinsbond007: ok choose your format and start typesetting in git&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; I have to go now  [22:28]&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; Ich bin hungry!&lt;br /&gt;
&amp;lt;apeter&amp;gt; :)&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; j4v4m4n: the thing is, my blood count is up :)&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; so will get admitted soon and will be back only after 10 days&lt;br /&gt;
&amp;lt;santhosh&amp;gt; no hurry jinsbond007&lt;br /&gt;
&amp;lt;apeter&amp;gt; jinsbond007, take care :)&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; most probably on Monday next cycle will start  [22:29]&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; so if some can review current translation in the mean time, it&lt;br /&gt;
	      will be great&lt;br /&gt;
&amp;lt;santhosh&amp;gt; apeter: who will put full meeting log? I dont have  [22:30]&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; jinsbond007: take your time&lt;br /&gt;
&amp;lt;apeter&amp;gt; santhosh, j4v4m4n has taken care of it :)&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; bye everyone  [22:32]&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; good night&lt;br /&gt;
&amp;lt;apeter&amp;gt; good night prabi&lt;br /&gt;
&amp;lt;apeter&amp;gt; pravi :)&lt;br /&gt;
*** santhosh (~santhosh@117.202.143.56) has left channel #smc-project:&lt;br /&gt;
    &amp;quot;Leaving.&amp;quot;  [22:33]&lt;br /&gt;
ERC&amp;gt; /quit&lt;br /&gt;
*** j4v4m4n (~user@gnu-india/supporter/j4v4m4n) has quit: Quit: ERC Version&lt;br /&gt;
    5.3 (IRC client for Emacs)&lt;br /&gt;
ERC&amp;gt; &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Pravs</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=Meeting/IRC/2011Jan20&amp;diff=2119</id>
		<title>Meeting/IRC/2011Jan20</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=Meeting/IRC/2011Jan20&amp;diff=2119"/>
		<updated>2011-01-20T16:12:27Z</updated>

		<summary type="html">&lt;p&gt;Pravs: updated&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
*** You have joined channel #smc-project  [20:58]&lt;br /&gt;
*** Topic for #smc-project: എന്റെ കമ്പ്യൂട്ടറിനു് എന്റെ ഭാഷ http://smc.org.in ||&lt;br /&gt;
    Planet SMC: http://planet.smc.org.in  || Work in Progress:&lt;br /&gt;
    http://silpa.smc.org.in || ചാമ്പ പ്രൊജക്ട് http://www.chambaproject.in&lt;br /&gt;
*** #smc-project: topic set by&lt;br /&gt;
    santhosh!73f89ac4@gateway/web/freenode/ip.115.248.154.196, 11:23:15&lt;br /&gt;
    2010/11/08&lt;br /&gt;
*** Users on #smc-project: j4v4m4n santhosh ershad apeter Vivek Polar| CIA-98&lt;br /&gt;
    @ChanServ&lt;br /&gt;
*** #smc-project modes: +nst&lt;br /&gt;
*** #smc-project was created on ശനി 2007/10/13 08:54:20  IST&lt;br /&gt;
*** ershad (~ershad@14.194.66.128) has quit: Ping timeout: 250 seconds&lt;br /&gt;
*** jinsbond007 (~jinsbond0@14.99.10.217) has joined channel #smc-project&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; hope I am not late  [20:59]&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; j4v4m4n: apeter santhosh around?  [21:00]&lt;br /&gt;
&amp;lt;santhosh&amp;gt; j4v4m4n: എന്താ പരിപാടി?&lt;br /&gt;
&amp;lt;apeter&amp;gt; hello all&lt;br /&gt;
&amp;lt;apeter&amp;gt; good to see atleast a few :)&lt;br /&gt;
&amp;lt;apeter&amp;gt; need to conduct FUEL for Malayalam and hence thought to have a&lt;br /&gt;
	 discussion about it  [21:01]&lt;br /&gt;
&amp;lt;santhosh&amp;gt; ഇത്രേം പേരു മത്യോ?&lt;br /&gt;
&amp;lt;apeter&amp;gt; atleast lets discuss things and then send the details to list  [21:02]&lt;br /&gt;
&amp;lt;santhosh&amp;gt; http://wiki.smc.org.in/Glossary&lt;br /&gt;
&amp;lt;apeter&amp;gt; j4v4m4n, ?&lt;br /&gt;
*** qwebirc45842 (75c98191@gateway/web/freenode/ip.117.201.129.145) has joined&lt;br /&gt;
    channel #smc-project&lt;br /&gt;
&amp;lt;apeter&amp;gt; santhosh, we have already discussed and planned to have the&lt;br /&gt;
	 FUEL... :)&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; santhosh: jinsbond007 apeter നമസ്കാരം  [21:03]&lt;br /&gt;
&amp;lt;apeter&amp;gt; നമസ്ക്കാരം&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; j4v4m4n: ah finally, നമസ്കാരം :)&lt;br /&gt;
&amp;lt;apeter&amp;gt; now things to discuss is when to have, who all to be invited for this&lt;br /&gt;
	 meeting? I mean any language experts ... &lt;br /&gt;
&amp;lt;apeter&amp;gt; what say?  [21:04]&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; apeter: ഏതെങ്കലും സ്ഥലവും സമയവും നിര്‍ദ്ദേശിയ്ക്കൂ&lt;br /&gt;
&amp;lt;apeter&amp;gt; j4v4m4n, jinsbond007 santhosh I was thinking whether we can have this&lt;br /&gt;
	 during NITC meet?  [21:05]&lt;br /&gt;
ERC&amp;gt; /nick ജാവാമാന്‍&lt;br /&gt;
&amp;lt;apeter&amp;gt; is it possible?&lt;br /&gt;
*** ജാവാമ is an&lt;br /&gt;
    erroneous nickname&lt;br /&gt;
&amp;lt;apeter&amp;gt; what do you guys think?&lt;br /&gt;
&amp;lt;santhosh&amp;gt; apeter: physical meaning required?&lt;br /&gt;
&amp;lt;apeter&amp;gt; santhosh, yes&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; apeter: I will be in NITC from 31st Jan to 6th Feb&lt;br /&gt;
* apeter has requested Rajesh to join&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; santhosh: yes, especially if we are onvolving language experts&lt;br /&gt;
								        [21:06]&lt;br /&gt;
* apeter has requested Rajesh to join this online meeting&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; santhosh: we can keep irc open as an option for people who cannot&lt;br /&gt;
	  make it physically  [21:07]&lt;br /&gt;
&amp;lt;apeter&amp;gt; j4v4m4n, I agree with you :)&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; j4v4m4n: santhosh when is fossmeet?  [21:08]&lt;br /&gt;
&amp;lt;santhosh&amp;gt; apeter: j4v4m4n, can we baseline our glossary? or do we need to get&lt;br /&gt;
	   comments on the entries in offline way?&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; I don&#039;t remember in feb or march?&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; apeter: but Feb first week would be too soon for arranging a meeting&lt;br /&gt;
	  of this sort&lt;br /&gt;
&amp;lt;apeter&amp;gt; jinsbond007, 4th-6th Feb&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; ok&lt;br /&gt;
&amp;lt;apeter&amp;gt; j4v4m4n, we shall give it a try..&lt;br /&gt;
&amp;lt;santhosh&amp;gt; such as, getting the comments in printed copies&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; anyway, I won&#039;t be available for any physical meetings due to my&lt;br /&gt;
	      busy schedule for I think some 4 months  [21:09]&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; jinsbond007: we can do both as I mentioned&lt;br /&gt;
&amp;lt;apeter&amp;gt; j4v4m4n, if its too much of inconvenience we shall postpond to 2nd or&lt;br /&gt;
	 3rd week Feb&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; jinsbond007: physical component has to be there&lt;br /&gt;
*** rajeshr (~rranjan@117.195.109.90) has joined channel #smc-project  [21:10]&lt;br /&gt;
&amp;lt;santhosh&amp;gt; j4v4m4n: btw, by language experts, ആരെയാ ഉദ്ദേശിക്കുന്നതു്? കമ്പ്യൂട്ടറില്‍&lt;br /&gt;
	   മലയാളം ആദ്യമായി കാണുന്നവര്‍ക്ക് പ്രായോഗികമായി നിര്‍ദ്ദേശങ്ങള്‍ തരാന്‍ കഴിയുമോ?  [21:11]&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; Hi Everybody&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; rajeshr: hi&lt;br /&gt;
&amp;lt;santhosh&amp;gt; the contexts are completely different&lt;br /&gt;
&amp;lt;apeter&amp;gt; hi rajeshr &lt;br /&gt;
&amp;lt;rajeshr&amp;gt; Sorry for late!&lt;br /&gt;
&amp;lt;apeter&amp;gt; rajeshr, no worries :)&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; j4v4m4n: apeter first these people should know the translation&lt;br /&gt;
	      and why we do it the way we do&lt;br /&gt;
&amp;lt;santhosh&amp;gt; I am not sayin that they should know how to use computers in&lt;br /&gt;
	   malayalam&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; santhosh: but most of them would have familiarity with computers&lt;br /&gt;
&amp;lt;santhosh&amp;gt; but minimal exposure and introduction is required right?  [21:12]&lt;br /&gt;
&amp;lt;apeter&amp;gt; rajeshr, maybe you can give an idea about FUEL. How do you normally&lt;br /&gt;
	 conduct the meet etc etc etc&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; j4v4m4n: the familiarity I don&#039;t think is not to be with&lt;br /&gt;
	      computer but the malayalam interface in computer and who are the&lt;br /&gt;
	      in tented audience&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; okay apeter!  [21:13]&lt;br /&gt;
*** santhosh (~santhosh@117.202.143.56) has left channel #smc-project:&lt;br /&gt;
    &amp;quot;Leaving.&amp;quot;  [21:14]&lt;br /&gt;
*** santhosh (~santhosh@117.202.143.56) has joined channel #smc-project&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; jinsbond007: santhosh we should have normal computer users too, the&lt;br /&gt;
	  idea is to get some kind of acceptance when people see experts are&lt;br /&gt;
	  there in the list, though I agree, it may not be necessary&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; As we are from translation/localization filed we know some problem&lt;br /&gt;
	  during trans&lt;br /&gt;
*** santhosh (~santhosh@117.202.143.56) has quit: Quit: Leaving.&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; one is of standadization and consistency&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; the idea is computer users, who are not net savvy and would not be&lt;br /&gt;
	  able to come to an irc meeting for whatever reason should be&lt;br /&gt;
	  involved  [21:15]&lt;br /&gt;
*** santhosh (~santhosh@117.202.143.56) has joined channel #smc-project&lt;br /&gt;
*** sebinaj (~sebinaj@117.199.11.154) has joined channel #smc-project&lt;br /&gt;
&amp;lt;santhosh&amp;gt; disconnected.. did somebody answer my qn? sorry&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; j4v4m4n: I am not against involving them, in fact most of the&lt;br /&gt;
	      time, we does consult people like hussain sir off the list&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; sebinaj: welcome&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; sebinaj: hi&lt;br /&gt;
&amp;lt;sebinaj&amp;gt; hi&lt;br /&gt;
&amp;lt;apeter&amp;gt; hi sebinaj :)  [21:16]&lt;br /&gt;
&amp;lt;sebinaj&amp;gt; was struggling with the lost passphrase :D&lt;br /&gt;
&amp;lt;sebinaj&amp;gt; problems of registering a nick&lt;br /&gt;
&amp;lt;sebinaj&amp;gt; can i read the log?&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; jinsbond007: not just hussain sir, anyone interested in seeing&lt;br /&gt;
	  Malayalam in computer should be given a chance to say their opinion&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; sebinaj: you could have logged in without password :)  [21:17]&lt;br /&gt;
*** ershad (~ershad@14.194.66.128) has joined channel #smc-project&lt;br /&gt;
&amp;lt;santhosh&amp;gt; j4v4m4n: thats what. we cannot get words contribution from people&lt;br /&gt;
	   who are very new to computers&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; j4v4m4n: anyway I guess we both got the point :)&lt;br /&gt;
* j4v4m4n copying minutes on the wiki&lt;br /&gt;
&amp;lt;santhosh&amp;gt; and even if they give it will be out of context&lt;br /&gt;
&amp;lt;santhosh&amp;gt; what I would suggest is this  [21:18]&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; my point was to use their expertise effectively, we should be&lt;br /&gt;
	      able to give them an idea of what the interface is&lt;br /&gt;
&amp;lt;santhosh&amp;gt; the FUEL program should have 2 parts&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; and who are the supposed audience for the Malayalam interface&lt;br /&gt;
&amp;lt;santhosh&amp;gt; one is a training(introduction) to all participants. say we conduct&lt;br /&gt;
	   in an arts college  [21:19]&lt;br /&gt;
&amp;lt;santhosh&amp;gt; in the second part, or as part of the traning, we show the&lt;br /&gt;
	   interface to them. ask them to use&lt;br /&gt;
&amp;lt;santhosh&amp;gt; get their user experience suggestion&lt;br /&gt;
&amp;lt;santhosh&amp;gt; I hope once they see applications in malayalam, naturally comments&lt;br /&gt;
	   will come&lt;br /&gt;
&amp;lt;apeter&amp;gt; rajeshr, any comments ?&lt;br /&gt;
&amp;lt;santhosh&amp;gt; rather than giving a word list  [21:20]&lt;br /&gt;
&amp;lt;santhosh&amp;gt; in that way, both of us can benefit&lt;br /&gt;
&amp;lt;santhosh&amp;gt; we get a localized application reviewed&lt;br /&gt;
&amp;lt;santhosh&amp;gt; and additions to our glossary/fule  [21:21]&lt;br /&gt;
&amp;lt;santhosh&amp;gt; they get training&lt;br /&gt;
&amp;lt;santhosh&amp;gt; comments?&lt;br /&gt;
*** anoop (0e60120b@gateway/web/freenode/ip.14.96.18.11) has joined channel&lt;br /&gt;
    #smc-project&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; minutes http://wiki.smc.org.in/Meeting/IRC/2011Jan20  [21:22]&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; apeter, I think translation of anything cannot be left for normal&lt;br /&gt;
	  audience, they can have several suggestions&lt;br /&gt;
&amp;lt;santhosh&amp;gt; rajeshr: correct&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; so i Think first we should sit with passionate localisers,&lt;br /&gt;
	  translators, lingusits, journalist and create a good interface&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; rajeshr: if we are doing translations for them, they should&lt;br /&gt;
	      actually be involved na?&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; anoop: hi  [21:23]&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; I don&#039;t think we have any problem in involving them, but out of one&lt;br /&gt;
	  workshop like FUEL we can come with a list where most of the people&lt;br /&gt;
	  can be agrre  [21:24]&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; like what we did for : http://svn.fedorahosted.org/svn/fuel/&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; https://fedorahosted.org/fuel/&lt;br /&gt;
&amp;lt;anoop&amp;gt; hii&lt;br /&gt;
&amp;lt;apeter&amp;gt; hello anoop   [21:25]&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; santhosh: we started our glossary from gnome glossary, but gnome&lt;br /&gt;
	  glossary was never maintained, so we were essentially forking the&lt;br /&gt;
	  glossary&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; j4v4m4n, FUEL is not exactly a glossary...its strings coming out of&lt;br /&gt;
	  3-4 levels of menus from major apps  [21:26]&lt;br /&gt;
&amp;lt;santhosh&amp;gt; j4v4m4n: our aim is better interface, right? discussing around a&lt;br /&gt;
	   wordlist will be completely out of context. so introduce malayalam&lt;br /&gt;
	   desktop the lang experts, get their feedback&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; santhosh: with actively maintained fuel list, shared among many&lt;br /&gt;
	  languages, we can have an uptodate glossary, my earlier lack of&lt;br /&gt;
	  interest to fuel was because I thought we could keep gnome glossary&lt;br /&gt;
	  updated, but that effort did not reach anywhere&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; so it is one type of review as well&lt;br /&gt;
&amp;lt;santhosh&amp;gt; naturally that will become our corrected commonly used translations&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; we have selected strings from pidgin, firefox, email clients,&lt;br /&gt;
	  OpenOffice, gdm, menus etc and combined in a list!  [21:27]&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; santhosh: yes, I agree that is important, but which should be the&lt;br /&gt;
	  starting point? a commnly used words list or some localised app?&lt;br /&gt;
								        [21:28]&lt;br /&gt;
&amp;lt;santhosh&amp;gt; rajeshr: in previous fuel meetings, how was it done? preparing a&lt;br /&gt;
	   word list and discussing one by one? or was that meeting conducted&lt;br /&gt;
	   by introducing those applications and current translation to&lt;br /&gt;
	   participants?&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; santhosh: we need both  [21:29]&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; word list is already there:&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; http://svn.fedorahosted.org/svn/fuel/fuel_pot/&lt;br /&gt;
&amp;lt;santhosh&amp;gt; j4v4m4n: I would suggest some commonly used localized application&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; santhosh: ok so lets do that first in a meeting - just to get them&lt;br /&gt;
	  started and then work on the word list&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; santhosh, we sat together for 2 days and discussded one by one &lt;br /&gt;
								        [21:30]&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; j4v4m4n: I will agree with santhosh, they need to see where the&lt;br /&gt;
	      string goes   [21:31]&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; eg. https://fedorahosted.org/fuel/wiki/fuel-maithili&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; rajeshr: lets do an initial introductory meeting, and then fuel&lt;br /&gt;
	  list, what say?  [21:32]&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; santhosh, j4v4m4n, jinsbond007: we have already conetxt for the&lt;br /&gt;
	  strings :&lt;br /&gt;
	  https://fedorahosted.org/fuel/attachment/wiki/attachments/Fuel_context.ods?format=raw&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; j4v4m4n, its upon ml community how you can go&lt;br /&gt;
&amp;lt;apeter&amp;gt; I agree with j4v4m4n   [21:33]&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; rajeshr: that has good context information and not a wordlist&lt;br /&gt;
								        [21:34]&lt;br /&gt;
ERC&amp;gt; /not just a wordlist/&lt;br /&gt;
*** not: Unknown command&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; j4v4m4n,&lt;br /&gt;
	  http://svn.fedorahosted.org/svn/fuel/fuel_pot/fuel_en_US.pot&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; ^^&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt;  /not just a wordlis/&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; rajeshr: yes we can use spreadsheet for discussion adn po for entry&lt;br /&gt;
								        [21:35]&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; this is word list and that ods file is context for that one&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; rajeshr: the work is great kudos :)&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; thanks jinsbond007 !  [21:36]&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; http://translate.sourceforge.net/wiki/guide/existing_glossaries&lt;br /&gt;
&amp;lt;santhosh&amp;gt; I think a spreadsheet is not enough. The problem is the proposed&lt;br /&gt;
	   participants will not get any idea what is is meant by this&lt;br /&gt;
	   File-&amp;gt;New-&amp;gt;... etc&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; this project consider FUEL project as a terminology dev project&lt;br /&gt;
&amp;lt;santhosh&amp;gt; we cannot do such assumption about their knowledge about the&lt;br /&gt;
	   applications. Live experience with the applications or sitting with&lt;br /&gt;
	   somebody who demo it is required  [21:37]&lt;br /&gt;
&amp;lt;santhosh&amp;gt; sebinaj: ?&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; santhosh: that I agree&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; they need to see the application&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; sebinaj: ershad anoop any comments?&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; santhosh, right we shd give demo  [21:38]&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; we did in Hindi:&lt;br /&gt;
	  https://fedorahosted.org/fuel/wiki/fuel-hindi-photovoice&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; santhosh: yes, so lets do an intital session introducing people to&lt;br /&gt;
	  localised environments and ask for live feedback and a second&lt;br /&gt;
	  session for fuel list&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; j4v4m4n: in a single day?  [21:39]&lt;br /&gt;
&amp;lt;ershad&amp;gt; jinsbond007: I lost track in between and i&#039;m yet to understand what&lt;br /&gt;
	 FUEL really is and how it works :)&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; jinsbond007: no many days apart&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; ok&lt;br /&gt;
&amp;lt;santhosh&amp;gt; &amp;quot;Outline -  Open office -Oocalc – Data – Outline. You can create an&lt;br /&gt;
	   outline of your data.&amp;quot;&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; jinsbond007: first in introduction, I can assume many would not be&lt;br /&gt;
	  using a malayalam interface&lt;br /&gt;
&amp;lt;santhosh&amp;gt; unless we demo it, this does not make any sense&lt;br /&gt;
*** santhosh (~santhosh@117.202.143.56) has left channel #smc-project:&lt;br /&gt;
    &amp;quot;Leaving.&amp;quot;  [21:40]&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; jinsbond007: it would act as a kind of trigger and when we say they&lt;br /&gt;
	  can chnage translation they don&#039;t like it would be channelising&lt;br /&gt;
	  their frustration or unhappiness to positively engaging with&lt;br /&gt;
	  community to improve translation quality&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; santhosh: the problem is again an outline comes from some other&lt;br /&gt;
	      application&lt;br /&gt;
&amp;lt;anoop&amp;gt; now i am reading about FUEL&lt;br /&gt;
*** santhosh (~santhosh@117.202.143.56) has joined channel #smc-project&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; j4v4m4n: the thing we should not forget is, its not a fancy&lt;br /&gt;
	      project but for increasing accessibility   [21:41]&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; j4v4m4n: they should understand who the target audience is :)&lt;br /&gt;
								        [21:42]&lt;br /&gt;
ERC&amp;gt; &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Pravs</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=Meeting/IRC/2011Jan20&amp;diff=2118</id>
		<title>Meeting/IRC/2011Jan20</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=Meeting/IRC/2011Jan20&amp;diff=2118"/>
		<updated>2011-01-20T15:51:47Z</updated>

		<summary type="html">&lt;p&gt;Pravs: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
*** You have joined channel #smc-project  [20:58]&lt;br /&gt;
*** Topic for #smc-project: എന്റെ കമ്പ്യൂട്ടറിനു് എന്റെ ഭാഷ http://smc.org.in ||&lt;br /&gt;
    Planet SMC: http://planet.smc.org.in  || Work in Progress:&lt;br /&gt;
    http://silpa.smc.org.in || ചാമ്പ പ്രൊജക്ട് http://www.chambaproject.in&lt;br /&gt;
*** #smc-project: topic set by&lt;br /&gt;
    santhosh!73f89ac4@gateway/web/freenode/ip.115.248.154.196, 11:23:15&lt;br /&gt;
    2010/11/08&lt;br /&gt;
*** Users on #smc-project: j4v4m4n santhosh ershad apeter Vivek Polar| CIA-98&lt;br /&gt;
    @ChanServ&lt;br /&gt;
*** #smc-project modes: +nst&lt;br /&gt;
*** #smc-project was created on ശനി 2007/10/13 08:54:20  IST&lt;br /&gt;
*** ershad (~ershad@14.194.66.128) has quit: Ping timeout: 250 seconds&lt;br /&gt;
*** jinsbond007 (~jinsbond0@14.99.10.217) has joined channel #smc-project&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; hope I am not late  [20:59]&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; j4v4m4n: apeter santhosh around?  [21:00]&lt;br /&gt;
&amp;lt;santhosh&amp;gt; j4v4m4n: എന്താ പരിപാടി?&lt;br /&gt;
&amp;lt;apeter&amp;gt; hello all&lt;br /&gt;
&amp;lt;apeter&amp;gt; good to see atleast a few :)&lt;br /&gt;
&amp;lt;apeter&amp;gt; need to conduct FUEL for Malayalam and hence thought to have a&lt;br /&gt;
	 discussion about it  [21:01]&lt;br /&gt;
&amp;lt;santhosh&amp;gt; ഇത്രേം പേരു മത്യോ?&lt;br /&gt;
&amp;lt;apeter&amp;gt; atleast lets discuss things and then send the details to list  [21:02]&lt;br /&gt;
&amp;lt;santhosh&amp;gt; http://wiki.smc.org.in/Glossary&lt;br /&gt;
&amp;lt;apeter&amp;gt; j4v4m4n, ?&lt;br /&gt;
*** qwebirc45842 (75c98191@gateway/web/freenode/ip.117.201.129.145) has joined&lt;br /&gt;
    channel #smc-project&lt;br /&gt;
&amp;lt;apeter&amp;gt; santhosh, we have already discussed and planned to have the&lt;br /&gt;
	 FUEL... :)&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; santhosh: jinsbond007 apeter നമസ്കാരം  [21:03]&lt;br /&gt;
&amp;lt;apeter&amp;gt; നമസ്ക്കാരം&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; j4v4m4n: ah finally, നമസ്കാരം :)&lt;br /&gt;
&amp;lt;apeter&amp;gt; now things to discuss is when to have, who all to be invited for this&lt;br /&gt;
	 meeting? I mean any language experts ... &lt;br /&gt;
&amp;lt;apeter&amp;gt; what say?  [21:04]&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; apeter: ഏതെങ്കലും സ്ഥലവും സമയവും നിര്‍ദ്ദേശിയ്ക്കൂ&lt;br /&gt;
&amp;lt;apeter&amp;gt; j4v4m4n, jinsbond007 santhosh I was thinking whether we can have this&lt;br /&gt;
	 during NITC meet?  [21:05]&lt;br /&gt;
ERC&amp;gt; /nick ജാവാമാന്‍&lt;br /&gt;
&amp;lt;apeter&amp;gt; is it possible?&lt;br /&gt;
*** ജാവാമ is an&lt;br /&gt;
    erroneous nickname&lt;br /&gt;
&amp;lt;apeter&amp;gt; what do you guys think?&lt;br /&gt;
&amp;lt;santhosh&amp;gt; apeter: physical meaning required?&lt;br /&gt;
&amp;lt;apeter&amp;gt; santhosh, yes&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; apeter: I will be in NITC from 31st Jan to 6th Feb&lt;br /&gt;
* apeter has requested Rajesh to join&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; santhosh: yes, especially if we are onvolving language experts&lt;br /&gt;
								        [21:06]&lt;br /&gt;
* apeter has requested Rajesh to join this online meeting&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; santhosh: we can keep irc open as an option for people who cannot&lt;br /&gt;
	  make it physically  [21:07]&lt;br /&gt;
&amp;lt;apeter&amp;gt; j4v4m4n, I agree with you :)&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; j4v4m4n: santhosh when is fossmeet?  [21:08]&lt;br /&gt;
&amp;lt;santhosh&amp;gt; apeter: j4v4m4n, can we baseline our glossary? or do we need to get&lt;br /&gt;
	   comments on the entries in offline way?&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; I don&#039;t remember in feb or march?&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; apeter: but Feb first week would be too soon for arranging a meeting&lt;br /&gt;
	  of this sort&lt;br /&gt;
&amp;lt;apeter&amp;gt; jinsbond007, 4th-6th Feb&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; ok&lt;br /&gt;
&amp;lt;apeter&amp;gt; j4v4m4n, we shall give it a try..&lt;br /&gt;
&amp;lt;santhosh&amp;gt; such as, getting the comments in printed copies&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; anyway, I won&#039;t be available for any physical meetings due to my&lt;br /&gt;
	      busy schedule for I think some 4 months  [21:09]&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; jinsbond007: we can do both as I mentioned&lt;br /&gt;
&amp;lt;apeter&amp;gt; j4v4m4n, if its too much of inconvenience we shall postpond to 2nd or&lt;br /&gt;
	 3rd week Feb&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; jinsbond007: physical component has to be there&lt;br /&gt;
*** rajeshr (~rranjan@117.195.109.90) has joined channel #smc-project  [21:10]&lt;br /&gt;
&amp;lt;santhosh&amp;gt; j4v4m4n: btw, by language experts, ആരെയാ ഉദ്ദേശിക്കുന്നതു്? കമ്പ്യൂട്ടറില്‍&lt;br /&gt;
	   മലയാളം ആദ്യമായി കാണുന്നവര്‍ക്ക് പ്രായോഗികമായി നിര്‍ദ്ദേശങ്ങള്‍ തരാന്‍ കഴിയുമോ?  [21:11]&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; Hi Everybody&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; rajeshr: hi&lt;br /&gt;
&amp;lt;santhosh&amp;gt; the contexts are completely different&lt;br /&gt;
&amp;lt;apeter&amp;gt; hi rajeshr &lt;br /&gt;
&amp;lt;rajeshr&amp;gt; Sorry for late!&lt;br /&gt;
&amp;lt;apeter&amp;gt; rajeshr, no worries :)&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; j4v4m4n: apeter first these people should know the translation&lt;br /&gt;
	      and why we do it the way we do&lt;br /&gt;
&amp;lt;santhosh&amp;gt; I am not sayin that they should know how to use computers in&lt;br /&gt;
	   malayalam&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; santhosh: but most of them would have familiarity with computers&lt;br /&gt;
&amp;lt;santhosh&amp;gt; but minimal exposure and introduction is required right?  [21:12]&lt;br /&gt;
&amp;lt;apeter&amp;gt; rajeshr, maybe you can give an idea about FUEL. How do you normally&lt;br /&gt;
	 conduct the meet etc etc etc&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; j4v4m4n: the familiarity I don&#039;t think is not to be with&lt;br /&gt;
	      computer but the malayalam interface in computer and who are the&lt;br /&gt;
	      in tented audience&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; okay apeter!  [21:13]&lt;br /&gt;
*** santhosh (~santhosh@117.202.143.56) has left channel #smc-project:&lt;br /&gt;
    &amp;quot;Leaving.&amp;quot;  [21:14]&lt;br /&gt;
*** santhosh (~santhosh@117.202.143.56) has joined channel #smc-project&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; jinsbond007: santhosh we should have normal computer users too, the&lt;br /&gt;
	  idea is to get some kind of acceptance when people see experts are&lt;br /&gt;
	  there in the list, though I agree, it may not be necessary&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; As we are from translation/localization filed we know some problem&lt;br /&gt;
	  during trans&lt;br /&gt;
*** santhosh (~santhosh@117.202.143.56) has quit: Quit: Leaving.&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; one is of standadization and consistency&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; the idea is computer users, who are not net savvy and would not be&lt;br /&gt;
	  able to come to an irc meeting for whatever reason should be&lt;br /&gt;
	  involved  [21:15]&lt;br /&gt;
*** santhosh (~santhosh@117.202.143.56) has joined channel #smc-project&lt;br /&gt;
*** sebinaj (~sebinaj@117.199.11.154) has joined channel #smc-project&lt;br /&gt;
&amp;lt;santhosh&amp;gt; disconnected.. did somebody answer my qn? sorry&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; j4v4m4n: I am not against involving them, in fact most of the&lt;br /&gt;
	      time, we does consult people like hussain sir off the list&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; sebinaj: welcome&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; sebinaj: hi&lt;br /&gt;
&amp;lt;sebinaj&amp;gt; hi&lt;br /&gt;
&amp;lt;apeter&amp;gt; hi sebinaj :)  [21:16]&lt;br /&gt;
&amp;lt;sebinaj&amp;gt; was struggling with the lost passphrase :D&lt;br /&gt;
&amp;lt;sebinaj&amp;gt; problems of registering a nick&lt;br /&gt;
&amp;lt;sebinaj&amp;gt; can i read the log?&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; jinsbond007: not just hussain sir, anyone interested in seeing&lt;br /&gt;
	  Malayalam in computer should be given a chance to say their opinion&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; sebinaj: you could have logged in without password :)  [21:17]&lt;br /&gt;
*** ershad (~ershad@14.194.66.128) has joined channel #smc-project&lt;br /&gt;
&amp;lt;santhosh&amp;gt; j4v4m4n: thats what. we cannot get words contribution from people&lt;br /&gt;
	   who are very new to computers&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; j4v4m4n: anyway I guess we both got the point :)&lt;br /&gt;
* j4v4m4n copying minutes on the wiki&lt;br /&gt;
&amp;lt;santhosh&amp;gt; and even if they give it will be out of context&lt;br /&gt;
&amp;lt;santhosh&amp;gt; what I would suggest is this  [21:18]&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; my point was to use their expertise effectively, we should be&lt;br /&gt;
	      able to give them an idea of what the interface is&lt;br /&gt;
&amp;lt;santhosh&amp;gt; the FUEL program should have 2 parts&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; and who are the supposed audience for the Malayalam interface&lt;br /&gt;
&amp;lt;santhosh&amp;gt; one is a training(introduction) to all participants. say we conduct&lt;br /&gt;
	   in an arts college  [21:19]&lt;br /&gt;
&amp;lt;santhosh&amp;gt; in the second part, or as part of the traning, we show the&lt;br /&gt;
	   interface to them. ask them to use&lt;br /&gt;
&amp;lt;santhosh&amp;gt; get their user experience suggestion&lt;br /&gt;
&amp;lt;santhosh&amp;gt; I hope once they see applications in malayalam, naturally comments&lt;br /&gt;
	   will come&lt;br /&gt;
&amp;lt;apeter&amp;gt; rajeshr, any comments ?&lt;br /&gt;
&amp;lt;santhosh&amp;gt; rather than giving a word list&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Pravs</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=Meeting/IRC/2011Jan20&amp;diff=2117</id>
		<title>Meeting/IRC/2011Jan20</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=Meeting/IRC/2011Jan20&amp;diff=2117"/>
		<updated>2011-01-20T15:51:23Z</updated>

		<summary type="html">&lt;p&gt;Pravs: fuel discussion&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*** You have joined channel #smc-project  [20:58]&lt;br /&gt;
*** Topic for #smc-project: എന്റെ കമ്പ്യൂട്ടറിനു് എന്റെ ഭാഷ http://smc.org.in ||&lt;br /&gt;
    Planet SMC: http://planet.smc.org.in  || Work in Progress:&lt;br /&gt;
    http://silpa.smc.org.in || ചാമ്പ പ്രൊജക്ട് http://www.chambaproject.in&lt;br /&gt;
*** #smc-project: topic set by&lt;br /&gt;
    santhosh!73f89ac4@gateway/web/freenode/ip.115.248.154.196, 11:23:15&lt;br /&gt;
    2010/11/08&lt;br /&gt;
*** Users on #smc-project: j4v4m4n santhosh ershad apeter Vivek Polar| CIA-98&lt;br /&gt;
    @ChanServ&lt;br /&gt;
*** #smc-project modes: +nst&lt;br /&gt;
*** #smc-project was created on ശനി 2007/10/13 08:54:20  IST&lt;br /&gt;
*** ershad (~ershad@14.194.66.128) has quit: Ping timeout: 250 seconds&lt;br /&gt;
*** jinsbond007 (~jinsbond0@14.99.10.217) has joined channel #smc-project&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; hope I am not late  [20:59]&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; j4v4m4n: apeter santhosh around?  [21:00]&lt;br /&gt;
&amp;lt;santhosh&amp;gt; j4v4m4n: എന്താ പരിപാടി?&lt;br /&gt;
&amp;lt;apeter&amp;gt; hello all&lt;br /&gt;
&amp;lt;apeter&amp;gt; good to see atleast a few :)&lt;br /&gt;
&amp;lt;apeter&amp;gt; need to conduct FUEL for Malayalam and hence thought to have a&lt;br /&gt;
	 discussion about it  [21:01]&lt;br /&gt;
&amp;lt;santhosh&amp;gt; ഇത്രേം പേരു മത്യോ?&lt;br /&gt;
&amp;lt;apeter&amp;gt; atleast lets discuss things and then send the details to list  [21:02]&lt;br /&gt;
&amp;lt;santhosh&amp;gt; http://wiki.smc.org.in/Glossary&lt;br /&gt;
&amp;lt;apeter&amp;gt; j4v4m4n, ?&lt;br /&gt;
*** qwebirc45842 (75c98191@gateway/web/freenode/ip.117.201.129.145) has joined&lt;br /&gt;
    channel #smc-project&lt;br /&gt;
&amp;lt;apeter&amp;gt; santhosh, we have already discussed and planned to have the&lt;br /&gt;
	 FUEL... :)&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; santhosh: jinsbond007 apeter നമസ്കാരം  [21:03]&lt;br /&gt;
&amp;lt;apeter&amp;gt; നമസ്ക്കാരം&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; j4v4m4n: ah finally, നമസ്കാരം :)&lt;br /&gt;
&amp;lt;apeter&amp;gt; now things to discuss is when to have, who all to be invited for this&lt;br /&gt;
	 meeting? I mean any language experts ... &lt;br /&gt;
&amp;lt;apeter&amp;gt; what say?  [21:04]&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; apeter: ഏതെങ്കലും സ്ഥലവും സമയവും നിര്‍ദ്ദേശിയ്ക്കൂ&lt;br /&gt;
&amp;lt;apeter&amp;gt; j4v4m4n, jinsbond007 santhosh I was thinking whether we can have this&lt;br /&gt;
	 during NITC meet?  [21:05]&lt;br /&gt;
ERC&amp;gt; /nick ജാവാമാന്‍&lt;br /&gt;
&amp;lt;apeter&amp;gt; is it possible?&lt;br /&gt;
*** ജാവാമ is an&lt;br /&gt;
    erroneous nickname&lt;br /&gt;
&amp;lt;apeter&amp;gt; what do you guys think?&lt;br /&gt;
&amp;lt;santhosh&amp;gt; apeter: physical meaning required?&lt;br /&gt;
&amp;lt;apeter&amp;gt; santhosh, yes&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; apeter: I will be in NITC from 31st Jan to 6th Feb&lt;br /&gt;
* apeter has requested Rajesh to join&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; santhosh: yes, especially if we are onvolving language experts&lt;br /&gt;
								        [21:06]&lt;br /&gt;
* apeter has requested Rajesh to join this online meeting&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; santhosh: we can keep irc open as an option for people who cannot&lt;br /&gt;
	  make it physically  [21:07]&lt;br /&gt;
&amp;lt;apeter&amp;gt; j4v4m4n, I agree with you :)&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; j4v4m4n: santhosh when is fossmeet?  [21:08]&lt;br /&gt;
&amp;lt;santhosh&amp;gt; apeter: j4v4m4n, can we baseline our glossary? or do we need to get&lt;br /&gt;
	   comments on the entries in offline way?&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; I don&#039;t remember in feb or march?&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; apeter: but Feb first week would be too soon for arranging a meeting&lt;br /&gt;
	  of this sort&lt;br /&gt;
&amp;lt;apeter&amp;gt; jinsbond007, 4th-6th Feb&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; ok&lt;br /&gt;
&amp;lt;apeter&amp;gt; j4v4m4n, we shall give it a try..&lt;br /&gt;
&amp;lt;santhosh&amp;gt; such as, getting the comments in printed copies&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; anyway, I won&#039;t be available for any physical meetings due to my&lt;br /&gt;
	      busy schedule for I think some 4 months  [21:09]&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; jinsbond007: we can do both as I mentioned&lt;br /&gt;
&amp;lt;apeter&amp;gt; j4v4m4n, if its too much of inconvenience we shall postpond to 2nd or&lt;br /&gt;
	 3rd week Feb&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; jinsbond007: physical component has to be there&lt;br /&gt;
*** rajeshr (~rranjan@117.195.109.90) has joined channel #smc-project  [21:10]&lt;br /&gt;
&amp;lt;santhosh&amp;gt; j4v4m4n: btw, by language experts, ആരെയാ ഉദ്ദേശിക്കുന്നതു്? കമ്പ്യൂട്ടറില്‍&lt;br /&gt;
	   മലയാളം ആദ്യമായി കാണുന്നവര്‍ക്ക് പ്രായോഗികമായി നിര്‍ദ്ദേശങ്ങള്‍ തരാന്‍ കഴിയുമോ?  [21:11]&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; Hi Everybody&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; rajeshr: hi&lt;br /&gt;
&amp;lt;santhosh&amp;gt; the contexts are completely different&lt;br /&gt;
&amp;lt;apeter&amp;gt; hi rajeshr &lt;br /&gt;
&amp;lt;rajeshr&amp;gt; Sorry for late!&lt;br /&gt;
&amp;lt;apeter&amp;gt; rajeshr, no worries :)&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; j4v4m4n: apeter first these people should know the translation&lt;br /&gt;
	      and why we do it the way we do&lt;br /&gt;
&amp;lt;santhosh&amp;gt; I am not sayin that they should know how to use computers in&lt;br /&gt;
	   malayalam&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; santhosh: but most of them would have familiarity with computers&lt;br /&gt;
&amp;lt;santhosh&amp;gt; but minimal exposure and introduction is required right?  [21:12]&lt;br /&gt;
&amp;lt;apeter&amp;gt; rajeshr, maybe you can give an idea about FUEL. How do you normally&lt;br /&gt;
	 conduct the meet etc etc etc&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; j4v4m4n: the familiarity I don&#039;t think is not to be with&lt;br /&gt;
	      computer but the malayalam interface in computer and who are the&lt;br /&gt;
	      in tented audience&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; okay apeter!  [21:13]&lt;br /&gt;
*** santhosh (~santhosh@117.202.143.56) has left channel #smc-project:&lt;br /&gt;
    &amp;quot;Leaving.&amp;quot;  [21:14]&lt;br /&gt;
*** santhosh (~santhosh@117.202.143.56) has joined channel #smc-project&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; jinsbond007: santhosh we should have normal computer users too, the&lt;br /&gt;
	  idea is to get some kind of acceptance when people see experts are&lt;br /&gt;
	  there in the list, though I agree, it may not be necessary&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; As we are from translation/localization filed we know some problem&lt;br /&gt;
	  during trans&lt;br /&gt;
*** santhosh (~santhosh@117.202.143.56) has quit: Quit: Leaving.&lt;br /&gt;
&amp;lt;rajeshr&amp;gt; one is of standadization and consistency&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; the idea is computer users, who are not net savvy and would not be&lt;br /&gt;
	  able to come to an irc meeting for whatever reason should be&lt;br /&gt;
	  involved  [21:15]&lt;br /&gt;
*** santhosh (~santhosh@117.202.143.56) has joined channel #smc-project&lt;br /&gt;
*** sebinaj (~sebinaj@117.199.11.154) has joined channel #smc-project&lt;br /&gt;
&amp;lt;santhosh&amp;gt; disconnected.. did somebody answer my qn? sorry&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; j4v4m4n: I am not against involving them, in fact most of the&lt;br /&gt;
	      time, we does consult people like hussain sir off the list&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; sebinaj: welcome&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; sebinaj: hi&lt;br /&gt;
&amp;lt;sebinaj&amp;gt; hi&lt;br /&gt;
&amp;lt;apeter&amp;gt; hi sebinaj :)  [21:16]&lt;br /&gt;
&amp;lt;sebinaj&amp;gt; was struggling with the lost passphrase :D&lt;br /&gt;
&amp;lt;sebinaj&amp;gt; problems of registering a nick&lt;br /&gt;
&amp;lt;sebinaj&amp;gt; can i read the log?&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; jinsbond007: not just hussain sir, anyone interested in seeing&lt;br /&gt;
	  Malayalam in computer should be given a chance to say their opinion&lt;br /&gt;
&amp;lt;j4v4m4n&amp;gt; sebinaj: you could have logged in without password :)  [21:17]&lt;br /&gt;
*** ershad (~ershad@14.194.66.128) has joined channel #smc-project&lt;br /&gt;
&amp;lt;santhosh&amp;gt; j4v4m4n: thats what. we cannot get words contribution from people&lt;br /&gt;
	   who are very new to computers&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; j4v4m4n: anyway I guess we both got the point :)&lt;br /&gt;
* j4v4m4n copying minutes on the wiki&lt;br /&gt;
&amp;lt;santhosh&amp;gt; and even if they give it will be out of context&lt;br /&gt;
&amp;lt;santhosh&amp;gt; what I would suggest is this  [21:18]&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; my point was to use their expertise effectively, we should be&lt;br /&gt;
	      able to give them an idea of what the interface is&lt;br /&gt;
&amp;lt;santhosh&amp;gt; the FUEL program should have 2 parts&lt;br /&gt;
&amp;lt;jinsbond007&amp;gt; and who are the supposed audience for the Malayalam interface&lt;br /&gt;
&amp;lt;santhosh&amp;gt; one is a training(introduction) to all participants. say we conduct&lt;br /&gt;
	   in an arts college  [21:19]&lt;br /&gt;
&amp;lt;santhosh&amp;gt; in the second part, or as part of the traning, we show the&lt;br /&gt;
	   interface to them. ask them to use&lt;br /&gt;
&amp;lt;santhosh&amp;gt; get their user experience suggestion&lt;br /&gt;
&amp;lt;santhosh&amp;gt; I hope once they see applications in malayalam, naturally comments&lt;br /&gt;
	   will come&lt;br /&gt;
&amp;lt;apeter&amp;gt; rajeshr, any comments ?&lt;br /&gt;
&amp;lt;santhosh&amp;gt; rather than giving a word list&lt;/div&gt;</summary>
		<author><name>Pravs</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=CDAC-IDN-Critique&amp;diff=2059</id>
		<title>CDAC-IDN-Critique</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=CDAC-IDN-Critique&amp;diff=2059"/>
		<updated>2010-12-07T15:24:10Z</updated>

		<summary type="html">&lt;p&gt;Pravs: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Malayalam IDN Policy Draft by CDAC - Critique by SMC&lt;br /&gt;
&lt;br /&gt;
The Draft policy document by CDAC is available [http://wiki.smc.org.in/images/7/7b/INTERNATIONALIZED_DOMAIN_NAMES-MALAYALAM.pdf  here  ]&lt;br /&gt;
&lt;br /&gt;
[[File:Response_to_C-DAC-IDN-Critique.pdf | CDAC&#039;s response dated 2/12/2010]]&lt;br /&gt;
&lt;br /&gt;
== Introduction == &lt;br /&gt;
&lt;br /&gt;
== Issues with the approach and process ==&lt;br /&gt;
=== Response to CDAC&#039;s response  (dated 2/12/2010) ===&lt;br /&gt;
We are not satisfied with the answers given to our questions. The response seems to be prepared by somebody who does not know the scope of IDN. The replies are based on things that are not at all related to IDN. We have tried to explain why your answers are completely wrong. See the responses given below. CDAC seems to be confused about the Malayalam orthography, Unicode standard, Font , rendering etc. &lt;br /&gt;
&lt;br /&gt;
One of the main thing that we want to emphasis is, standards should not be drafted based on the existing applications. The response from CDAC says, it did extensive study on existing browsers and their address bar behavior. Even one variant table entry is associated with Microsoft Internet Explores buggy behavior. Sorry to say that this is ridiculous. Standards and Policies are for the implementations in the future. It is the guidelines for the applications to be developed in future. It is not a study of existing application behavior.  This is a trivial  fact any person with minimal technical qualification is aware of. CDAC seems to be missing this point.&lt;br /&gt;
&lt;br /&gt;
Orthography is style of writing. It is a users choice for visualizing the content. The content remains same whether one use traditional orthography or new orthography. What IDN policy need to take care of is avoiding all cases of spoofing. That should be independent of orthography. IDN can not assume , or cannot enforce that a user should be using only a particular font with Internet browsers. The CDAC&#039;s draft policy makes such a false assumption. It states that Malayalam IDN is not designed for Traditional orthography. This argument comes from ignorance about the basic concepts of Language technology. Unicode does not define anything about Malayalam new and old orthography. It is all about users choice. When CDAC&#039;s policy states &amp;quot;Modern Orthography&amp;quot;, it should define what it is. It is not all defined technically or even in usage pattern. It is just a user&#039;s convenience. &lt;br /&gt;
&lt;br /&gt;
We demand a process to re-draft this policy document. This is the age of open standards. CDAC should take initiatives to consult with all stakeholders- language experts, language computing experts, developers.&lt;br /&gt;
&lt;br /&gt;
== Criticism on the policy ==&lt;br /&gt;
=== General Comments===&lt;br /&gt;
# The variant table is defined based on random glyphs taken from a list of 900+ possible glyphs for Malayalam. No explanation is given on how two entries in variant table become homo morphs. One entry in variant table is just because of the fact that one is mirror image of other. Since b, d are not excluded from English, there&#039;s no need to exclude mirror imaged glyphs in variant table.&lt;br /&gt;
#: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response: The IDN system devised for Malayalam is based only on the modern script. It doesn&#039;t address the old script or the fonts based on old script. Also, a detailed study was done before proposing homographs in each of the languages. The study included observing the visual form of the conjunct in the point size of the Address bars of major browsers. The mirror imaged nature of the glyphs was not the criterion for the two glyphs to be qualified as variants.&amp;lt;/font&amp;gt;&lt;br /&gt;
#:: Since CDAC took that much effort to check visual spoofing, i just like to know the basic glyph set in modern orthography of Malayalam --[[User:Jinesh.k|Jinesh.k]] 06:26, 4 December 2010 (PST)&lt;br /&gt;
#::  Please understand that IDN has no relation with the orthography. Orthography is kind of writing style and decided by user&#039;s choice on fonts. It is at higher level and close to user, while IDN has nothing to do about the choice of fonts by users. The distinction between Modern Orthography and Old orthography is not technically defined. Unicode or Unicode capable applications never bother about whether user use an Old lipi font or Traditional font. CDAC or IDN policy cannot say that user should use only a certain set of fonts to work with IDN.  If CDAC says IDN does not support traditional orthography, it does not make any sense at all for some one who know what is Unicode, Orthography and IDN. - [[User:സന്തോഷ്|സന്തോഷ്]] 23:53, 4 December 2010 (PST)&lt;br /&gt;
#::  Forcing a user to chose a particular orthography font based on bugs in one browser is not acceptable. IDN standard should not ban most popular fonts currently in use, majority of digital Malayalam users are happy with traditional fonts and there is no reason to stop it. CDAC cannot and should not decide what fonts a user choses in his/her computer. IDN should work with any Malayalam font, which complies with Unicode version 5.0 and correctly implement Malayalam language rules for conjunct formation. Unicode 5.1 is controvercial and many issues are not answered and it would be a tragedy for Malayalam language if we decide to follow unicode 5.1 blindly without considering its impact on Malayalam language for years to come. [[User:Pravs|Pravs]] 06:30, 7 December 2010 (PST)&lt;br /&gt;
#:: If mirror image was not a criteria for variant table, explain how ത്സ/ഝ , സ്സ/ഡ്ഡ qualify to the variant table?  - [[User:സന്തോഷ്|സന്തോഷ്]] 00:00, 5 December 2010 (PST)&lt;br /&gt;
#:: Why browser behavior is studied for drafting IDN standard? Does it mean that if this policy was drafted 10 years, back, none of the Malayalam characters will be allowed in IDN? 10 years back, Malayalam rendering was pathetic in browsers. Or the current policy is going to change when browsers improve the rendering and their address bar behavior later? How can a standard drafted based on its Implementation?  - [[User:സന്തോഷ്|സന്തോഷ്]] 00:00, 5 December 2010 (PST)&lt;br /&gt;
#:: A standard should not be based on buggy implementation of Malayalam rendering, that is encouraging inability. Any wrong implementation should be corrected. Malayalam language in digital domain should not be kept at the mercy of some corporations who does not care about the language. [[User:Pravs|Pravs]] 06:34, 7 December 2010 (PST)&lt;br /&gt;
&lt;br /&gt;
# Visually identical glyphs are not the only entries to be considered for the variant table. Unicode chart itself has ambiguous dual representations for the same code point without canonical equivalence. An example for this is au signs in Tamil and Malayalam. ௗ- ௌ and  ൗ - ൌ . The document does not consider these special cases.&lt;br /&gt;
#: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response: The IDN policy does not permit the entry of syllables having structure CMM or MCM, where M stands for Matra or vowel sign. The ABNF rules takes care of this.&amp;lt;/font&amp;gt;&lt;br /&gt;
#::  That is wrong. ൗ - ൌ are neither CMM nor MCM case. It is single code pointed Mathra(vowel signs), appearing with consonants in CM format alone. -[[User:സന്തോഷ്|സന്തോഷ്]] 01:04, 5 December 2010 (PST)&lt;br /&gt;
# There are different orthographic forms for many glyphs in Malayalam. The variant table does not address different scenarios arising while considering the visual similarity. For example in traditional orthography TTA is written in stacked form (റ്റ). While in modern orthography it can be written in non-stacked form and this non-stacked form is visually identical to two RA sequence (ററ).&lt;br /&gt;
#:&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : Only the stacked form is considered to be the conjunct TTA in modern orthography.&amp;lt;/font&amp;gt;&lt;br /&gt;
#:: i don&#039;t really understand the logic. A normal user is easily spoofed with റ്റ and ററ. If we go by CDAC&#039;s logic another inorganic standardisation will be the result --[[User:Jinesh.k|Jinesh.k]] 06:26, 4 December 2010 (PST)&lt;br /&gt;
#:: As noted before, please don&#039;t answer questions about IDN using Modern/Old orthography distinction. Nobody with proper Malayalam knowledge will say that nonstacked റ്റ is not TTA. The nonstacked form is explained in detail in Unicode 5.1.0 standard. see http://unicode.org/versions/Unicode5.1.0/  CDACs statement is a contradiction to this.&lt;br /&gt;
&lt;br /&gt;
=== ABNF rules ===&lt;br /&gt;
&lt;br /&gt;
#Section 2 says ക് as pure consonant of ക. Chillu of ക്‍ is considered as pure consonant of ka.&lt;br /&gt;
#: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response: The policy document doesn&#039;t address the obsolete characters in the script, although those characters might have been included in Unicode code chart.&amp;lt;/font&amp;gt;&lt;br /&gt;
#:: On what basis CDAC decided that a character is obsolete? Does CDAC understand that people write the name &amp;quot;CDAC&amp;quot; in Malayalam using Chillu of K like സിഡാക്‍ ? -[[User:സന്തോഷ്|സന്തോഷ്]] 00:20, 5 December 2010 (PST)&lt;br /&gt;
# Section 2.a says CM can be followed by only D (anuswara) or X (visarga). This excludes the Samvruthokarams of Malayalam. All consonant can have cons + u vowel sign  + virama and forming samvruthokaram form of that consonant. Examples:  തു് , കു് , പു് , രു് .&lt;br /&gt;
#: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response: The use of samvruthokarams is considered to be the part of traditional orthography which the policy doesn&#039;t permit.&amp;lt;/font&amp;gt;&lt;br /&gt;
#:: We already explained that orthography is not even a subject of discussion here. Can CDAC provide a definition on what is traditional orthography and what is modern orthography? With a list of &amp;quot;allowed&amp;quot; &amp;quot;characters&amp;quot; in modern orthography which is present in traditional Orthography? What is meant by &amp;quot;permitting&amp;quot;? What stops from a user to use a so called modern orthography font to write samvruthokaram? - [[User:സന്തോഷ്|സന്തോഷ്]] 00:20, 5 December 2010 (PST)&lt;br /&gt;
#:: It is completely unacceptable for CDAC to dictate choice of orthography for any user. It does not make any sense as well. Samvruthokaram can be written using modern orthography as well as traditional orthographies. [[User:Pravs|Pravs]] 06:40, 7 December 2010 (PST)&lt;br /&gt;
&lt;br /&gt;
# Section 3.a restrict the count of consonant in syllable as 4. But ഗ്ദ്ധ്ര്യ has 5 consonants&lt;br /&gt;
#: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : Complex conjuncts like ഗ്ദ്ധ്ര്യ have been simplified in modern orthography.&amp;lt;/font&amp;gt;&lt;br /&gt;
#:: Just wanted to know how a conjunct can be simplified? If &amp;quot;simplified&amp;quot; will the number of consonants reduce? Will the number of Unicode characters reduce?! CDAC should understand the difference between a conjunct and glyph before answering the question. -- [[User:സന്തോഷ്|സന്തോഷ്]] 00:20, 5 December 2010 (PST)&lt;br /&gt;
# Section 3.b excludes syllables with samvruthokram like ക്കു് .&lt;br /&gt;
# Section 4 states a chillu can be followed by a vowel sign. Since chillu is dead consonant, there is no possibility of having virama after chillu.&lt;br /&gt;
#:&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : The document doesn&#039;t state that a chillu can be followed by a vowel sign. The observation that a virama can appear after a chillu is based on the recommendation of Unicode&amp;lt;/font&amp;gt;&lt;br /&gt;
# The example used for LHC - ന്‍്റ does not exist in printing or digital format. None of the input methods or Malayalam writers ന്റ in this way. The sequence for nta is ന + ്  + റ . ie there is no LHC sequence in Malayalam.&lt;br /&gt;
#: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response: The  ന്‍്റ happened because none of the rendering engines available today does support the rendering of &#039;nTa&#039; in the Unicode 5.1 way. as displayed in the document is the  wrongly rendered form of the conjunct &#039;nTa&#039;. This 5.1 official document on rendering the conjunct &#039;nTa&#039;.&amp;lt;/font&amp;gt;&lt;br /&gt;
#:: CDAC said, it did extensive study on rendering in various  browser address bars and took  policy decision was based on that. So for this, no study was conducted? Never noticed that browsers are not able to render this properly? -[[User:സന്തോഷ്|സന്തോഷ്]] 00:57, 5 December 2010 (PST)&lt;br /&gt;
#:: It seems, no systematic process or criteria were used to arrive at the conclusions. [[User:Pravs|Pravs]] 06:47, 7 December 2010 (PST)&lt;br /&gt;
# Since LHC is invalid for Malayalam, including L = ന്‍ , section 5 of the document cancels itself.&lt;br /&gt;
# Because of argument #6, section 6 also cancels itself.&lt;br /&gt;
# Because of arguments #1 to #8 the IDN rule &amp;quot;Consonant Sequence → *3(CH) C [H|D|X|M[D|X]] | L[HC[D|H|M[D]]]&amp;quot;  is completely wrong and need to be reformulated.&lt;br /&gt;
&lt;br /&gt;
=== Restriction Rules ===&lt;br /&gt;
# Section 2 says &amp;quot;H is not permitted after V, D, X, M, digit and dash&amp;quot; This is wrong since samvruthokaram requires H after V&lt;br /&gt;
#:&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : See the explanation for section 2 under ABNF Rules&amp;lt;/font&amp;gt;&lt;br /&gt;
# Section 7 says H can follow L if it is followed by റ , This is wrong as explained above. L can never followed by H. It can only followed by C&lt;br /&gt;
#:&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : See the explanation for section 5 under ABNF Rules&amp;lt;/font&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== nta criticism===&lt;br /&gt;
&lt;br /&gt;
#This document does not address the case of stacked and non stacked forms of nta, which are interchangeably used. For example എന്റെ can be spoofed with എന്‍റെ. Severity of this issue is increased by having one more sequence to represent the same conjunct (ന്‍ + ് + റ) is introduced in Unicode 5.1&lt;br /&gt;
#: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : Ans : Modern orthography treats ന്‍റ      as &#039;nRa&#039; and ന്‍റ      as &#039;nTa&#039;. The interchangeable usage of stacked and non-stacked forms for the conjunct &#039;nTa&#039; is wrong by convention.&amp;lt;/font&amp;gt;&lt;br /&gt;
#:: One of the main motivations for IDN restrictions is to avoid spoofing, and this policy does not address legitimate case of multiple encoding for &#039;nTa&#039;. This is a glowing example of complete disregard for the language and obedience to faulty implementation by a big corporation. Though it cannot be solved at IDN level (it is an issue at encoding level), there should be an effort to address severity of this issue. To me, the only solution seems to be dumping the 5.1 version and Microsoft&#039;s version of nTa in favour of Malayalam nTa, as per laguage rules. [[User:Pravs|Pravs]] 06:58, 7 December 2010 (PST)&lt;br /&gt;
&lt;br /&gt;
===Chart of allowed characters===&lt;br /&gt;
&lt;br /&gt;
#Malayalam chillus  - the 5.1 version ക്‍ is removed from the tables. which is having same characteristics and use cases of other chillus. So excluding it from the allowed code points does not make any sense. Moreover the existing chillu representation - non-atomic - is not mentioned in the document at all.&lt;br /&gt;
# Malayalam au sign - ൌ  is not allowed. Instead the au length mark ൗ  is provided. The inscript standard does not allow one to type ൗ  and allows only ൌ. Other input methods allows to type both. But the document does not say anything on the equivalence of both. Allowing both vowel signs is also a spoofing issue. And hence this should be handled in variant table.&lt;br /&gt;
#: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : The inscript standard being revised. The new standard allows both the characters to be inputted. For restricting spoofing and phishing, only one form i.e. ൗ by IDN policy (used in modern text) has been allowed&amp;lt;/font&amp;gt;&lt;br /&gt;
#:: This also shows CDAC is completely clueless about the difference between character encoding and input methods. How is CDAC going to prevent me from using ൌ with old inscript standard or entering the unicode value directly? This is an encoding issue and has to be solved at encoding level by providing equivalance. Trying to fix encoding issue by mandating a specific input method is like prescribing ointment when you need a surgery (ചുക്കുവെള്ളം കുടിച്ചാല്‍ കാന്‍സര്‍ ഭേദമാകും എന്നു് പ്രതീക്ഷിയ്ക്കുന്ന പോലെയാണതു്.) [[User:Pravs|Pravs]] 07:08, 7 December 2010 (PST)&lt;br /&gt;
#:: Our response to the CDACs revised Inscript standard- [[CDAC-Inscript-Critique ]]-  [[User:സന്തോഷ്|സന്തോഷ്]] 07:10, 7 December 2010 (PST)&lt;br /&gt;
&lt;br /&gt;
=== Variant Table and Visual Spoofing ===&lt;br /&gt;
Variant table is not logical. Only ളള and ള്ള makes sense. None of the other entries should be considered as spoofing. ന്ത and ന്ന is not even close. Mirror images are already used in Latin, eg. b and d. Hence സ്സ and ഡ്ഡ cannot be blocked. Moreover it is not clear why the same logic does not apply for സ and ഡ. It did not consider the case of ററ and non stacked form of റ്റ common in new lipi.&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : The variant table is based on the observations how Malayalam characters and conjuncts are rendered in the address bars of standard browsers like IE, Mozilla and Safari. While ന്ത and ന്ന are perfectly rendered in Mozilla and Safari, they are not legibly rendered in various versions of IE. The mirror imaged nature of the glyphs was not the criterion for the two glyphs to be qualified as variants. Also note that the variant table is not a full-proof mechanism which can prevent spoofing.&amp;lt;/font&amp;gt;&lt;br /&gt;
:: We cannot keep our language hostage to faulty software from one company. Bugs needs to be fixed, not the other way around ie, standards are not drafted based on buggy software. It is completly unacceptable, CDAC should ask Microsoft to fix its rendering in IE. [[User:Pravs|Pravs]] 07:15, 7 December 2010 (PST)&lt;br /&gt;
&lt;br /&gt;
Even though similarity is considered, dual encoding is not mentioned. In case of dual encoding of chillus, both forms (atomic chillu and consonant  chandrakkala ZWJ) of chillus will look SAME.&lt;br /&gt;
: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : IDN policy doesn&#039;t allow control characters such as ZWJ and ZWNJ to be part of domain names.&amp;lt;/font&amp;gt;&lt;br /&gt;
:: ZWJ and ZWNJ are part of unicode standard and is required for Malayalam (even though atomic chillus might solve ZWJ issue, there is no substitute for ZWNJ). We need these characters for using Malayalam and what CDAC should be doing is to change IDN policy. We should be demanding what is our right and not blindly accpeting what is given to us. Does CDAC have a soultion to cases requiring ZWNJ? [[User:Pravs|Pravs]] 07:20, 7 December 2010 (PST)&lt;br /&gt;
&lt;br /&gt;
== Conclusion==&lt;br /&gt;
The CDAC Policy document on Malayalam IDN is not acceptable without correcting the above explained errors. In its current format, the document was prepared with lot of false assumptions and contains many technical mistakes as pointed out above. Issues introduced by careless encoding standards cannot be fixed by standarding input methods ot IDN policy. We need a consistant way of using Malayalam everywhere in digital domain. Compromise for security should not be at the cost of the language. Consultation is must with all stake holders of Malayalam Computing before preparing such an important document. This was not happened and we expect such an initiative from the authorities.&lt;br /&gt;
&lt;br /&gt;
== Discussion ==&lt;br /&gt;
# Discussion about the CDACs response: http://lists.smc.org.in/pipermail/discuss-smc.org.in/2010-December/011985.html&lt;/div&gt;</summary>
		<author><name>Pravs</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=CDAC-IDN-Critique&amp;diff=2058</id>
		<title>CDAC-IDN-Critique</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=CDAC-IDN-Critique&amp;diff=2058"/>
		<updated>2010-12-07T15:20:26Z</updated>

		<summary type="html">&lt;p&gt;Pravs: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Malayalam IDN Policy Draft by CDAC - Critique by SMC&lt;br /&gt;
&lt;br /&gt;
The Draft policy document by CDAC is available [http://wiki.smc.org.in/images/7/7b/INTERNATIONALIZED_DOMAIN_NAMES-MALAYALAM.pdf  here  ]&lt;br /&gt;
&lt;br /&gt;
[[File:Response_to_C-DAC-IDN-Critique.pdf | CDAC&#039;s response dated 2/12/2010]]&lt;br /&gt;
&lt;br /&gt;
== Introduction == &lt;br /&gt;
&lt;br /&gt;
== Issues with the approach and process ==&lt;br /&gt;
=== Response to CDAC&#039;s response  (dated 2/12/2010) ===&lt;br /&gt;
We are not satisfied with the answers given to our questions. The response seems to be prepared by somebody who does not know the scope of IDN. The replies are based on things that are not at all related to IDN. We have tried to explain why your answers are completely wrong. See the responses given below. CDAC seems to be confused about the Malayalam orthography, Unicode standard, Font , rendering etc. &lt;br /&gt;
&lt;br /&gt;
One of the main thing that we want to emphasis is, standards should not be drafted based on the existing applications. The response from CDAC says, it did extensive study on existing browsers and their address bar behavior. Even one variant table entry is associated with Microsoft Internet Explores buggy behavior. Sorry to say that this is ridiculous. Standards and Policies are for the implementations in the future. It is the guidelines for the applications to be developed in future. It is not a study of existing application behavior.  This is a trivial  fact any person with minimal technical qualification is aware of. CDAC seems to be missing this point.&lt;br /&gt;
&lt;br /&gt;
Orthography is style of writing. It is a users choice for visualizing the content. The content remains same whether one use traditional orthography or new orthography. What IDN policy need to take care of is avoiding all cases of spoofing. That should be independent of orthography. IDN can not assume , or cannot enforce that a user should be using only a particular font with Internet browsers. The CDAC&#039;s draft policy makes such a false assumption. It states that Malayalam IDN is not designed for Traditional orthography. This argument comes from ignorance about the basic concepts of Language technology. Unicode does not define anything about Malayalam new and old orthography. It is all about users choice. When CDAC&#039;s policy states &amp;quot;Modern Orthography&amp;quot;, it should define what it is. It is not all defined technically or even in usage pattern. It is just a user&#039;s convenience. &lt;br /&gt;
&lt;br /&gt;
We demand a process to re-draft this policy document. This is the age of open standards. CDAC should take initiatives to consult with all stakeholders- language experts, language computing experts, developers.&lt;br /&gt;
&lt;br /&gt;
== Criticism on the policy ==&lt;br /&gt;
=== General Comments===&lt;br /&gt;
# The variant table is defined based on random glyphs taken from a list of 900+ possible glyphs for Malayalam. No explanation is given on how two entries in variant table become homo morphs. One entry in variant table is just because of the fact that one is mirror image of other. Since b, d are not excluded from English, there&#039;s no need to exclude mirror imaged glyphs in variant table.&lt;br /&gt;
#: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response: The IDN system devised for Malayalam is based only on the modern script. It doesn&#039;t address the old script or the fonts based on old script. Also, a detailed study was done before proposing homographs in each of the languages. The study included observing the visual form of the conjunct in the point size of the Address bars of major browsers. The mirror imaged nature of the glyphs was not the criterion for the two glyphs to be qualified as variants.&amp;lt;/font&amp;gt;&lt;br /&gt;
#:: Since CDAC took that much effort to check visual spoofing, i just like to know the basic glyph set in modern orthography of Malayalam --[[User:Jinesh.k|Jinesh.k]] 06:26, 4 December 2010 (PST)&lt;br /&gt;
#::  Please understand that IDN has no relation with the orthography. Orthography is kind of writing style and decided by user&#039;s choice on fonts. It is at higher level and close to user, while IDN has nothing to do about the choice of fonts by users. The distinction between Modern Orthography and Old orthography is not technically defined. Unicode or Unicode capable applications never bother about whether user use an Old lipi font or Traditional font. CDAC or IDN policy cannot say that user should use only a certain set of fonts to work with IDN.  If CDAC says IDN does not support traditional orthography, it does not make any sense at all for some one who know what is Unicode, Orthography and IDN. - [[User:സന്തോഷ്|സന്തോഷ്]] 23:53, 4 December 2010 (PST)&lt;br /&gt;
#::  Forcing a user to chose a particular orthography font based on bugs in one browser is not acceptable. IDN standard should not ban most popular fonts currently in use, majority of digital Malayalam users are happy with traditional fonts and there is no reason to stop it. CDAC cannot and should not decide what fonts a user choses in his/her computer. IDN should work with any Malayalam font, which complies with Unicode version 5.0 and correctly implement Malayalam language rules for conjunct formation. Unicode 5.1 is controvercial and many issues are not answered and it would be a tragedy for Malayalam language if we decide to follow unicode 5.1 blindly without considering its impact on Malayalam language for years to come. [[User:Pravs|Pravs]] 06:30, 7 December 2010 (PST)&lt;br /&gt;
#:: If mirror image was not a criteria for variant table, explain how ത്സ/ഝ , സ്സ/ഡ്ഡ qualify to the variant table?  - [[User:സന്തോഷ്|സന്തോഷ്]] 00:00, 5 December 2010 (PST)&lt;br /&gt;
#:: Why browser behavior is studied for drafting IDN standard? Does it mean that if this policy was drafted 10 years, back, none of the Malayalam characters will be allowed in IDN? 10 years back, Malayalam rendering was pathetic in browsers. Or the current policy is going to change when browsers improve the rendering and their address bar behavior later? How can a standard drafted based on its Implementation?  - [[User:സന്തോഷ്|സന്തോഷ്]] 00:00, 5 December 2010 (PST)&lt;br /&gt;
#:: A standard should not be based on buggy implementation of Malayalam rendering, that is encouraging inability. Any wrong implementation should be corrected. Malayalam language in digital domain should not be kept at the mercy of some corporations who does not care about the language. [[User:Pravs|Pravs]] 06:34, 7 December 2010 (PST)&lt;br /&gt;
&lt;br /&gt;
# Visually identical glyphs are not the only entries to be considered for the variant table. Unicode chart itself has ambiguous dual representations for the same code point without canonical equivalence. An example for this is au signs in Tamil and Malayalam. ௗ- ௌ and  ൗ - ൌ . The document does not consider these special cases.&lt;br /&gt;
#: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response: The IDN policy does not permit the entry of syllables having structure CMM or MCM, where M stands for Matra or vowel sign. The ABNF rules takes care of this.&amp;lt;/font&amp;gt;&lt;br /&gt;
#::  That is wrong. ൗ - ൌ are neither CMM nor MCM case. It is single code pointed Mathra(vowel signs), appearing with consonants in CM format alone. -[[User:സന്തോഷ്|സന്തോഷ്]] 01:04, 5 December 2010 (PST)&lt;br /&gt;
# There are different orthographic forms for many glyphs in Malayalam. The variant table does not address different scenarios arising while considering the visual similarity. For example in traditional orthography TTA is written in stacked form (റ്റ). While in modern orthography it can be written in non-stacked form and this non-stacked form is visually identical to two RA sequence (ററ).&lt;br /&gt;
#:&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : Only the stacked form is considered to be the conjunct TTA in modern orthography.&amp;lt;/font&amp;gt;&lt;br /&gt;
#:: i don&#039;t really understand the logic. A normal user is easily spoofed with റ്റ and ററ. If we go by CDAC&#039;s logic another inorganic standardisation will be the result --[[User:Jinesh.k|Jinesh.k]] 06:26, 4 December 2010 (PST)&lt;br /&gt;
#:: As noted before, please don&#039;t answer questions about IDN using Modern/Old orthography distinction. Nobody with proper Malayalam knowledge will say that nonstacked റ്റ is not TTA. The nonstacked form is explained in detail in Unicode 5.1.0 standard. see http://unicode.org/versions/Unicode5.1.0/  CDACs statement is a contradiction to this.&lt;br /&gt;
&lt;br /&gt;
=== ABNF rules ===&lt;br /&gt;
&lt;br /&gt;
#Section 2 says ക് as pure consonant of ക. Chillu of ക്‍ is considered as pure consonant of ka.&lt;br /&gt;
#: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response: The policy document doesn&#039;t address the obsolete characters in the script, although those characters might have been included in Unicode code chart.&amp;lt;/font&amp;gt;&lt;br /&gt;
#:: On what basis CDAC decided that a character is obsolete? Does CDAC understand that people write the name &amp;quot;CDAC&amp;quot; in Malayalam using Chillu of K like സിഡാക്‍ ? -[[User:സന്തോഷ്|സന്തോഷ്]] 00:20, 5 December 2010 (PST)&lt;br /&gt;
# Section 2.a says CM can be followed by only D (anuswara) or X (visarga). This excludes the Samvruthokarams of Malayalam. All consonant can have cons + u vowel sign  + virama and forming samvruthokaram form of that consonant. Examples:  തു് , കു് , പു് , രു് .&lt;br /&gt;
#: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response: The use of samvruthokarams is considered to be the part of traditional orthography which the policy doesn&#039;t permit.&amp;lt;/font&amp;gt;&lt;br /&gt;
#:: We already explained that orthography is not even a subject of discussion here. Can CDAC provide a definition on what is traditional orthography and what is modern orthography? With a list of &amp;quot;allowed&amp;quot; &amp;quot;characters&amp;quot; in modern orthography which is present in traditional Orthography? What is meant by &amp;quot;permitting&amp;quot;? What stops from a user to use a so called modern orthography font to write samvruthokaram? - [[User:സന്തോഷ്|സന്തോഷ്]] 00:20, 5 December 2010 (PST)&lt;br /&gt;
#:: It is completely unacceptable for CDAC to dictate choice of orthography for any user. It does not make any sense as well. Samvruthokaram can be written using modern orthography as well as traditional orthographies. [[User:Pravs|Pravs]] 06:40, 7 December 2010 (PST)&lt;br /&gt;
&lt;br /&gt;
# Section 3.a restrict the count of consonant in syllable as 4. But ഗ്ദ്ധ്ര്യ has 5 consonants&lt;br /&gt;
#: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : Complex conjuncts like ഗ്ദ്ധ്ര്യ have been simplified in modern orthography.&amp;lt;/font&amp;gt;&lt;br /&gt;
#:: Just wanted to know how a conjunct can be simplified? If &amp;quot;simplified&amp;quot; will the number of consonants reduce? Will the number of Unicode characters reduce?! CDAC should understand the difference between a conjunct and glyph before answering the question. -- [[User:സന്തോഷ്|സന്തോഷ്]] 00:20, 5 December 2010 (PST)&lt;br /&gt;
# Section 3.b excludes syllables with samvruthokram like ക്കു് .&lt;br /&gt;
# Section 4 states a chillu can be followed by a vowel sign. Since chillu is dead consonant, there is no possibility of having virama after chillu.&lt;br /&gt;
#:&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : The document doesn&#039;t state that a chillu can be followed by a vowel sign. The observation that a virama can appear after a chillu is based on the recommendation of Unicode&amp;lt;/font&amp;gt;&lt;br /&gt;
# The example used for LHC - ന്‍്റ does not exist in printing or digital format. None of the input methods or Malayalam writers ന്റ in this way. The sequence for nta is ന + ്  + റ . ie there is no LHC sequence in Malayalam.&lt;br /&gt;
#: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response: The  ന്‍്റ happened because none of the rendering engines available today does support the rendering of &#039;nTa&#039; in the Unicode 5.1 way. as displayed in the document is the  wrongly rendered form of the conjunct &#039;nTa&#039;. This 5.1 official document on rendering the conjunct &#039;nTa&#039;.&amp;lt;/font&amp;gt;&lt;br /&gt;
#:: CDAC said, it did extensive study on rendering in various  browser address bars and took  policy decision was based on that. So for this, no study was conducted? Never noticed that browsers are not able to render this properly? -[[User:സന്തോഷ്|സന്തോഷ്]] 00:57, 5 December 2010 (PST)&lt;br /&gt;
#:: It seems, no systematic process or criteria were used to arrive at the conclusions. [[User:Pravs|Pravs]] 06:47, 7 December 2010 (PST)&lt;br /&gt;
# Since LHC is invalid for Malayalam, including L = ന്‍ , section 5 of the document cancels itself.&lt;br /&gt;
# Because of argument #6, section 6 also cancels itself.&lt;br /&gt;
# Because of arguments #1 to #8 the IDN rule &amp;quot;Consonant Sequence → *3(CH) C [H|D|X|M[D|X]] | L[HC[D|H|M[D]]]&amp;quot;  is completely wrong and need to be reformulated.&lt;br /&gt;
&lt;br /&gt;
=== Restriction Rules ===&lt;br /&gt;
# Section 2 says &amp;quot;H is not permitted after V, D, X, M, digit and dash&amp;quot; This is wrong since samvruthokaram requires H after V&lt;br /&gt;
#:&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : See the explanation for section 2 under ABNF Rules&amp;lt;/font&amp;gt;&lt;br /&gt;
# Section 7 says H can follow L if it is followed by റ , This is wrong as explained above. L can never followed by H. It can only followed by C&lt;br /&gt;
#:&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : See the explanation for section 5 under ABNF Rules&amp;lt;/font&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== nta criticism===&lt;br /&gt;
&lt;br /&gt;
#This document does not address the case of stacked and non stacked forms of nta, which are interchangeably used. For example എന്റെ can be spoofed with എന്‍റെ. Severity of this issue is increased by having one more sequence to represent the same conjunct (ന്‍ + ് + റ) is introduced in Unicode 5.1&lt;br /&gt;
#: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : Ans : Modern orthography treats ന്‍റ      as &#039;nRa&#039; and ന്‍റ      as &#039;nTa&#039;. The interchangeable usage of stacked and non-stacked forms for the conjunct &#039;nTa&#039; is wrong by convention.&amp;lt;/font&amp;gt;&lt;br /&gt;
#:: One of the main motivations for IDN restrictions is to avoid spoofing, and this policy does not address legitimate case of multiple encoding for &#039;nTa&#039;. This is a glowing example of complete disregard for the language and obedience to faulty implementation by a big corporation. Though it cannot be solved at IDN level (it is an issue at encoding level), there should be an effort to address severity of this issue. To me, the only solution seems to be dumping the 5.1 version and Microsoft&#039;s version of nTa in favour of Malayalam nTa, as per laguage rules. [[User:Pravs|Pravs]] 06:58, 7 December 2010 (PST)&lt;br /&gt;
&lt;br /&gt;
===Chart of allowed characters===&lt;br /&gt;
&lt;br /&gt;
#Malayalam chillus  - the 5.1 version ക്‍ is removed from the tables. which is having same characteristics and use cases of other chillus. So excluding it from the allowed code points does not make any sense. Moreover the existing chillu representation - non-atomic - is not mentioned in the document at all.&lt;br /&gt;
# Malayalam au sign - ൌ  is not allowed. Instead the au length mark ൗ  is provided. The inscript standard does not allow one to type ൗ  and allows only ൌ. Other input methods allows to type both. But the document does not say anything on the equivalence of both. Allowing both vowel signs is also a spoofing issue. And hence this should be handled in variant table.&lt;br /&gt;
#: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : The inscript standard being revised. The new standard allows both the characters to be inputted. For restricting spoofing and phishing, only one form i.e. ൗ by IDN policy (used in modern text) has been allowed&amp;lt;/font&amp;gt;&lt;br /&gt;
#:: This also shows CDAC is completely clueless about the difference between character encoding and input methods. How is CDAC going to prevent me from using ൌ with old inscript standard or entering the unicode value directly? This is an encoding issue and has to be solved at encoding level by providing equivalance. Trying to fix encoding issue by mandating a specific input method is like prescribing ointment when you need a surgery (ചുക്കുവെള്ളം കുടിച്ചാല്‍ കാന്‍സര്‍ ഭേദമാകും എന്നു് പ്രതീക്ഷിയ്ക്കുന്ന പോലെയാണതു്.) [[User:Pravs|Pravs]] 07:08, 7 December 2010 (PST)&lt;br /&gt;
#:: Our response to the CDACs revised Inscript standard- [[CDAC-Inscript-Critique ]]-  [[User:സന്തോഷ്|സന്തോഷ്]] 07:10, 7 December 2010 (PST)&lt;br /&gt;
&lt;br /&gt;
=== Variant Table and Visual Spoofing ===&lt;br /&gt;
Variant table is not logical. Only ളള and ള്ള makes sense. None of the other entries should be considered as spoofing. ന്ത and ന്ന is not even close. Mirror images are already used in Latin, eg. b and d. Hence സ്സ and ഡ്ഡ cannot be blocked. Moreover it is not clear why the same logic does not apply for സ and ഡ. It did not consider the case of ററ and non stacked form of റ്റ common in new lipi.&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : The variant table is based on the observations how Malayalam characters and conjuncts are rendered in the address bars of standard browsers like IE, Mozilla and Safari. While ന്ത and ന്ന are perfectly rendered in Mozilla and Safari, they are not legibly rendered in various versions of IE. The mirror imaged nature of the glyphs was not the criterion for the two glyphs to be qualified as variants. Also note that the variant table is not a full-proof mechanism which can prevent spoofing.&amp;lt;/font&amp;gt;&lt;br /&gt;
:: We cannot keep our language hostage to faulty software from one company. Bugs needs to be fixed, not the other way around ie, standards are not drafted based on buggy software. It is completly unacceptable, CDAC should ask Microsoft to fix its rendering in IE. [[User:Pravs|Pravs]] 07:15, 7 December 2010 (PST)&lt;br /&gt;
&lt;br /&gt;
Even though similarity is considered, dual encoding is not mentioned. In case of dual encoding of chillus, both forms (atomic chillu and consonant  chandrakkala ZWJ) of chillus will look SAME.&lt;br /&gt;
: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : IDN policy doesn&#039;t allow control characters such as ZWJ and ZWNJ to be part of domain names.&amp;lt;/font&amp;gt;&lt;br /&gt;
:: ZWJ and ZWNJ are part of unicode standard and is required for Malayalam (even though atomic chillus might solve ZWJ issue, there is no substitute for ZWNJ). We need these characters for using Malayalam and what CDAC should be doing is to change IDN policy. We should be demanding what is our right and not blindly accpeting what is given to us. Does CDAC have a soultion to cases requiring ZWNJ? [[User:Pravs|Pravs]] 07:20, 7 December 2010 (PST)&lt;br /&gt;
&lt;br /&gt;
== Conclusion==&lt;br /&gt;
The CDAC Policy document on Malayalam IDN is not acceptable without correcting the above explained errors. In its current format, the document was prepared with lot of false assumptions and contains many technical mistakes as pointed out above. Consultation is must with all stake holders of Malayalam Computing before preparing such an important document. This was not happened and we expect such an initiative from the authorities.&lt;br /&gt;
&lt;br /&gt;
== Discussion ==&lt;br /&gt;
# Discussion about the CDACs response: http://lists.smc.org.in/pipermail/discuss-smc.org.in/2010-December/011985.html&lt;/div&gt;</summary>
		<author><name>Pravs</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=CDAC-IDN-Critique&amp;diff=2057</id>
		<title>CDAC-IDN-Critique</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=CDAC-IDN-Critique&amp;diff=2057"/>
		<updated>2010-12-07T15:15:04Z</updated>

		<summary type="html">&lt;p&gt;Pravs: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Malayalam IDN Policy Draft by CDAC - Critique by SMC&lt;br /&gt;
&lt;br /&gt;
The Draft policy document by CDAC is available [http://wiki.smc.org.in/images/7/7b/INTERNATIONALIZED_DOMAIN_NAMES-MALAYALAM.pdf  here  ]&lt;br /&gt;
&lt;br /&gt;
[[File:Response_to_C-DAC-IDN-Critique.pdf | CDAC&#039;s response dated 2/12/2010]]&lt;br /&gt;
&lt;br /&gt;
== Introduction == &lt;br /&gt;
&lt;br /&gt;
== Issues with the approach and process ==&lt;br /&gt;
=== Response to CDAC&#039;s response  (dated 2/12/2010) ===&lt;br /&gt;
We are not satisfied with the answers given to our questions. The response seems to be prepared by somebody who does not know the scope of IDN. The replies are based on things that are not at all related to IDN. We have tried to explain why your answers are completely wrong. See the responses given below. CDAC seems to be confused about the Malayalam orthography, Unicode standard, Font , rendering etc. &lt;br /&gt;
&lt;br /&gt;
One of the main thing that we want to emphasis is, standards should not be drafted based on the existing applications. The response from CDAC says, it did extensive study on existing browsers and their address bar behavior. Even one variant table entry is associated with Microsoft Internet Explores buggy behavior. Sorry to say that this is ridiculous. Standards and Policies are for the implementations in the future. It is the guidelines for the applications to be developed in future. It is not a study of existing application behavior.  This is a trivial  fact any person with minimal technical qualification is aware of. CDAC seems to be missing this point.&lt;br /&gt;
&lt;br /&gt;
Orthography is style of writing. It is a users choice for visualizing the content. The content remains same whether one use traditional orthography or new orthography. What IDN policy need to take care of is avoiding all cases of spoofing. That should be independent of orthography. IDN can not assume , or cannot enforce that a user should be using only a particular font with Internet browsers. The CDAC&#039;s draft policy makes such a false assumption. It states that Malayalam IDN is not designed for Traditional orthography. This argument comes from ignorance about the basic concepts of Language technology. Unicode does not define anything about Malayalam new and old orthography. It is all about users choice. When CDAC&#039;s policy states &amp;quot;Modern Orthography&amp;quot;, it should define what it is. It is not all defined technically or even in usage pattern. It is just a user&#039;s convenience. &lt;br /&gt;
&lt;br /&gt;
We demand a process to re-draft this policy document. This is the age of open standards. CDAC should take initiatives to consult with all stakeholders- language experts, language computing experts, developers.&lt;br /&gt;
&lt;br /&gt;
== Criticism on the policy ==&lt;br /&gt;
=== General Comments===&lt;br /&gt;
# The variant table is defined based on random glyphs taken from a list of 900+ possible glyphs for Malayalam. No explanation is given on how two entries in variant table become homo morphs. One entry in variant table is just because of the fact that one is mirror image of other. Since b, d are not excluded from English, there&#039;s no need to exclude mirror imaged glyphs in variant table.&lt;br /&gt;
#: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response: The IDN system devised for Malayalam is based only on the modern script. It doesn&#039;t address the old script or the fonts based on old script. Also, a detailed study was done before proposing homographs in each of the languages. The study included observing the visual form of the conjunct in the point size of the Address bars of major browsers. The mirror imaged nature of the glyphs was not the criterion for the two glyphs to be qualified as variants.&amp;lt;/font&amp;gt;&lt;br /&gt;
#:: Since CDAC took that much effort to check visual spoofing, i just like to know the basic glyph set in modern orthography of Malayalam --[[User:Jinesh.k|Jinesh.k]] 06:26, 4 December 2010 (PST)&lt;br /&gt;
#::  Please understand that IDN has no relation with the orthography. Orthography is kind of writing style and decided by user&#039;s choice on fonts. It is at higher level and close to user, while IDN has nothing to do about the choice of fonts by users. The distinction between Modern Orthography and Old orthography is not technically defined. Unicode or Unicode capable applications never bother about whether user use an Old lipi font or Traditional font. CDAC or IDN policy cannot say that user should use only a certain set of fonts to work with IDN.  If CDAC says IDN does not support traditional orthography, it does not make any sense at all for some one who know what is Unicode, Orthography and IDN. - [[User:സന്തോഷ്|സന്തോഷ്]] 23:53, 4 December 2010 (PST)&lt;br /&gt;
#::  Forcing a user to chose a particular orthography font based on bugs in one browser is not acceptable. IDN standard should not ban most popular fonts currently in use, majority of digital Malayalam users are happy with traditional fonts and there is no reason to stop it. CDAC cannot and should not decide what fonts a user choses in his/her computer. IDN should work with any Malayalam font, which complies with Unicode version 5.0 and correctly implement Malayalam language rules for conjunct formation. Unicode 5.1 is controvercial and many issues are not answered and it would be a tragedy for Malayalam language if we decide to follow unicode 5.1 blindly without considering its impact on Malayalam language for years to come. [[User:Pravs|Pravs]] 06:30, 7 December 2010 (PST)&lt;br /&gt;
#:: If mirror image was not a criteria for variant table, explain how ത്സ/ഝ , സ്സ/ഡ്ഡ qualify to the variant table?  - [[User:സന്തോഷ്|സന്തോഷ്]] 00:00, 5 December 2010 (PST)&lt;br /&gt;
#:: Why browser behavior is studied for drafting IDN standard? Does it mean that if this policy was drafted 10 years, back, none of the Malayalam characters will be allowed in IDN? 10 years back, Malayalam rendering was pathetic in browsers. Or the current policy is going to change when browsers improve the rendering and their address bar behavior later? How can a standard drafted based on its Implementation?  - [[User:സന്തോഷ്|സന്തോഷ്]] 00:00, 5 December 2010 (PST)&lt;br /&gt;
#:: A standard should not be based on buggy implementation of Malayalam rendering, that is encouraging inability. Any wrong implementation should be corrected. Malayalam language in digital domain should not be kept at the mercy of some corporations who does not care about the language. [[User:Pravs|Pravs]] 06:34, 7 December 2010 (PST)&lt;br /&gt;
&lt;br /&gt;
# Visually identical glyphs are not the only entries to be considered for the variant table. Unicode chart itself has ambiguous dual representations for the same code point without canonical equivalence. An example for this is au signs in Tamil and Malayalam. ௗ- ௌ and  ൗ - ൌ . The document does not consider these special cases.&lt;br /&gt;
#: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response: The IDN policy does not permit the entry of syllables having structure CMM or MCM, where M stands for Matra or vowel sign. The ABNF rules takes care of this.&amp;lt;/font&amp;gt;&lt;br /&gt;
#::  That is wrong. ൗ - ൌ are neither CMM nor MCM case. It is single code pointed Mathra(vowel signs), appearing with consonants in CM format alone. -[[User:സന്തോഷ്|സന്തോഷ്]] 01:04, 5 December 2010 (PST)&lt;br /&gt;
# There are different orthographic forms for many glyphs in Malayalam. The variant table does not address different scenarios arising while considering the visual similarity. For example in traditional orthography TTA is written in stacked form (റ്റ). While in modern orthography it can be written in non-stacked form and this non-stacked form is visually identical to two RA sequence (ററ).&lt;br /&gt;
#:&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : Only the stacked form is considered to be the conjunct TTA in modern orthography.&amp;lt;/font&amp;gt;&lt;br /&gt;
#:: i don&#039;t really understand the logic. A normal user is easily spoofed with റ്റ and ററ. If we go by CDAC&#039;s logic another inorganic standardisation will be the result --[[User:Jinesh.k|Jinesh.k]] 06:26, 4 December 2010 (PST)&lt;br /&gt;
#:: As noted before, please don&#039;t answer questions about IDN using Modern/Old orthography distinction. Nobody with proper Malayalam knowledge will say that nonstacked റ്റ is not TTA. The nonstacked form is explained in detail in Unicode 5.1.0 standard. see http://unicode.org/versions/Unicode5.1.0/  CDACs statement is a contradiction to this.&lt;br /&gt;
&lt;br /&gt;
=== ABNF rules ===&lt;br /&gt;
&lt;br /&gt;
#Section 2 says ക് as pure consonant of ക. Chillu of ക്‍ is considered as pure consonant of ka.&lt;br /&gt;
#: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response: The policy document doesn&#039;t address the obsolete characters in the script, although those characters might have been included in Unicode code chart.&amp;lt;/font&amp;gt;&lt;br /&gt;
#:: On what basis CDAC decided that a character is obsolete? Does CDAC understand that people write the name &amp;quot;CDAC&amp;quot; in Malayalam using Chillu of K like സിഡാക്‍ ? -[[User:സന്തോഷ്|സന്തോഷ്]] 00:20, 5 December 2010 (PST)&lt;br /&gt;
# Section 2.a says CM can be followed by only D (anuswara) or X (visarga). This excludes the Samvruthokarams of Malayalam. All consonant can have cons + u vowel sign  + virama and forming samvruthokaram form of that consonant. Examples:  തു് , കു് , പു് , രു് .&lt;br /&gt;
#: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response: The use of samvruthokarams is considered to be the part of traditional orthography which the policy doesn&#039;t permit.&amp;lt;/font&amp;gt;&lt;br /&gt;
#:: We already explained that orthography is not even a subject of discussion here. Can CDAC provide a definition on what is traditional orthography and what is modern orthography? With a list of &amp;quot;allowed&amp;quot; &amp;quot;characters&amp;quot; in modern orthography which is present in traditional Orthography? What is meant by &amp;quot;permitting&amp;quot;? What stops from a user to use a so called modern orthography font to write samvruthokaram? - [[User:സന്തോഷ്|സന്തോഷ്]] 00:20, 5 December 2010 (PST)&lt;br /&gt;
#:: It is completely unacceptable for CDAC to dictate choice of orthography for any user. It does not make any sense as well. Samvruthokaram can be written using modern orthography as well as traditional orthographies. [[User:Pravs|Pravs]] 06:40, 7 December 2010 (PST)&lt;br /&gt;
&lt;br /&gt;
# Section 3.a restrict the count of consonant in syllable as 4. But ഗ്ദ്ധ്ര്യ has 5 consonants&lt;br /&gt;
#: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : Complex conjuncts like ഗ്ദ്ധ്ര്യ have been simplified in modern orthography.&amp;lt;/font&amp;gt;&lt;br /&gt;
#:: Just wanted to know how a conjunct can be simplified? If &amp;quot;simplified&amp;quot; will the number of consonants reduce? Will the number of Unicode characters reduce?! CDAC should understand the difference between a conjunct and glyph before answering the question. -- [[User:സന്തോഷ്|സന്തോഷ്]] 00:20, 5 December 2010 (PST)&lt;br /&gt;
# Section 3.b excludes syllables with samvruthokram like ക്കു് .&lt;br /&gt;
# Section 4 states a chillu can be followed by a vowel sign. Since chillu is dead consonant, there is no possibility of having virama after chillu.&lt;br /&gt;
#:&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : The document doesn&#039;t state that a chillu can be followed by a vowel sign. The observation that a virama can appear after a chillu is based on the recommendation of Unicode&amp;lt;/font&amp;gt;&lt;br /&gt;
# The example used for LHC - ന്‍്റ does not exist in printing or digital format. None of the input methods or Malayalam writers ന്റ in this way. The sequence for nta is ന + ്  + റ . ie there is no LHC sequence in Malayalam.&lt;br /&gt;
#: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response: The  ന്‍്റ happened because none of the rendering engines available today does support the rendering of &#039;nTa&#039; in the Unicode 5.1 way. as displayed in the document is the  wrongly rendered form of the conjunct &#039;nTa&#039;. This 5.1 official document on rendering the conjunct &#039;nTa&#039;.&amp;lt;/font&amp;gt;&lt;br /&gt;
#:: CDAC said, it did extensive study on rendering in various  browser address bars and took  policy decision was based on that. So for this, no study was conducted? Never noticed that browsers are not able to render this properly? -[[User:സന്തോഷ്|സന്തോഷ്]] 00:57, 5 December 2010 (PST)&lt;br /&gt;
#:: It seems, no systematic process or criteria were used to arrive at the conclusions. [[User:Pravs|Pravs]] 06:47, 7 December 2010 (PST)&lt;br /&gt;
# Since LHC is invalid for Malayalam, including L = ന്‍ , section 5 of the document cancels itself.&lt;br /&gt;
# Because of argument #6, section 6 also cancels itself.&lt;br /&gt;
# Because of arguments #1 to #8 the IDN rule &amp;quot;Consonant Sequence → *3(CH) C [H|D|X|M[D|X]] | L[HC[D|H|M[D]]]&amp;quot;  is completely wrong and need to be reformulated.&lt;br /&gt;
&lt;br /&gt;
=== Restriction Rules ===&lt;br /&gt;
# Section 2 says &amp;quot;H is not permitted after V, D, X, M, digit and dash&amp;quot; This is wrong since samvruthokaram requires H after V&lt;br /&gt;
#:&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : See the explanation for section 2 under ABNF Rules&amp;lt;/font&amp;gt;&lt;br /&gt;
# Section 7 says H can follow L if it is followed by റ , This is wrong as explained above. L can never followed by H. It can only followed by C&lt;br /&gt;
#:&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : See the explanation for section 5 under ABNF Rules&amp;lt;/font&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== nta criticism===&lt;br /&gt;
&lt;br /&gt;
#This document does not address the case of stacked and non stacked forms of nta, which are interchangeably used. For example എന്റെ can be spoofed with എന്‍റെ. Severity of this issue is increased by having one more sequence to represent the same conjunct (ന്‍ + ് + റ) is introduced in Unicode 5.1&lt;br /&gt;
#: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : Ans : Modern orthography treats ന്‍റ      as &#039;nRa&#039; and ന്‍റ      as &#039;nTa&#039;. The interchangeable usage of stacked and non-stacked forms for the conjunct &#039;nTa&#039; is wrong by convention.&amp;lt;/font&amp;gt;&lt;br /&gt;
#:: One of the main motivations for IDN restrictions is to avoid spoofing, and this policy does not address legitimate case of multiple encoding for &#039;nTa&#039;. This is a glowing example of complete disregard for the language and obedience to faulty implementation by a big corporation. Though it cannot be solved at IDN level (it is an issue at encoding level), there should be an effort to address severity of this issue. To me, the only solution seems to be dumping the 5.1 version and Microsoft&#039;s version of nTa in favour of Malayalam nTa, as per laguage rules. [[User:Pravs|Pravs]] 06:58, 7 December 2010 (PST)&lt;br /&gt;
&lt;br /&gt;
===Chart of allowed characters===&lt;br /&gt;
&lt;br /&gt;
#Malayalam chillus  - the 5.1 version ക്‍ is removed from the tables. which is having same characteristics and use cases of other chillus. So excluding it from the allowed code points does not make any sense. Moreover the existing chillu representation - non-atomic - is not mentioned in the document at all.&lt;br /&gt;
# Malayalam au sign - ൌ  is not allowed. Instead the au length mark ൗ  is provided. The inscript standard does not allow one to type ൗ  and allows only ൌ. Other input methods allows to type both. But the document does not say anything on the equivalence of both. Allowing both vowel signs is also a spoofing issue. And hence this should be handled in variant table.&lt;br /&gt;
#: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : The inscript standard being revised. The new standard allows both the characters to be inputted. For restricting spoofing and phishing, only one form i.e. ൗ by IDN policy (used in modern text) has been allowed&amp;lt;/font&amp;gt;&lt;br /&gt;
#:: This also shows CDAC is completely clueless about the difference between character encoding and input methods. How is CDAC going to prevent me from using ൌ with old inscript standard or entering the unicode value directly? This is an encoding issue and has to be solved at encoding level by providing equivalance. Trying to fix encoding issue by mandating a specific input method is like prescribing ointment when you need a surgery (ചുക്കുവെള്ളം കുടിച്ചാല്‍ കാന്‍സര്‍ ഭേദമാകും എന്നു് പ്രതീക്ഷിയ്ക്കുന്ന പോലെയാണതു്.) [[User:Pravs|Pravs]] 07:08, 7 December 2010 (PST)&lt;br /&gt;
#:: Our response to the CDACs revised Inscript standard- [[CDAC-Inscript-Critique ]]-  [[User:സന്തോഷ്|സന്തോഷ്]] 07:10, 7 December 2010 (PST)&lt;br /&gt;
&lt;br /&gt;
=== Variant Table and Visual Spoofing ===&lt;br /&gt;
Variant table is not logical. Only ളള and ള്ള makes sense. None of the other entries should be considered as spoofing. ന്ത and ന്ന is not even close. Mirror images are already used in Latin, eg. b and d. Hence സ്സ and ഡ്ഡ cannot be blocked. Moreover it is not clear why the same logic does not apply for സ and ഡ. It did not consider the case of ററ and non stacked form of റ്റ common in new lipi.&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : The variant table is based on the observations how Malayalam characters and conjuncts are rendered in the address bars of standard browsers like IE, Mozilla and Safari. While ന്ത and ന്ന are perfectly rendered in Mozilla and Safari, they are not legibly rendered in various versions of IE. The mirror imaged nature of the glyphs was not the criterion for the two glyphs to be qualified as variants. Also note that the variant table is not a full-proof mechanism which can prevent spoofing.&amp;lt;/font&amp;gt;&lt;br /&gt;
:: We cannot keep our language hostage to faulty software from one company&#039;s software. Bugs needs to be fixed, not the other way around ie, standards are not drafted based on buggy software. It is completly unacceptable, CDAC should ask Microsoft to fix its rendering in IE. [[User:Pravs|Pravs]] 07:15, 7 December 2010 (PST)&lt;br /&gt;
&lt;br /&gt;
Even though similarity is considered, dual encoding is not mentioned. In case of dual encoding of chillus, both forms (atomic chillu and consonant  chandrakkala ZWJ) of chillus will look SAME.&lt;br /&gt;
: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : IDN policy doesn&#039;t allow control characters such as ZWJ and ZWNJ to be part of domain names.&amp;lt;/font&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Conclusion==&lt;br /&gt;
The CDAC Policy document on Malayalam IDN is not acceptable without correcting the above explained errors. In its current format, the document was prepared with lot of false assumptions and contains many technical mistakes as pointed out above. Consultation is must with all stake holders of Malayalam Computing before preparing such an important document. This was not happened and we expect such an initiative from the authorities.&lt;br /&gt;
&lt;br /&gt;
== Discussion ==&lt;br /&gt;
# Discussion about the CDACs response: http://lists.smc.org.in/pipermail/discuss-smc.org.in/2010-December/011985.html&lt;/div&gt;</summary>
		<author><name>Pravs</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=CDAC-IDN-Critique&amp;diff=2054</id>
		<title>CDAC-IDN-Critique</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=CDAC-IDN-Critique&amp;diff=2054"/>
		<updated>2010-12-07T15:08:30Z</updated>

		<summary type="html">&lt;p&gt;Pravs: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Malayalam IDN Policy Draft by CDAC - Critique by SMC&lt;br /&gt;
&lt;br /&gt;
The Draft policy document by CDAC is available [http://wiki.smc.org.in/images/7/7b/INTERNATIONALIZED_DOMAIN_NAMES-MALAYALAM.pdf  here  ]&lt;br /&gt;
&lt;br /&gt;
[[File:Response_to_C-DAC-IDN-Critique.pdf | CDAC&#039;s response dated 2/12/2010]]&lt;br /&gt;
&lt;br /&gt;
== Introduction == &lt;br /&gt;
&lt;br /&gt;
== Issues with the approach and process ==&lt;br /&gt;
=== Response to CDAC&#039;s response  (dated 2/12/2010) ===&lt;br /&gt;
We are not satisfied with the answers given to our questions. The response seems to be prepared by somebody who does not know the scope of IDN. The replies are based on things that are not at all related to IDN. We have tried to explain why your answers are completely wrong. See the responses given below. CDAC seems to be confused about the Malayalam orthography, Unicode standard, Font , rendering etc. &lt;br /&gt;
&lt;br /&gt;
One of the main thing that we want to emphasis is, standards should not be drafted based on the existing applications. The response from CDAC says, it did extensive study on existing browsers and their address bar behavior. Even one variant table entry is associated with Microsoft Internet Explores buggy behavior. Sorry to say that this is ridiculous. Standards and Policies are for the implementations in the future. It is the guidelines for the applications to be developed in future. It is not a study of existing application behavior.  This is a trivial  fact any person with minimal technical qualification is aware of. CDAC seems to be missing this point.&lt;br /&gt;
&lt;br /&gt;
Orthography is style of writing. It is a users choice for visualizing the content. The content remains same whether one use traditional orthography or new orthography. What IDN policy need to take care of is avoiding all cases of spoofing. That should be independent of orthography. IDN can not assume , or cannot enforce that a user should be using only a particular font with Internet browsers. The CDAC&#039;s draft policy makes such a false assumption. It states that Malayalam IDN is not designed for Traditional orthography. This argument comes from ignorance about the basic concepts of Language technology. Unicode does not define anything about Malayalam new and old orthography. It is all about users choice. When CDAC&#039;s policy states &amp;quot;Modern Orthography&amp;quot;, it should define what it is. It is not all defined technically or even in usage pattern. It is just a user&#039;s convenience. &lt;br /&gt;
&lt;br /&gt;
We demand a process to re-draft this policy document. This is the age of open standards. CDAC should take initiatives to consult with all stakeholders- language experts, language computing experts, developers.&lt;br /&gt;
&lt;br /&gt;
== Criticism on the policy ==&lt;br /&gt;
=== General Comments===&lt;br /&gt;
# The variant table is defined based on random glyphs taken from a list of 900+ possible glyphs for Malayalam. No explanation is given on how two entries in variant table become homo morphs. One entry in variant table is just because of the fact that one is mirror image of other. Since b, d are not excluded from English, there&#039;s no need to exclude mirror imaged glyphs in variant table.&lt;br /&gt;
#: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response: The IDN system devised for Malayalam is based only on the modern script. It doesn&#039;t address the old script or the fonts based on old script. Also, a detailed study was done before proposing homographs in each of the languages. The study included observing the visual form of the conjunct in the point size of the Address bars of major browsers. The mirror imaged nature of the glyphs was not the criterion for the two glyphs to be qualified as variants.&amp;lt;/font&amp;gt;&lt;br /&gt;
#:: Since CDAC took that much effort to check visual spoofing, i just like to know the basic glyph set in modern orthography of Malayalam --[[User:Jinesh.k|Jinesh.k]] 06:26, 4 December 2010 (PST)&lt;br /&gt;
#::  Please understand that IDN has no relation with the orthography. Orthography is kind of writing style and decided by user&#039;s choice on fonts. It is at higher level and close to user, while IDN has nothing to do about the choice of fonts by users. The distinction between Modern Orthography and Old orthography is not technically defined. Unicode or Unicode capable applications never bother about whether user use an Old lipi font or Traditional font. CDAC or IDN policy cannot say that user should use only a certain set of fonts to work with IDN.  If CDAC says IDN does not support traditional orthography, it does not make any sense at all for some one who know what is Unicode, Orthography and IDN. - [[User:സന്തോഷ്|സന്തോഷ്]] 23:53, 4 December 2010 (PST)&lt;br /&gt;
#::  Forcing a user to chose a particular orthography font based on bugs in one browser is not acceptable. IDN standard should not ban most popular fonts currently in use, majority of digital Malayalam users are happy with traditional fonts and there is no reason to stop it. CDAC cannot and should not decide what fonts a user choses in his/her computer. IDN should work with any Malayalam font, which complies with Unicode version 5.0 and correctly implement Malayalam language rules for conjunct formation. Unicode 5.1 is controvercial and many issues are not answered and it would be a tragedy for Malayalam language if we decide to follow unicode 5.1 blindly without considering its impact on Malayalam language for years to come. [[User:Pravs|Pravs]] 06:30, 7 December 2010 (PST)&lt;br /&gt;
#:: If mirror image was not a criteria for variant table, explain how ത്സ/ഝ , സ്സ/ഡ്ഡ qualify to the variant table?  - [[User:സന്തോഷ്|സന്തോഷ്]] 00:00, 5 December 2010 (PST)&lt;br /&gt;
#:: Why browser behavior is studied for drafting IDN standard? Does it mean that if this policy was drafted 10 years, back, none of the Malayalam characters will be allowed in IDN? 10 years back, Malayalam rendering was pathetic in browsers. Or the current policy is going to change when browsers improve the rendering and their address bar behavior later? How can a standard drafted based on its Implementation?  - [[User:സന്തോഷ്|സന്തോഷ്]] 00:00, 5 December 2010 (PST)&lt;br /&gt;
#:: A standard should not be based on buggy implementation of Malayalam rendering, that is encouraging inability. Any wrong implementation should be corrected. Malayalam language in digital domain should not be kept at the mercy of some corporations who does not care about the language. [[User:Pravs|Pravs]] 06:34, 7 December 2010 (PST)&lt;br /&gt;
&lt;br /&gt;
# Visually identical glyphs are not the only entries to be considered for the variant table. Unicode chart itself has ambiguous dual representations for the same code point without canonical equivalence. An example for this is au signs in Tamil and Malayalam. ௗ- ௌ and  ൗ - ൌ . The document does not consider these special cases.&lt;br /&gt;
#: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response: The IDN policy does not permit the entry of syllables having structure CMM or MCM, where M stands for Matra or vowel sign. The ABNF rules takes care of this.&amp;lt;/font&amp;gt;&lt;br /&gt;
#::  That is wrong. ൗ - ൌ are neither CMM nor MCM case. It is single code pointed Mathra(vowel signs), appearing with consonants in CM format alone. -[[User:സന്തോഷ്|സന്തോഷ്]] 01:04, 5 December 2010 (PST)&lt;br /&gt;
# There are different orthographic forms for many glyphs in Malayalam. The variant table does not address different scenarios arising while considering the visual similarity. For example in traditional orthography TTA is written in stacked form (റ്റ). While in modern orthography it can be written in non-stacked form and this non-stacked form is visually identical to two RA sequence (ററ).&lt;br /&gt;
#:&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : Only the stacked form is considered to be the conjunct TTA in modern orthography.&amp;lt;/font&amp;gt;&lt;br /&gt;
#:: i don&#039;t really understand the logic. A normal user is easily spoofed with റ്റ and ററ. If we go by CDAC&#039;s logic another inorganic standardisation will be the result --[[User:Jinesh.k|Jinesh.k]] 06:26, 4 December 2010 (PST)&lt;br /&gt;
#:: As noted before, please don&#039;t answer questions about IDN using Modern/Old orthography distinction. Nobody with proper Malayalam knowledge will say that nonstacked റ്റ is not TTA. The nonstacked form is explained in detail in Unicode 5.1.0 standard. see http://unicode.org/versions/Unicode5.1.0/  CDACs statement is a contradiction to this.&lt;br /&gt;
&lt;br /&gt;
=== ABNF rules ===&lt;br /&gt;
&lt;br /&gt;
#Section 2 says ക് as pure consonant of ക. Chillu of ക്‍ is considered as pure consonant of ka.&lt;br /&gt;
#: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response: The policy document doesn&#039;t address the obsolete characters in the script, although those characters might have been included in Unicode code chart.&amp;lt;/font&amp;gt;&lt;br /&gt;
#:: On what basis CDAC decided that a character is obsolete? Does CDAC understand that people write the name &amp;quot;CDAC&amp;quot; in Malayalam using Chillu of K like സിഡാക്‍ ? -[[User:സന്തോഷ്|സന്തോഷ്]] 00:20, 5 December 2010 (PST)&lt;br /&gt;
# Section 2.a says CM can be followed by only D (anuswara) or X (visarga). This excludes the Samvruthokarams of Malayalam. All consonant can have cons + u vowel sign  + virama and forming samvruthokaram form of that consonant. Examples:  തു് , കു് , പു് , രു് .&lt;br /&gt;
#: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response: The use of samvruthokarams is considered to be the part of traditional orthography which the policy doesn&#039;t permit.&amp;lt;/font&amp;gt;&lt;br /&gt;
#:: We already explained that orthography is not even a subject of discussion here. Can CDAC provide a definition on what is traditional orthography and what is modern orthography? With a list of &amp;quot;allowed&amp;quot; &amp;quot;characters&amp;quot; in modern orthography which is present in traditional Orthography? What is meant by &amp;quot;permitting&amp;quot;? What stops from a user to use a so called modern orthography font to write samvruthokaram? - [[User:സന്തോഷ്|സന്തോഷ്]] 00:20, 5 December 2010 (PST)&lt;br /&gt;
#:: It is completely unacceptable for CDAC to dictate choice of orthography for any user. It does not make any sense as well. Samvruthokaram can be written using modern orthography as well as traditional orthographies. [[User:Pravs|Pravs]] 06:40, 7 December 2010 (PST)&lt;br /&gt;
&lt;br /&gt;
# Section 3.a restrict the count of consonant in syllable as 4. But ഗ്ദ്ധ്ര്യ has 5 consonants&lt;br /&gt;
#: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : Complex conjuncts like ഗ്ദ്ധ്ര്യ have been simplified in modern orthography.&amp;lt;/font&amp;gt;&lt;br /&gt;
#:: Just wanted to know how a conjunct can be simplified? If &amp;quot;simplified&amp;quot; will the number of consonants reduce? Will the number of Unicode characters reduce?! CDAC should understand the difference between a conjunct and glyph before answering the question. -- [[User:സന്തോഷ്|സന്തോഷ്]] 00:20, 5 December 2010 (PST)&lt;br /&gt;
# Section 3.b excludes syllables with samvruthokram like ക്കു് .&lt;br /&gt;
# Section 4 states a chillu can be followed by a vowel sign. Since chillu is dead consonant, there is no possibility of having virama after chillu.&lt;br /&gt;
#:&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : The document doesn&#039;t state that a chillu can be followed by a vowel sign. The observation that a virama can appear after a chillu is based on the recommendation of Unicode&amp;lt;/font&amp;gt;&lt;br /&gt;
# The example used for LHC - ന്‍്റ does not exist in printing or digital format. None of the input methods or Malayalam writers ന്റ in this way. The sequence for nta is ന + ്  + റ . ie there is no LHC sequence in Malayalam.&lt;br /&gt;
#: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response: The  ന്‍്റ happened because none of the rendering engines available today does support the rendering of &#039;nTa&#039; in the Unicode 5.1 way. as displayed in the document is the  wrongly rendered form of the conjunct &#039;nTa&#039;. This 5.1 official document on rendering the conjunct &#039;nTa&#039;.&amp;lt;/font&amp;gt;&lt;br /&gt;
#:: CDAC said, it did extensive study on rendering in various  browser address bars and took  policy decision was based on that. So for this, no study was conducted? Never noticed that browsers are not able to render this properly? -[[User:സന്തോഷ്|സന്തോഷ്]] 00:57, 5 December 2010 (PST)&lt;br /&gt;
#:: It seems, no systematic process or criteria were used to arrive at the conclusions. [[User:Pravs|Pravs]] 06:47, 7 December 2010 (PST)&lt;br /&gt;
# Since LHC is invalid for Malayalam, including L = ന്‍ , section 5 of the document cancels itself.&lt;br /&gt;
# Because of argument #6, section 6 also cancels itself.&lt;br /&gt;
# Because of arguments #1 to #8 the IDN rule &amp;quot;Consonant Sequence → *3(CH) C [H|D|X|M[D|X]] | L[HC[D|H|M[D]]]&amp;quot;  is completely wrong and need to be reformulated.&lt;br /&gt;
&lt;br /&gt;
=== Restriction Rules ===&lt;br /&gt;
# Section 2 says &amp;quot;H is not permitted after V, D, X, M, digit and dash&amp;quot; This is wrong since samvruthokaram requires H after V&lt;br /&gt;
#:&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : See the explanation for section 2 under ABNF Rules&amp;lt;/font&amp;gt;&lt;br /&gt;
# Section 7 says H can follow L if it is followed by റ , This is wrong as explained above. L can never followed by H. It can only followed by C&lt;br /&gt;
#:&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : See the explanation for section 5 under ABNF Rules&amp;lt;/font&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== nta criticism===&lt;br /&gt;
&lt;br /&gt;
#This document does not address the case of stacked and non stacked forms of nta, which are interchangeably used. For example എന്റെ can be spoofed with എന്‍റെ. Severity of this issue is increased by having one more sequence to represent the same conjunct (ന്‍ + ് + റ) is introduced in Unicode 5.1&lt;br /&gt;
#: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : Ans : Modern orthography treats ന്‍റ      as &#039;nRa&#039; and ന്‍റ      as &#039;nTa&#039;. The interchangeable usage of stacked and non-stacked forms for the conjunct &#039;nTa&#039; is wrong by convention.&amp;lt;/font&amp;gt;&lt;br /&gt;
#:: One of the main motivations for IDN restrictions is to avoid spoofing, and this policy does not address legitimate case of multiple encoding for &#039;nTa&#039;. This is a glowing example of complete disregard for the language and obedience to faulty implementation by a big corporation. Though it cannot be solved at IDN level (it is an issue at encoding level), there should be an effort to address severity of this issue. To me, the only solution seems to be dumping the 5.1 version and Microsoft&#039;s version of nTa in favour of Malayalam nTa, as per laguage rules. [[User:Pravs|Pravs]] 06:58, 7 December 2010 (PST)&lt;br /&gt;
&lt;br /&gt;
===Chart of allowed characters===&lt;br /&gt;
&lt;br /&gt;
#Malayalam chillus  - the 5.1 version ക്‍ is removed from the tables. which is having same characteristics and use cases of other chillus. So excluding it from the allowed code points does not make any sense. Moreover the existing chillu representation - non-atomic - is not mentioned in the document at all.&lt;br /&gt;
# Malayalam au sign - ൌ  is not allowed. Instead the au length mark ൗ  is provided. The inscript standard does not allow one to type ൗ  and allows only ൌ. Other input methods allows to type both. But the document does not say anything on the equivalence of both. Allowing both vowel signs is also a spoofing issue. And hence this should be handled in variant table.&lt;br /&gt;
#: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : The inscript standard being revised. The new standard allows both the characters to be inputted. For restricting spoofing and phishing, only one form i.e. ൗ by IDN policy (used in modern text) has been allowed&amp;lt;/font&amp;gt;&lt;br /&gt;
#:: This also shows CDAC is completely clueless about the difference between character encoding and input methods. How is CDAC going to prevent me from using ൌ with old inscript standard or entering the unicode value directly? This is an encoding issue and has to be solved at encoding level by providing equivalance. Trying to fix encoding issue by mandating a specific input method is like prescribing ointment when you need a surgery (ചുക്കുവെള്ളം കുടിച്ചാല്‍ കാന്‍സര്‍ ഭേദമാകും എന്നു് പ്രതീക്ഷിയ്ക്കുന്ന പോലെയാണതു്.) [[User:Pravs|Pravs]] 07:08, 7 December 2010 (PST)&lt;br /&gt;
&lt;br /&gt;
=== Variant Table and Visual Spoofing ===&lt;br /&gt;
Variant table is not logical. Only ളള and ള്ള makes sense. None of the other entries should be considered as spoofing. ന്ത and ന്ന is not even close. Mirror images are already used in Latin, eg. b and d. Hence സ്സ and ഡ്ഡ cannot be blocked. Moreover it is not clear why the same logic does not apply for സ and ഡ. It did not consider the case of ററ and non stacked form of റ്റ common in new lipi.&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : The variant table is based on the observations how Malayalam characters and conjuncts are rendered in the address bars of standard browsers like IE, Mozilla and Safari. While ന്ത and ന്ന are perfectly rendered in Mozilla and Safari, they are not legibly rendered in various versions of IE. The mirror imaged nature of the glyphs was not the criterion for the two glyphs to be qualified as variants. Also note that the variant table is not a full-proof mechanism which can prevent spoofing.&amp;lt;/font&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Even though similarity is considered, dual encoding is not mentioned. In case of dual encoding of chillus, both forms (atomic chillu and consonant  chandrakkala ZWJ) of chillus will look SAME.&lt;br /&gt;
: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : IDN policy doesn&#039;t allow control characters such as ZWJ and ZWNJ to be part of domain names.&amp;lt;/font&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Conclusion==&lt;br /&gt;
The CDAC Policy document on Malayalam IDN is not acceptable without correcting the above explained errors. In its current format, the document was prepared with lot of false assumptions and contains many technical mistakes as pointed out above. Consultation is must with all stake holders of Malayalam Computing before preparing such an important document. This was not happened and we expect such an initiative from the authorities.&lt;br /&gt;
&lt;br /&gt;
== Discussion ==&lt;br /&gt;
# Discussion about the CDACs response: http://lists.smc.org.in/pipermail/discuss-smc.org.in/2010-December/011985.html&lt;/div&gt;</summary>
		<author><name>Pravs</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=CDAC-IDN-Critique&amp;diff=2052</id>
		<title>CDAC-IDN-Critique</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=CDAC-IDN-Critique&amp;diff=2052"/>
		<updated>2010-12-07T14:58:46Z</updated>

		<summary type="html">&lt;p&gt;Pravs: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Malayalam IDN Policy Draft by CDAC - Critique by SMC&lt;br /&gt;
&lt;br /&gt;
The Draft policy document by CDAC is available [http://wiki.smc.org.in/images/7/7b/INTERNATIONALIZED_DOMAIN_NAMES-MALAYALAM.pdf  here  ]&lt;br /&gt;
&lt;br /&gt;
[[File:Response_to_C-DAC-IDN-Critique.pdf | CDAC&#039;s response dated 2/12/2010]]&lt;br /&gt;
&lt;br /&gt;
== Introduction == &lt;br /&gt;
&lt;br /&gt;
== Issues with the approach and process ==&lt;br /&gt;
=== Response to CDAC&#039;s response  (dated 2/12/2010) ===&lt;br /&gt;
We are not satisfied with the answers given to our questions. The response seems to be prepared by somebody who does not know the scope of IDN. The replies are based on things that are not at all related to IDN. We have tried to explain why your answers are completely wrong. See the responses given below. CDAC seems to be confused about the Malayalam orthography, Unicode standard, Font , rendering etc. &lt;br /&gt;
&lt;br /&gt;
One of the main thing that we want to emphasis is, standards should not be drafted based on the existing applications. The response from CDAC says, it did extensive study on existing browsers and their address bar behavior. Even one variant table entry is associated with Microsoft Internet Explores buggy behavior. Sorry to say that this is ridiculous. Standards and Policies are for the implementations in the future. It is the guidelines for the applications to be developed in future. It is not a study of existing application behavior.  This is a trivial  fact any person with minimal technical qualification is aware of. CDAC seems to be missing this point.&lt;br /&gt;
&lt;br /&gt;
Orthography is style of writing. It is a users choice for visualizing the content. The content remains same whether one use traditional orthography or new orthography. What IDN policy need to take care of is avoiding all cases of spoofing. That should be independent of orthography. IDN can not assume , or cannot enforce that a user should be using only a particular font with Internet browsers. The CDAC&#039;s draft policy makes such a false assumption. It states that Malayalam IDN is not designed for Traditional orthography. This argument comes from ignorance about the basic concepts of Language technology. Unicode does not define anything about Malayalam new and old orthography. It is all about users choice. When CDAC&#039;s policy states &amp;quot;Modern Orthography&amp;quot;, it should define what it is. It is not all defined technically or even in usage pattern. It is just a user&#039;s convenience. &lt;br /&gt;
&lt;br /&gt;
We demand a process to re-draft this policy document. This is the age of open standards. CDAC should take initiatives to consult with all stakeholders- language experts, language computing experts, developers.&lt;br /&gt;
&lt;br /&gt;
== Criticism on the policy ==&lt;br /&gt;
=== General Comments===&lt;br /&gt;
# The variant table is defined based on random glyphs taken from a list of 900+ possible glyphs for Malayalam. No explanation is given on how two entries in variant table become homo morphs. One entry in variant table is just because of the fact that one is mirror image of other. Since b, d are not excluded from English, there&#039;s no need to exclude mirror imaged glyphs in variant table.&lt;br /&gt;
#: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response: The IDN system devised for Malayalam is based only on the modern script. It doesn&#039;t address the old script or the fonts based on old script. Also, a detailed study was done before proposing homographs in each of the languages. The study included observing the visual form of the conjunct in the point size of the Address bars of major browsers. The mirror imaged nature of the glyphs was not the criterion for the two glyphs to be qualified as variants.&amp;lt;/font&amp;gt;&lt;br /&gt;
#:: Since CDAC took that much effort to check visual spoofing, i just like to know the basic glyph set in modern orthography of Malayalam --[[User:Jinesh.k|Jinesh.k]] 06:26, 4 December 2010 (PST)&lt;br /&gt;
#::  Please understand that IDN has no relation with the orthography. Orthography is kind of writing style and decided by user&#039;s choice on fonts. It is at higher level and close to user, while IDN has nothing to do about the choice of fonts by users. The distinction between Modern Orthography and Old orthography is not technically defined. Unicode or Unicode capable applications never bother about whether user use an Old lipi font or Traditional font. CDAC or IDN policy cannot say that user should use only a certain set of fonts to work with IDN.  If CDAC says IDN does not support traditional orthography, it does not make any sense at all for some one who know what is Unicode, Orthography and IDN. - [[User:സന്തോഷ്|സന്തോഷ്]] 23:53, 4 December 2010 (PST)&lt;br /&gt;
#::  Forcing a user to chose a particular orthography font based on bugs in one browser is not acceptable. IDN standard should not ban most popular fonts currently in use, majority of digital Malayalam users are happy with traditional fonts and there is no reason to stop it. CDAC cannot and should not decide what fonts a user choses in his/her computer. IDN should work with any Malayalam font, which complies with Unicode version 5.0 and correctly implement Malayalam language rules for conjunct formation. Unicode 5.1 is controvercial and many issues are not answered and it would be a tragedy for Malayalam language if we decide to follow unicode 5.1 blindly without considering its impact on Malayalam language for years to come. [[User:Pravs|Pravs]] 06:30, 7 December 2010 (PST)&lt;br /&gt;
#:: If mirror image was not a criteria for variant table, explain how ത്സ/ഝ , സ്സ/ഡ്ഡ qualify to the variant table?  - [[User:സന്തോഷ്|സന്തോഷ്]] 00:00, 5 December 2010 (PST)&lt;br /&gt;
#:: Why browser behavior is studied for drafting IDN standard? Does it mean that if this policy was drafted 10 years, back, none of the Malayalam characters will be allowed in IDN? 10 years back, Malayalam rendering was pathetic in browsers. Or the current policy is going to change when browsers improve the rendering and their address bar behavior later? How can a standard drafted based on its Implementation?  - [[User:സന്തോഷ്|സന്തോഷ്]] 00:00, 5 December 2010 (PST)&lt;br /&gt;
#:: A standard should not be based on buggy implementation of Malayalam rendering, that is encouraging inability. Any wrong implementation should be corrected. Malayalam language in digital domain should not be kept at the mercy of some corporations who does not care about the language. [[User:Pravs|Pravs]] 06:34, 7 December 2010 (PST)&lt;br /&gt;
&lt;br /&gt;
# Visually identical glyphs are not the only entries to be considered for the variant table. Unicode chart itself has ambiguous dual representations for the same code point without canonical equivalence. An example for this is au signs in Tamil and Malayalam. ௗ- ௌ and  ൗ - ൌ . The document does not consider these special cases.&lt;br /&gt;
#: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response: The IDN policy does not permit the entry of syllables having structure CMM or MCM, where M stands for Matra or vowel sign. The ABNF rules takes care of this.&amp;lt;/font&amp;gt;&lt;br /&gt;
#::  That is wrong. ൗ - ൌ are neither CMM nor MCM case. It is single code pointed Mathra(vowel signs), appearing with consonants in CM format alone. -[[User:സന്തോഷ്|സന്തോഷ്]] 01:04, 5 December 2010 (PST)&lt;br /&gt;
# There are different orthographic forms for many glyphs in Malayalam. The variant table does not address different scenarios arising while considering the visual similarity. For example in traditional orthography TTA is written in stacked form (റ്റ). While in modern orthography it can be written in non-stacked form and this non-stacked form is visually identical to two RA sequence (ററ).&lt;br /&gt;
#:&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : Only the stacked form is considered to be the conjunct TTA in modern orthography.&amp;lt;/font&amp;gt;&lt;br /&gt;
#:: i don&#039;t really understand the logic. A normal user is easily spoofed with റ്റ and ററ. If we go by CDAC&#039;s logic another inorganic standardisation will be the result --[[User:Jinesh.k|Jinesh.k]] 06:26, 4 December 2010 (PST)&lt;br /&gt;
#:: As noted before, please don&#039;t answer questions about IDN using Modern/Old orthography distinction. Nobody with proper Malayalam knowledge will say that nonstacked റ്റ is not TTA. The nonstacked form is explained in detail in Unicode 5.1.0 standard. see http://unicode.org/versions/Unicode5.1.0/  CDACs statement is a contradiction to this.&lt;br /&gt;
&lt;br /&gt;
=== ABNF rules ===&lt;br /&gt;
&lt;br /&gt;
#Section 2 says ക് as pure consonant of ക. Chillu of ക്‍ is considered as pure consonant of ka.&lt;br /&gt;
#: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response: The policy document doesn&#039;t address the obsolete characters in the script, although those characters might have been included in Unicode code chart.&amp;lt;/font&amp;gt;&lt;br /&gt;
#:: On what basis CDAC decided that a character is obsolete? Does CDAC understand that people write the name &amp;quot;CDAC&amp;quot; in Malayalam using Chillu of K like സിഡാക്‍ ? -[[User:സന്തോഷ്|സന്തോഷ്]] 00:20, 5 December 2010 (PST)&lt;br /&gt;
# Section 2.a says CM can be followed by only D (anuswara) or X (visarga). This excludes the Samvruthokarams of Malayalam. All consonant can have cons + u vowel sign  + virama and forming samvruthokaram form of that consonant. Examples:  തു് , കു് , പു് , രു് .&lt;br /&gt;
#: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response: The use of samvruthokarams is considered to be the part of traditional orthography which the policy doesn&#039;t permit.&amp;lt;/font&amp;gt;&lt;br /&gt;
#:: We already explained that orthography is not even a subject of discussion here. Can CDAC provide a definition on what is traditional orthography and what is modern orthography? With a list of &amp;quot;allowed&amp;quot; &amp;quot;characters&amp;quot; in modern orthography which is present in traditional Orthography? What is meant by &amp;quot;permitting&amp;quot;? What stops from a user to use a so called modern orthography font to write samvruthokaram? - [[User:സന്തോഷ്|സന്തോഷ്]] 00:20, 5 December 2010 (PST)&lt;br /&gt;
#:: It is completely unacceptable for CDAC to dictate choice of orthography for any user. It does not make any sense as well. Samvruthokaram can be written using modern orthography as well as traditional orthographies. [[User:Pravs|Pravs]] 06:40, 7 December 2010 (PST)&lt;br /&gt;
&lt;br /&gt;
# Section 3.a restrict the count of consonant in syllable as 4. But ഗ്ദ്ധ്ര്യ has 5 consonants&lt;br /&gt;
#: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : Complex conjuncts like ഗ്ദ്ധ്ര്യ have been simplified in modern orthography.&amp;lt;/font&amp;gt;&lt;br /&gt;
#:: Just wanted to know how a conjunct can be simplified? If &amp;quot;simplified&amp;quot; will the number of consonants reduce? Will the number of Unicode characters reduce?! CDAC should understand the difference between a conjunct and glyph before answering the question. -- [[User:സന്തോഷ്|സന്തോഷ്]] 00:20, 5 December 2010 (PST)&lt;br /&gt;
# Section 3.b excludes syllables with samvruthokram like ക്കു് .&lt;br /&gt;
# Section 4 states a chillu can be followed by a vowel sign. Since chillu is dead consonant, there is no possibility of having virama after chillu.&lt;br /&gt;
#:&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : The document doesn&#039;t state that a chillu can be followed by a vowel sign. The observation that a virama can appear after a chillu is based on the recommendation of Unicode&amp;lt;/font&amp;gt;&lt;br /&gt;
# The example used for LHC - ന്‍്റ does not exist in printing or digital format. None of the input methods or Malayalam writers ന്റ in this way. The sequence for nta is ന + ്  + റ . ie there is no LHC sequence in Malayalam.&lt;br /&gt;
#: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response: The  ന്‍്റ happened because none of the rendering engines available today does support the rendering of &#039;nTa&#039; in the Unicode 5.1 way. as displayed in the document is the  wrongly rendered form of the conjunct &#039;nTa&#039;. This 5.1 official document on rendering the conjunct &#039;nTa&#039;.&amp;lt;/font&amp;gt;&lt;br /&gt;
#:: CDAC said, it did extensive study on rendering in various  browser address bars and took  policy decision was based on that. So for this, no study was conducted? Never noticed that browsers are not able to render this properly? -[[User:സന്തോഷ്|സന്തോഷ്]] 00:57, 5 December 2010 (PST)&lt;br /&gt;
#:: It seems, no systematic process or criteria were used to arrive at the conclusions. [[User:Pravs|Pravs]] 06:47, 7 December 2010 (PST)&lt;br /&gt;
# Since LHC is invalid for Malayalam, including L = ന്‍ , section 5 of the document cancels itself.&lt;br /&gt;
# Because of argument #6, section 6 also cancels itself.&lt;br /&gt;
# Because of arguments #1 to #8 the IDN rule &amp;quot;Consonant Sequence → *3(CH) C [H|D|X|M[D|X]] | L[HC[D|H|M[D]]]&amp;quot;  is completely wrong and need to be reformulated.&lt;br /&gt;
&lt;br /&gt;
=== Restriction Rules ===&lt;br /&gt;
# Section 2 says &amp;quot;H is not permitted after V, D, X, M, digit and dash&amp;quot; This is wrong since samvruthokaram requires H after V&lt;br /&gt;
#:&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : See the explanation for section 2 under ABNF Rules&amp;lt;/font&amp;gt;&lt;br /&gt;
# Section 7 says H can follow L if it is followed by റ , This is wrong as explained above. L can never followed by H. It can only followed by C&lt;br /&gt;
#:&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : See the explanation for section 5 under ABNF Rules&amp;lt;/font&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== nta criticism===&lt;br /&gt;
&lt;br /&gt;
This document does not address the case of stacked and non stacked forms of nta, which are interchangeably used. For example എന്റെ can be spoofed with എന്‍റെ. Severity of this issue is increased by having one more sequence to represent the same conjunct (ന്‍ + ് + റ) is introduced in Unicode 5.1&lt;br /&gt;
: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : Ans : Modern orthography treats ന്‍റ      as &#039;nRa&#039; and ന്‍റ      as &#039;nTa&#039;. The interchangeable usage of stacked and non-stacked forms for the conjunct &#039;nTa&#039; is wrong by convention.&amp;lt;/font&amp;gt;&lt;br /&gt;
#:: One of the main motivations for IDN restrictions is to avoid spoofing, and this policy does not address legitimate case of multiple encoding for &#039;nTa&#039;. This is a glowing example of complete disregard for the language and obedience to faulty implementation by a big corporation. Though it cannot be solved at IDN level (it is an issue at encoding level), there should be an effort to address severity of this issue. To me, the only solution seems to be dumping the 5.1 version and Microsoft&#039;s version of nTa in favour of Malayalam nTa, as per laguage rules. [[User:Pravs|Pravs]] 06:58, 7 December 2010 (PST)&lt;br /&gt;
&lt;br /&gt;
===Chart of allowed characters===&lt;br /&gt;
&lt;br /&gt;
#Malayalam chillus  - the 5.1 version ക്‍ is removed from the tables. which is having same characteristics and use cases of other chillus. So excluding it from the allowed code points does not make any sense. Moreover the existing chillu representation - non-atomic - is not mentioned in the document at all.&lt;br /&gt;
# Malayalam au sign - ൌ  is not allowed. Instead the au length mark ൗ  is provided. The inscript standard does not allow one to type ൗ  and allows only ൌ. Other input methods allows to type both. But the document does not say anything on the equivalence of both. Allowing both vowel signs is also a spoofing issue. And hence this should be handled in variant table.&lt;br /&gt;
#: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : The inscript standard being revised. The new standard allows both the characters to be inputted. For restricting spoofing and phishing, only one form i.e. ൗ by IDN policy (used in modern text) has been allowed&amp;lt;/font&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Variant Table and Visual Spoofing ===&lt;br /&gt;
Variant table is not logical. Only ളള and ള്ള makes sense. None of the other entries should be considered as spoofing. ന്ത and ന്ന is not even close. Mirror images are already used in Latin, eg. b and d. Hence സ്സ and ഡ്ഡ cannot be blocked. Moreover it is not clear why the same logic does not apply for സ and ഡ. It did not consider the case of ററ and non stacked form of റ്റ common in new lipi.&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : The variant table is based on the observations how Malayalam characters and conjuncts are rendered in the address bars of standard browsers like IE, Mozilla and Safari. While ന്ത and ന്ന are perfectly rendered in Mozilla and Safari, they are not legibly rendered in various versions of IE. The mirror imaged nature of the glyphs was not the criterion for the two glyphs to be qualified as variants. Also note that the variant table is not a full-proof mechanism which can prevent spoofing.&amp;lt;/font&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Even though similarity is considered, dual encoding is not mentioned. In case of dual encoding of chillus, both forms (atomic chillu and consonant  chandrakkala ZWJ) of chillus will look SAME.&lt;br /&gt;
: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : IDN policy doesn&#039;t allow control characters such as ZWJ and ZWNJ to be part of domain names.&amp;lt;/font&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Conclusion==&lt;br /&gt;
The CDAC Policy document on Malayalam IDN is not acceptable without correcting the above explained errors. In its current format, the document was prepared with lot of false assumptions and contains many technical mistakes as pointed out above. Consultation is must with all stake holders of Malayalam Computing before preparing such an important document. This was not happened and we expect such an initiative from the authorities.&lt;br /&gt;
&lt;br /&gt;
== Discussion ==&lt;br /&gt;
# Discussion about the CDACs response: http://lists.smc.org.in/pipermail/discuss-smc.org.in/2010-December/011985.html&lt;/div&gt;</summary>
		<author><name>Pravs</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=CDAC-IDN-Critique&amp;diff=2050</id>
		<title>CDAC-IDN-Critique</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=CDAC-IDN-Critique&amp;diff=2050"/>
		<updated>2010-12-07T14:47:09Z</updated>

		<summary type="html">&lt;p&gt;Pravs: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Malayalam IDN Policy Draft by CDAC - Critique by SMC&lt;br /&gt;
&lt;br /&gt;
The Draft policy document by CDAC is available [http://wiki.smc.org.in/images/7/7b/INTERNATIONALIZED_DOMAIN_NAMES-MALAYALAM.pdf  here  ]&lt;br /&gt;
&lt;br /&gt;
[[File:Response_to_C-DAC-IDN-Critique.pdf | CDAC&#039;s response dated 2/12/2010]]&lt;br /&gt;
&lt;br /&gt;
== Introduction == &lt;br /&gt;
&lt;br /&gt;
== Issues with the approach and process ==&lt;br /&gt;
=== Response to CDAC&#039;s response to the critique ===&lt;br /&gt;
We are not satisfied with the answers given to our questions. The response seems to be prepared by somebody who does not know the scope of IDN. The replies are based on things that are not at all related to IDN. We have tried to explain why your answers are completely wrong. See the responses given below. CDAC seems to confused about the Malayalam orthography, Unicode standard, Font , rendering etc. &lt;br /&gt;
&lt;br /&gt;
One of the main thing that we want to emphasis is, standards should not drafted based on the existing applications. The response from CDAC says, it did extensive study on existing browsers and their address bar behavior. Even one variant table entry is associated with Microsoft Internet Explores buggy behavior. Sorry to say that this is ridiculous. Standards and Policies are for the implementations in the future. It is the guidelines for the applications to be developed in future. It is not a study of existing application behavior.  This is a trivial  fact any person with minimal technical qualification is aware of. CDAC seems to be missing this point.&lt;br /&gt;
&lt;br /&gt;
Orthography is style of writing. It is a users choice for visualizing the content. The content remains same whether one use traditional orthography or new orthography. What IDN policy need to take care is avoiding all cases of spoofing. That should be independent of orthography. IDN can not assume , or cannot enforce that a user should be using only a particular font with Internet browsers. The CDAC&#039;s draft policy makes such a false assumption. It states that Malayalam IDN is not designed for Traditional orthography. This argument comes from ignorance about the basic concepts of Language technology. Unicode does not define anything about Malayalam new and old orthography. It is all about users choice. When CDAC&#039;s policy states &amp;quot;Modern Orthography&amp;quot;, it should define what it is. It is not all defined technically or even in usage pattern. It is just a users convenience. &lt;br /&gt;
&lt;br /&gt;
We demand a process to re-draft this policy document. This is the age of open standards. CDAC should take initiatives to consult with all stakeholdes- language experts, language computing experts, developers.&lt;br /&gt;
&lt;br /&gt;
== Criticism on the policy ==&lt;br /&gt;
=== General Comments===&lt;br /&gt;
# The variant table is defined based on random glyphs taken from a list of 900+ possible glyphs for Malayalam. No explanation is given on how two entries in variant table become homo morphs. One entry in variant table is just because of the fact that one is mirror image of other. Since b, d are not excluded from English, there&#039;s no need to exclude mirror imaged glyphs in variant table.&lt;br /&gt;
#: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response: The IDN system devised for Malayalam is based only on the modern script. It doesn&#039;t address the old script or the fonts based on old script. Also, a detailed study was done before proposing homographs in each of the languages. The study included observing the visual form of the conjunct in the point size of the Address bars of major browsers. The mirror imaged nature of the glyphs was not the criterion for the two glyphs to be qualified as variants.&amp;lt;/font&amp;gt;&lt;br /&gt;
#:: Since CDAC took that much effort to check visual spoofing, i just like to know the basic glyph set in modern orthography of Malayalam --[[User:Jinesh.k|Jinesh.k]] 06:26, 4 December 2010 (PST)&lt;br /&gt;
#::  Please understand that IDN has no relation with the orthography. Orthography is kind of writing style and decided by user&#039;s choice on fonts. It is at higher level and close to user, while IDN has nothing to do about the choice of fonts by users. The distinction between Modern Orthography and Old orthography is not technically defined. Unicode or Unicode capable applications never bother about whether user use an Old lipi font or Traditional font. CDAC or IDN policy cannot say that user should use only a certain set of fonts to work with IDN.  If CDAC says IDN does not support traditional orthography, it does not make any sense at all for some one who know what is Unicode, Orthography and IDN. - [[User:സന്തോഷ്|സന്തോഷ്]] 23:53, 4 December 2010 (PST)&lt;br /&gt;
#::  Forcing a user to chose a particular orthography font based on bugs in one browser is not acceptable. IDN standard should not ban most popular fonts currently in use, majority of digital Malayalam users are happy with traditional fonts and there is no reason to stop it. CDAC cannot and should not decide what fonts a user choses in his/her computer. IDN should work with any Malayalam font, which complies with Unicode version 5.0 and correctly implement Malayalam language rules for conjunct formation. Unicode 5.1 is controvercial and many issues are not answered and it would be a tragedy for Malayalam language if we decide to follow unicode 5.1 blindly without considering its impact on Malayalam language for years to come. [[User:Pravs|Pravs]] 06:30, 7 December 2010 (PST)&lt;br /&gt;
#:: If mirror image was not a criteria for variant table, explain how ത്സ/ഝ , സ്സ/ഡ്ഡ qualify to the variant table?  - [[User:സന്തോഷ്|സന്തോഷ്]] 00:00, 5 December 2010 (PST)&lt;br /&gt;
#:: Why browser behavior is studied for drafting IDN standard? Does it mean that if this policy was drafted 10 years, back, none of the Malayalam characters will be allowed in IDN? 10 years back, Malayalam rendering was pathetic in browsers. Or the current policy is going to change when browsers improve the rendering and their address bar behavior later? How can a standard drafted based on its Implementation?  - [[User:സന്തോഷ്|സന്തോഷ്]] 00:00, 5 December 2010 (PST)&lt;br /&gt;
#:: A standard should not be based on buggy implementation of Malayalam rendering, that is encouraging inability. Any wrong implementation should be corrected. Malayalam language in digital domain should not be kept at the mercy of some corporations who does not care about the language. [[User:Pravs|Pravs]] 06:34, 7 December 2010 (PST)&lt;br /&gt;
&lt;br /&gt;
# Visually identical glyphs are not the only entries to be considered for the variant table. Unicode chart itself has ambiguous dual representations for the same code point without canonical equivalence. An example for this is au signs in Tamil and Malayalam. ௗ- ௌ and  ൗ - ൌ . The document does not consider these special cases.&lt;br /&gt;
#: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response: The IDN policy does not permit the entry of syllables having structure CMM or MCM, where M stands for Matra or vowel sign. The ABNF rules takes care of this.&amp;lt;/font&amp;gt;&lt;br /&gt;
#::  That is wrong. ൗ - ൌ are neither CMM nor MCM case. It is single code pointed Mathra(vowel signs), appearing with consonants in CM format alone. -[[User:സന്തോഷ്|സന്തോഷ്]] 01:04, 5 December 2010 (PST)&lt;br /&gt;
# There are different orthographic forms for many glyphs in Malayalam. The variant table does not address different scenarios arising while considering the visual similarity. For example in traditional orthography TTA is written in stacked form (റ്റ). While in modern orthography it can be written in non-stacked form and this non-stacked form is visually identical to two RA sequence (ററ).&lt;br /&gt;
#:&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : Only the stacked form is considered to be the conjunct TTA in modern orthography.&amp;lt;/font&amp;gt;&lt;br /&gt;
#:: i don&#039;t really understand the logic. A normal user is easily spoofed with റ്റ and ററ. If we go by CDAC&#039;s logic another inorganic standardisation will be the result --[[User:Jinesh.k|Jinesh.k]] 06:26, 4 December 2010 (PST)&lt;br /&gt;
#:: As noted before, please don&#039;t answer questions about IDN using Modern/Old orthography distinction. Nobody with proper Malayalam knowledge will say that nonstacked റ്റ is not TTA. The nonstacked form is explained in detail in Unicode 5.1.0 standard. see http://unicode.org/versions/Unicode5.1.0/  CDACs statement is a contradiction to this.&lt;br /&gt;
&lt;br /&gt;
=== ABNF rules ===&lt;br /&gt;
&lt;br /&gt;
#Section 2 says ക് as pure consonant of ക. Chillu of ക്‍ is considered as pure consonant of ka.&lt;br /&gt;
#: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response: The policy document doesn&#039;t address the obsolete characters in the script, although those characters might have been included in Unicode code chart.&amp;lt;/font&amp;gt;&lt;br /&gt;
#:: On what basis CDAC decided that a character is obsolete? Does CDAC understand that people write the name &amp;quot;CDAC&amp;quot; in Malayalam using Chillu of K like സിഡാക്‍ ? -[[User:സന്തോഷ്|സന്തോഷ്]] 00:20, 5 December 2010 (PST)&lt;br /&gt;
# Section 2.a says CM can be followed by only D (anuswara) or X (visarga). This excludes the Samvruthokarams of Malayalam. All consonant can have cons + u vowel sign  + virama and forming samvruthokaram form of that consonant. Examples:  തു് , കു് , പു് , രു് .&lt;br /&gt;
#: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response: The use of samvruthokarams is considered to be the part of traditional orthography which the policy doesn&#039;t permit.&amp;lt;/font&amp;gt;&lt;br /&gt;
#:: We already explained that orthography is not even a subject of discussion here. Can CDAC provide a definition on what is traditional orthography and what is modern orthography? With a list of &amp;quot;allowed&amp;quot; &amp;quot;characters&amp;quot; in modern orthography which is present in traditional Orthography? What is meant by &amp;quot;permitting&amp;quot;? What stops from a user to use a so called modern orthography font to write samvruthokaram? - [[User:സന്തോഷ്|സന്തോഷ്]] 00:20, 5 December 2010 (PST)&lt;br /&gt;
#:: It is completely unacceptable for CDAC to dictate choice of orthography for any user. It does not make any sense as well. Samvruthokaram can be written using modern orthography as well as traditional orthographies. [[User:Pravs|Pravs]] 06:40, 7 December 2010 (PST)&lt;br /&gt;
&lt;br /&gt;
# Section 3.a restrict the count of consonant in syllable as 4. But ഗ്ദ്ധ്ര്യ has 5 consonants&lt;br /&gt;
#: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : Complex conjuncts like ഗ്ദ്ധ്ര്യ have been simplified in modern orthography.&amp;lt;/font&amp;gt;&lt;br /&gt;
#:: Just wanted to know how a conjunct can be simplified? If &amp;quot;simplified&amp;quot; will the number of consonants reduce? Will the number of Unicode characters reduce?! CDAC should understand the difference between a conjunct and glyph before answering the question. -- [[User:സന്തോഷ്|സന്തോഷ്]] 00:20, 5 December 2010 (PST)&lt;br /&gt;
# Section 3.b excludes syllables with samvruthokram like ക്കു് .&lt;br /&gt;
# Section 4 states a chillu can be followed by a vowel sign. Since chillu is dead consonant, there is no possibility of having virama after chillu.&lt;br /&gt;
#:&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : The document doesn&#039;t state that a chillu can be followed by a vowel sign. The observation that a virama can appear after a chillu is based on the recommendation of Unicode&amp;lt;/font&amp;gt;&lt;br /&gt;
# The example used for LHC - ന്‍്റ does not exist in printing or digital format. None of the input methods or Malayalam writers ന്റ in this way. The sequence for nta is ന + ്  + റ . ie there is no LHC sequence in Malayalam.&lt;br /&gt;
#: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response: The  ന്‍്റ happened because none of the rendering engines available today does support the rendering of &#039;nTa&#039; in the Unicode 5.1 way. as displayed in the document is the  wrongly rendered form of the conjunct &#039;nTa&#039;. This 5.1 official document on rendering the conjunct &#039;nTa&#039;.&amp;lt;/font&amp;gt;&lt;br /&gt;
#:: CDAC said, it did extensive study on rendering in various  browser address bars and took  policy decision was based on that. So for this, no study was conducted? Never noticed that browsers are not able to render this properly? -[[User:സന്തോഷ്|സന്തോഷ്]] 00:57, 5 December 2010 (PST)&lt;br /&gt;
#:: It seems, no systematic process or criteria were used to arrive at the conclusions. [[User:Pravs|Pravs]] 06:47, 7 December 2010 (PST)&lt;br /&gt;
# Since LHC is invalid for Malayalam, including L = ന്‍ , section 5 of the document cancels itself.&lt;br /&gt;
# Because of argument #6, section 6 also cancels itself.&lt;br /&gt;
# Because of arguments #1 to #8 the IDN rule &amp;quot;Consonant Sequence → *3(CH) C [H|D|X|M[D|X]] | L[HC[D|H|M[D]]]&amp;quot;  is completely wrong and need to be reformulated.&lt;br /&gt;
&lt;br /&gt;
=== Restriction Rules ===&lt;br /&gt;
# Section 2 says &amp;quot;H is not permitted after V, D, X, M, digit and dash&amp;quot; This is wrong since samvruthokaram requires H after V&lt;br /&gt;
#:&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : See the explanation for section 2 under ABNF Rules&amp;lt;/font&amp;gt;&lt;br /&gt;
# Section 7 says H can follow L if it is followed by റ , This is wrong as explained above. L can never followed by H. It can only followed by C&lt;br /&gt;
#:&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : See the explanation for section 5 under ABNF Rules&amp;lt;/font&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== nta criticism===&lt;br /&gt;
&lt;br /&gt;
This document does not address the case of stacked and non stacked forms of nta, which are interchangeably used. For example എന്റെ can be spoofed with എന്‍റെ. Severity of this issue is increased by having one more sequence to represent the same conjunct (ന്‍ + ് + റ) is introduced in Unicode 5.1&lt;br /&gt;
: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : Ans : Modern orthography treats ന്‍റ      as &#039;nRa&#039; and ന്‍റ      as &#039;nTa&#039;. The interchangeable usage of stacked and non-stacked forms for the conjunct &#039;nTa&#039; is wrong by convention.&amp;lt;/font&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Chart of allowed characters===&lt;br /&gt;
&lt;br /&gt;
#Malayalam chillus  - the 5.1 version ക്‍ is removed from the tables. which is having same characteristics and use cases of other chillus. So excluding it from the allowed code points does not make any sense. Moreover the existing chillu representation - non-atomic - is not mentioned in the document at all.&lt;br /&gt;
# Malayalam au sign - ൌ  is not allowed. Instead the au length mark ൗ  is provided. The inscript standard does not allow one to type ൗ  and allows only ൌ. Other input methods allows to type both. But the document does not say anything on the equivalence of both. Allowing both vowel signs is also a spoofing issue. And hence this should be handled in variant table.&lt;br /&gt;
#: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : The inscript standard being revised. The new standard allows both the characters to be inputted. For restricting spoofing and phishing, only one form i.e. ൗ by IDN policy (used in modern text) has been allowed&amp;lt;/font&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Variant Table and Visual Spoofing ===&lt;br /&gt;
Variant table is not logical. Only ളള and ള്ള makes sense. None of the other entries should be considered as spoofing. ന്ത and ന്ന is not even close. Mirror images are already used in Latin, eg. b and d. Hence സ്സ and ഡ്ഡ cannot be blocked. Moreover it is not clear why the same logic does not apply for സ and ഡ. It did not consider the case of ററ and non stacked form of റ്റ common in new lipi.&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : The variant table is based on the observations how Malayalam characters and conjuncts are rendered in the address bars of standard browsers like IE, Mozilla and Safari. While ന്ത and ന്ന are perfectly rendered in Mozilla and Safari, they are not legibly rendered in various versions of IE. The mirror imaged nature of the glyphs was not the criterion for the two glyphs to be qualified as variants. Also note that the variant table is not a full-proof mechanism which can prevent spoofing.&amp;lt;/font&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Even though similarity is considered, dual encoding is not mentioned. In case of dual encoding of chillus, both forms (atomic chillu and consonant  chandrakkala ZWJ) of chillus will look SAME.&lt;br /&gt;
: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : IDN policy doesn&#039;t allow control characters such as ZWJ and ZWNJ to be part of domain names.&amp;lt;/font&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Conclusion==&lt;br /&gt;
The CDAC Policy document on Malayalam IDN is not acceptable without correcting the above explained errors. In its current format, the document was prepared with lot of false assumptions and contains many technical mistakes as pointed out above. Consultation is must with all stake holders of Malayalam Computing before preparing such an important document. This was not happened and we expect such an initiative from the authorities.&lt;br /&gt;
&lt;br /&gt;
== Discussion ==&lt;br /&gt;
# Discussion about the CDACs response: http://lists.smc.org.in/pipermail/discuss-smc.org.in/2010-December/011985.html&lt;/div&gt;</summary>
		<author><name>Pravs</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=CDAC-IDN-Critique&amp;diff=2049</id>
		<title>CDAC-IDN-Critique</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=CDAC-IDN-Critique&amp;diff=2049"/>
		<updated>2010-12-07T14:40:08Z</updated>

		<summary type="html">&lt;p&gt;Pravs: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Malayalam IDN Policy Draft by CDAC - Critique by SMC&lt;br /&gt;
&lt;br /&gt;
The Draft policy document by CDAC is available [http://wiki.smc.org.in/images/7/7b/INTERNATIONALIZED_DOMAIN_NAMES-MALAYALAM.pdf  here  ]&lt;br /&gt;
&lt;br /&gt;
[[File:Response_to_C-DAC-IDN-Critique.pdf | CDAC&#039;s response dated 2/12/2010]]&lt;br /&gt;
&lt;br /&gt;
== Introduction == &lt;br /&gt;
&lt;br /&gt;
== Issues with the approach and process ==&lt;br /&gt;
=== Response to CDAC&#039;s response to the critique ===&lt;br /&gt;
We are not satisfied with the answers given to our questions. The response seems to be prepared by somebody who does not know the scope of IDN. The replies are based on things that are not at all related to IDN. We have tried to explain why your answers are completely wrong. See the responses given below. CDAC seems to confused about the Malayalam orthography, Unicode standard, Font , rendering etc. &lt;br /&gt;
&lt;br /&gt;
One of the main thing that we want to emphasis is, standards should not drafted based on the existing applications. The response from CDAC says, it did extensive study on existing browsers and their address bar behavior. Even one variant table entry is associated with Microsoft Internet Explores buggy behavior. Sorry to say that this is ridiculous. Standards and Policies are for the implementations in the future. It is the guidelines for the applications to be developed in future. It is not a study of existing application behavior.  This is a trivial  fact any person with minimal technical qualification is aware of. CDAC seems to be missing this point.&lt;br /&gt;
&lt;br /&gt;
Orthography is style of writing. It is a users choice for visualizing the content. The content remains same whether one use traditional orthography or new orthography. What IDN policy need to take care is avoiding all cases of spoofing. That should be independent of orthography. IDN can not assume , or cannot enforce that a user should be using only a particular font with Internet browsers. The CDAC&#039;s draft policy makes such a false assumption. It states that Malayalam IDN is not designed for Traditional orthography. This argument comes from ignorance about the basic concepts of Language technology. Unicode does not define anything about Malayalam new and old orthography. It is all about users choice. When CDAC&#039;s policy states &amp;quot;Modern Orthography&amp;quot;, it should define what it is. It is not all defined technically or even in usage pattern. It is just a users convenience. &lt;br /&gt;
&lt;br /&gt;
We demand a process to re-draft this policy document. This is the age of open standards. CDAC should take initiatives to consult with all stakeholdes- language experts, language computing experts, developers.&lt;br /&gt;
&lt;br /&gt;
== Criticism on the policy ==&lt;br /&gt;
=== General Comments===&lt;br /&gt;
# The variant table is defined based on random glyphs taken from a list of 900+ possible glyphs for Malayalam. No explanation is given on how two entries in variant table become homo morphs. One entry in variant table is just because of the fact that one is mirror image of other. Since b, d are not excluded from English, there&#039;s no need to exclude mirror imaged glyphs in variant table.&lt;br /&gt;
#: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response: The IDN system devised for Malayalam is based only on the modern script. It doesn&#039;t address the old script or the fonts based on old script. Also, a detailed study was done before proposing homographs in each of the languages. The study included observing the visual form of the conjunct in the point size of the Address bars of major browsers. The mirror imaged nature of the glyphs was not the criterion for the two glyphs to be qualified as variants.&amp;lt;/font&amp;gt;&lt;br /&gt;
#:: Since CDAC took that much effort to check visual spoofing, i just like to know the basic glyph set in modern orthography of Malayalam --[[User:Jinesh.k|Jinesh.k]] 06:26, 4 December 2010 (PST)&lt;br /&gt;
#::  Please understand that IDN has no relation with the orthography. Orthography is kind of writing style and decided by user&#039;s choice on fonts. It is at higher level and close to user, while IDN has nothing to do about the choice of fonts by users. The distinction between Modern Orthography and Old orthography is not technically defined. Unicode or Unicode capable applications never bother about whether user use an Old lipi font or Traditional font. CDAC or IDN policy cannot say that user should use only a certain set of fonts to work with IDN.  If CDAC says IDN does not support traditional orthography, it does not make any sense at all for some one who know what is Unicode, Orthography and IDN. - [[User:സന്തോഷ്|സന്തോഷ്]] 23:53, 4 December 2010 (PST)&lt;br /&gt;
#::  Forcing a user to chose a particular orthography font based on bugs in one browser is not acceptable. IDN standard should not ban most popular fonts currently in use, majority of digital Malayalam users are happy with traditional fonts and there is no reason to stop it. CDAC cannot and should not decide what fonts a user choses in his/her computer. IDN should work with any Malayalam font, which complies with Unicode version 5.0 and correctly implement Malayalam language rules for conjunct formation. Unicode 5.1 is controvercial and many issues are not answered and it would be a tragedy for Malayalam language if we decide to follow unicode 5.1 blindly without considering its impact on Malayalam language for years to come. [[User:Pravs|Pravs]] 06:30, 7 December 2010 (PST)&lt;br /&gt;
#:: If mirror image was not a criteria for variant table, explain how ത്സ/ഝ , സ്സ/ഡ്ഡ qualify to the variant table?  - [[User:സന്തോഷ്|സന്തോഷ്]] 00:00, 5 December 2010 (PST)&lt;br /&gt;
#:: Why browser behavior is studied for drafting IDN standard? Does it mean that if this policy was drafted 10 years, back, none of the Malayalam characters will be allowed in IDN? 10 years back, Malayalam rendering was pathetic in browsers. Or the current policy is going to change when browsers improve the rendering and their address bar behavior later? How can a standard drafted based on its Implementation?  - [[User:സന്തോഷ്|സന്തോഷ്]] 00:00, 5 December 2010 (PST)&lt;br /&gt;
#:: A standard should not be based on buggy implementation of Malayalam rendering, that is encouraging inability. Any wrong implementation should be corrected. Malayalam language in digital domain should not be kept at the mercy of some corporations who does not care about the language. [[User:Pravs|Pravs]] 06:34, 7 December 2010 (PST)&lt;br /&gt;
&lt;br /&gt;
# Visually identical glyphs are not the only entries to be considered for the variant table. Unicode chart itself has ambiguous dual representations for the same code point without canonical equivalence. An example for this is au signs in Tamil and Malayalam. ௗ- ௌ and  ൗ - ൌ . The document does not consider these special cases.&lt;br /&gt;
#: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response: The IDN policy does not permit the entry of syllables having structure CMM or MCM, where M stands for Matra or vowel sign. The ABNF rules takes care of this.&amp;lt;/font&amp;gt;&lt;br /&gt;
#::  That is wrong. ൗ - ൌ are neither CMM nor MCM case. It is single code pointed Mathra(vowel signs), appearing with consonants in CM format alone. -[[User:സന്തോഷ്|സന്തോഷ്]] 01:04, 5 December 2010 (PST)&lt;br /&gt;
# There are different orthographic forms for many glyphs in Malayalam. The variant table does not address different scenarios arising while considering the visual similarity. For example in traditional orthography TTA is written in stacked form (റ്റ). While in modern orthography it can be written in non-stacked form and this non-stacked form is visually identical to two RA sequence (ററ).&lt;br /&gt;
#:&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : Only the stacked form is considered to be the conjunct TTA in modern orthography.&amp;lt;/font&amp;gt;&lt;br /&gt;
#:: i don&#039;t really understand the logic. A normal user is easily spoofed with റ്റ and ററ. If we go by CDAC&#039;s logic another inorganic standardisation will be the result --[[User:Jinesh.k|Jinesh.k]] 06:26, 4 December 2010 (PST)&lt;br /&gt;
#:: As noted before, please don&#039;t answer questions about IDN using Modern/Old orthography distinction. Nobody with proper Malayalam knowledge will say that nonstacked റ്റ is not TTA. The nonstacked form is explained in detail in Unicode 5.1.0 standard. see http://unicode.org/versions/Unicode5.1.0/  CDACs statement is a contradiction to this.&lt;br /&gt;
&lt;br /&gt;
=== ABNF rules ===&lt;br /&gt;
&lt;br /&gt;
#Section 2 says ക് as pure consonant of ക. Chillu of ക്‍ is considered as pure consonant of ka.&lt;br /&gt;
#: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response: The policy document doesn&#039;t address the obsolete characters in the script, although those characters might have been included in Unicode code chart.&amp;lt;/font&amp;gt;&lt;br /&gt;
#:: On what basis CDAC decided that a character is obsolete? Does CDAC understand that people write the name &amp;quot;CDAC&amp;quot; in Malayalam using Chillu of K like സിഡാക്‍ ? -[[User:സന്തോഷ്|സന്തോഷ്]] 00:20, 5 December 2010 (PST)&lt;br /&gt;
# Section 2.a says CM can be followed by only D (anuswara) or X (visarga). This excludes the Samvruthokarams of Malayalam. All consonant can have cons + u vowel sign  + virama and forming samvruthokaram form of that consonant. Examples:  തു് , കു് , പു് , രു് .&lt;br /&gt;
#: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response: The use of samvruthokarams is considered to be the part of traditional orthography which the policy doesn&#039;t permit.&amp;lt;/font&amp;gt;&lt;br /&gt;
#:: We already explained that orthography is not even a subject of discussion here. Can CDAC provide a definition on what is traditional orthography and what is modern orthography? With a list of &amp;quot;allowed&amp;quot; &amp;quot;characters&amp;quot; in modern orthography which is present in traditional Orthography? What is meant by &amp;quot;permitting&amp;quot;? What stops from a user to use a so called modern orthography font to write samvruthokaram? - [[User:സന്തോഷ്|സന്തോഷ്]] 00:20, 5 December 2010 (PST)&lt;br /&gt;
#:: It is completely unacceptable for CDAC to dictate choice of orthography for any user. It does not make any sense as well. Samvruthokaram can be written using modern orthography as well as traditional orthographies. [[User:Pravs|Pravs]] 06:40, 7 December 2010 (PST)&lt;br /&gt;
&lt;br /&gt;
# Section 3.a restrict the count of consonant in syllable as 4. But ഗ്ദ്ധ്ര്യ has 5 consonants&lt;br /&gt;
#: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : Complex conjuncts like ഗ്ദ്ധ്ര്യ have been simplified in modern orthography.&amp;lt;/font&amp;gt;&lt;br /&gt;
#:: Just wanted to know how a conjunct can be simplified? If &amp;quot;simplified&amp;quot; will the number of consonants reduce? Will the number of Unicode characters reduce?! CDAC should understand the difference between a conjunct and glyph before answering the question. -- [[User:സന്തോഷ്|സന്തോഷ്]] 00:20, 5 December 2010 (PST)&lt;br /&gt;
# Section 3.b excludes syllables with samvruthokram like ക്കു് .&lt;br /&gt;
# Section 4 states a chillu can be followed by a vowel sign. Since chillu is dead consonant, there is no possibility of having virama after chillu.&lt;br /&gt;
#:&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : The document doesn&#039;t state that a chillu can be followed by a vowel sign. The observation that a virama can appear after a chillu is based on the recommendation of Unicode&amp;lt;/font&amp;gt;&lt;br /&gt;
# The example used for LHC - ന്‍്റ does not exist in printing or digital format. None of the input methods or Malayalam writers ന്റ in this way. The sequence for nta is ന + ്  + റ . ie there is no LHC sequence in Malayalam.&lt;br /&gt;
#: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response: The  ന്‍്റ happened because none of the rendering engines available today does support the rendering of &#039;nTa&#039; in the Unicode 5.1 way. as displayed in the document is the  wrongly rendered form of the conjunct &#039;nTa&#039;. This 5.1 official document on rendering the conjunct &#039;nTa&#039;.&amp;lt;/font&amp;gt;&lt;br /&gt;
#:: CDAC said, it did extensive study on rendering in various  browser address bars and took  policy decision was based on that. So for this, no study was conducted? Never noticed that browsers are not able to render this properly? -[[User:സന്തോഷ്|സന്തോഷ്]] 00:57, 5 December 2010 (PST)&lt;br /&gt;
# Since LHC is invalid for Malayalam, including L = ന്‍ , section 5 of the document cancels itself.&lt;br /&gt;
# Because of argument #6, section 6 also cancels itself.&lt;br /&gt;
# Because of arguments #1 to #8 the IDN rule &amp;quot;Consonant Sequence → *3(CH) C [H|D|X|M[D|X]] | L[HC[D|H|M[D]]]&amp;quot;  is completely wrong and need to be reformulated.&lt;br /&gt;
&lt;br /&gt;
=== Restriction Rules ===&lt;br /&gt;
# Section 2 says &amp;quot;H is not permitted after V, D, X, M, digit and dash&amp;quot; This is wrong since samvruthokaram requires H after V&lt;br /&gt;
#:&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : See the explanation for section 2 under ABNF Rules&amp;lt;/font&amp;gt;&lt;br /&gt;
# Section 7 says H can follow L if it is followed by റ , This is wrong as explained above. L can never followed by H. It can only followed by C&lt;br /&gt;
#:&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : See the explanation for section 5 under ABNF Rules&amp;lt;/font&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== nta criticism===&lt;br /&gt;
&lt;br /&gt;
This document does not address the case of stacked and non stacked forms of nta, which are interchangeably used. For example എന്റെ can be spoofed with എന്‍റെ. Severity of this issue is increased by having one more sequence to represent the same conjunct (ന്‍ + ് + റ) is introduced in Unicode 5.1&lt;br /&gt;
: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : Ans : Modern orthography treats ന്‍റ      as &#039;nRa&#039; and ന്‍റ      as &#039;nTa&#039;. The interchangeable usage of stacked and non-stacked forms for the conjunct &#039;nTa&#039; is wrong by convention.&amp;lt;/font&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Chart of allowed characters===&lt;br /&gt;
&lt;br /&gt;
#Malayalam chillus  - the 5.1 version ക്‍ is removed from the tables. which is having same characteristics and use cases of other chillus. So excluding it from the allowed code points does not make any sense. Moreover the existing chillu representation - non-atomic - is not mentioned in the document at all.&lt;br /&gt;
# Malayalam au sign - ൌ  is not allowed. Instead the au length mark ൗ  is provided. The inscript standard does not allow one to type ൗ  and allows only ൌ. Other input methods allows to type both. But the document does not say anything on the equivalence of both. Allowing both vowel signs is also a spoofing issue. And hence this should be handled in variant table.&lt;br /&gt;
#: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : The inscript standard being revised. The new standard allows both the characters to be inputted. For restricting spoofing and phishing, only one form i.e. ൗ by IDN policy (used in modern text) has been allowed&amp;lt;/font&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Variant Table and Visual Spoofing ===&lt;br /&gt;
Variant table is not logical. Only ളള and ള്ള makes sense. None of the other entries should be considered as spoofing. ന്ത and ന്ന is not even close. Mirror images are already used in Latin, eg. b and d. Hence സ്സ and ഡ്ഡ cannot be blocked. Moreover it is not clear why the same logic does not apply for സ and ഡ. It did not consider the case of ററ and non stacked form of റ്റ common in new lipi.&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : The variant table is based on the observations how Malayalam characters and conjuncts are rendered in the address bars of standard browsers like IE, Mozilla and Safari. While ന്ത and ന്ന are perfectly rendered in Mozilla and Safari, they are not legibly rendered in various versions of IE. The mirror imaged nature of the glyphs was not the criterion for the two glyphs to be qualified as variants. Also note that the variant table is not a full-proof mechanism which can prevent spoofing.&amp;lt;/font&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Even though similarity is considered, dual encoding is not mentioned. In case of dual encoding of chillus, both forms (atomic chillu and consonant  chandrakkala ZWJ) of chillus will look SAME.&lt;br /&gt;
: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : IDN policy doesn&#039;t allow control characters such as ZWJ and ZWNJ to be part of domain names.&amp;lt;/font&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Conclusion==&lt;br /&gt;
The CDAC Policy document on Malayalam IDN is not acceptable without correcting the above explained errors. In its current format, the document was prepared with lot of false assumptions and contains many technical mistakes as pointed out above. Consultation is must with all stake holders of Malayalam Computing before preparing such an important document. This was not happened and we expect such an initiative from the authorities.&lt;br /&gt;
&lt;br /&gt;
== Discussion ==&lt;br /&gt;
# Discussion about the CDACs response: http://lists.smc.org.in/pipermail/discuss-smc.org.in/2010-December/011985.html&lt;/div&gt;</summary>
		<author><name>Pravs</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=CDAC-IDN-Critique&amp;diff=2048</id>
		<title>CDAC-IDN-Critique</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=CDAC-IDN-Critique&amp;diff=2048"/>
		<updated>2010-12-07T14:34:18Z</updated>

		<summary type="html">&lt;p&gt;Pravs: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Malayalam IDN Policy Draft by CDAC - Critique by SMC&lt;br /&gt;
&lt;br /&gt;
The Draft policy document by CDAC is available [http://wiki.smc.org.in/images/7/7b/INTERNATIONALIZED_DOMAIN_NAMES-MALAYALAM.pdf  here  ]&lt;br /&gt;
&lt;br /&gt;
[[File:Response_to_C-DAC-IDN-Critique.pdf | CDAC&#039;s response dated 2/12/2010]]&lt;br /&gt;
&lt;br /&gt;
== Introduction == &lt;br /&gt;
&lt;br /&gt;
== Issues with the approach and process ==&lt;br /&gt;
=== Response to CDAC&#039;s response to the critique ===&lt;br /&gt;
We are not satisfied with the answers given to our questions. The response seems to be prepared by somebody who does not know the scope of IDN. The replies are based on things that are not at all related to IDN. We have tried to explain why your answers are completely wrong. See the responses given below. CDAC seems to confused about the Malayalam orthography, Unicode standard, Font , rendering etc. &lt;br /&gt;
&lt;br /&gt;
One of the main thing that we want to emphasis is, standards should not drafted based on the existing applications. The response from CDAC says, it did extensive study on existing browsers and their address bar behavior. Even one variant table entry is associated with Microsoft Internet Explores buggy behavior. Sorry to say that this is ridiculous. Standards and Policies are for the implementations in the future. It is the guidelines for the applications to be developed in future. It is not a study of existing application behavior.  This is a trivial  fact any person with minimal technical qualification is aware of. CDAC seems to be missing this point.&lt;br /&gt;
&lt;br /&gt;
Orthography is style of writing. It is a users choice for visualizing the content. The content remains same whether one use traditional orthography or new orthography. What IDN policy need to take care is avoiding all cases of spoofing. That should be independent of orthography. IDN can not assume , or cannot enforce that a user should be using only a particular font with Internet browsers. The CDAC&#039;s draft policy makes such a false assumption. It states that Malayalam IDN is not designed for Traditional orthography. This argument comes from ignorance about the basic concepts of Language technology. Unicode does not define anything about Malayalam new and old orthography. It is all about users choice. When CDAC&#039;s policy states &amp;quot;Modern Orthography&amp;quot;, it should define what it is. It is not all defined technically or even in usage pattern. It is just a users convenience. &lt;br /&gt;
&lt;br /&gt;
We demand a process to re-draft this policy document. This is the age of open standards. CDAC should take initiatives to consult with all stakeholdes- language experts, language computing experts, developers.&lt;br /&gt;
&lt;br /&gt;
== Criticism on the policy ==&lt;br /&gt;
=== General Comments===&lt;br /&gt;
# The variant table is defined based on random glyphs taken from a list of 900+ possible glyphs for Malayalam. No explanation is given on how two entries in variant table become homo morphs. One entry in variant table is just because of the fact that one is mirror image of other. Since b, d are not excluded from English, there&#039;s no need to exclude mirror imaged glyphs in variant table.&lt;br /&gt;
#: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response: The IDN system devised for Malayalam is based only on the modern script. It doesn&#039;t address the old script or the fonts based on old script. Also, a detailed study was done before proposing homographs in each of the languages. The study included observing the visual form of the conjunct in the point size of the Address bars of major browsers. The mirror imaged nature of the glyphs was not the criterion for the two glyphs to be qualified as variants.&amp;lt;/font&amp;gt;&lt;br /&gt;
#:: Since CDAC took that much effort to check visual spoofing, i just like to know the basic glyph set in modern orthography of Malayalam --[[User:Jinesh.k|Jinesh.k]] 06:26, 4 December 2010 (PST)&lt;br /&gt;
#::  Please understand that IDN has no relation with the orthography. Orthography is kind of writing style and decided by user&#039;s choice on fonts. It is at higher level and close to user, while IDN has nothing to do about the choice of fonts by users. The distinction between Modern Orthography and Old orthography is not technically defined. Unicode or Unicode capable applications never bother about whether user use an Old lipi font or Traditional font. CDAC or IDN policy cannot say that user should use only a certain set of fonts to work with IDN.  If CDAC says IDN does not support traditional orthography, it does not make any sense at all for some one who know what is Unicode, Orthography and IDN. - [[User:സന്തോഷ്|സന്തോഷ്]] 23:53, 4 December 2010 (PST)&lt;br /&gt;
#::  Forcing a user to chose a particular orthography font based on bugs in one browser is not acceptable. IDN standard should not ban most popular fonts currently in use, majority of digital Malayalam users are happy with traditional fonts and there is no reason to stop it. CDAC cannot and should not decide what fonts a user choses in his/her computer. IDN should work with any Malayalam font, which complies with Unicode version 5.0 and correctly implement Malayalam language rules for conjunct formation. Unicode 5.1 is controvercial and many issues are not answered and it would be a tragedy for Malayalam language if we decide to follow unicode 5.1 blindly without considering its impact on Malayalam language for years to come. [[User:Pravs|Pravs]] 06:30, 7 December 2010 (PST)&lt;br /&gt;
#:: If mirror image was not a criteria for variant table, explain how ത്സ/ഝ , സ്സ/ഡ്ഡ qualify to the variant table?  - [[User:സന്തോഷ്|സന്തോഷ്]] 00:00, 5 December 2010 (PST)&lt;br /&gt;
#:: Why browser behavior is studied for drafting IDN standard? Does it mean that if this policy was drafted 10 years, back, none of the Malayalam characters will be allowed in IDN? 10 years back, Malayalam rendering was pathetic in browsers. Or the current policy is going to change when browsers improve the rendering and their address bar behavior later? How can a standard drafted based on its Implementation?  - [[User:സന്തോഷ്|സന്തോഷ്]] 00:00, 5 December 2010 (PST)&lt;br /&gt;
#:: A standard should not be based on buggy implementation of Malayalam rendering, that is encouraging inability. Any wrong implementation should be corrected. Malayalam language in digital domain should not be kept at the mercy of some corporations who does not care about the language. [[User:Pravs|Pravs]] 06:34, 7 December 2010 (PST)&lt;br /&gt;
&lt;br /&gt;
# Visually identical glyphs are not the only entries to be considered for the variant table. Unicode chart itself has ambiguous dual representations for the same code point without canonical equivalence. An example for this is au signs in Tamil and Malayalam. ௗ- ௌ and  ൗ - ൌ . The document does not consider these special cases.&lt;br /&gt;
#: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response: The IDN policy does not permit the entry of syllables having structure CMM or MCM, where M stands for Matra or vowel sign. The ABNF rules takes care of this.&amp;lt;/font&amp;gt;&lt;br /&gt;
#::  That is wrong. ൗ - ൌ are neither CMM nor MCM case. It is single code pointed Mathra(vowel signs), appearing with consonants in CM format alone. -[[User:സന്തോഷ്|സന്തോഷ്]] 01:04, 5 December 2010 (PST)&lt;br /&gt;
# There are different orthographic forms for many glyphs in Malayalam. The variant table does not address different scenarios arising while considering the visual similarity. For example in traditional orthography TTA is written in stacked form (റ്റ). While in modern orthography it can be written in non-stacked form and this non-stacked form is visually identical to two RA sequence (ററ).&lt;br /&gt;
#:&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : Only the stacked form is considered to be the conjunct TTA in modern orthography.&amp;lt;/font&amp;gt;&lt;br /&gt;
#:: i don&#039;t really understand the logic. A normal user is easily spoofed with റ്റ and ററ. If we go by CDAC&#039;s logic another inorganic standardisation will be the result --[[User:Jinesh.k|Jinesh.k]] 06:26, 4 December 2010 (PST)&lt;br /&gt;
#:: As noted before, please don&#039;t answer questions about IDN using Modern/Old orthography distinction. Nobody with proper Malayalam knowledge will say that nonstacked റ്റ is not TTA. The nonstacked form is explained in detail in Unicode 5.1.0 standard. see http://unicode.org/versions/Unicode5.1.0/  CDACs statement is a contradiction to this.&lt;br /&gt;
&lt;br /&gt;
=== ABNF rules ===&lt;br /&gt;
&lt;br /&gt;
#Section 2 says ക് as pure consonant of ക. Chillu of ക്‍ is considered as pure consonant of ka.&lt;br /&gt;
#: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response: The policy document doesn&#039;t address the obsolete characters in the script, although those characters might have been included in Unicode code chart.&amp;lt;/font&amp;gt;&lt;br /&gt;
#:: On what basis CDAC decided that a character is obsolete? Does CDAC understand that people write the name &amp;quot;CDAC&amp;quot; in Malayalam using Chillu of K like സിഡാക്‍ ? -[[User:സന്തോഷ്|സന്തോഷ്]] 00:20, 5 December 2010 (PST)&lt;br /&gt;
# Section 2.a says CM can be followed by only D (anuswara) or X (visarga). This excludes the Samvruthokarams of Malayalam. All consonant can have cons + u vowel sign  + virama and forming samvruthokaram form of that consonant. Examples:  തു് , കു് , പു് , രു് .&lt;br /&gt;
#: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response: The use of samvruthokarams is considered to be the part of traditional orthography which the policy doesn&#039;t permit.&amp;lt;/font&amp;gt;&lt;br /&gt;
#:: We already explained that orthography is not even a subject on discussion here. Can CDAC provide a definition on what is traditional orthography and what is modern orthography? With a list of &amp;quot;allowed&amp;quot; &amp;quot;characters&amp;quot; in modern orthography which is present in traditional Orthography? What is meant by &amp;quot;permitting&amp;quot;? What stops from a user to use a so called modern orthography font to write samvruthokaram? - [[User:സന്തോഷ്|സന്തോഷ്]] 00:20, 5 December 2010 (PST)&lt;br /&gt;
# Section 3.a restrict the count of consonant in syllable as 4. But ഗ്ദ്ധ്ര്യ has 5 consonants&lt;br /&gt;
#: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : Complex conjuncts like ഗ്ദ്ധ്ര്യ have been simplified in modern orthography.&amp;lt;/font&amp;gt;&lt;br /&gt;
#:: Just wanted to know how a conjunct can be simplified? If &amp;quot;simplified&amp;quot; will the number of consonants reduce? Will the number of Unicode characters reduce?! CDAC should understand the difference between a conjunct and glyph before answering the question. -- [[User:സന്തോഷ്|സന്തോഷ്]] 00:20, 5 December 2010 (PST)&lt;br /&gt;
# Section 3.b excludes syllables with samvruthokram like ക്കു് .&lt;br /&gt;
# Section 4 states a chillu can be followed by a vowel sign. Since chillu is dead consonant, there is no possibility of having virama after chillu.&lt;br /&gt;
#:&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : The document doesn&#039;t state that a chillu can be followed by a vowel sign. The observation that a virama can appear after a chillu is based on the recommendation of Unicode&amp;lt;/font&amp;gt;&lt;br /&gt;
# The example used for LHC - ന്‍്റ does not exist in printing or digital format. None of the input methods or Malayalam writers ന്റ in this way. The sequence for nta is ന + ്  + റ . ie there is no LHC sequence in Malayalam.&lt;br /&gt;
#: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response: The  ന്‍്റ happened because none of the rendering engines available today does support the rendering of &#039;nTa&#039; in the Unicode 5.1 way. as displayed in the document is the  wrongly rendered form of the conjunct &#039;nTa&#039;. This 5.1 official document on rendering the conjunct &#039;nTa&#039;.&amp;lt;/font&amp;gt;&lt;br /&gt;
#:: CDAC said, it did extensive study on rendering in various  browser address bars and took  policy decision was based on that. So for this, no study was conducted? Never noticed that browsers are not able to render this properly? -[[User:സന്തോഷ്|സന്തോഷ്]] 00:57, 5 December 2010 (PST)&lt;br /&gt;
# Since LHC is invalid for Malayalam, including L = ന്‍ , section 5 of the document cancels itself.&lt;br /&gt;
# Because of argument #6, section 6 also cancels itself.&lt;br /&gt;
# Because of arguments #1 to #8 the IDN rule &amp;quot;Consonant Sequence → *3(CH) C [H|D|X|M[D|X]] | L[HC[D|H|M[D]]]&amp;quot;  is completely wrong and need to be reformulated.&lt;br /&gt;
&lt;br /&gt;
=== Restriction Rules ===&lt;br /&gt;
# Section 2 says &amp;quot;H is not permitted after V, D, X, M, digit and dash&amp;quot; This is wrong since samvruthokaram requires H after V&lt;br /&gt;
#:&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : See the explanation for section 2 under ABNF Rules&amp;lt;/font&amp;gt;&lt;br /&gt;
# Section 7 says H can follow L if it is followed by റ , This is wrong as explained above. L can never followed by H. It can only followed by C&lt;br /&gt;
#:&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : See the explanation for section 5 under ABNF Rules&amp;lt;/font&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== nta criticism===&lt;br /&gt;
&lt;br /&gt;
This document does not address the case of stacked and non stacked forms of nta, which are interchangeably used. For example എന്റെ can be spoofed with എന്‍റെ. Severity of this issue is increased by having one more sequence to represent the same conjunct (ന്‍ + ് + റ) is introduced in Unicode 5.1&lt;br /&gt;
: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : Ans : Modern orthography treats ന്‍റ      as &#039;nRa&#039; and ന്‍റ      as &#039;nTa&#039;. The interchangeable usage of stacked and non-stacked forms for the conjunct &#039;nTa&#039; is wrong by convention.&amp;lt;/font&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Chart of allowed characters===&lt;br /&gt;
&lt;br /&gt;
#Malayalam chillus  - the 5.1 version ക്‍ is removed from the tables. which is having same characteristics and use cases of other chillus. So excluding it from the allowed code points does not make any sense. Moreover the existing chillu representation - non-atomic - is not mentioned in the document at all.&lt;br /&gt;
# Malayalam au sign - ൌ  is not allowed. Instead the au length mark ൗ  is provided. The inscript standard does not allow one to type ൗ  and allows only ൌ. Other input methods allows to type both. But the document does not say anything on the equivalence of both. Allowing both vowel signs is also a spoofing issue. And hence this should be handled in variant table.&lt;br /&gt;
#: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : The inscript standard being revised. The new standard allows both the characters to be inputted. For restricting spoofing and phishing, only one form i.e. ൗ by IDN policy (used in modern text) has been allowed&amp;lt;/font&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Variant Table and Visual Spoofing ===&lt;br /&gt;
Variant table is not logical. Only ളള and ള്ള makes sense. None of the other entries should be considered as spoofing. ന്ത and ന്ന is not even close. Mirror images are already used in Latin, eg. b and d. Hence സ്സ and ഡ്ഡ cannot be blocked. Moreover it is not clear why the same logic does not apply for സ and ഡ. It did not consider the case of ററ and non stacked form of റ്റ common in new lipi.&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : The variant table is based on the observations how Malayalam characters and conjuncts are rendered in the address bars of standard browsers like IE, Mozilla and Safari. While ന്ത and ന്ന are perfectly rendered in Mozilla and Safari, they are not legibly rendered in various versions of IE. The mirror imaged nature of the glyphs was not the criterion for the two glyphs to be qualified as variants. Also note that the variant table is not a full-proof mechanism which can prevent spoofing.&amp;lt;/font&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Even though similarity is considered, dual encoding is not mentioned. In case of dual encoding of chillus, both forms (atomic chillu and consonant  chandrakkala ZWJ) of chillus will look SAME.&lt;br /&gt;
: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : IDN policy doesn&#039;t allow control characters such as ZWJ and ZWNJ to be part of domain names.&amp;lt;/font&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Conclusion==&lt;br /&gt;
The CDAC Policy document on Malayalam IDN is not acceptable without correcting the above explained errors. In its current format, the document was prepared with lot of false assumptions and contains many technical mistakes as pointed out above. Consultation is must with all stake holders of Malayalam Computing before preparing such an important document. This was not happened and we expect such an initiative from the authorities.&lt;br /&gt;
&lt;br /&gt;
== Discussion ==&lt;br /&gt;
# Discussion about the CDACs response: http://lists.smc.org.in/pipermail/discuss-smc.org.in/2010-December/011985.html&lt;/div&gt;</summary>
		<author><name>Pravs</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=CDAC-IDN-Critique&amp;diff=2047</id>
		<title>CDAC-IDN-Critique</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=CDAC-IDN-Critique&amp;diff=2047"/>
		<updated>2010-12-07T14:30:12Z</updated>

		<summary type="html">&lt;p&gt;Pravs: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Malayalam IDN Policy Draft by CDAC - Critique by SMC&lt;br /&gt;
&lt;br /&gt;
The Draft policy document by CDAC is available [http://wiki.smc.org.in/images/7/7b/INTERNATIONALIZED_DOMAIN_NAMES-MALAYALAM.pdf  here  ]&lt;br /&gt;
&lt;br /&gt;
[[File:Response_to_C-DAC-IDN-Critique.pdf | CDAC&#039;s response dated 2/12/2010]]&lt;br /&gt;
&lt;br /&gt;
== Introduction == &lt;br /&gt;
&lt;br /&gt;
== Issues with the approach and process ==&lt;br /&gt;
=== Response to CDAC&#039;s response to the critique ===&lt;br /&gt;
We are not satisfied with the answers given to our questions. The response seems to be prepared by somebody who does not know the scope of IDN. The replies are based on things that are not at all related to IDN. We have tried to explain why your answers are completely wrong. See the responses given below. CDAC seems to confused about the Malayalam orthography, Unicode standard, Font , rendering etc. &lt;br /&gt;
&lt;br /&gt;
One of the main thing that we want to emphasis is, standards should not drafted based on the existing applications. The response from CDAC says, it did extensive study on existing browsers and their address bar behavior. Even one variant table entry is associated with Microsoft Internet Explores buggy behavior. Sorry to say that this is ridiculous. Standards and Policies are for the implementations in the future. It is the guidelines for the applications to be developed in future. It is not a study of existing application behavior.  This is a trivial  fact any person with minimal technical qualification is aware of. CDAC seems to be missing this point.&lt;br /&gt;
&lt;br /&gt;
Orthography is style of writing. It is a users choice for visualizing the content. The content remains same whether one use traditional orthography or new orthography. What IDN policy need to take care is avoiding all cases of spoofing. That should be independent of orthography. IDN can not assume , or cannot enforce that a user should be using only a particular font with Internet browsers. The CDAC&#039;s draft policy makes such a false assumption. It states that Malayalam IDN is not designed for Traditional orthography. This argument comes from ignorance about the basic concepts of Language technology. Unicode does not define anything about Malayalam new and old orthography. It is all about users choice. When CDAC&#039;s policy states &amp;quot;Modern Orthography&amp;quot;, it should define what it is. It is not all defined technically or even in usage pattern. It is just a users convenience. &lt;br /&gt;
&lt;br /&gt;
We demand a process to re-draft this policy document. This is the age of open standards. CDAC should take initiatives to consult with all stakeholdes- language experts, language computing experts, developers.&lt;br /&gt;
&lt;br /&gt;
== Criticism on the policy ==&lt;br /&gt;
=== General Comments===&lt;br /&gt;
# The variant table is defined based on random glyphs taken from a list of 900+ possible glyphs for Malayalam. No explanation is given on how two entries in variant table become homo morphs. One entry in variant table is just because of the fact that one is mirror image of other. Since b, d are not excluded from English, there&#039;s no need to exclude mirror imaged glyphs in variant table.&lt;br /&gt;
#: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response: The IDN system devised for Malayalam is based only on the modern script. It doesn&#039;t address the old script or the fonts based on old script. Also, a detailed study was done before proposing homographs in each of the languages. The study included observing the visual form of the conjunct in the point size of the Address bars of major browsers. The mirror imaged nature of the glyphs was not the criterion for the two glyphs to be qualified as variants.&amp;lt;/font&amp;gt;&lt;br /&gt;
#:: Since CDAC took that much effort to check visual spoofing, i just like to know the basic glyph set in modern orthography of Malayalam --[[User:Jinesh.k|Jinesh.k]] 06:26, 4 December 2010 (PST)&lt;br /&gt;
#::  Please understand that IDN has no relation with the orthography. Orthography is kind of writing style and decided by user&#039;s choice on fonts. It is at higher level and close to user, while IDN has nothing to do about the choice of fonts by users. The distinction between Modern Orthography and Old orthography is not technically defined. Unicode or Unicode capable applications never bother about whether user use an Old lipi font or Traditional font. CDAC or IDN policy cannot say that user should use only a certain set of fonts to work with IDN.  If CDAC says IDN does not support traditional orthography, it does not make any sense at all for some one who know what is Unicode, Orthography and IDN. - [[User:സന്തോഷ്|സന്തോഷ്]] 23:53, 4 December 2010 (PST)&lt;br /&gt;
#::  Forcing a user to chose a particular orthography font based on bugs in one browser is not acceptable. IDN standard should not ban most popular fonts currently in use, majority of digital Malayalam users are happy with traditional fonts and there is no reason to stop it. CDAC cannot and should not decide what fonts a user choses in his/her computer. IDN should work with any Malayalam font, which complies with Unicode version 5.0 and correctly implement Malayalam language rules for conjunct formation. Unicode 5.1 is controvercial and many issues are not answered and it would be a tragedy for Malayalam language if we decide to follow unicode 5.1 blindly without considering its impact on Malayalam language for years to come. [[User:Pravs|Pravs]] 06:30, 7 December 2010 (PST)&lt;br /&gt;
#:: If mirror image was not a criteria for variant table, explain how ത്സ/ഝ , സ്സ/ഡ്ഡ qualify to the variant table?  - [[User:സന്തോഷ്|സന്തോഷ്]] 00:00, 5 December 2010 (PST)&lt;br /&gt;
#:: Why browser behavior is studied for drafting IDN standard? Does it mean that if this policy was drafted 10 years, back, none of the Malayalam characters will be allowed in IDN? 10 years back, Malayalam rendering was pathetic in browsers. Or the current policy is going to change when browsers improve the rendering and their address bar behavior later? How can a standard drafted based on its Implementation?  - [[User:സന്തോഷ്|സന്തോഷ്]] 00:00, 5 December 2010 (PST)&lt;br /&gt;
&lt;br /&gt;
# Visually identical glyphs are not the only entries to be considered for the variant table. Unicode chart itself has ambiguous dual representations for the same code point without canonical equivalence. An example for this is au signs in Tamil and Malayalam. ௗ- ௌ and  ൗ - ൌ . The document does not consider these special cases.&lt;br /&gt;
#: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response: The IDN policy does not permit the entry of syllables having structure CMM or MCM, where M stands for Matra or vowel sign. The ABNF rules takes care of this.&amp;lt;/font&amp;gt;&lt;br /&gt;
#::  That is wrong. ൗ - ൌ are neither CMM nor MCM case. It is single code pointed Mathra(vowel signs), appearing with consonants in CM format alone. -[[User:സന്തോഷ്|സന്തോഷ്]] 01:04, 5 December 2010 (PST)&lt;br /&gt;
# There are different orthographic forms for many glyphs in Malayalam. The variant table does not address different scenarios arising while considering the visual similarity. For example in traditional orthography TTA is written in stacked form (റ്റ). While in modern orthography it can be written in non-stacked form and this non-stacked form is visually identical to two RA sequence (ററ).&lt;br /&gt;
#:&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : Only the stacked form is considered to be the conjunct TTA in modern orthography.&amp;lt;/font&amp;gt;&lt;br /&gt;
#:: i don&#039;t really understand the logic. A normal user is easily spoofed with റ്റ and ററ. If we go by CDAC&#039;s logic another inorganic standardisation will be the result --[[User:Jinesh.k|Jinesh.k]] 06:26, 4 December 2010 (PST)&lt;br /&gt;
#:: As noted before, please don&#039;t answer questions about IDN using Modern/Old orthography distinction. Nobody with proper Malayalam knowledge will say that nonstacked റ്റ is not TTA. The nonstacked form is explained in detail in Unicode 5.1.0 standard. see http://unicode.org/versions/Unicode5.1.0/  CDACs statement is a contradiction to this.&lt;br /&gt;
&lt;br /&gt;
=== ABNF rules ===&lt;br /&gt;
&lt;br /&gt;
#Section 2 says ക് as pure consonant of ക. Chillu of ക്‍ is considered as pure consonant of ka.&lt;br /&gt;
#: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response: The policy document doesn&#039;t address the obsolete characters in the script, although those characters might have been included in Unicode code chart.&amp;lt;/font&amp;gt;&lt;br /&gt;
#:: On what basis CDAC decided that a character is obsolete? Does CDAC understand that people write the name &amp;quot;CDAC&amp;quot; in Malayalam using Chillu of K like സിഡാക്‍ ? -[[User:സന്തോഷ്|സന്തോഷ്]] 00:20, 5 December 2010 (PST)&lt;br /&gt;
# Section 2.a says CM can be followed by only D (anuswara) or X (visarga). This excludes the Samvruthokarams of Malayalam. All consonant can have cons + u vowel sign  + virama and forming samvruthokaram form of that consonant. Examples:  തു് , കു് , പു് , രു് .&lt;br /&gt;
#: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response: The use of samvruthokarams is considered to be the part of traditional orthography which the policy doesn&#039;t permit.&amp;lt;/font&amp;gt;&lt;br /&gt;
#:: We already explained that orthography is not even a subject on discussion here. Can CDAC provide a definition on what is traditional orthography and what is modern orthography? With a list of &amp;quot;allowed&amp;quot; &amp;quot;characters&amp;quot; in modern orthography which is present in traditional Orthography? What is meant by &amp;quot;permitting&amp;quot;? What stops from a user to use a so called modern orthography font to write samvruthokaram? - [[User:സന്തോഷ്|സന്തോഷ്]] 00:20, 5 December 2010 (PST)&lt;br /&gt;
# Section 3.a restrict the count of consonant in syllable as 4. But ഗ്ദ്ധ്ര്യ has 5 consonants&lt;br /&gt;
#: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : Complex conjuncts like ഗ്ദ്ധ്ര്യ have been simplified in modern orthography.&amp;lt;/font&amp;gt;&lt;br /&gt;
#:: Just wanted to know how a conjunct can be simplified? If &amp;quot;simplified&amp;quot; will the number of consonants reduce? Will the number of Unicode characters reduce?! CDAC should understand the difference between a conjunct and glyph before answering the question. -- [[User:സന്തോഷ്|സന്തോഷ്]] 00:20, 5 December 2010 (PST)&lt;br /&gt;
# Section 3.b excludes syllables with samvruthokram like ക്കു് .&lt;br /&gt;
# Section 4 states a chillu can be followed by a vowel sign. Since chillu is dead consonant, there is no possibility of having virama after chillu.&lt;br /&gt;
#:&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : The document doesn&#039;t state that a chillu can be followed by a vowel sign. The observation that a virama can appear after a chillu is based on the recommendation of Unicode&amp;lt;/font&amp;gt;&lt;br /&gt;
# The example used for LHC - ന്‍്റ does not exist in printing or digital format. None of the input methods or Malayalam writers ന്റ in this way. The sequence for nta is ന + ്  + റ . ie there is no LHC sequence in Malayalam.&lt;br /&gt;
#: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response: The  ന്‍്റ happened because none of the rendering engines available today does support the rendering of &#039;nTa&#039; in the Unicode 5.1 way. as displayed in the document is the  wrongly rendered form of the conjunct &#039;nTa&#039;. This 5.1 official document on rendering the conjunct &#039;nTa&#039;.&amp;lt;/font&amp;gt;&lt;br /&gt;
#:: CDAC said, it did extensive study on rendering in various  browser address bars and took  policy decision was based on that. So for this, no study was conducted? Never noticed that browsers are not able to render this properly? -[[User:സന്തോഷ്|സന്തോഷ്]] 00:57, 5 December 2010 (PST)&lt;br /&gt;
# Since LHC is invalid for Malayalam, including L = ന്‍ , section 5 of the document cancels itself.&lt;br /&gt;
# Because of argument #6, section 6 also cancels itself.&lt;br /&gt;
# Because of arguments #1 to #8 the IDN rule &amp;quot;Consonant Sequence → *3(CH) C [H|D|X|M[D|X]] | L[HC[D|H|M[D]]]&amp;quot;  is completely wrong and need to be reformulated.&lt;br /&gt;
&lt;br /&gt;
=== Restriction Rules ===&lt;br /&gt;
# Section 2 says &amp;quot;H is not permitted after V, D, X, M, digit and dash&amp;quot; This is wrong since samvruthokaram requires H after V&lt;br /&gt;
#:&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : See the explanation for section 2 under ABNF Rules&amp;lt;/font&amp;gt;&lt;br /&gt;
# Section 7 says H can follow L if it is followed by റ , This is wrong as explained above. L can never followed by H. It can only followed by C&lt;br /&gt;
#:&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : See the explanation for section 5 under ABNF Rules&amp;lt;/font&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== nta criticism===&lt;br /&gt;
&lt;br /&gt;
This document does not address the case of stacked and non stacked forms of nta, which are interchangeably used. For example എന്റെ can be spoofed with എന്‍റെ. Severity of this issue is increased by having one more sequence to represent the same conjunct (ന്‍ + ് + റ) is introduced in Unicode 5.1&lt;br /&gt;
: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : Ans : Modern orthography treats ന്‍റ      as &#039;nRa&#039; and ന്‍റ      as &#039;nTa&#039;. The interchangeable usage of stacked and non-stacked forms for the conjunct &#039;nTa&#039; is wrong by convention.&amp;lt;/font&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Chart of allowed characters===&lt;br /&gt;
&lt;br /&gt;
#Malayalam chillus  - the 5.1 version ക്‍ is removed from the tables. which is having same characteristics and use cases of other chillus. So excluding it from the allowed code points does not make any sense. Moreover the existing chillu representation - non-atomic - is not mentioned in the document at all.&lt;br /&gt;
# Malayalam au sign - ൌ  is not allowed. Instead the au length mark ൗ  is provided. The inscript standard does not allow one to type ൗ  and allows only ൌ. Other input methods allows to type both. But the document does not say anything on the equivalence of both. Allowing both vowel signs is also a spoofing issue. And hence this should be handled in variant table.&lt;br /&gt;
#: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : The inscript standard being revised. The new standard allows both the characters to be inputted. For restricting spoofing and phishing, only one form i.e. ൗ by IDN policy (used in modern text) has been allowed&amp;lt;/font&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Variant Table and Visual Spoofing ===&lt;br /&gt;
Variant table is not logical. Only ളള and ള്ള makes sense. None of the other entries should be considered as spoofing. ന്ത and ന്ന is not even close. Mirror images are already used in Latin, eg. b and d. Hence സ്സ and ഡ്ഡ cannot be blocked. Moreover it is not clear why the same logic does not apply for സ and ഡ. It did not consider the case of ററ and non stacked form of റ്റ common in new lipi.&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : The variant table is based on the observations how Malayalam characters and conjuncts are rendered in the address bars of standard browsers like IE, Mozilla and Safari. While ന്ത and ന്ന are perfectly rendered in Mozilla and Safari, they are not legibly rendered in various versions of IE. The mirror imaged nature of the glyphs was not the criterion for the two glyphs to be qualified as variants. Also note that the variant table is not a full-proof mechanism which can prevent spoofing.&amp;lt;/font&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Even though similarity is considered, dual encoding is not mentioned. In case of dual encoding of chillus, both forms (atomic chillu and consonant  chandrakkala ZWJ) of chillus will look SAME.&lt;br /&gt;
: &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;CDAC&#039;s Response : IDN policy doesn&#039;t allow control characters such as ZWJ and ZWNJ to be part of domain names.&amp;lt;/font&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Conclusion==&lt;br /&gt;
The CDAC Policy document on Malayalam IDN is not acceptable without correcting the above explained errors. In its current format, the document was prepared with lot of false assumptions and contains many technical mistakes as pointed out above. Consultation is must with all stake holders of Malayalam Computing before preparing such an important document. This was not happened and we expect such an initiative from the authorities.&lt;br /&gt;
&lt;br /&gt;
== Discussion ==&lt;br /&gt;
# Discussion about the CDACs response: http://lists.smc.org.in/pipermail/discuss-smc.org.in/2010-December/011985.html&lt;/div&gt;</summary>
		<author><name>Pravs</name></author>
	</entry>
</feed>