<?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=Ershad</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=Ershad"/>
	<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/Special:Contributions/Ershad"/>
	<updated>2026-05-09T18:17:29Z</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=4586</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=4586"/>
		<updated>2014-02-12T05:11:09Z</updated>

		<summary type="html">&lt;p&gt;Ershad: &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;
==SILPA BASED==&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;
&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;
=== Internationalize SILPA project with Wikimedia jquery projects ,  Improve  the webfonts module in Silpa using jquery.webfonts and provide more Indic and complex fonts as part of it ===&lt;br /&gt;
&#039;&#039;&#039;Project&#039;&#039;&#039;: &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Internationalize SILPA&#039;&#039;&#039; :-  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;Improve  the webfonts &#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;
* **This is partly done**. &lt;br /&gt;
&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;
&#039;&#039;&#039;Expertise required&#039;&#039;&#039;: jQuery, css, html5, Python , flask , technical understanding about fonts&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Mentor&#039;&#039;&#039; : Jishnu/Vasudev&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;br /&gt;
&lt;br /&gt;
==Varnam Based==&lt;br /&gt;
===Improvements to the REST API===&lt;br /&gt;
&lt;br /&gt;
This includes rewrite of the current implementation in `golang` and add&lt;br /&gt;
support for WebSockets to improve the input experience. This also&lt;br /&gt;
includes making scripts that would ease embedding input on any webpage.&lt;br /&gt;
All the changes done will go live on[1]&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;Complexity&#039;&#039;&#039; : Advanced&lt;br /&gt;
&lt;br /&gt;
=== Improve the learning system===&lt;br /&gt;
&lt;br /&gt;
The main goal of this is to improve how varnam tokenizes when learning&lt;br /&gt;
words. Today, when a word is learned, varnam takes all the possible&lt;br /&gt;
prefixes into account and learn all of them to improve future&lt;br /&gt;
suggestions. But sometimes, this is not enough to predict good&lt;br /&gt;
suggestions. An improvement is suggested which will try to infer the&lt;br /&gt;
base form of the word under learning&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Expertise required&#039;&#039;&#039;: Knowledge in C&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Complexity&#039;&#039;&#039; : Medium&lt;br /&gt;
&lt;br /&gt;
=== Word corpus synchronization ===&lt;br /&gt;
&lt;br /&gt;
Create a cross-platform synchronization tool which can upload/download&lt;br /&gt;
the word corpus from offline IMEs like varnam-ibus[2]. This helps to&lt;br /&gt;
build the online words corpus easily.&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;Complexity&#039;&#039;&#039; : Medium&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;
&#039;&#039;&#039;Mentor&#039;&#039;&#039;:  Navaneeth K N&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;: Anvar Aravind&lt;br /&gt;
&lt;br /&gt;
==Grandham ==&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;
&#039;&#039;&#039;Expertise required&#039;&#039;&#039;: Knowledge in Ruby/Ruby on Rails&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Complexity&#039;&#039;&#039; : High&lt;br /&gt;
&lt;br /&gt;
[1]: http://dev.grandha.org&lt;br /&gt;
[2]: https://github.com/smc/grandham&lt;/div&gt;</summary>
		<author><name>Ershad</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=SFD2013/en&amp;diff=4428</id>
		<title>SFD2013/en</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=SFD2013/en&amp;diff=4428"/>
		<updated>2013-09-20T15:20:47Z</updated>

		<summary type="html">&lt;p&gt;Ershad: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
&#039;&#039;&#039;Software Freedom Day Celebration and SMC&#039;s 12th anniversary celebration website&#039;s unveiling&#039;&#039;&#039;&lt;br /&gt;
 &lt;br /&gt;
Dear friends,&lt;br /&gt;
&lt;br /&gt;
The fundamental structure of humanity rests on collaboration, cooperation and sharing. In the fast moving world of information technology, this human nature manifests itself as Free Software. This&lt;br /&gt;
infusion of fundamental human nature in Free Software ensures that the knowledge that humans have acquired over years of its existence, in its digital form, reaches everybody, across all barriers whether man&lt;br /&gt;
made or not. Every year, the 3rd Saturday of every September is celebrated as The Software Freedom day. On this day freedom lovers around the world celebrates the ideals that drive Free Software - &amp;quot;The&lt;br /&gt;
freedom to learn, to copy, to change and innovate, and to distribute&amp;quot;, essentially something that&#039;s ingrained in every human. Activities are organized where everyone who attends are educated about Free Software,&lt;br /&gt;
its purpose and its necessity and encouraged to contribute to this noble human endeavor.&lt;br /&gt;
&lt;br /&gt;
A non-profit organization called &amp;quot;Software Freedom International&amp;quot; drives the SFD celebrations globally. This organization provides guidelines, support and coordination between entities celebrating SFD around the world. In addition, organizations and individuals in different countries celebrate SFD in their community, independent of this organization. Along those lines, in Kerala, the Free Software Users and community are planning to celebrate SFD in different&lt;br /&gt;
districts.&lt;br /&gt;
&lt;br /&gt;
This year&#039;s Software Freedom day falls on the 21st of September. On this day a bunch of Freedom Lovers are kicking off SFD celebrations at 10 am, in the Kerala Sahithya Academy Changampuzha Hall in Thrissur. In true Free Software fashion, this is a collaboration driven by Swathanthra Malayalam Computing along with Kerala Shasthra Sahithya Parishad and DAKF. Inauguration will be done by Shri K Venu and sessions will be chaired by Dr P Renjith&lt;br /&gt;
&lt;br /&gt;
Major events include an introduction to Free Software tools that were developed to bring our beloved mother tongue, Malayalam, into the digital age, various talks on Free Software and discussions, and a GNU/Linux driven by&lt;br /&gt;
volunteers to help people install popular GNU/Linux distributions into their pen-drives/laptops&lt;br /&gt;
&lt;br /&gt;
At 3 pm on the same day and venue, the unveiling of SMC&#039;s 12th anniversary celebration website, by poet Anwar Ali will take place. This session will be chaired by Dr C. K. Raju.&lt;br /&gt;
&lt;br /&gt;
For more information :  995551549, 9946066907, 09448063780&lt;br /&gt;
&lt;br /&gt;
== Venue ==&lt;br /&gt;
Kerala Sahithya Academy Changampuzha Hall , Thrissur&lt;br /&gt;
&lt;br /&gt;
== Timing ==&lt;br /&gt;
10 a.m. to 6 p.m&lt;br /&gt;
&lt;br /&gt;
== Agenda  - Software Freedom Day ==&lt;br /&gt;
* Inauguration : K Venu.&lt;br /&gt;
* Chaired by : Dr P Ranjith&lt;br /&gt;
* Session : Language, Culture and Technology -- by Anivar Aravind.&lt;br /&gt;
* Session : SMC&#039;s forays and contributions to Free Software - Balasankar&lt;br /&gt;
* Session : Introduction to Swathanthra Indian Language Processsing Application (SILPA) - Hrishikesh&lt;br /&gt;
* Session : Google Summer of Code and Engineering Students - Nandaja Varma (GSOC Student mentored by SMC)&lt;br /&gt;
* Session : Social Coding using Git version control system - Ershad (GSOC Student mentored by SMC)&lt;br /&gt;
* Session : Diaspora - a free(dom) social network - Praveen Arimbrathodiyil&lt;br /&gt;
* Session : Wikipedia, the free(dom) encyclopedia - Alfaz&lt;br /&gt;
* Session : Wikibooks and publication of literature under free licenses - Manoj K&lt;br /&gt;
* Movie Session : Open movies and a discussion on Chamba Open Movie Project - Sooraj Kenoth&lt;br /&gt;
* Session : An introduction to Inkscape - Ark Arjun&lt;br /&gt;
&lt;br /&gt;
== Agenda - 12th Anniversary celebration committee formation and website inauguration  ==&lt;br /&gt;
*  Chaired by : Dr C. K. Raju &lt;br /&gt;
*  Website Unvieling  - Anwar Ali (Poet)&lt;br /&gt;
&lt;br /&gt;
== Social Network ==&lt;br /&gt;
* [https://www.facebook.com/events/719050844777419/ Facebook Event Page ]&lt;br /&gt;
* [https://plus.google.com/u/0/events/cqul2e8dcod99jr6maotog4qspo Google Plus Event Page ]&lt;br /&gt;
&lt;br /&gt;
== Posters ==&lt;br /&gt;
* [http://ubuntuone.com/3YTDgiNOref5CUPzg1tryZ One]&lt;br /&gt;
*[https://joindiaspora.com/posts/3076718 another ]&lt;br /&gt;
*[https://joindiaspora.com/posts/3087794  another one] &lt;br /&gt;
*&amp;lt; Any volunteers for more posters ? &amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Press Release ==&lt;br /&gt;
[[:File:SMC-SFD13-PressRelease.pdf | Press Release ]]&lt;/div&gt;</summary>
		<author><name>Ershad</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=User:Ershad/GSoC2013_Malayalagrandham&amp;diff=4164</id>
		<title>User:Ershad/GSoC2013 Malayalagrandham</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=User:Ershad/GSoC2013_Malayalagrandham&amp;diff=4164"/>
		<updated>2013-08-11T18:49:22Z</updated>

		<summary type="html">&lt;p&gt;Ershad: /* Project updates */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Google Summer of Code 2013 Proposal for Swathanthra Malalayalam Computing&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Personal Information==&lt;br /&gt;
  Email Address:                    ershad92@gmail.com&lt;br /&gt;
  Telephone:                        +91 8089133362&lt;br /&gt;
  Blog URL:                         http://ershadk.com&lt;br /&gt;
  Freenode IRC Nick:                ershad&lt;br /&gt;
  University and current education: BSc Computer Science, Bharathiyar University&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Why do you want to work with the Swathanthra Malayalam Computing? ===&lt;br /&gt;
Swathanthra Malayalam Computing is contributing much to Indic languages and language computing, it&#039;s great to be a part of it.&lt;br /&gt;
&lt;br /&gt;
=== Do you have any past involvement with the Swathanthra Malayalam Computing or another open source project as a contributor? ===&lt;br /&gt;
Yes. I&#039;ve contributed to Swathanthra Malayalam Computing, MediaWiki and a couple of other open source projects.&lt;br /&gt;
&lt;br /&gt;
=== Did you participate with the past GSoC programs, if so which years, which organizations? ===&lt;br /&gt;
No, I&#039;ve not participated in GSoC programs before.&lt;br /&gt;
&lt;br /&gt;
=== Do you have other obligations between May and August ? Please note that we expect the Summer of Code to be a full time, 40 hour a week commitment ===&lt;br /&gt;
It will be possible for me to work 35-40 hours / Week.&lt;br /&gt;
&lt;br /&gt;
=== Will you continue contributing/ supporting the Swathanthra Malayalam Computing after the GSoC 2013 program, if yes, which area(s), you are interested in? ===&lt;br /&gt;
I&#039;ve been contributing to SMC, I will definitely continue doing it along with maintaining the Malayalagrandham application after GSoC. My interested areas include Language Computing, SILPA and translation.&lt;br /&gt;
&lt;br /&gt;
=== Why should we choose you over other applicants? ===&lt;br /&gt;
I&#039;ve been a FOSS enthusiast for years and have been continuously trying to contribute to it. GSoC will be a great platform for me to contribute more.&lt;br /&gt;
&lt;br /&gt;
This proposal is meant for Malayalagrandham Bibliography Data project. I&#039;m planning to do it in Ruby on Rails in which I&#039;m well versed and have more than 1 year of experience. I also have a track record of doing end-to-end hobby projects in Ruby on Rails.&lt;br /&gt;
&lt;br /&gt;
And right the at moment, I&#039;ve done its backend and wrote scripts to import data from old database. It will be easy for me to build upon that.&lt;br /&gt;
&lt;br /&gt;
== Proposal Description ==&lt;br /&gt;
=== An overview of your proposal ===&lt;br /&gt;
Malayalagrandham.com is a web application to store and process bibliography data of books. Currently it has a growing database with information of more than 50K books. The current live application was built a few years before and it lacks  features such as crowd sourcing, RESTFul API, Feedback, Visualization and so on. The proposed project aims at building a more advanced and contributor/developer friendly version of Malayalagrandham Bibliography Data application with the aforementioned features. The new version of Malayalagrandham will be a crowd sourced Internet Book Database. It will have features to export data to various formats such as MARC21 and MARCXML.&lt;br /&gt;
&lt;br /&gt;
The application essentially will have the following interfaces.&lt;br /&gt;
&lt;br /&gt;
1. Interface for the task force&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Task force is a group of people with administrative privileges. These admins should be able to select the right submission from crowd sourced data and they should be able to moderate any the contents in the web application.  They should also be able to visualize existing data.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
2. Interface for contributor&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Any person should be able to become a contributor by signing up using his/her email ID. Contributor should be able to add new bibliography information and post comments/reviews through the feedback system. He should also be able to upload cover photos of books.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
3. Interface for Publisher&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Publishers should be able to add bibliography information of the books they publish. They should also be able to generate QR code that links to specific book&#039;s page.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
4. Interface for Librarian&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Librarians should be able to update the location of the books in Malayalagrandham.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
All the data in Malayalagrandham will be open to Public. But users need special permission (admin privileges) to modify the existing approved data. Application will have full support for localization using i18n libraries of Rails.&lt;br /&gt;
&lt;br /&gt;
=== The need you believe it fulfills ===&lt;br /&gt;
Apart from the bibliographic information it provides, Malayalagrandham would help people to locate books easily. Building a new version this application has the following benefits:&lt;br /&gt;
&lt;br /&gt;
# It will be easy for users to contribute new data&lt;br /&gt;
# REFTul API makes the application developer friendly. The API will enable developers to write client applications across platforms.&lt;br /&gt;
# We will have a centralized location of information of many books in a breadth of languages.&lt;br /&gt;
# It will be easy to perform complex searches to locate specific books.&lt;br /&gt;
# The feedback feature attracts more engagement/dicussion from users.&lt;br /&gt;
# ISBN based book discovery will be possible&lt;br /&gt;
# QR code for each book would help the user to locate its Malayagrandham page&lt;br /&gt;
&lt;br /&gt;
=== Any relevant experience you have ===&lt;br /&gt;
&lt;br /&gt;
I&#039;ve industrial experiencing in building and deploying Ruby on Rails web applications. I also have learned about MARC21/MARCXML formats and ISBN.&lt;br /&gt;
&lt;br /&gt;
=== How you intend to implement your proposal ===&lt;br /&gt;
Technology stack is Ruby on Rails web framework with MySQL backend. We will be using the following Open Source gems and modules :&lt;br /&gt;
&lt;br /&gt;
# devise - User Authorization&lt;br /&gt;
# ruby-marc - Read and Write in MARC Format&lt;br /&gt;
# marc21-utils - MARC Validation&lt;br /&gt;
# ferret - Text Search&lt;br /&gt;
# Jbuilder - DSL to configure JSON API&lt;br /&gt;
# rqrcode - QR code generator&lt;br /&gt;
#rspec, capybara - Test Driven Development (TDD)&lt;br /&gt;
# Twitter Bootstrap - Front end Framework&lt;br /&gt;
&lt;br /&gt;
=== A rough timeline for your progress with phases ===&lt;br /&gt;
==== Jun 17 - Jun 30 ====&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Resume the development on the existing application I wrote for this project and design the remaining parts of the software.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Jul 1 - Jul 15==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Implement the application logic as per the design and start focusing on API&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== July 16 - Jul 31==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Implement the basic API and get the functionalities working in the back end&lt;br /&gt;
Test the built features and fix bugs for mid term evaluation&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Aug 1 - Aug 20==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Build advanced features such as crowd sourcing support, data export and QR support&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Aug 21 - Sept 5==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Implement basic UI for Task force, Publisher, Contributor and Librarian.&lt;br /&gt;
Focus more on UX, get the minute details working properly.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Sept 5 - Sept 12==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Control the access to the site pragmatically and do a security auditing. &lt;br /&gt;
Polish the interface and all features should be working by now.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Sept 13 - Sept 27 ==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Review code, fix bugs and get ready for final evaluation.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
=== Any other details you feel we should consider ===&lt;br /&gt;
It will be great if we can sync Malayagrandham with Wikisource. We can also link to Public Domain books in Malayagrandham pages.&lt;br /&gt;
&lt;br /&gt;
=== Tell us about something you have created. ===&lt;br /&gt;
# [http://quizgrid.com QuizGrid.com] is a social network I built using Ruby on Rails and MySQL. More details are [http://ershadk.com/blog/2013/01/21/announcing-quizgrid-dot-com/ here]&lt;br /&gt;
# [http://myfest.in Myfest.in] is a college fest aggregator I built using the same technology stack. It&#039;s quite popular in India and it has got thousands of hits in a short span of time.&lt;br /&gt;
# I built a [https://chrome.google.com/webstore/detail/wikimedia-input-method-ex/cealbihienhpnlglmhmmmlbjdcjfjkap chrome extension] for language transliteration using Wikimedia&#039;s jQueryIME library and it won &#039;The most innovative project&#039; award in Wikimedia Dev Camp held at IIM Bangalore. My other wikimedia contributions are [https://gerrit.wikimedia.org/r/#/q/owner:%22Ershad+Kunnakkadan+%253Cershad92%2540gmail.com%253E%22,n,z here]&lt;br /&gt;
&lt;br /&gt;
I&#039;ve also some open source contributions, please find them in my [http://github.com/ershad github] profile&lt;br /&gt;
&lt;br /&gt;
=== Have you communicated with a potential mentor? If so, who? ===&lt;br /&gt;
Yes, I&#039;ve communicated with Anivar Aravind.&lt;br /&gt;
&lt;br /&gt;
=== SMC Wiki link of your proposal ===&lt;br /&gt;
http://wiki.smc.org.in/User:Ershad/GSoC2013_Malayalagrandham&lt;br /&gt;
&lt;br /&gt;
=== Project updates ===&lt;br /&gt;
&lt;br /&gt;
* http://ershadk.com/blog/2013/06/11/hello-google-summer-of-code-2013&lt;br /&gt;
* http://ershadk.com/blog/2013/07/14/grandham-update-2&lt;br /&gt;
* Week 1 : http://ershadk.com/blog/2013/07/14/grandham-week-1&lt;br /&gt;
* Week 2: http://ershadk.com/blog/2013/07/14/grandham-week-2&lt;br /&gt;
* Week 3: http://ershadk.com/blog/2013/07/14/grandham-week-3&lt;br /&gt;
* Week 4: http://ershadk.com/blog/2013/07/14/grandham-week-4&lt;br /&gt;
* Week 5: http://ershadk.com/blog/2013/07/21/grandham-week-5&lt;br /&gt;
* Week 6: http://ershadk.com/blog/2013/07/28/grandham-week-6&lt;br /&gt;
* Week 7: http://ershadk.com/blog/2013/08/11/grandham-week-7&lt;br /&gt;
* Week 8: http://ershadk.com/blog/2013/08/11/grandham-week-8&lt;/div&gt;</summary>
		<author><name>Ershad</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=User:Ershad/GSoC2013_Malayalagrandham&amp;diff=4136</id>
		<title>User:Ershad/GSoC2013 Malayalagrandham</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=User:Ershad/GSoC2013_Malayalagrandham&amp;diff=4136"/>
		<updated>2013-07-28T19:54:19Z</updated>

		<summary type="html">&lt;p&gt;Ershad: /* Project updates */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Google Summer of Code 2013 Proposal for Swathanthra Malalayalam Computing&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Personal Information==&lt;br /&gt;
  Email Address:                    ershad92@gmail.com&lt;br /&gt;
  Telephone:                        +91 8089133362&lt;br /&gt;
  Blog URL:                         http://ershadk.com&lt;br /&gt;
  Freenode IRC Nick:                ershad&lt;br /&gt;
  University and current education: BSc Computer Science, Bharathiyar University&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Why do you want to work with the Swathanthra Malayalam Computing? ===&lt;br /&gt;
Swathanthra Malayalam Computing is contributing much to Indic languages and language computing, it&#039;s great to be a part of it.&lt;br /&gt;
&lt;br /&gt;
=== Do you have any past involvement with the Swathanthra Malayalam Computing or another open source project as a contributor? ===&lt;br /&gt;
Yes. I&#039;ve contributed to Swathanthra Malayalam Computing, MediaWiki and a couple of other open source projects.&lt;br /&gt;
&lt;br /&gt;
=== Did you participate with the past GSoC programs, if so which years, which organizations? ===&lt;br /&gt;
No, I&#039;ve not participated in GSoC programs before.&lt;br /&gt;
&lt;br /&gt;
=== Do you have other obligations between May and August ? Please note that we expect the Summer of Code to be a full time, 40 hour a week commitment ===&lt;br /&gt;
It will be possible for me to work 35-40 hours / Week.&lt;br /&gt;
&lt;br /&gt;
=== Will you continue contributing/ supporting the Swathanthra Malayalam Computing after the GSoC 2013 program, if yes, which area(s), you are interested in? ===&lt;br /&gt;
I&#039;ve been contributing to SMC, I will definitely continue doing it along with maintaining the Malayalagrandham application after GSoC. My interested areas include Language Computing, SILPA and translation.&lt;br /&gt;
&lt;br /&gt;
=== Why should we choose you over other applicants? ===&lt;br /&gt;
I&#039;ve been a FOSS enthusiast for years and have been continuously trying to contribute to it. GSoC will be a great platform for me to contribute more.&lt;br /&gt;
&lt;br /&gt;
This proposal is meant for Malayalagrandham Bibliography Data project. I&#039;m planning to do it in Ruby on Rails in which I&#039;m well versed and have more than 1 year of experience. I also have a track record of doing end-to-end hobby projects in Ruby on Rails.&lt;br /&gt;
&lt;br /&gt;
And right the at moment, I&#039;ve done its backend and wrote scripts to import data from old database. It will be easy for me to build upon that.&lt;br /&gt;
&lt;br /&gt;
== Proposal Description ==&lt;br /&gt;
=== An overview of your proposal ===&lt;br /&gt;
Malayalagrandham.com is a web application to store and process bibliography data of books. Currently it has a growing database with information of more than 50K books. The current live application was built a few years before and it lacks  features such as crowd sourcing, RESTFul API, Feedback, Visualization and so on. The proposed project aims at building a more advanced and contributor/developer friendly version of Malayalagrandham Bibliography Data application with the aforementioned features. The new version of Malayalagrandham will be a crowd sourced Internet Book Database. It will have features to export data to various formats such as MARC21 and MARCXML.&lt;br /&gt;
&lt;br /&gt;
The application essentially will have the following interfaces.&lt;br /&gt;
&lt;br /&gt;
1. Interface for the task force&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Task force is a group of people with administrative privileges. These admins should be able to select the right submission from crowd sourced data and they should be able to moderate any the contents in the web application.  They should also be able to visualize existing data.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
2. Interface for contributor&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Any person should be able to become a contributor by signing up using his/her email ID. Contributor should be able to add new bibliography information and post comments/reviews through the feedback system. He should also be able to upload cover photos of books.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
3. Interface for Publisher&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Publishers should be able to add bibliography information of the books they publish. They should also be able to generate QR code that links to specific book&#039;s page.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
4. Interface for Librarian&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Librarians should be able to update the location of the books in Malayalagrandham.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
All the data in Malayalagrandham will be open to Public. But users need special permission (admin privileges) to modify the existing approved data. Application will have full support for localization using i18n libraries of Rails.&lt;br /&gt;
&lt;br /&gt;
=== The need you believe it fulfills ===&lt;br /&gt;
Apart from the bibliographic information it provides, Malayalagrandham would help people to locate books easily. Building a new version this application has the following benefits:&lt;br /&gt;
&lt;br /&gt;
# It will be easy for users to contribute new data&lt;br /&gt;
# REFTul API makes the application developer friendly. The API will enable developers to write client applications across platforms.&lt;br /&gt;
# We will have a centralized location of information of many books in a breadth of languages.&lt;br /&gt;
# It will be easy to perform complex searches to locate specific books.&lt;br /&gt;
# The feedback feature attracts more engagement/dicussion from users.&lt;br /&gt;
# ISBN based book discovery will be possible&lt;br /&gt;
# QR code for each book would help the user to locate its Malayagrandham page&lt;br /&gt;
&lt;br /&gt;
=== Any relevant experience you have ===&lt;br /&gt;
&lt;br /&gt;
I&#039;ve industrial experiencing in building and deploying Ruby on Rails web applications. I also have learned about MARC21/MARCXML formats and ISBN.&lt;br /&gt;
&lt;br /&gt;
=== How you intend to implement your proposal ===&lt;br /&gt;
Technology stack is Ruby on Rails web framework with MySQL backend. We will be using the following Open Source gems and modules :&lt;br /&gt;
&lt;br /&gt;
# devise - User Authorization&lt;br /&gt;
# ruby-marc - Read and Write in MARC Format&lt;br /&gt;
# marc21-utils - MARC Validation&lt;br /&gt;
# ferret - Text Search&lt;br /&gt;
# Jbuilder - DSL to configure JSON API&lt;br /&gt;
# rqrcode - QR code generator&lt;br /&gt;
#rspec, capybara - Test Driven Development (TDD)&lt;br /&gt;
# Twitter Bootstrap - Front end Framework&lt;br /&gt;
&lt;br /&gt;
=== A rough timeline for your progress with phases ===&lt;br /&gt;
==== Jun 17 - Jun 30 ====&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Resume the development on the existing application I wrote for this project and design the remaining parts of the software.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Jul 1 - Jul 15==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Implement the application logic as per the design and start focusing on API&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== July 16 - Jul 31==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Implement the basic API and get the functionalities working in the back end&lt;br /&gt;
Test the built features and fix bugs for mid term evaluation&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Aug 1 - Aug 20==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Build advanced features such as crowd sourcing support, data export and QR support&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Aug 21 - Sept 5==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Implement basic UI for Task force, Publisher, Contributor and Librarian.&lt;br /&gt;
Focus more on UX, get the minute details working properly.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Sept 5 - Sept 12==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Control the access to the site pragmatically and do a security auditing. &lt;br /&gt;
Polish the interface and all features should be working by now.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Sept 13 - Sept 27 ==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Review code, fix bugs and get ready for final evaluation.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
=== Any other details you feel we should consider ===&lt;br /&gt;
It will be great if we can sync Malayagrandham with Wikisource. We can also link to Public Domain books in Malayagrandham pages.&lt;br /&gt;
&lt;br /&gt;
=== Tell us about something you have created. ===&lt;br /&gt;
# [http://quizgrid.com QuizGrid.com] is a social network I built using Ruby on Rails and MySQL. More details are [http://ershadk.com/blog/2013/01/21/announcing-quizgrid-dot-com/ here]&lt;br /&gt;
# [http://myfest.in Myfest.in] is a college fest aggregator I built using the same technology stack. It&#039;s quite popular in India and it has got thousands of hits in a short span of time.&lt;br /&gt;
# I built a [https://chrome.google.com/webstore/detail/wikimedia-input-method-ex/cealbihienhpnlglmhmmmlbjdcjfjkap chrome extension] for language transliteration using Wikimedia&#039;s jQueryIME library and it won &#039;The most innovative project&#039; award in Wikimedia Dev Camp held at IIM Bangalore. My other wikimedia contributions are [https://gerrit.wikimedia.org/r/#/q/owner:%22Ershad+Kunnakkadan+%253Cershad92%2540gmail.com%253E%22,n,z here]&lt;br /&gt;
&lt;br /&gt;
I&#039;ve also some open source contributions, please find them in my [http://github.com/ershad github] profile&lt;br /&gt;
&lt;br /&gt;
=== Have you communicated with a potential mentor? If so, who? ===&lt;br /&gt;
Yes, I&#039;ve communicated with Anivar Aravind.&lt;br /&gt;
&lt;br /&gt;
=== SMC Wiki link of your proposal ===&lt;br /&gt;
http://wiki.smc.org.in/User:Ershad/GSoC2013_Malayalagrandham&lt;br /&gt;
&lt;br /&gt;
=== Project updates ===&lt;br /&gt;
&lt;br /&gt;
* http://ershadk.com/blog/2013/06/11/hello-google-summer-of-code-2013/&lt;br /&gt;
* http://ershadk.com/blog/2013/07/14/grandham-update-2/&lt;br /&gt;
* Week 1 : http://ershadk.com/blog/2013/07/14/grandham-week-1/&lt;br /&gt;
* Week 2: http://ershadk.com/blog/2013/07/14/grandham-week-2/&lt;br /&gt;
* Week 3: http://ershadk.com/blog/2013/07/14/grandham-week-3/&lt;br /&gt;
* Week 4: http://ershadk.com/blog/2013/07/14/grandham-week-4/&lt;br /&gt;
* Week 5: http://ershadk.com/blog/2013/07/21/grandham-week-5/&lt;br /&gt;
* Week 6:http://ershadk.com/blog/2013/07/28/grandham-week-6/&lt;/div&gt;</summary>
		<author><name>Ershad</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=User:Ershad/GSoC2013_Malayalagrandham&amp;diff=4134</id>
		<title>User:Ershad/GSoC2013 Malayalagrandham</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=User:Ershad/GSoC2013_Malayalagrandham&amp;diff=4134"/>
		<updated>2013-07-21T14:22:54Z</updated>

		<summary type="html">&lt;p&gt;Ershad: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Google Summer of Code 2013 Proposal for Swathanthra Malalayalam Computing&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Personal Information==&lt;br /&gt;
  Email Address:                    ershad92@gmail.com&lt;br /&gt;
  Telephone:                        +91 8089133362&lt;br /&gt;
  Blog URL:                         http://ershadk.com&lt;br /&gt;
  Freenode IRC Nick:                ershad&lt;br /&gt;
  University and current education: BSc Computer Science, Bharathiyar University&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Why do you want to work with the Swathanthra Malayalam Computing? ===&lt;br /&gt;
Swathanthra Malayalam Computing is contributing much to Indic languages and language computing, it&#039;s great to be a part of it.&lt;br /&gt;
&lt;br /&gt;
=== Do you have any past involvement with the Swathanthra Malayalam Computing or another open source project as a contributor? ===&lt;br /&gt;
Yes. I&#039;ve contributed to Swathanthra Malayalam Computing, MediaWiki and a couple of other open source projects.&lt;br /&gt;
&lt;br /&gt;
=== Did you participate with the past GSoC programs, if so which years, which organizations? ===&lt;br /&gt;
No, I&#039;ve not participated in GSoC programs before.&lt;br /&gt;
&lt;br /&gt;
=== Do you have other obligations between May and August ? Please note that we expect the Summer of Code to be a full time, 40 hour a week commitment ===&lt;br /&gt;
It will be possible for me to work 35-40 hours / Week.&lt;br /&gt;
&lt;br /&gt;
=== Will you continue contributing/ supporting the Swathanthra Malayalam Computing after the GSoC 2013 program, if yes, which area(s), you are interested in? ===&lt;br /&gt;
I&#039;ve been contributing to SMC, I will definitely continue doing it along with maintaining the Malayalagrandham application after GSoC. My interested areas include Language Computing, SILPA and translation.&lt;br /&gt;
&lt;br /&gt;
=== Why should we choose you over other applicants? ===&lt;br /&gt;
I&#039;ve been a FOSS enthusiast for years and have been continuously trying to contribute to it. GSoC will be a great platform for me to contribute more.&lt;br /&gt;
&lt;br /&gt;
This proposal is meant for Malayalagrandham Bibliography Data project. I&#039;m planning to do it in Ruby on Rails in which I&#039;m well versed and have more than 1 year of experience. I also have a track record of doing end-to-end hobby projects in Ruby on Rails.&lt;br /&gt;
&lt;br /&gt;
And right the at moment, I&#039;ve done its backend and wrote scripts to import data from old database. It will be easy for me to build upon that.&lt;br /&gt;
&lt;br /&gt;
== Proposal Description ==&lt;br /&gt;
=== An overview of your proposal ===&lt;br /&gt;
Malayalagrandham.com is a web application to store and process bibliography data of books. Currently it has a growing database with information of more than 50K books. The current live application was built a few years before and it lacks  features such as crowd sourcing, RESTFul API, Feedback, Visualization and so on. The proposed project aims at building a more advanced and contributor/developer friendly version of Malayalagrandham Bibliography Data application with the aforementioned features. The new version of Malayalagrandham will be a crowd sourced Internet Book Database. It will have features to export data to various formats such as MARC21 and MARCXML.&lt;br /&gt;
&lt;br /&gt;
The application essentially will have the following interfaces.&lt;br /&gt;
&lt;br /&gt;
1. Interface for the task force&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Task force is a group of people with administrative privileges. These admins should be able to select the right submission from crowd sourced data and they should be able to moderate any the contents in the web application.  They should also be able to visualize existing data.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
2. Interface for contributor&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Any person should be able to become a contributor by signing up using his/her email ID. Contributor should be able to add new bibliography information and post comments/reviews through the feedback system. He should also be able to upload cover photos of books.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
3. Interface for Publisher&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Publishers should be able to add bibliography information of the books they publish. They should also be able to generate QR code that links to specific book&#039;s page.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
4. Interface for Librarian&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Librarians should be able to update the location of the books in Malayalagrandham.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
All the data in Malayalagrandham will be open to Public. But users need special permission (admin privileges) to modify the existing approved data. Application will have full support for localization using i18n libraries of Rails.&lt;br /&gt;
&lt;br /&gt;
=== The need you believe it fulfills ===&lt;br /&gt;
Apart from the bibliographic information it provides, Malayalagrandham would help people to locate books easily. Building a new version this application has the following benefits:&lt;br /&gt;
&lt;br /&gt;
# It will be easy for users to contribute new data&lt;br /&gt;
# REFTul API makes the application developer friendly. The API will enable developers to write client applications across platforms.&lt;br /&gt;
# We will have a centralized location of information of many books in a breadth of languages.&lt;br /&gt;
# It will be easy to perform complex searches to locate specific books.&lt;br /&gt;
# The feedback feature attracts more engagement/dicussion from users.&lt;br /&gt;
# ISBN based book discovery will be possible&lt;br /&gt;
# QR code for each book would help the user to locate its Malayagrandham page&lt;br /&gt;
&lt;br /&gt;
=== Any relevant experience you have ===&lt;br /&gt;
&lt;br /&gt;
I&#039;ve industrial experiencing in building and deploying Ruby on Rails web applications. I also have learned about MARC21/MARCXML formats and ISBN.&lt;br /&gt;
&lt;br /&gt;
=== How you intend to implement your proposal ===&lt;br /&gt;
Technology stack is Ruby on Rails web framework with MySQL backend. We will be using the following Open Source gems and modules :&lt;br /&gt;
&lt;br /&gt;
# devise - User Authorization&lt;br /&gt;
# ruby-marc - Read and Write in MARC Format&lt;br /&gt;
# marc21-utils - MARC Validation&lt;br /&gt;
# ferret - Text Search&lt;br /&gt;
# Jbuilder - DSL to configure JSON API&lt;br /&gt;
# rqrcode - QR code generator&lt;br /&gt;
#rspec, capybara - Test Driven Development (TDD)&lt;br /&gt;
# Twitter Bootstrap - Front end Framework&lt;br /&gt;
&lt;br /&gt;
=== A rough timeline for your progress with phases ===&lt;br /&gt;
==== Jun 17 - Jun 30 ====&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Resume the development on the existing application I wrote for this project and design the remaining parts of the software.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Jul 1 - Jul 15==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Implement the application logic as per the design and start focusing on API&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== July 16 - Jul 31==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Implement the basic API and get the functionalities working in the back end&lt;br /&gt;
Test the built features and fix bugs for mid term evaluation&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Aug 1 - Aug 20==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Build advanced features such as crowd sourcing support, data export and QR support&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Aug 21 - Sept 5==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Implement basic UI for Task force, Publisher, Contributor and Librarian.&lt;br /&gt;
Focus more on UX, get the minute details working properly.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Sept 5 - Sept 12==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Control the access to the site pragmatically and do a security auditing. &lt;br /&gt;
Polish the interface and all features should be working by now.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Sept 13 - Sept 27 ==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Review code, fix bugs and get ready for final evaluation.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
=== Any other details you feel we should consider ===&lt;br /&gt;
It will be great if we can sync Malayagrandham with Wikisource. We can also link to Public Domain books in Malayagrandham pages.&lt;br /&gt;
&lt;br /&gt;
=== Tell us about something you have created. ===&lt;br /&gt;
# [http://quizgrid.com QuizGrid.com] is a social network I built using Ruby on Rails and MySQL. More details are [http://ershadk.com/blog/2013/01/21/announcing-quizgrid-dot-com/ here]&lt;br /&gt;
# [http://myfest.in Myfest.in] is a college fest aggregator I built using the same technology stack. It&#039;s quite popular in India and it has got thousands of hits in a short span of time.&lt;br /&gt;
# I built a [https://chrome.google.com/webstore/detail/wikimedia-input-method-ex/cealbihienhpnlglmhmmmlbjdcjfjkap chrome extension] for language transliteration using Wikimedia&#039;s jQueryIME library and it won &#039;The most innovative project&#039; award in Wikimedia Dev Camp held at IIM Bangalore. My other wikimedia contributions are [https://gerrit.wikimedia.org/r/#/q/owner:%22Ershad+Kunnakkadan+%253Cershad92%2540gmail.com%253E%22,n,z here]&lt;br /&gt;
&lt;br /&gt;
I&#039;ve also some open source contributions, please find them in my [http://github.com/ershad github] profile&lt;br /&gt;
&lt;br /&gt;
=== Have you communicated with a potential mentor? If so, who? ===&lt;br /&gt;
Yes, I&#039;ve communicated with Anivar Aravind.&lt;br /&gt;
&lt;br /&gt;
=== SMC Wiki link of your proposal ===&lt;br /&gt;
http://wiki.smc.org.in/User:Ershad/GSoC2013_Malayalagrandham&lt;br /&gt;
&lt;br /&gt;
=== Project updates ===&lt;br /&gt;
&lt;br /&gt;
* http://ershadk.com/blog/2013/06/11/hello-google-summer-of-code-2013/&lt;br /&gt;
* http://ershadk.com/blog/2013/07/14/grandham-update-2/&lt;br /&gt;
* Week 1 : http://ershadk.com/blog/2013/07/14/grandham-week-1/&lt;br /&gt;
* Week 2: http://ershadk.com/blog/2013/07/14/grandham-week-2/&lt;br /&gt;
* Week 3: http://ershadk.com/blog/2013/07/14/grandham-week-3/&lt;br /&gt;
* Week 4: http://ershadk.com/blog/2013/07/14/grandham-week-4/&lt;br /&gt;
* Week 5: http://ershadk.com/blog/2013/07/21/grandham-week-5/&lt;/div&gt;</summary>
		<author><name>Ershad</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=User:Ershad/GSoC2013_Malayalagrandham&amp;diff=4129</id>
		<title>User:Ershad/GSoC2013 Malayalagrandham</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=User:Ershad/GSoC2013_Malayalagrandham&amp;diff=4129"/>
		<updated>2013-07-14T23:17:39Z</updated>

		<summary type="html">&lt;p&gt;Ershad: /* Project updates */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Google Summer of Code 2013 Proposal for Swathanthra Malalayalam Computing&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Personal Information==&lt;br /&gt;
  Email Address:                    ershad92@gmail.com&lt;br /&gt;
  Telephone:                        +91 8089133362&lt;br /&gt;
  Blog URL:                         http://ershadk.com&lt;br /&gt;
  Freenode IRC Nick:                ershad&lt;br /&gt;
  University and current education: BSc Computer Science, Bharathiyar University&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Why do you want to work with the Swathanthra Malayalam Computing? ===&lt;br /&gt;
Swathanthra Malayalam Computing is contributing much to Indic languages and language computing, it&#039;s great to be a part of it.&lt;br /&gt;
&lt;br /&gt;
=== Do you have any past involvement with the Swathanthra Malayalam Computing or another open source project as a contributor? ===&lt;br /&gt;
Yes. I&#039;ve contributed to Swathanthra Malayalam Computing, MediaWiki and a couple of other open source projects.&lt;br /&gt;
&lt;br /&gt;
=== Did you participate with the past GSoC programs, if so which years, which organizations? ===&lt;br /&gt;
No, I&#039;ve not participated in GSoC programs before.&lt;br /&gt;
&lt;br /&gt;
=== Do you have other obligations between May and August ? Please note that we expect the Summer of Code to be a full time, 40 hour a week commitment ===&lt;br /&gt;
It will be possible for me to work 35-40 hours / Week.&lt;br /&gt;
&lt;br /&gt;
=== Will you continue contributing/ supporting the Swathanthra Malayalam Computing after the GSoC 2013 program, if yes, which area(s), you are interested in? ===&lt;br /&gt;
I&#039;ve been contributing to SMC, I will definitely continue doing it along with maintaining the Malayalagrandham application after GSoC. My interested areas include Language Computing, SILPA and translation.&lt;br /&gt;
&lt;br /&gt;
=== Why should we choose you over other applicants? ===&lt;br /&gt;
I&#039;ve been a FOSS enthusiast for years and have been continuously trying to contribute to it. GSoC will be a great platform for me to contribute more.&lt;br /&gt;
&lt;br /&gt;
This proposal is meant for Malayalagrandham Bibliography Data project. I&#039;m planning to do it in Ruby on Rails in which I&#039;m well versed and have more than 1 year of experience. I also have a track record of doing end-to-end hobby projects in Ruby on Rails.&lt;br /&gt;
&lt;br /&gt;
And right the at moment, I&#039;ve done its backend and wrote scripts to import data from old database. It will be easy for me to build upon that.&lt;br /&gt;
&lt;br /&gt;
== Proposal Description ==&lt;br /&gt;
=== An overview of your proposal ===&lt;br /&gt;
Malayalagrandham.com is a web application to store and process bibliography data of books. Currently it has a growing database with information of more than 50K books. The current live application was built a few years before and it lacks  features such as crowd sourcing, RESTFul API, Feedback, Visualization and so on. The proposed project aims at building a more advanced and contributor/developer friendly version of Malayalagrandham Bibliography Data application with the aforementioned features. The new version of Malayalagrandham will be a crowd sourced Internet Book Database. It will have features to export data to various formats such as MARC21 and MARCXML.&lt;br /&gt;
&lt;br /&gt;
The application essentially will have the following interfaces.&lt;br /&gt;
&lt;br /&gt;
1. Interface for the task force&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Task force is a group of people with administrative privileges. These admins should be able to select the right submission from crowd sourced data and they should be able to moderate any the contents in the web application.  They should also be able to visualize existing data.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
2. Interface for contributor&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Any person should be able to become a contributor by signing up using his/her email ID. Contributor should be able to add new bibliography information and post comments/reviews through the feedback system. He should also be able to upload cover photos of books.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
3. Interface for Publisher&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Publishers should be able to add bibliography information of the books they publish. They should also be able to generate QR code that links to specific book&#039;s page.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
4. Interface for Librarian&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Librarians should be able to update the location of the books in Malayalagrandham.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
All the data in Malayalagrandham will be open to Public. But users need special permission (admin privileges) to modify the existing approved data. Application will have full support for localization using i18n libraries of Rails.&lt;br /&gt;
&lt;br /&gt;
=== The need you believe it fulfills ===&lt;br /&gt;
Apart from the bibliographic information it provides, Malayalagrandham would help people to locate books easily. Building a new version this application has the following benefits:&lt;br /&gt;
&lt;br /&gt;
# It will be easy for users to contribute new data&lt;br /&gt;
# REFTul API makes the application developer friendly. The API will enable developers to write client applications across platforms.&lt;br /&gt;
# We will have a centralized location of information of many books in a breadth of languages.&lt;br /&gt;
# It will be easy to perform complex searches to locate specific books.&lt;br /&gt;
# The feedback feature attracts more engagement/dicussion from users.&lt;br /&gt;
# ISBN based book discovery will be possible&lt;br /&gt;
# QR code for each book would help the user to locate its Malayagrandham page&lt;br /&gt;
&lt;br /&gt;
=== Any relevant experience you have ===&lt;br /&gt;
&lt;br /&gt;
I&#039;ve industrial experiencing in building and deploying Ruby on Rails web applications. I also have learned about MARC21/MARCXML formats and ISBN.&lt;br /&gt;
&lt;br /&gt;
=== How you intend to implement your proposal ===&lt;br /&gt;
Technology stack is Ruby on Rails web framework with MySQL backend. We will be using the following Open Source gems and modules :&lt;br /&gt;
&lt;br /&gt;
# devise - User Authorization&lt;br /&gt;
# ruby-marc - Read and Write in MARC Format&lt;br /&gt;
# marc21-utils - MARC Validation&lt;br /&gt;
# ferret - Text Search&lt;br /&gt;
# Jbuilder - DSL to configure JSON API&lt;br /&gt;
# rqrcode - QR code generator&lt;br /&gt;
#rspec, capybara - Test Driven Development (TDD)&lt;br /&gt;
# Twitter Bootstrap - Front end Framework&lt;br /&gt;
&lt;br /&gt;
=== A rough timeline for your progress with phases ===&lt;br /&gt;
==== Jun 17 - Jun 30 ====&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Resume the development on the existing application I wrote for this project and design the remaining parts of the software.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Jul 1 - Jul 15==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Implement the application logic as per the design and start focusing on API&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== July 16 - Jul 31==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Implement the basic API and get the functionalities working in the back end&lt;br /&gt;
Test the built features and fix bugs for mid term evaluation&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Aug 1 - Aug 20==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Build advanced features such as crowd sourcing support, data export and QR support&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Aug 21 - Sept 5==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Implement basic UI for Task force, Publisher, Contributor and Librarian.&lt;br /&gt;
Focus more on UX, get the minute details working properly.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Sept 5 - Sept 12==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Control the access to the site pragmatically and do a security auditing. &lt;br /&gt;
Polish the interface and all features should be working by now.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Sept 13 - Sept 27 ==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Review code, fix bugs and get ready for final evaluation.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
=== Any other details you feel we should consider ===&lt;br /&gt;
It will be great if we can sync Malayagrandham with Wikisource. We can also link to Public Domain books in Malayagrandham pages.&lt;br /&gt;
&lt;br /&gt;
=== Tell us about something you have created. ===&lt;br /&gt;
# [http://quizgrid.com QuizGrid.com] is a social network I built using Ruby on Rails and MySQL. More details are [http://ershadk.com/blog/2013/01/21/announcing-quizgrid-dot-com/ here]&lt;br /&gt;
# [http://myfest.in Myfest.in] is a college fest aggregator I built using the same technology stack. It&#039;s quite popular in India and it has got thousands of hits in a short span of time.&lt;br /&gt;
# I built a [https://chrome.google.com/webstore/detail/wikimedia-input-method-ex/cealbihienhpnlglmhmmmlbjdcjfjkap chrome extension] for language transliteration using Wikimedia&#039;s jQueryIME library and it won &#039;The most innovative project&#039; award in Wikimedia Dev Camp held at IIM Bangalore. My other wikimedia contributions are [https://gerrit.wikimedia.org/r/#/q/owner:%22Ershad+Kunnakkadan+%253Cershad92%2540gmail.com%253E%22,n,z here]&lt;br /&gt;
&lt;br /&gt;
I&#039;ve also some open source contributions, please find them in my [http://github.com/ershad github] profile&lt;br /&gt;
&lt;br /&gt;
=== Have you communicated with a potential mentor? If so, who? ===&lt;br /&gt;
Yes, I&#039;ve communicated with Anivar Aravind.&lt;br /&gt;
&lt;br /&gt;
=== SMC Wiki link of your proposal ===&lt;br /&gt;
http://wiki.smc.org.in/User:Ershad/GSoC2013_Malayalagrandham&lt;br /&gt;
&lt;br /&gt;
=== Project updates ===&lt;br /&gt;
&lt;br /&gt;
* http://ershadk.com/blog/2013/06/11/hello-google-summer-of-code-2013/&lt;br /&gt;
* http://ershadk.com/blog/2013/07/14/grandham-update-2/&lt;br /&gt;
* Week 1 : http://ershadk.com/blog/2013/07/14/grandham-week-1/&lt;br /&gt;
* Week 2: http://ershadk.com/blog/2013/07/14/grandham-week-2/&lt;br /&gt;
* Week 3: http://ershadk.com/blog/2013/07/14/grandham-week-3/&lt;br /&gt;
* Week 4: http://ershadk.com/blog/2013/07/14/grandham-week-4/&lt;/div&gt;</summary>
		<author><name>Ershad</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=User:Ershad/GSoC2013_Malayalagrandham&amp;diff=4128</id>
		<title>User:Ershad/GSoC2013 Malayalagrandham</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=User:Ershad/GSoC2013_Malayalagrandham&amp;diff=4128"/>
		<updated>2013-07-14T22:14:19Z</updated>

		<summary type="html">&lt;p&gt;Ershad: /* Project updates */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Google Summer of Code 2013 Proposal for Swathanthra Malalayalam Computing&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Personal Information==&lt;br /&gt;
  Email Address:                    ershad92@gmail.com&lt;br /&gt;
  Telephone:                        +91 8089133362&lt;br /&gt;
  Blog URL:                         http://ershadk.com&lt;br /&gt;
  Freenode IRC Nick:                ershad&lt;br /&gt;
  University and current education: BSc Computer Science, Bharathiyar University&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Why do you want to work with the Swathanthra Malayalam Computing? ===&lt;br /&gt;
Swathanthra Malayalam Computing is contributing much to Indic languages and language computing, it&#039;s great to be a part of it.&lt;br /&gt;
&lt;br /&gt;
=== Do you have any past involvement with the Swathanthra Malayalam Computing or another open source project as a contributor? ===&lt;br /&gt;
Yes. I&#039;ve contributed to Swathanthra Malayalam Computing, MediaWiki and a couple of other open source projects.&lt;br /&gt;
&lt;br /&gt;
=== Did you participate with the past GSoC programs, if so which years, which organizations? ===&lt;br /&gt;
No, I&#039;ve not participated in GSoC programs before.&lt;br /&gt;
&lt;br /&gt;
=== Do you have other obligations between May and August ? Please note that we expect the Summer of Code to be a full time, 40 hour a week commitment ===&lt;br /&gt;
It will be possible for me to work 35-40 hours / Week.&lt;br /&gt;
&lt;br /&gt;
=== Will you continue contributing/ supporting the Swathanthra Malayalam Computing after the GSoC 2013 program, if yes, which area(s), you are interested in? ===&lt;br /&gt;
I&#039;ve been contributing to SMC, I will definitely continue doing it along with maintaining the Malayalagrandham application after GSoC. My interested areas include Language Computing, SILPA and translation.&lt;br /&gt;
&lt;br /&gt;
=== Why should we choose you over other applicants? ===&lt;br /&gt;
I&#039;ve been a FOSS enthusiast for years and have been continuously trying to contribute to it. GSoC will be a great platform for me to contribute more.&lt;br /&gt;
&lt;br /&gt;
This proposal is meant for Malayalagrandham Bibliography Data project. I&#039;m planning to do it in Ruby on Rails in which I&#039;m well versed and have more than 1 year of experience. I also have a track record of doing end-to-end hobby projects in Ruby on Rails.&lt;br /&gt;
&lt;br /&gt;
And right the at moment, I&#039;ve done its backend and wrote scripts to import data from old database. It will be easy for me to build upon that.&lt;br /&gt;
&lt;br /&gt;
== Proposal Description ==&lt;br /&gt;
=== An overview of your proposal ===&lt;br /&gt;
Malayalagrandham.com is a web application to store and process bibliography data of books. Currently it has a growing database with information of more than 50K books. The current live application was built a few years before and it lacks  features such as crowd sourcing, RESTFul API, Feedback, Visualization and so on. The proposed project aims at building a more advanced and contributor/developer friendly version of Malayalagrandham Bibliography Data application with the aforementioned features. The new version of Malayalagrandham will be a crowd sourced Internet Book Database. It will have features to export data to various formats such as MARC21 and MARCXML.&lt;br /&gt;
&lt;br /&gt;
The application essentially will have the following interfaces.&lt;br /&gt;
&lt;br /&gt;
1. Interface for the task force&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Task force is a group of people with administrative privileges. These admins should be able to select the right submission from crowd sourced data and they should be able to moderate any the contents in the web application.  They should also be able to visualize existing data.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
2. Interface for contributor&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Any person should be able to become a contributor by signing up using his/her email ID. Contributor should be able to add new bibliography information and post comments/reviews through the feedback system. He should also be able to upload cover photos of books.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
3. Interface for Publisher&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Publishers should be able to add bibliography information of the books they publish. They should also be able to generate QR code that links to specific book&#039;s page.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
4. Interface for Librarian&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Librarians should be able to update the location of the books in Malayalagrandham.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
All the data in Malayalagrandham will be open to Public. But users need special permission (admin privileges) to modify the existing approved data. Application will have full support for localization using i18n libraries of Rails.&lt;br /&gt;
&lt;br /&gt;
=== The need you believe it fulfills ===&lt;br /&gt;
Apart from the bibliographic information it provides, Malayalagrandham would help people to locate books easily. Building a new version this application has the following benefits:&lt;br /&gt;
&lt;br /&gt;
# It will be easy for users to contribute new data&lt;br /&gt;
# REFTul API makes the application developer friendly. The API will enable developers to write client applications across platforms.&lt;br /&gt;
# We will have a centralized location of information of many books in a breadth of languages.&lt;br /&gt;
# It will be easy to perform complex searches to locate specific books.&lt;br /&gt;
# The feedback feature attracts more engagement/dicussion from users.&lt;br /&gt;
# ISBN based book discovery will be possible&lt;br /&gt;
# QR code for each book would help the user to locate its Malayagrandham page&lt;br /&gt;
&lt;br /&gt;
=== Any relevant experience you have ===&lt;br /&gt;
&lt;br /&gt;
I&#039;ve industrial experiencing in building and deploying Ruby on Rails web applications. I also have learned about MARC21/MARCXML formats and ISBN.&lt;br /&gt;
&lt;br /&gt;
=== How you intend to implement your proposal ===&lt;br /&gt;
Technology stack is Ruby on Rails web framework with MySQL backend. We will be using the following Open Source gems and modules :&lt;br /&gt;
&lt;br /&gt;
# devise - User Authorization&lt;br /&gt;
# ruby-marc - Read and Write in MARC Format&lt;br /&gt;
# marc21-utils - MARC Validation&lt;br /&gt;
# ferret - Text Search&lt;br /&gt;
# Jbuilder - DSL to configure JSON API&lt;br /&gt;
# rqrcode - QR code generator&lt;br /&gt;
#rspec, capybara - Test Driven Development (TDD)&lt;br /&gt;
# Twitter Bootstrap - Front end Framework&lt;br /&gt;
&lt;br /&gt;
=== A rough timeline for your progress with phases ===&lt;br /&gt;
==== Jun 17 - Jun 30 ====&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Resume the development on the existing application I wrote for this project and design the remaining parts of the software.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Jul 1 - Jul 15==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Implement the application logic as per the design and start focusing on API&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== July 16 - Jul 31==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Implement the basic API and get the functionalities working in the back end&lt;br /&gt;
Test the built features and fix bugs for mid term evaluation&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Aug 1 - Aug 20==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Build advanced features such as crowd sourcing support, data export and QR support&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Aug 21 - Sept 5==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Implement basic UI for Task force, Publisher, Contributor and Librarian.&lt;br /&gt;
Focus more on UX, get the minute details working properly.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Sept 5 - Sept 12==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Control the access to the site pragmatically and do a security auditing. &lt;br /&gt;
Polish the interface and all features should be working by now.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Sept 13 - Sept 27 ==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Review code, fix bugs and get ready for final evaluation.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
=== Any other details you feel we should consider ===&lt;br /&gt;
It will be great if we can sync Malayagrandham with Wikisource. We can also link to Public Domain books in Malayagrandham pages.&lt;br /&gt;
&lt;br /&gt;
=== Tell us about something you have created. ===&lt;br /&gt;
# [http://quizgrid.com QuizGrid.com] is a social network I built using Ruby on Rails and MySQL. More details are [http://ershadk.com/blog/2013/01/21/announcing-quizgrid-dot-com/ here]&lt;br /&gt;
# [http://myfest.in Myfest.in] is a college fest aggregator I built using the same technology stack. It&#039;s quite popular in India and it has got thousands of hits in a short span of time.&lt;br /&gt;
# I built a [https://chrome.google.com/webstore/detail/wikimedia-input-method-ex/cealbihienhpnlglmhmmmlbjdcjfjkap chrome extension] for language transliteration using Wikimedia&#039;s jQueryIME library and it won &#039;The most innovative project&#039; award in Wikimedia Dev Camp held at IIM Bangalore. My other wikimedia contributions are [https://gerrit.wikimedia.org/r/#/q/owner:%22Ershad+Kunnakkadan+%253Cershad92%2540gmail.com%253E%22,n,z here]&lt;br /&gt;
&lt;br /&gt;
I&#039;ve also some open source contributions, please find them in my [http://github.com/ershad github] profile&lt;br /&gt;
&lt;br /&gt;
=== Have you communicated with a potential mentor? If so, who? ===&lt;br /&gt;
Yes, I&#039;ve communicated with Anivar Aravind.&lt;br /&gt;
&lt;br /&gt;
=== SMC Wiki link of your proposal ===&lt;br /&gt;
http://wiki.smc.org.in/User:Ershad/GSoC2013_Malayalagrandham&lt;br /&gt;
&lt;br /&gt;
=== Project updates ===&lt;br /&gt;
&lt;br /&gt;
* http://ershadk.com/blog/2013/06/11/hello-google-summer-of-code-2013/&lt;br /&gt;
* http://ershadk.com/blog/2013/07/14/grandham-update-2/&lt;br /&gt;
* Week 1 : http://ershadk.com/blog/2013/07/14/grandham-week-1/&lt;br /&gt;
* Week 2: http://ershadk.com/blog/2013/07/14/grandham-week-2/&lt;/div&gt;</summary>
		<author><name>Ershad</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=User:Ershad/GSoC2013_Malayalagrandham&amp;diff=4127</id>
		<title>User:Ershad/GSoC2013 Malayalagrandham</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=User:Ershad/GSoC2013_Malayalagrandham&amp;diff=4127"/>
		<updated>2013-07-14T21:35:26Z</updated>

		<summary type="html">&lt;p&gt;Ershad: /* Project updates */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Google Summer of Code 2013 Proposal for Swathanthra Malalayalam Computing&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Personal Information==&lt;br /&gt;
  Email Address:                    ershad92@gmail.com&lt;br /&gt;
  Telephone:                        +91 8089133362&lt;br /&gt;
  Blog URL:                         http://ershadk.com&lt;br /&gt;
  Freenode IRC Nick:                ershad&lt;br /&gt;
  University and current education: BSc Computer Science, Bharathiyar University&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Why do you want to work with the Swathanthra Malayalam Computing? ===&lt;br /&gt;
Swathanthra Malayalam Computing is contributing much to Indic languages and language computing, it&#039;s great to be a part of it.&lt;br /&gt;
&lt;br /&gt;
=== Do you have any past involvement with the Swathanthra Malayalam Computing or another open source project as a contributor? ===&lt;br /&gt;
Yes. I&#039;ve contributed to Swathanthra Malayalam Computing, MediaWiki and a couple of other open source projects.&lt;br /&gt;
&lt;br /&gt;
=== Did you participate with the past GSoC programs, if so which years, which organizations? ===&lt;br /&gt;
No, I&#039;ve not participated in GSoC programs before.&lt;br /&gt;
&lt;br /&gt;
=== Do you have other obligations between May and August ? Please note that we expect the Summer of Code to be a full time, 40 hour a week commitment ===&lt;br /&gt;
It will be possible for me to work 35-40 hours / Week.&lt;br /&gt;
&lt;br /&gt;
=== Will you continue contributing/ supporting the Swathanthra Malayalam Computing after the GSoC 2013 program, if yes, which area(s), you are interested in? ===&lt;br /&gt;
I&#039;ve been contributing to SMC, I will definitely continue doing it along with maintaining the Malayalagrandham application after GSoC. My interested areas include Language Computing, SILPA and translation.&lt;br /&gt;
&lt;br /&gt;
=== Why should we choose you over other applicants? ===&lt;br /&gt;
I&#039;ve been a FOSS enthusiast for years and have been continuously trying to contribute to it. GSoC will be a great platform for me to contribute more.&lt;br /&gt;
&lt;br /&gt;
This proposal is meant for Malayalagrandham Bibliography Data project. I&#039;m planning to do it in Ruby on Rails in which I&#039;m well versed and have more than 1 year of experience. I also have a track record of doing end-to-end hobby projects in Ruby on Rails.&lt;br /&gt;
&lt;br /&gt;
And right the at moment, I&#039;ve done its backend and wrote scripts to import data from old database. It will be easy for me to build upon that.&lt;br /&gt;
&lt;br /&gt;
== Proposal Description ==&lt;br /&gt;
=== An overview of your proposal ===&lt;br /&gt;
Malayalagrandham.com is a web application to store and process bibliography data of books. Currently it has a growing database with information of more than 50K books. The current live application was built a few years before and it lacks  features such as crowd sourcing, RESTFul API, Feedback, Visualization and so on. The proposed project aims at building a more advanced and contributor/developer friendly version of Malayalagrandham Bibliography Data application with the aforementioned features. The new version of Malayalagrandham will be a crowd sourced Internet Book Database. It will have features to export data to various formats such as MARC21 and MARCXML.&lt;br /&gt;
&lt;br /&gt;
The application essentially will have the following interfaces.&lt;br /&gt;
&lt;br /&gt;
1. Interface for the task force&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Task force is a group of people with administrative privileges. These admins should be able to select the right submission from crowd sourced data and they should be able to moderate any the contents in the web application.  They should also be able to visualize existing data.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
2. Interface for contributor&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Any person should be able to become a contributor by signing up using his/her email ID. Contributor should be able to add new bibliography information and post comments/reviews through the feedback system. He should also be able to upload cover photos of books.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
3. Interface for Publisher&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Publishers should be able to add bibliography information of the books they publish. They should also be able to generate QR code that links to specific book&#039;s page.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
4. Interface for Librarian&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Librarians should be able to update the location of the books in Malayalagrandham.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
All the data in Malayalagrandham will be open to Public. But users need special permission (admin privileges) to modify the existing approved data. Application will have full support for localization using i18n libraries of Rails.&lt;br /&gt;
&lt;br /&gt;
=== The need you believe it fulfills ===&lt;br /&gt;
Apart from the bibliographic information it provides, Malayalagrandham would help people to locate books easily. Building a new version this application has the following benefits:&lt;br /&gt;
&lt;br /&gt;
# It will be easy for users to contribute new data&lt;br /&gt;
# REFTul API makes the application developer friendly. The API will enable developers to write client applications across platforms.&lt;br /&gt;
# We will have a centralized location of information of many books in a breadth of languages.&lt;br /&gt;
# It will be easy to perform complex searches to locate specific books.&lt;br /&gt;
# The feedback feature attracts more engagement/dicussion from users.&lt;br /&gt;
# ISBN based book discovery will be possible&lt;br /&gt;
# QR code for each book would help the user to locate its Malayagrandham page&lt;br /&gt;
&lt;br /&gt;
=== Any relevant experience you have ===&lt;br /&gt;
&lt;br /&gt;
I&#039;ve industrial experiencing in building and deploying Ruby on Rails web applications. I also have learned about MARC21/MARCXML formats and ISBN.&lt;br /&gt;
&lt;br /&gt;
=== How you intend to implement your proposal ===&lt;br /&gt;
Technology stack is Ruby on Rails web framework with MySQL backend. We will be using the following Open Source gems and modules :&lt;br /&gt;
&lt;br /&gt;
# devise - User Authorization&lt;br /&gt;
# ruby-marc - Read and Write in MARC Format&lt;br /&gt;
# marc21-utils - MARC Validation&lt;br /&gt;
# ferret - Text Search&lt;br /&gt;
# Jbuilder - DSL to configure JSON API&lt;br /&gt;
# rqrcode - QR code generator&lt;br /&gt;
#rspec, capybara - Test Driven Development (TDD)&lt;br /&gt;
# Twitter Bootstrap - Front end Framework&lt;br /&gt;
&lt;br /&gt;
=== A rough timeline for your progress with phases ===&lt;br /&gt;
==== Jun 17 - Jun 30 ====&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Resume the development on the existing application I wrote for this project and design the remaining parts of the software.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Jul 1 - Jul 15==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Implement the application logic as per the design and start focusing on API&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== July 16 - Jul 31==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Implement the basic API and get the functionalities working in the back end&lt;br /&gt;
Test the built features and fix bugs for mid term evaluation&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Aug 1 - Aug 20==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Build advanced features such as crowd sourcing support, data export and QR support&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Aug 21 - Sept 5==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Implement basic UI for Task force, Publisher, Contributor and Librarian.&lt;br /&gt;
Focus more on UX, get the minute details working properly.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Sept 5 - Sept 12==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Control the access to the site pragmatically and do a security auditing. &lt;br /&gt;
Polish the interface and all features should be working by now.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Sept 13 - Sept 27 ==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Review code, fix bugs and get ready for final evaluation.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
=== Any other details you feel we should consider ===&lt;br /&gt;
It will be great if we can sync Malayagrandham with Wikisource. We can also link to Public Domain books in Malayagrandham pages.&lt;br /&gt;
&lt;br /&gt;
=== Tell us about something you have created. ===&lt;br /&gt;
# [http://quizgrid.com QuizGrid.com] is a social network I built using Ruby on Rails and MySQL. More details are [http://ershadk.com/blog/2013/01/21/announcing-quizgrid-dot-com/ here]&lt;br /&gt;
# [http://myfest.in Myfest.in] is a college fest aggregator I built using the same technology stack. It&#039;s quite popular in India and it has got thousands of hits in a short span of time.&lt;br /&gt;
# I built a [https://chrome.google.com/webstore/detail/wikimedia-input-method-ex/cealbihienhpnlglmhmmmlbjdcjfjkap chrome extension] for language transliteration using Wikimedia&#039;s jQueryIME library and it won &#039;The most innovative project&#039; award in Wikimedia Dev Camp held at IIM Bangalore. My other wikimedia contributions are [https://gerrit.wikimedia.org/r/#/q/owner:%22Ershad+Kunnakkadan+%253Cershad92%2540gmail.com%253E%22,n,z here]&lt;br /&gt;
&lt;br /&gt;
I&#039;ve also some open source contributions, please find them in my [http://github.com/ershad github] profile&lt;br /&gt;
&lt;br /&gt;
=== Have you communicated with a potential mentor? If so, who? ===&lt;br /&gt;
Yes, I&#039;ve communicated with Anivar Aravind.&lt;br /&gt;
&lt;br /&gt;
=== SMC Wiki link of your proposal ===&lt;br /&gt;
http://wiki.smc.org.in/User:Ershad/GSoC2013_Malayalagrandham&lt;br /&gt;
&lt;br /&gt;
=== Project updates ===&lt;br /&gt;
&lt;br /&gt;
* http://ershadk.com/blog/2013/06/11/hello-google-summer-of-code-2013/&lt;br /&gt;
* http://ershadk.com/blog/2013/07/14/grandham-update-2/&lt;br /&gt;
* Week 1 : http://ershadk.com/blog/2013/07/14/grandha-week-1/&lt;/div&gt;</summary>
		<author><name>Ershad</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=User:Ershad/GSoC2013_Malayalagrandham&amp;diff=4126</id>
		<title>User:Ershad/GSoC2013 Malayalagrandham</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=User:Ershad/GSoC2013_Malayalagrandham&amp;diff=4126"/>
		<updated>2013-07-14T13:15:02Z</updated>

		<summary type="html">&lt;p&gt;Ershad: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Google Summer of Code 2013 Proposal for Swathanthra Malalayalam Computing&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Personal Information==&lt;br /&gt;
  Email Address:                    ershad92@gmail.com&lt;br /&gt;
  Telephone:                        +91 8089133362&lt;br /&gt;
  Blog URL:                         http://ershadk.com&lt;br /&gt;
  Freenode IRC Nick:                ershad&lt;br /&gt;
  University and current education: BSc Computer Science, Bharathiyar University&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Why do you want to work with the Swathanthra Malayalam Computing? ===&lt;br /&gt;
Swathanthra Malayalam Computing is contributing much to Indic languages and language computing, it&#039;s great to be a part of it.&lt;br /&gt;
&lt;br /&gt;
=== Do you have any past involvement with the Swathanthra Malayalam Computing or another open source project as a contributor? ===&lt;br /&gt;
Yes. I&#039;ve contributed to Swathanthra Malayalam Computing, MediaWiki and a couple of other open source projects.&lt;br /&gt;
&lt;br /&gt;
=== Did you participate with the past GSoC programs, if so which years, which organizations? ===&lt;br /&gt;
No, I&#039;ve not participated in GSoC programs before.&lt;br /&gt;
&lt;br /&gt;
=== Do you have other obligations between May and August ? Please note that we expect the Summer of Code to be a full time, 40 hour a week commitment ===&lt;br /&gt;
It will be possible for me to work 35-40 hours / Week.&lt;br /&gt;
&lt;br /&gt;
=== Will you continue contributing/ supporting the Swathanthra Malayalam Computing after the GSoC 2013 program, if yes, which area(s), you are interested in? ===&lt;br /&gt;
I&#039;ve been contributing to SMC, I will definitely continue doing it along with maintaining the Malayalagrandham application after GSoC. My interested areas include Language Computing, SILPA and translation.&lt;br /&gt;
&lt;br /&gt;
=== Why should we choose you over other applicants? ===&lt;br /&gt;
I&#039;ve been a FOSS enthusiast for years and have been continuously trying to contribute to it. GSoC will be a great platform for me to contribute more.&lt;br /&gt;
&lt;br /&gt;
This proposal is meant for Malayalagrandham Bibliography Data project. I&#039;m planning to do it in Ruby on Rails in which I&#039;m well versed and have more than 1 year of experience. I also have a track record of doing end-to-end hobby projects in Ruby on Rails.&lt;br /&gt;
&lt;br /&gt;
And right the at moment, I&#039;ve done its backend and wrote scripts to import data from old database. It will be easy for me to build upon that.&lt;br /&gt;
&lt;br /&gt;
== Proposal Description ==&lt;br /&gt;
=== An overview of your proposal ===&lt;br /&gt;
Malayalagrandham.com is a web application to store and process bibliography data of books. Currently it has a growing database with information of more than 50K books. The current live application was built a few years before and it lacks  features such as crowd sourcing, RESTFul API, Feedback, Visualization and so on. The proposed project aims at building a more advanced and contributor/developer friendly version of Malayalagrandham Bibliography Data application with the aforementioned features. The new version of Malayalagrandham will be a crowd sourced Internet Book Database. It will have features to export data to various formats such as MARC21 and MARCXML.&lt;br /&gt;
&lt;br /&gt;
The application essentially will have the following interfaces.&lt;br /&gt;
&lt;br /&gt;
1. Interface for the task force&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Task force is a group of people with administrative privileges. These admins should be able to select the right submission from crowd sourced data and they should be able to moderate any the contents in the web application.  They should also be able to visualize existing data.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
2. Interface for contributor&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Any person should be able to become a contributor by signing up using his/her email ID. Contributor should be able to add new bibliography information and post comments/reviews through the feedback system. He should also be able to upload cover photos of books.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
3. Interface for Publisher&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Publishers should be able to add bibliography information of the books they publish. They should also be able to generate QR code that links to specific book&#039;s page.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
4. Interface for Librarian&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Librarians should be able to update the location of the books in Malayalagrandham.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
All the data in Malayalagrandham will be open to Public. But users need special permission (admin privileges) to modify the existing approved data. Application will have full support for localization using i18n libraries of Rails.&lt;br /&gt;
&lt;br /&gt;
=== The need you believe it fulfills ===&lt;br /&gt;
Apart from the bibliographic information it provides, Malayalagrandham would help people to locate books easily. Building a new version this application has the following benefits:&lt;br /&gt;
&lt;br /&gt;
# It will be easy for users to contribute new data&lt;br /&gt;
# REFTul API makes the application developer friendly. The API will enable developers to write client applications across platforms.&lt;br /&gt;
# We will have a centralized location of information of many books in a breadth of languages.&lt;br /&gt;
# It will be easy to perform complex searches to locate specific books.&lt;br /&gt;
# The feedback feature attracts more engagement/dicussion from users.&lt;br /&gt;
# ISBN based book discovery will be possible&lt;br /&gt;
# QR code for each book would help the user to locate its Malayagrandham page&lt;br /&gt;
&lt;br /&gt;
=== Any relevant experience you have ===&lt;br /&gt;
&lt;br /&gt;
I&#039;ve industrial experiencing in building and deploying Ruby on Rails web applications. I also have learned about MARC21/MARCXML formats and ISBN.&lt;br /&gt;
&lt;br /&gt;
=== How you intend to implement your proposal ===&lt;br /&gt;
Technology stack is Ruby on Rails web framework with MySQL backend. We will be using the following Open Source gems and modules :&lt;br /&gt;
&lt;br /&gt;
# devise - User Authorization&lt;br /&gt;
# ruby-marc - Read and Write in MARC Format&lt;br /&gt;
# marc21-utils - MARC Validation&lt;br /&gt;
# ferret - Text Search&lt;br /&gt;
# Jbuilder - DSL to configure JSON API&lt;br /&gt;
# rqrcode - QR code generator&lt;br /&gt;
#rspec, capybara - Test Driven Development (TDD)&lt;br /&gt;
# Twitter Bootstrap - Front end Framework&lt;br /&gt;
&lt;br /&gt;
=== A rough timeline for your progress with phases ===&lt;br /&gt;
==== Jun 17 - Jun 30 ====&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Resume the development on the existing application I wrote for this project and design the remaining parts of the software.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Jul 1 - Jul 15==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Implement the application logic as per the design and start focusing on API&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== July 16 - Jul 31==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Implement the basic API and get the functionalities working in the back end&lt;br /&gt;
Test the built features and fix bugs for mid term evaluation&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Aug 1 - Aug 20==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Build advanced features such as crowd sourcing support, data export and QR support&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Aug 21 - Sept 5==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Implement basic UI for Task force, Publisher, Contributor and Librarian.&lt;br /&gt;
Focus more on UX, get the minute details working properly.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Sept 5 - Sept 12==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Control the access to the site pragmatically and do a security auditing. &lt;br /&gt;
Polish the interface and all features should be working by now.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Sept 13 - Sept 27 ==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Review code, fix bugs and get ready for final evaluation.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
=== Any other details you feel we should consider ===&lt;br /&gt;
It will be great if we can sync Malayagrandham with Wikisource. We can also link to Public Domain books in Malayagrandham pages.&lt;br /&gt;
&lt;br /&gt;
=== Tell us about something you have created. ===&lt;br /&gt;
# [http://quizgrid.com QuizGrid.com] is a social network I built using Ruby on Rails and MySQL. More details are [http://ershadk.com/blog/2013/01/21/announcing-quizgrid-dot-com/ here]&lt;br /&gt;
# [http://myfest.in Myfest.in] is a college fest aggregator I built using the same technology stack. It&#039;s quite popular in India and it has got thousands of hits in a short span of time.&lt;br /&gt;
# I built a [https://chrome.google.com/webstore/detail/wikimedia-input-method-ex/cealbihienhpnlglmhmmmlbjdcjfjkap chrome extension] for language transliteration using Wikimedia&#039;s jQueryIME library and it won &#039;The most innovative project&#039; award in Wikimedia Dev Camp held at IIM Bangalore. My other wikimedia contributions are [https://gerrit.wikimedia.org/r/#/q/owner:%22Ershad+Kunnakkadan+%253Cershad92%2540gmail.com%253E%22,n,z here]&lt;br /&gt;
&lt;br /&gt;
I&#039;ve also some open source contributions, please find them in my [http://github.com/ershad github] profile&lt;br /&gt;
&lt;br /&gt;
=== Have you communicated with a potential mentor? If so, who? ===&lt;br /&gt;
Yes, I&#039;ve communicated with Anivar Aravind.&lt;br /&gt;
&lt;br /&gt;
=== SMC Wiki link of your proposal ===&lt;br /&gt;
http://wiki.smc.org.in/User:Ershad/GSoC2013_Malayalagrandham&lt;br /&gt;
&lt;br /&gt;
=== Project updates ===&lt;br /&gt;
&lt;br /&gt;
# http://ershadk.com/blog/2013/06/11/hello-google-summer-of-code-2013/&lt;br /&gt;
# http://ershadk.com/blog/2013/07/14/grandham-update-2/&lt;/div&gt;</summary>
		<author><name>Ershad</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=User:Ershad/GSoC2013_Malayalagrandham&amp;diff=3654</id>
		<title>User:Ershad/GSoC2013 Malayalagrandham</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=User:Ershad/GSoC2013_Malayalagrandham&amp;diff=3654"/>
		<updated>2013-04-26T05:21:27Z</updated>

		<summary type="html">&lt;p&gt;Ershad: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Google Summer of Code 2013 Proposal for Swathanthra Malalayalam Computing&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Personal Information==&lt;br /&gt;
  Email Address:                    ershad92@gmail.com&lt;br /&gt;
  Telephone:                        +91 8089133362&lt;br /&gt;
  Blog URL:                         http://ershadk.com&lt;br /&gt;
  Freenode IRC Nick:                ershad&lt;br /&gt;
  University and current education: BSc Computer Science, Bharathiyar University&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Why do you want to work with the Swathanthra Malayalam Computing? ===&lt;br /&gt;
Swathanthra Malayalam Computing is contributing much to Indic languages and language computing, it&#039;s great to be a part of it.&lt;br /&gt;
&lt;br /&gt;
=== Do you have any past involvement with the Swathanthra Malayalam Computing or another open source project as a contributor? ===&lt;br /&gt;
Yes. I&#039;ve contributed to Swathanthra Malayalam Computing, MediaWiki and a couple of other open source projects.&lt;br /&gt;
&lt;br /&gt;
=== Did you participate with the past GSoC programs, if so which years, which organizations? ===&lt;br /&gt;
No, I&#039;ve not participated in GSoC programs before.&lt;br /&gt;
&lt;br /&gt;
=== Do you have other obligations between May and August ? Please note that we expect the Summer of Code to be a full time, 40 hour a week commitment ===&lt;br /&gt;
It will be possible for me to work 35-40 hours / Week.&lt;br /&gt;
&lt;br /&gt;
=== Will you continue contributing/ supporting the Swathanthra Malayalam Computing after the GSoC 2013 program, if yes, which area(s), you are interested in? ===&lt;br /&gt;
I&#039;ve been contributing to SMC, I will definitely continue doing it along with maintaining the Malayalagrandham application after GSoC. My interested areas include Language Computing, SILPA and translation.&lt;br /&gt;
&lt;br /&gt;
=== Why should we choose you over other applicants? ===&lt;br /&gt;
I&#039;ve been a FOSS enthusiast for years and have been continuously trying to contribute to it. GSoC will be a great platform for me to contribute more.&lt;br /&gt;
&lt;br /&gt;
This proposal is meant for Malayalagrandham Bibliography Data project. I&#039;m planning to do it in Ruby on Rails in which I&#039;m well versed and have more than 1 year of experience. I also have a track record of doing end-to-end hobby projects in Ruby on Rails.&lt;br /&gt;
&lt;br /&gt;
And right the at moment, I&#039;ve done its backend and wrote scripts to import data from old database. It will be easy for me to build upon that.&lt;br /&gt;
&lt;br /&gt;
== Proposal Description ==&lt;br /&gt;
=== An overview of your proposal ===&lt;br /&gt;
Malayalagrandham.com is a web application to store and process bibliography data of books. Currently it has a growing database with information of more than 50K books. The current live application was built a few years before and it lacks  features such as crowd sourcing, RESTFul API, Feedback, Visualization and so on. The proposed project aims at building a more advanced and contributor/developer friendly version of Malayalagrandham Bibliography Data application with the aforementioned features. The new version of Malayalagrandham will be a crowd sourced Internet Book Database. It will have features to export data to various formats such as MARC21 and MARCXML.&lt;br /&gt;
&lt;br /&gt;
The application essentially will have the following interfaces.&lt;br /&gt;
&lt;br /&gt;
1. Interface for the task force&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Task force is a group of people with administrative privileges. These admins should be able to select the right submission from crowd sourced data and they should be able to moderate any the contents in the web application.  They should also be able to visualize existing data.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
2. Interface for contributor&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Any person should be able to become a contributor by signing up using his/her email ID. Contributor should be able to add new bibliography information and post comments/reviews through the feedback system. He should also be able to upload cover photos of books.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
3. Interface for Publisher&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Publishers should be able to add bibliography information of the books they publish. They should also be able to generate QR code that links to specific book&#039;s page.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
4. Interface for Librarian&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Librarians should be able to update the location of the books in Malayalagrandham.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
All the data in Malayalagrandham will be open to Public. But users need special permission (admin privileges) to modify the existing approved data. Application will have full support for localization using i18n libraries of Rails.&lt;br /&gt;
&lt;br /&gt;
=== The need you believe it fulfills ===&lt;br /&gt;
Apart from the bibliographic information it provides, Malayalagrandham would help people to locate books easily. Building a new version this application has the following benefits:&lt;br /&gt;
&lt;br /&gt;
# It will be easy for users to contribute new data&lt;br /&gt;
# REFTul API makes the application developer friendly. The API will enable developers to write client applications across platforms.&lt;br /&gt;
# We will have a centralized location of information of many books in a breadth of languages.&lt;br /&gt;
# It will be easy to perform complex searches to locate specific books.&lt;br /&gt;
# The feedback feature attracts more engagement/dicussion from users.&lt;br /&gt;
# ISBN based book discovery will be possible&lt;br /&gt;
# QR code for each book would help the user to locate its Malayagrandham page&lt;br /&gt;
&lt;br /&gt;
=== Any relevant experience you have ===&lt;br /&gt;
&lt;br /&gt;
I&#039;ve industrial experiencing in building and deploying Ruby on Rails web applications. I also have learned about MARC21/MARCXML formats and ISBN.&lt;br /&gt;
&lt;br /&gt;
=== How you intend to implement your proposal ===&lt;br /&gt;
Technology stack is Ruby on Rails web framework with MySQL backend. We will be using the following Open Source gems and modules :&lt;br /&gt;
&lt;br /&gt;
# devise - User Authorization&lt;br /&gt;
# ruby-marc - Read and Write in MARC Format&lt;br /&gt;
# marc21-utils - MARC Validation&lt;br /&gt;
# ferret - Text Search&lt;br /&gt;
# Jbuilder - DSL to configure JSON API&lt;br /&gt;
# rqrcode - QR code generator&lt;br /&gt;
#rspec, capybara - Test Driven Development (TDD)&lt;br /&gt;
# Twitter Bootstrap - Front end Framework&lt;br /&gt;
&lt;br /&gt;
=== A rough timeline for your progress with phases ===&lt;br /&gt;
==== Jun 17 - Jun 30 ====&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Resume the development on the existing application I wrote for this project and design the remaining parts of the software.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Jul 1 - Jul 15==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Implement the application logic as per the design and start focusing on API&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== July 16 - Jul 31==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Implement the basic API and get the functionalities working in the back end&lt;br /&gt;
Test the built features and fix bugs for mid term evaluation&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Aug 1 - Aug 20==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Build advanced features such as crowd sourcing support, data export and QR support&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Aug 21 - Sept 5==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Implement basic UI for Task force, Publisher, Contributor and Librarian.&lt;br /&gt;
Focus more on UX, get the minute details working properly.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Sept 5 - Sept 12==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Control the access to the site pragmatically and do a security auditing. &lt;br /&gt;
Polish the interface and all features should be working by now.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Sept 13 - Sept 27 ==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Review code, fix bugs and get ready for final evaluation.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
=== Any other details you feel we should consider ===&lt;br /&gt;
It will be great if we can sync Malayagrandham with Wikisource. We can also link to Public Domain books in Malayagrandham pages.&lt;br /&gt;
&lt;br /&gt;
=== Tell us about something you have created. ===&lt;br /&gt;
# [http://quizgrid.com QuizGrid.com] is a social network I built using Ruby on Rails and MySQL. More details are [http://ershadk.com/blog/2013/01/21/announcing-quizgrid-dot-com/ here]&lt;br /&gt;
# [http://myfest.in Myfest.in] is a college fest aggregator I built using the same technology stack. It&#039;s quite popular in India and it has got thousands of hits in a short span of time.&lt;br /&gt;
# I built a [https://chrome.google.com/webstore/detail/wikimedia-input-method-ex/cealbihienhpnlglmhmmmlbjdcjfjkap chrome extension] for language transliteration using Wikimedia&#039;s jQueryIME library and it won &#039;The most innovative project&#039; award in Wikimedia Dev Camp held at IIM Bangalore. My other wikimedia contributions are [https://gerrit.wikimedia.org/r/#/q/owner:%22Ershad+Kunnakkadan+%253Cershad92%2540gmail.com%253E%22,n,z here]&lt;br /&gt;
&lt;br /&gt;
I&#039;ve also some open source contributions, please find them in my [http://github.com/ershad github] profile&lt;br /&gt;
&lt;br /&gt;
=== Have you communicated with a potential mentor? If so, who? ===&lt;br /&gt;
Yes, I&#039;ve communicated with Anivar Aravind.&lt;br /&gt;
&lt;br /&gt;
=== SMC Wiki link of your proposal ===&lt;br /&gt;
http://wiki.smc.org.in/User:Ershad/GSoC2013_Malayalagrandham&lt;/div&gt;</summary>
		<author><name>Ershad</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=User:Ershad/GSoC2013_Malayalagrandham&amp;diff=3629</id>
		<title>User:Ershad/GSoC2013 Malayalagrandham</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=User:Ershad/GSoC2013_Malayalagrandham&amp;diff=3629"/>
		<updated>2013-04-25T18:22:52Z</updated>

		<summary type="html">&lt;p&gt;Ershad: /* Tell us about something you have created. */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Google Summer of Code 2013 Proposal for Swathanthra Malalayalam Computing&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Personal Information==&lt;br /&gt;
  Email Address:                    ershad92@gmail.com&lt;br /&gt;
  Telephone:                        +91 8089133362&lt;br /&gt;
  Blog URL:                         http://ershadk.com&lt;br /&gt;
  Freenode IRC Nick:                ershad&lt;br /&gt;
  University and current education: BSc Computer Science, Bharathiyar University&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Why do you want to work with the Swathanthra Malayalam Computing? ===&lt;br /&gt;
Swathanthra Malayalam Computing is contributing much to Indic languages and language computing, it&#039;s great to be a part of it.&lt;br /&gt;
&lt;br /&gt;
=== Do you have any past involvement with the Swathanthra Malayalam Computing or another open source project as a contributor? ===&lt;br /&gt;
Yes. I&#039;ve contributed to Swathanthra Malayalam Computing, MediaWiki and a couple of other open source projects.&lt;br /&gt;
&lt;br /&gt;
=== Did you participate with the past GSoC programs, if so which years, which organizations? ===&lt;br /&gt;
No, I&#039;ve not participated in GSoC programs before.&lt;br /&gt;
&lt;br /&gt;
=== Do you have other obligations between May and August ? Please note that we expect the Summer of Code to be a full time, 40 hour a week commitment ===&lt;br /&gt;
It will be possible for me to work 35-40 hours / Week.&lt;br /&gt;
&lt;br /&gt;
=== Will you continue contributing/ supporting the Swathanthra Malayalam Computing after the GSoC 2013 program, if yes, which area(s), you are interested in? ===&lt;br /&gt;
I&#039;ve been contributing to SMC, I will definitely continue doing it along with maintaining the Malayalagrandham application after GSoC. My interested areas include Language Computing, SILPA and translation.&lt;br /&gt;
&lt;br /&gt;
=== Why should we choose you over other applicants? ===&lt;br /&gt;
I&#039;ve been a FOSS enthusiast for years and have been continuously trying to contribute to it. GSoC will be a great platform for me to contribute more.&lt;br /&gt;
&lt;br /&gt;
This proposal is meant for Malayalagrandham Bibliography Data project. I&#039;m planning to do it in Ruby on Rails in which I&#039;m well versed and have more than 1 year of experience. I also have a track record of doing end-to-end hobby projects in Ruby on Rails.&lt;br /&gt;
&lt;br /&gt;
And right the at moment, I&#039;ve done its backend and wrote scripts to import data from old database. It will be easy for me to build upon that.&lt;br /&gt;
&lt;br /&gt;
== Proposal Description ==&lt;br /&gt;
=== An overview of your proposal ===&lt;br /&gt;
Malayalagrandham.com is a web application to store and process bibliography data of books. Currently it has a growing database with information of more than 50K books. The current live application was built a few years before and it lacks  features such as crowd sourcing, RESTFul API, Feedback, Visualization and so on. The proposed project aims at building a more advanced and contributor/developer friendly version of Malayalagrandham Bibliography Data application with the aforementioned features. The new version of Malayalagrandham will be a crowd sourced Internet Book Database. It will have features to export data to various formats such as MARC21 and MARCXML.&lt;br /&gt;
&lt;br /&gt;
The application essentially will have the following interfaces.&lt;br /&gt;
&lt;br /&gt;
1. Interface for the task force&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Task force is a group of people with administrative privileges. These admins should be able to select the right submission from crowd sourced data and they should be able to moderate any the contents in the web application.  They should also be able to visualize existing data.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
2. Interface for contributor&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Any person should be able to become a contributor by signing up using his/her email ID. Contributor should be able to add new bibliography information and post comments/reviews through the feedback system. He should also be able to upload cover photos of books.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
3. Interface for Publisher&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Publishers should be able to add bibliography information of the books they publish. They should also be able to generate QR code that links to specific book&#039;s page.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
4. Interface for Librarian&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Librarians should be able to update the location of the books in Malayalagrandham.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
All the data in Malayalagrandham will be open to Public. But users need special permission (admin privileges) to modify the existing approved data. Application will have full support for localization using i18n libraries of Rails.&lt;br /&gt;
&lt;br /&gt;
=== The need you believe it fulfills ===&lt;br /&gt;
Apart from the bibliographic information it provides, Malayalagrandham would help people to locate books easily. Building a new version this application has the following benefits:&lt;br /&gt;
&lt;br /&gt;
# It will be easy for users to contribute new data&lt;br /&gt;
# REFTul API makes the application developer friendly. The API will enable developers to write client applications across platforms.&lt;br /&gt;
# We will have a centralized location of information of many books in a breadth of languages.&lt;br /&gt;
# It will be easy to perform complex searches to locate specific books.&lt;br /&gt;
# The feedback feature attracts more engagement/dicussion from users.&lt;br /&gt;
# ISBN based book discovery will be possible&lt;br /&gt;
# QR code for each book would help the user to locate its Malayagrandham page&lt;br /&gt;
&lt;br /&gt;
=== Any relevant experience you have ===&lt;br /&gt;
&lt;br /&gt;
I&#039;ve industrial experiencing in building and deploying Ruby on Rails web applications. I also have learned about MARC21/MARCXML formats and ISBN.&lt;br /&gt;
&lt;br /&gt;
=== How you intend to implement your proposal ===&lt;br /&gt;
Technology stack is Ruby on Rails web framework with MySQL backend. We will be using the following Open Source gems and modules :&lt;br /&gt;
&lt;br /&gt;
# devise - User Authorization&lt;br /&gt;
# ruby-marc - Read and Write in MARC Format&lt;br /&gt;
# marc21-utils - MARC Validation&lt;br /&gt;
# ferret - Text Search&lt;br /&gt;
# Jbuilder - DSL to configure JSON API&lt;br /&gt;
# rqrcode - QR code generator&lt;br /&gt;
# Twitter Bootstrap - Front end Framework&lt;br /&gt;
&lt;br /&gt;
=== A rough timeline for your progress with phases ===&lt;br /&gt;
==== Jun 17 - Jun 30 ====&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Resume the development on the existing application I wrote for this project and design the remaining parts of the software.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Jul 1 - Jul 15==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Implement the application logic as per the design and start focusing on API&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== July 16 - Jul 31==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Implement the basic API and get the functionalities working in the back end&lt;br /&gt;
Test the built features and fix bugs for mid term evaluation&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Aug 1 - Aug 20==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Build advanced features such as crowd sourcing support, data export and QR support&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Aug 21 - Sept 5==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Implement basic UI for Task force, Publisher, Contributor and Librarian.&lt;br /&gt;
Focus more on UX, get the minute details working properly.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Sept 5 - Sept 12==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Control the access to the site pragmatically and do a security auditing. &lt;br /&gt;
Polish the interface and all features should be working by now.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Sept 13 - Sept 27 ==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Review code, fix bugs and get ready for final evaluation.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
=== Any other details you feel we should consider ===&lt;br /&gt;
It will be great if we can sync Malayagrandham with Wikisource. We can also link to Public Domain books in Malayagrandham pages.&lt;br /&gt;
&lt;br /&gt;
=== Tell us about something you have created. ===&lt;br /&gt;
# [http://quizgrid.com QuizGrid.com] is a social network I built using Ruby on Rails and MySQL. More details are [http://ershadk.com/blog/2013/01/21/announcing-quizgrid-dot-com/ here]&lt;br /&gt;
# [http://myfest.in Myfest.in] is a college fest aggregator I built using the same technology stack. It&#039;s quite popular in India and it has got thousands of hits in a short span of time.&lt;br /&gt;
# I built a [https://chrome.google.com/webstore/detail/wikimedia-input-method-ex/cealbihienhpnlglmhmmmlbjdcjfjkap chrome extension] for language transliteration using Wikimedia&#039;s jQueryIME library and it won &#039;The most innovative project&#039; award in Wikimedia Dev Camp held at IIM Bangalore. My other wikimedia contributions are [https://gerrit.wikimedia.org/r/#/q/owner:%22Ershad+Kunnakkadan+%253Cershad92%2540gmail.com%253E%22,n,z here]&lt;br /&gt;
&lt;br /&gt;
I&#039;ve also some open source contributions, please find them in my [http://github.com/ershad github] profile&lt;br /&gt;
&lt;br /&gt;
=== Have you communicated with a potential mentor? If so, who? ===&lt;br /&gt;
Yes, I&#039;ve communicated with Anivar Aravind.&lt;br /&gt;
&lt;br /&gt;
=== SMC Wiki link of your proposal ===&lt;br /&gt;
http://wiki.smc.org.in/User:Ershad/GSoC2013_Malayalagrandham&lt;/div&gt;</summary>
		<author><name>Ershad</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=User:Ershad/GSoC2013_Malayalagrandham&amp;diff=3622</id>
		<title>User:Ershad/GSoC2013 Malayalagrandham</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=User:Ershad/GSoC2013_Malayalagrandham&amp;diff=3622"/>
		<updated>2013-04-25T13:05:20Z</updated>

		<summary type="html">&lt;p&gt;Ershad: /* The need you believe it fulfills */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Google Summer of Code 2013 Proposal for Swathanthra Malalayalam Computing&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Personal Information==&lt;br /&gt;
  Email Address:                    ershad92@gmail.com&lt;br /&gt;
  Telephone:                        +91 8089133362&lt;br /&gt;
  Blog URL:                         http://ershadk.com&lt;br /&gt;
  Freenode IRC Nick:                ershad&lt;br /&gt;
  University and current education: BSc Computer Science, Bharathiyar University&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Why do you want to work with the Swathanthra Malayalam Computing? ===&lt;br /&gt;
Swathanthra Malayalam Computing is contributing much to Indic languages and language computing, it&#039;s great to be a part of it.&lt;br /&gt;
&lt;br /&gt;
=== Do you have any past involvement with the Swathanthra Malayalam Computing or another open source project as a contributor? ===&lt;br /&gt;
Yes. I&#039;ve contributed to Swathanthra Malayalam Computing, MediaWiki and a couple of other open source projects.&lt;br /&gt;
&lt;br /&gt;
=== Did you participate with the past GSoC programs, if so which years, which organizations? ===&lt;br /&gt;
No, I&#039;ve not participated in GSoC programs before.&lt;br /&gt;
&lt;br /&gt;
=== Do you have other obligations between May and August ? Please note that we expect the Summer of Code to be a full time, 40 hour a week commitment ===&lt;br /&gt;
It will be possible for me to work 35-40 hours / Week.&lt;br /&gt;
&lt;br /&gt;
=== Will you continue contributing/ supporting the Swathanthra Malayalam Computing after the GSoC 2013 program, if yes, which area(s), you are interested in? ===&lt;br /&gt;
I&#039;ve been contributing to SMC, I will definitely continue doing it along with maintaining the Malayalagrandham application after GSoC. My interested areas include Language Computing, SILPA and translation.&lt;br /&gt;
&lt;br /&gt;
=== Why should we choose you over other applicants? ===&lt;br /&gt;
I&#039;ve been a FOSS enthusiast for years and have been continuously trying to contribute to it. GSoC will be a great platform for me to contribute more.&lt;br /&gt;
&lt;br /&gt;
This proposal is meant for Malayalagrandham Bibliography Data project. I&#039;m planning to do it in Ruby on Rails in which I&#039;m well versed and have more than 1 year of experience. I also have a track record of doing end-to-end hobby projects in Ruby on Rails.&lt;br /&gt;
&lt;br /&gt;
And right the at moment, I&#039;ve done its backend and wrote scripts to import data from old database. It will be easy for me to build upon that.&lt;br /&gt;
&lt;br /&gt;
== Proposal Description ==&lt;br /&gt;
=== An overview of your proposal ===&lt;br /&gt;
Malayalagrandham.com is a web application to store and process bibliography data of books. Currently it has a growing database with information of more than 50K books. The current live application was built a few years before and it lacks  features such as crowd sourcing, RESTFul API, Feedback, Visualization and so on. The proposed project aims at building a more advanced and contributor/developer friendly version of Malayalagrandham Bibliography Data application with the aforementioned features. The new version of Malayalagrandham will be a crowd sourced Internet Book Database. It will have features to export data to various formats such as MARC21 and MARCXML.&lt;br /&gt;
&lt;br /&gt;
The application essentially will have the following interfaces.&lt;br /&gt;
&lt;br /&gt;
1. Interface for the task force&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Task force is a group of people with administrative privileges. These admins should be able to select the right submission from crowd sourced data and they should be able to moderate any the contents in the web application.  They should also be able to visualize existing data.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
2. Interface for contributor&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Any person should be able to become a contributor by signing up using his/her email ID. Contributor should be able to add new bibliography information and post comments/reviews through the feedback system. He should also be able to upload cover photos of books.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
3. Interface for Publisher&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Publishers should be able to add bibliography information of the books they publish. They should also be able to generate QR code that links to specific book&#039;s page.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
4. Interface for Librarian&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Librarians should be able to update the location of the books in Malayalagrandham.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
All the data in Malayalagrandham will be open to Public. But users need special permission (admin privileges) to modify the existing approved data. Application will have full support for localization using i18n libraries of Rails.&lt;br /&gt;
&lt;br /&gt;
=== The need you believe it fulfills ===&lt;br /&gt;
Apart from the bibliographic information it provides, Malayalagrandham would help people to locate books easily. Building a new version this application has the following benefits:&lt;br /&gt;
&lt;br /&gt;
# It will be easy for users to contribute new data&lt;br /&gt;
# REFTul API makes the application developer friendly. The API will enable developers to write client applications across platforms.&lt;br /&gt;
# We will have a centralized location of information of many books in a breadth of languages.&lt;br /&gt;
# It will be easy to perform complex searches to locate specific books.&lt;br /&gt;
# The feedback feature attracts more engagement/dicussion from users.&lt;br /&gt;
# ISBN based book discovery will be possible&lt;br /&gt;
# QR code for each book would help the user to locate its Malayagrandham page&lt;br /&gt;
&lt;br /&gt;
=== Any relevant experience you have ===&lt;br /&gt;
&lt;br /&gt;
I&#039;ve industrial experiencing in building and deploying Ruby on Rails web applications. I also have learned about MARC21/MARCXML formats and ISBN.&lt;br /&gt;
&lt;br /&gt;
=== How you intend to implement your proposal ===&lt;br /&gt;
Technology stack is Ruby on Rails web framework with MySQL backend. We will be using the following Open Source gems and modules :&lt;br /&gt;
&lt;br /&gt;
# devise - User Authorization&lt;br /&gt;
# ruby-marc - Read and Write in MARC Format&lt;br /&gt;
# marc21-utils - MARC Validation&lt;br /&gt;
# ferret - Text Search&lt;br /&gt;
# Jbuilder - DSL to configure JSON API&lt;br /&gt;
# rqrcode - QR code generator&lt;br /&gt;
# Twitter Bootstrap - Front end Framework&lt;br /&gt;
&lt;br /&gt;
=== A rough timeline for your progress with phases ===&lt;br /&gt;
==== Jun 17 - Jun 30 ====&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Resume the development on the existing application I wrote for this project and design the remaining parts of the software.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Jul 1 - Jul 15==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Implement the application logic as per the design and start focusing on API&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== July 16 - Jul 31==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Implement the basic API and get the functionalities working in the back end&lt;br /&gt;
Test the built features and fix bugs for mid term evaluation&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Aug 1 - Aug 20==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Build advanced features such as crowd sourcing support, data export and QR support&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Aug 21 - Sept 5==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Implement basic UI for Task force, Publisher, Contributor and Librarian.&lt;br /&gt;
Focus more on UX, get the minute details working properly.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Sept 5 - Sept 12==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Control the access to the site pragmatically and do a security auditing. &lt;br /&gt;
Polish the interface and all features should be working by now.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Sept 13 - Sept 27 ==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Review code, fix bugs and get ready for final evaluation.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
=== Any other details you feel we should consider ===&lt;br /&gt;
It will be great if we can sync Malayagrandham with Wikisource. We can also link to Public Domain books in Malayagrandham pages.&lt;br /&gt;
&lt;br /&gt;
=== Tell us about something you have created. ===&lt;br /&gt;
# [http://quizgrid.com QuizGrid.com] is a social network I built using Ruby on Rails and MySQL. More details are [http://ershadk.com/blog/2013/01/21/announcing-quizgrid-dot-com/ here]&lt;br /&gt;
# [http://myfest.in Myfest.in] is a college fest aggregator I built using the same technology stack. It&#039;s quite popular in India and it has got thousands of hits in a short span of time.&lt;br /&gt;
# I built a [https://chrome.google.com/webstore/detail/wikimedia-input-method-ex/cealbihienhpnlglmhmmmlbjdcjfjkap chrome extension] for language transliteration using Wikimedia&#039;s jQueryIME library and it won &#039;The most innovative project&#039; award in Wikimedia Dev Camp held at IIM Bangalore&lt;br /&gt;
&lt;br /&gt;
I&#039;ve also some open source contributions, please find them in my [http://github.com/ershad github] profile&lt;br /&gt;
&lt;br /&gt;
=== Have you communicated with a potential mentor? If so, who? ===&lt;br /&gt;
Yes, I&#039;ve communicated with Anivar Aravind.&lt;br /&gt;
&lt;br /&gt;
=== SMC Wiki link of your proposal ===&lt;br /&gt;
http://wiki.smc.org.in/User:Ershad/GSoC2013_Malayalagrandham&lt;/div&gt;</summary>
		<author><name>Ershad</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=User:Ershad/GSoC2013_Malayalagrandham&amp;diff=3621</id>
		<title>User:Ershad/GSoC2013 Malayalagrandham</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=User:Ershad/GSoC2013_Malayalagrandham&amp;diff=3621"/>
		<updated>2013-04-25T13:04:08Z</updated>

		<summary type="html">&lt;p&gt;Ershad: /* An overview of your proposal */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Google Summer of Code 2013 Proposal for Swathanthra Malalayalam Computing&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Personal Information==&lt;br /&gt;
  Email Address:                    ershad92@gmail.com&lt;br /&gt;
  Telephone:                        +91 8089133362&lt;br /&gt;
  Blog URL:                         http://ershadk.com&lt;br /&gt;
  Freenode IRC Nick:                ershad&lt;br /&gt;
  University and current education: BSc Computer Science, Bharathiyar University&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Why do you want to work with the Swathanthra Malayalam Computing? ===&lt;br /&gt;
Swathanthra Malayalam Computing is contributing much to Indic languages and language computing, it&#039;s great to be a part of it.&lt;br /&gt;
&lt;br /&gt;
=== Do you have any past involvement with the Swathanthra Malayalam Computing or another open source project as a contributor? ===&lt;br /&gt;
Yes. I&#039;ve contributed to Swathanthra Malayalam Computing, MediaWiki and a couple of other open source projects.&lt;br /&gt;
&lt;br /&gt;
=== Did you participate with the past GSoC programs, if so which years, which organizations? ===&lt;br /&gt;
No, I&#039;ve not participated in GSoC programs before.&lt;br /&gt;
&lt;br /&gt;
=== Do you have other obligations between May and August ? Please note that we expect the Summer of Code to be a full time, 40 hour a week commitment ===&lt;br /&gt;
It will be possible for me to work 35-40 hours / Week.&lt;br /&gt;
&lt;br /&gt;
=== Will you continue contributing/ supporting the Swathanthra Malayalam Computing after the GSoC 2013 program, if yes, which area(s), you are interested in? ===&lt;br /&gt;
I&#039;ve been contributing to SMC, I will definitely continue doing it along with maintaining the Malayalagrandham application after GSoC. My interested areas include Language Computing, SILPA and translation.&lt;br /&gt;
&lt;br /&gt;
=== Why should we choose you over other applicants? ===&lt;br /&gt;
I&#039;ve been a FOSS enthusiast for years and have been continuously trying to contribute to it. GSoC will be a great platform for me to contribute more.&lt;br /&gt;
&lt;br /&gt;
This proposal is meant for Malayalagrandham Bibliography Data project. I&#039;m planning to do it in Ruby on Rails in which I&#039;m well versed and have more than 1 year of experience. I also have a track record of doing end-to-end hobby projects in Ruby on Rails.&lt;br /&gt;
&lt;br /&gt;
And right the at moment, I&#039;ve done its backend and wrote scripts to import data from old database. It will be easy for me to build upon that.&lt;br /&gt;
&lt;br /&gt;
== Proposal Description ==&lt;br /&gt;
=== An overview of your proposal ===&lt;br /&gt;
Malayalagrandham.com is a web application to store and process bibliography data of books. Currently it has a growing database with information of more than 50K books. The current live application was built a few years before and it lacks  features such as crowd sourcing, RESTFul API, Feedback, Visualization and so on. The proposed project aims at building a more advanced and contributor/developer friendly version of Malayalagrandham Bibliography Data application with the aforementioned features. The new version of Malayalagrandham will be a crowd sourced Internet Book Database. It will have features to export data to various formats such as MARC21 and MARCXML.&lt;br /&gt;
&lt;br /&gt;
The application essentially will have the following interfaces.&lt;br /&gt;
&lt;br /&gt;
1. Interface for the task force&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Task force is a group of people with administrative privileges. These admins should be able to select the right submission from crowd sourced data and they should be able to moderate any the contents in the web application.  They should also be able to visualize existing data.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
2. Interface for contributor&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Any person should be able to become a contributor by signing up using his/her email ID. Contributor should be able to add new bibliography information and post comments/reviews through the feedback system. He should also be able to upload cover photos of books.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
3. Interface for Publisher&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Publishers should be able to add bibliography information of the books they publish. They should also be able to generate QR code that links to specific book&#039;s page.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
4. Interface for Librarian&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Librarians should be able to update the location of the books in Malayalagrandham.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
All the data in Malayalagrandham will be open to Public. But users need special permission (admin privileges) to modify the existing approved data. Application will have full support for localization using i18n libraries of Rails.&lt;br /&gt;
&lt;br /&gt;
=== The need you believe it fulfills ===&lt;br /&gt;
Apart from the bibliographic information it provides, Malayalagrandham would help people to locate books easily. Building a new version this application has the following benefits:&lt;br /&gt;
&lt;br /&gt;
# It will be easy for users to contribute new data&lt;br /&gt;
# REFTul API makes the application developer friendly. The API will enable developers to write client applications across platforms.&lt;br /&gt;
# We will have a centralized location of information of many books in a breadth of languages.&lt;br /&gt;
# It will be easy to perform complex searches to locate specific books.&lt;br /&gt;
# The feedback feature attracts more engagement/dicussion from users.&lt;br /&gt;
# QR code for each book would help the user to locate its Malayagrandham page&lt;br /&gt;
&lt;br /&gt;
=== Any relevant experience you have ===&lt;br /&gt;
&lt;br /&gt;
I&#039;ve industrial experiencing in building and deploying Ruby on Rails web applications. I also have learned about MARC21/MARCXML formats and ISBN.&lt;br /&gt;
&lt;br /&gt;
=== How you intend to implement your proposal ===&lt;br /&gt;
Technology stack is Ruby on Rails web framework with MySQL backend. We will be using the following Open Source gems and modules :&lt;br /&gt;
&lt;br /&gt;
# devise - User Authorization&lt;br /&gt;
# ruby-marc - Read and Write in MARC Format&lt;br /&gt;
# marc21-utils - MARC Validation&lt;br /&gt;
# ferret - Text Search&lt;br /&gt;
# Jbuilder - DSL to configure JSON API&lt;br /&gt;
# rqrcode - QR code generator&lt;br /&gt;
# Twitter Bootstrap - Front end Framework&lt;br /&gt;
&lt;br /&gt;
=== A rough timeline for your progress with phases ===&lt;br /&gt;
==== Jun 17 - Jun 30 ====&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Resume the development on the existing application I wrote for this project and design the remaining parts of the software.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Jul 1 - Jul 15==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Implement the application logic as per the design and start focusing on API&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== July 16 - Jul 31==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Implement the basic API and get the functionalities working in the back end&lt;br /&gt;
Test the built features and fix bugs for mid term evaluation&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Aug 1 - Aug 20==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Build advanced features such as crowd sourcing support, data export and QR support&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Aug 21 - Sept 5==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Implement basic UI for Task force, Publisher, Contributor and Librarian.&lt;br /&gt;
Focus more on UX, get the minute details working properly.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Sept 5 - Sept 12==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Control the access to the site pragmatically and do a security auditing. &lt;br /&gt;
Polish the interface and all features should be working by now.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Sept 13 - Sept 27 ==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Review code, fix bugs and get ready for final evaluation.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
=== Any other details you feel we should consider ===&lt;br /&gt;
It will be great if we can sync Malayagrandham with Wikisource. We can also link to Public Domain books in Malayagrandham pages.&lt;br /&gt;
&lt;br /&gt;
=== Tell us about something you have created. ===&lt;br /&gt;
# [http://quizgrid.com QuizGrid.com] is a social network I built using Ruby on Rails and MySQL. More details are [http://ershadk.com/blog/2013/01/21/announcing-quizgrid-dot-com/ here]&lt;br /&gt;
# [http://myfest.in Myfest.in] is a college fest aggregator I built using the same technology stack. It&#039;s quite popular in India and it has got thousands of hits in a short span of time.&lt;br /&gt;
# I built a [https://chrome.google.com/webstore/detail/wikimedia-input-method-ex/cealbihienhpnlglmhmmmlbjdcjfjkap chrome extension] for language transliteration using Wikimedia&#039;s jQueryIME library and it won &#039;The most innovative project&#039; award in Wikimedia Dev Camp held at IIM Bangalore&lt;br /&gt;
&lt;br /&gt;
I&#039;ve also some open source contributions, please find them in my [http://github.com/ershad github] profile&lt;br /&gt;
&lt;br /&gt;
=== Have you communicated with a potential mentor? If so, who? ===&lt;br /&gt;
Yes, I&#039;ve communicated with Anivar Aravind.&lt;br /&gt;
&lt;br /&gt;
=== SMC Wiki link of your proposal ===&lt;br /&gt;
http://wiki.smc.org.in/User:Ershad/GSoC2013_Malayalagrandham&lt;/div&gt;</summary>
		<author><name>Ershad</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=User:Ershad/GSoC2013_Malayalagrandham&amp;diff=3619</id>
		<title>User:Ershad/GSoC2013 Malayalagrandham</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=User:Ershad/GSoC2013_Malayalagrandham&amp;diff=3619"/>
		<updated>2013-04-25T12:54:35Z</updated>

		<summary type="html">&lt;p&gt;Ershad: /* Will you continue contributing/ supporting the Swathanthra Malayalam Computing after the GSoC 2013 program, if yes, which area(s), you are interested in? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Google Summer of Code 2013 Proposal for Swathanthra Malalayalam Computing&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Personal Information==&lt;br /&gt;
  Email Address:                    ershad92@gmail.com&lt;br /&gt;
  Telephone:                        +91 8089133362&lt;br /&gt;
  Blog URL:                         http://ershadk.com&lt;br /&gt;
  Freenode IRC Nick:                ershad&lt;br /&gt;
  University and current education: BSc Computer Science, Bharathiyar University&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Why do you want to work with the Swathanthra Malayalam Computing? ===&lt;br /&gt;
Swathanthra Malayalam Computing is contributing much to Indic languages and language computing, it&#039;s great to be a part of it.&lt;br /&gt;
&lt;br /&gt;
=== Do you have any past involvement with the Swathanthra Malayalam Computing or another open source project as a contributor? ===&lt;br /&gt;
Yes. I&#039;ve contributed to Swathanthra Malayalam Computing, MediaWiki and a couple of other open source projects.&lt;br /&gt;
&lt;br /&gt;
=== Did you participate with the past GSoC programs, if so which years, which organizations? ===&lt;br /&gt;
No, I&#039;ve not participated in GSoC programs before.&lt;br /&gt;
&lt;br /&gt;
=== Do you have other obligations between May and August ? Please note that we expect the Summer of Code to be a full time, 40 hour a week commitment ===&lt;br /&gt;
It will be possible for me to work 35-40 hours / Week.&lt;br /&gt;
&lt;br /&gt;
=== Will you continue contributing/ supporting the Swathanthra Malayalam Computing after the GSoC 2013 program, if yes, which area(s), you are interested in? ===&lt;br /&gt;
I&#039;ve been contributing to SMC, I will definitely continue doing it along with maintaining the Malayalagrandham application after GSoC. My interested areas include Language Computing, SILPA and translation.&lt;br /&gt;
&lt;br /&gt;
=== Why should we choose you over other applicants? ===&lt;br /&gt;
I&#039;ve been a FOSS enthusiast for years and have been continuously trying to contribute to it. GSoC will be a great platform for me to contribute more.&lt;br /&gt;
&lt;br /&gt;
This proposal is meant for Malayalagrandham Bibliography Data project. I&#039;m planning to do it in Ruby on Rails in which I&#039;m well versed and have more than 1 year of experience. I also have a track record of doing end-to-end hobby projects in Ruby on Rails.&lt;br /&gt;
&lt;br /&gt;
And right the at moment, I&#039;ve done its backend and wrote scripts to import data from old database. It will be easy for me to build upon that.&lt;br /&gt;
&lt;br /&gt;
== Proposal Description ==&lt;br /&gt;
=== An overview of your proposal ===&lt;br /&gt;
Malayalagrandham.com is a web application to store and process bibliography data of books. Currently it has a growing database with information of more than 50K books. The current live application was built a few years before and it lacks  features such as crowd sourcing, RESTFul API, Feedback, Visualization and so on. The proposed project aims at building a more advanced and contributor/developer friendly version of Malayalagrandham Bibliography Data application with the aforementioned features. The new version of Malayalagrandham will be a crowd sourced Internet Book Database. It will have features to export data to various formats such as MARC21 and MARCXML.&lt;br /&gt;
&lt;br /&gt;
The application essentially will have the following interfaces.&lt;br /&gt;
&lt;br /&gt;
1. Interface for the task force&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Task force is a group of people with administrative privileges. These admins should be able to select the right submission from crowd sourced data and they should be able to moderate any the contents in the web application.  They should also be able to visualize existing data.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
2. Interface for contributor&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Any person should be able to become a contributor by signing up using his/her email ID. Contributor should be able to add new bibliography information and post comments/reviews through the feedback system. He should also be able to upload cover photos of books.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
3. Interface for Publisher&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Publishers should be able to add bibliography information of the books they publish. They should also be able to generate QR code that links to specific book&#039;s page.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
4. Interface for Librarian&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Librarians should be able to update the location of the books in Malayalagrandham.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
All the data in Malayalagrandham will be open to Public. But users need special permission (admin privileges) to modify the existing approved data.&lt;br /&gt;
&lt;br /&gt;
=== The need you believe it fulfills ===&lt;br /&gt;
Apart from the bibliographic information it provides, Malayalagrandham would help people to locate books easily. Building a new version this application has the following benefits:&lt;br /&gt;
&lt;br /&gt;
# It will be easy for users to contribute new data&lt;br /&gt;
# REFTul API makes the application developer friendly. The API will enable developers to write client applications across platforms.&lt;br /&gt;
# We will have a centralized location of information of many books in a breadth of languages.&lt;br /&gt;
# It will be easy to perform complex searches to locate specific books.&lt;br /&gt;
# The feedback feature attracts more engagement/dicussion from users.&lt;br /&gt;
# QR code for each book would help the user to locate its Malayagrandham page&lt;br /&gt;
&lt;br /&gt;
=== Any relevant experience you have ===&lt;br /&gt;
&lt;br /&gt;
I&#039;ve industrial experiencing in building and deploying Ruby on Rails web applications. I also have learned about MARC21/MARCXML formats and ISBN.&lt;br /&gt;
&lt;br /&gt;
=== How you intend to implement your proposal ===&lt;br /&gt;
Technology stack is Ruby on Rails web framework with MySQL backend. We will be using the following Open Source gems and modules :&lt;br /&gt;
&lt;br /&gt;
# devise - User Authorization&lt;br /&gt;
# ruby-marc - Read and Write in MARC Format&lt;br /&gt;
# marc21-utils - MARC Validation&lt;br /&gt;
# ferret - Text Search&lt;br /&gt;
# Jbuilder - DSL to configure JSON API&lt;br /&gt;
# rqrcode - QR code generator&lt;br /&gt;
# Twitter Bootstrap - Front end Framework&lt;br /&gt;
&lt;br /&gt;
=== A rough timeline for your progress with phases ===&lt;br /&gt;
==== Jun 17 - Jun 30 ====&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Resume the development on the existing application I wrote for this project and design the remaining parts of the software.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Jul 1 - Jul 15==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Implement the application logic as per the design and start focusing on API&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== July 16 - Jul 31==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Implement the basic API and get the functionalities working in the back end&lt;br /&gt;
Test the built features and fix bugs for mid term evaluation&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Aug 1 - Aug 20==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Build advanced features such as crowd sourcing support, data export and QR support&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Aug 21 - Sept 5==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Implement basic UI for Task force, Publisher, Contributor and Librarian.&lt;br /&gt;
Focus more on UX, get the minute details working properly.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Sept 5 - Sept 12==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Control the access to the site pragmatically and do a security auditing. &lt;br /&gt;
Polish the interface and all features should be working by now.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Sept 13 - Sept 27 ==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Review code, fix bugs and get ready for final evaluation.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
=== Any other details you feel we should consider ===&lt;br /&gt;
It will be great if we can sync Malayagrandham with Wikisource. We can also link to Public Domain books in Malayagrandham pages.&lt;br /&gt;
&lt;br /&gt;
=== Tell us about something you have created. ===&lt;br /&gt;
# [http://quizgrid.com QuizGrid.com] is a social network I built using Ruby on Rails and MySQL. More details are [http://ershadk.com/blog/2013/01/21/announcing-quizgrid-dot-com/ here]&lt;br /&gt;
# [http://myfest.in Myfest.in] is a college fest aggregator I built using the same technology stack. It&#039;s quite popular in India and it has got thousands of hits in a short span of time.&lt;br /&gt;
# I built a [https://chrome.google.com/webstore/detail/wikimedia-input-method-ex/cealbihienhpnlglmhmmmlbjdcjfjkap chrome extension] for language transliteration using Wikimedia&#039;s jQueryIME library and it won &#039;The most innovative project&#039; award in Wikimedia Dev Camp held at IIM Bangalore&lt;br /&gt;
&lt;br /&gt;
I&#039;ve also some open source contributions, please find them in my [http://github.com/ershad github] profile&lt;br /&gt;
&lt;br /&gt;
=== Have you communicated with a potential mentor? If so, who? ===&lt;br /&gt;
Yes, I&#039;ve communicated with Anivar Aravind.&lt;br /&gt;
&lt;br /&gt;
=== SMC Wiki link of your proposal ===&lt;br /&gt;
http://wiki.smc.org.in/User:Ershad/GSoC2013_Malayalagrandham&lt;/div&gt;</summary>
		<author><name>Ershad</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=User:Ershad/GSoC2013_Malayalagrandham&amp;diff=3618</id>
		<title>User:Ershad/GSoC2013 Malayalagrandham</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=User:Ershad/GSoC2013_Malayalagrandham&amp;diff=3618"/>
		<updated>2013-04-25T12:53:10Z</updated>

		<summary type="html">&lt;p&gt;Ershad: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Google Summer of Code 2013 Proposal for Swathanthra Malalayalam Computing&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Personal Information==&lt;br /&gt;
  Email Address:                    ershad92@gmail.com&lt;br /&gt;
  Telephone:                        +91 8089133362&lt;br /&gt;
  Blog URL:                         http://ershadk.com&lt;br /&gt;
  Freenode IRC Nick:                ershad&lt;br /&gt;
  University and current education: BSc Computer Science, Bharathiyar University&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Why do you want to work with the Swathanthra Malayalam Computing? ===&lt;br /&gt;
Swathanthra Malayalam Computing is contributing much to Indic languages and language computing, it&#039;s great to be a part of it.&lt;br /&gt;
&lt;br /&gt;
=== Do you have any past involvement with the Swathanthra Malayalam Computing or another open source project as a contributor? ===&lt;br /&gt;
Yes. I&#039;ve contributed to Swathanthra Malayalam Computing, MediaWiki and a couple of other open source projects.&lt;br /&gt;
&lt;br /&gt;
=== Did you participate with the past GSoC programs, if so which years, which organizations? ===&lt;br /&gt;
No, I&#039;ve not participated in GSoC programs before.&lt;br /&gt;
&lt;br /&gt;
=== Do you have other obligations between May and August ? Please note that we expect the Summer of Code to be a full time, 40 hour a week commitment ===&lt;br /&gt;
It will be possible for me to work 35-40 hours / Week.&lt;br /&gt;
&lt;br /&gt;
=== Will you continue contributing/ supporting the Swathanthra Malayalam Computing after the GSoC 2013 program, if yes, which area(s), you are interested in? ===&lt;br /&gt;
I&#039;ve been contributing to SMC, I will definitely continue that and I will be happy to maintain Malayalagrandham application after GSoC as well. My interested areas include Language Computing, SILPA and translation.&lt;br /&gt;
 &lt;br /&gt;
=== Why should we choose you over other applicants? ===&lt;br /&gt;
I&#039;ve been a FOSS enthusiast for years and have been continuously trying to contribute to it. GSoC will be a great platform for me to contribute more.&lt;br /&gt;
&lt;br /&gt;
This proposal is meant for Malayalagrandham Bibliography Data project. I&#039;m planning to do it in Ruby on Rails in which I&#039;m well versed and have more than 1 year of experience. I also have a track record of doing end-to-end hobby projects in Ruby on Rails.&lt;br /&gt;
&lt;br /&gt;
And right the at moment, I&#039;ve done its backend and wrote scripts to import data from old database. It will be easy for me to build upon that.&lt;br /&gt;
&lt;br /&gt;
== Proposal Description ==&lt;br /&gt;
=== An overview of your proposal ===&lt;br /&gt;
Malayalagrandham.com is a web application to store and process bibliography data of books. Currently it has a growing database with information of more than 50K books. The current live application was built a few years before and it lacks  features such as crowd sourcing, RESTFul API, Feedback, Visualization and so on. The proposed project aims at building a more advanced and contributor/developer friendly version of Malayalagrandham Bibliography Data application with the aforementioned features. The new version of Malayalagrandham will be a crowd sourced Internet Book Database. It will have features to export data to various formats such as MARC21 and MARCXML.&lt;br /&gt;
&lt;br /&gt;
The application essentially will have the following interfaces.&lt;br /&gt;
&lt;br /&gt;
1. Interface for the task force&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Task force is a group of people with administrative privileges. These admins should be able to select the right submission from crowd sourced data and they should be able to moderate any the contents in the web application.  They should also be able to visualize existing data.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
2. Interface for contributor&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Any person should be able to become a contributor by signing up using his/her email ID. Contributor should be able to add new bibliography information and post comments/reviews through the feedback system. He should also be able to upload cover photos of books.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
3. Interface for Publisher&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Publishers should be able to add bibliography information of the books they publish. They should also be able to generate QR code that links to specific book&#039;s page.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
4. Interface for Librarian&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Librarians should be able to update the location of the books in Malayalagrandham.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
All the data in Malayalagrandham will be open to Public. But users need special permission (admin privileges) to modify the existing approved data.&lt;br /&gt;
&lt;br /&gt;
=== The need you believe it fulfills ===&lt;br /&gt;
Apart from the bibliographic information it provides, Malayalagrandham would help people to locate books easily. Building a new version this application has the following benefits:&lt;br /&gt;
&lt;br /&gt;
# It will be easy for users to contribute new data&lt;br /&gt;
# REFTul API makes the application developer friendly. The API will enable developers to write client applications across platforms.&lt;br /&gt;
# We will have a centralized location of information of many books in a breadth of languages.&lt;br /&gt;
# It will be easy to perform complex searches to locate specific books.&lt;br /&gt;
# The feedback feature attracts more engagement/dicussion from users.&lt;br /&gt;
# QR code for each book would help the user to locate its Malayagrandham page&lt;br /&gt;
&lt;br /&gt;
=== Any relevant experience you have ===&lt;br /&gt;
&lt;br /&gt;
I&#039;ve industrial experiencing in building and deploying Ruby on Rails web applications. I also have learned about MARC21/MARCXML formats and ISBN.&lt;br /&gt;
&lt;br /&gt;
=== How you intend to implement your proposal ===&lt;br /&gt;
Technology stack is Ruby on Rails web framework with MySQL backend. We will be using the following Open Source gems and modules :&lt;br /&gt;
&lt;br /&gt;
# devise - User Authorization&lt;br /&gt;
# ruby-marc - Read and Write in MARC Format&lt;br /&gt;
# marc21-utils - MARC Validation&lt;br /&gt;
# ferret - Text Search&lt;br /&gt;
# Jbuilder - DSL to configure JSON API&lt;br /&gt;
# rqrcode - QR code generator&lt;br /&gt;
# Twitter Bootstrap - Front end Framework&lt;br /&gt;
&lt;br /&gt;
=== A rough timeline for your progress with phases ===&lt;br /&gt;
==== Jun 17 - Jun 30 ====&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Resume the development on the existing application I wrote for this project and design the remaining parts of the software.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Jul 1 - Jul 15==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Implement the application logic as per the design and start focusing on API&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== July 16 - Jul 31==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Implement the basic API and get the functionalities working in the back end&lt;br /&gt;
Test the built features and fix bugs for mid term evaluation&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Aug 1 - Aug 20==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Build advanced features such as crowd sourcing support, data export and QR support&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Aug 21 - Sept 5==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Implement basic UI for Task force, Publisher, Contributor and Librarian.&lt;br /&gt;
Focus more on UX, get the minute details working properly.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Sept 5 - Sept 12==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Control the access to the site pragmatically and do a security auditing. &lt;br /&gt;
Polish the interface and all features should be working by now.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Sept 13 - Sept 27 ==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Review code, fix bugs and get ready for final evaluation.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
=== Any other details you feel we should consider ===&lt;br /&gt;
It will be great if we can sync Malayagrandham with Wikisource. We can also link to Public Domain books in Malayagrandham pages.&lt;br /&gt;
&lt;br /&gt;
=== Tell us about something you have created. ===&lt;br /&gt;
# [http://quizgrid.com QuizGrid.com] is a social network I built using Ruby on Rails and MySQL. More details are [http://ershadk.com/blog/2013/01/21/announcing-quizgrid-dot-com/ here]&lt;br /&gt;
# [http://myfest.in Myfest.in] is a college fest aggregator I built using the same technology stack. It&#039;s quite popular in India and it has got thousands of hits in a short span of time.&lt;br /&gt;
# I built a [https://chrome.google.com/webstore/detail/wikimedia-input-method-ex/cealbihienhpnlglmhmmmlbjdcjfjkap chrome extension] for language transliteration using Wikimedia&#039;s jQueryIME library and it won &#039;The most innovative project&#039; award in Wikimedia Dev Camp held at IIM Bangalore&lt;br /&gt;
&lt;br /&gt;
I&#039;ve also some open source contributions, please find them in my [http://github.com/ershad github] profile&lt;br /&gt;
&lt;br /&gt;
=== Have you communicated with a potential mentor? If so, who? ===&lt;br /&gt;
Yes, I&#039;ve communicated with Anivar Aravind.&lt;br /&gt;
&lt;br /&gt;
=== SMC Wiki link of your proposal ===&lt;br /&gt;
http://wiki.smc.org.in/User:Ershad/GSoC2013_Malayalagrandham&lt;/div&gt;</summary>
		<author><name>Ershad</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=User:Ershad/GSoC2013_Malayalagrandham&amp;diff=3601</id>
		<title>User:Ershad/GSoC2013 Malayalagrandham</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=User:Ershad/GSoC2013_Malayalagrandham&amp;diff=3601"/>
		<updated>2013-04-24T14:51:09Z</updated>

		<summary type="html">&lt;p&gt;Ershad: /* Why should we choose you over other applicants? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Google Summer of Code 2013 Proposal for Swathanthra Malalayalam Computing&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Personal Information==&lt;br /&gt;
  Email Address:                    ershad92@gmail.com&lt;br /&gt;
  Telephone:                        +91 8089133362&lt;br /&gt;
  Blog URL:                         http://ershadk.com&lt;br /&gt;
  Freenode IRC Nick:                ershad&lt;br /&gt;
  University and current education: BSc Computer Science, Bharathiyar University&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Why do you want to work with the Swathanthra Malayalam Computing? ===&lt;br /&gt;
Swathanthra Malayalam Computing is contributing much to Indic languages and language computing, it&#039;s great to be a part of it.&lt;br /&gt;
&lt;br /&gt;
=== Do you have any past involvement with the Swathanthra Malayalam Computing or another open source project as a contributor? ===&lt;br /&gt;
Yes. I&#039;ve contributed to Swathanthra Malayalam Computing, MediaWiki and a couple of other open source projects.&lt;br /&gt;
&lt;br /&gt;
=== Did you participate with the past GSoC programs, if so which years, which organizations? ===&lt;br /&gt;
No, I&#039;ve not participated in GSoC programs before.&lt;br /&gt;
&lt;br /&gt;
=== Do you have other obligations between May and August ? Please note that we expect the Summer of Code to be a full time, 40 hour a week commitment ===&lt;br /&gt;
It will be possible for me to work 35-40 hours / Week.&lt;br /&gt;
&lt;br /&gt;
=== Will you continue contributing/ supporting the Swathanthra Malayalam Computing after the GSoC 2013 program, if yes, which area(s), you are interested in? ===&lt;br /&gt;
I&#039;ve been contributing to SMC, I will definitely continue that. My interested areas include Language Computing, SILPA and translation.&lt;br /&gt;
 &lt;br /&gt;
=== Why should we choose you over other applicants? ===&lt;br /&gt;
I&#039;ve been a FOSS enthusiast for years and have been continuously trying to contribute to it. GSoC will be a great platform for me to contribute more.&lt;br /&gt;
&lt;br /&gt;
This proposal is meant for Malayalagrandham Bibliography Data project. I&#039;m planning to do it in Ruby on Rails in which I&#039;m well versed and have more than 1 year of experience. I also have a track record of doing end-to-end hobby projects in Ruby on Rails.&lt;br /&gt;
&lt;br /&gt;
And right the at moment, I&#039;ve done its backend and wrote scripts to import data from old database. It will be easy for me to build upon that.&lt;br /&gt;
&lt;br /&gt;
== Proposal Description ==&lt;br /&gt;
=== An overview of your proposal ===&lt;br /&gt;
Malayalagrandham.com is a web application to store and process bibliography data of books. Currently it has a growing database with information of more than 50K books. The current live application was built a few years before and it lacks  features such as crowd sourcing, RESTFul API, Feedback, Visualization and so on. The proposed project aims at building a more advanced and contributor/developer friendly version of Malayalagrandham Bibliography Data application with the aforementioned features. The new version of Malayalagrandham will be a crowd sourced Internet Book Database. It will have features to export data to various formats such as MARC21 and MARCXML.&lt;br /&gt;
&lt;br /&gt;
The application essentially will have the following interfaces.&lt;br /&gt;
&lt;br /&gt;
1. Interface for the task force&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Task force is a group of people with administrative privileges. These admins should be able to select the right submission from crowd sourced data and they should be able to moderate any the contents in the web application.  They should also be able to visualize existing data.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
2. Interface for contributor&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Any person should be able to become a contributor by signing up using his/her email ID. Contributor should be able to add new bibliography information and post comments/reviews through the feedback system. He should also be able to upload cover photos of books.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
3. Interface for Publisher&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Publishers should be able to add bibliography information of the books they publish. They should also be able to generate QR code that links to specific book&#039;s page.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
4. Interface for Librarian&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Librarians should be able to update the location of the books in Malayalagrandham.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
All the data in Malayalagrandham will be open to Public. But users need special permission (admin privileges) to modify the existing approved data.&lt;br /&gt;
&lt;br /&gt;
=== The need you believe it fulfills ===&lt;br /&gt;
Apart from the bibliographic information it provides, Malayalagrandham would help people to locate books easily. Building a new version this application has the following benefits:&lt;br /&gt;
&lt;br /&gt;
# It will be easy for users to contribute new data&lt;br /&gt;
# REFTul API makes the application developer friendly. The API will enable developers to write client applications across platforms.&lt;br /&gt;
# We will have a centralized location of information of many books in a breadth of languages.&lt;br /&gt;
# It will be easy to perform complex searches to locate specific books.&lt;br /&gt;
# The feedback feature attracts more engagement/dicussion from users.&lt;br /&gt;
# QR code for each book would help the user to locate its Malayagrandham page&lt;br /&gt;
&lt;br /&gt;
=== Any relevant experience you have ===&lt;br /&gt;
&lt;br /&gt;
I&#039;ve industrial experiencing in building and deploying Ruby on Rails web applications. I also have learned about MARC21/MARCXML formats and ISBN.&lt;br /&gt;
&lt;br /&gt;
=== How you intend to implement your proposal ===&lt;br /&gt;
Technology stack is Ruby on Rails web framework with MySQL backend. We will be using the following Open Source gems and modules :&lt;br /&gt;
&lt;br /&gt;
# devise - User Authorization&lt;br /&gt;
# ruby-marc - Read and Write in MARC Format&lt;br /&gt;
# marc21-utils - MARC Validation&lt;br /&gt;
# ferret - Text Search&lt;br /&gt;
# Jbuilder - DSL to configure JSON API&lt;br /&gt;
# rqrcode - QR code generator&lt;br /&gt;
# Twitter Bootstrap - Front end Framework&lt;br /&gt;
&lt;br /&gt;
=== A rough timeline for your progress with phases ===&lt;br /&gt;
==== Jun 17 - Jun 30 ====&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Resume the development on the existing application I wrote for this project and design the remaining parts of the software.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Jul 1 - Jul 15==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Implement the application logic as per the design and start focusing on API&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== July 16 - Jul 31==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Implement the basic API and get the functionalities working in the back end&lt;br /&gt;
Test the built features and fix bugs for mid term evaluation&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Aug 1 - Aug 20==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Build advanced features such as crowd sourcing support, data export and QR support&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Aug 21 - Sept 5==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Implement basic UI for Task force, Publisher, Contributor and Librarian.&lt;br /&gt;
Focus more on UX, get the minute details working properly.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Sept 5 - Sept 12==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Control the access to the site pragmatically and do a security auditing. &lt;br /&gt;
Polish the interface and all features should be working by now.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Sept 13 - Sept 27 ==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Review code, fix bugs and get ready for final evaluation.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
=== Any other details you feel we should consider ===&lt;br /&gt;
It will be great if we can sync Malayagrandham with Wikisource. We can also link to Public Domain books in Malayagrandham pages.&lt;br /&gt;
&lt;br /&gt;
=== Tell us about something you have created. ===&lt;br /&gt;
# [http://quizgrid.com QuizGrid.com] is a social network I built using Ruby on Rails and MySQL. More details are [http://ershadk.com/blog/2013/01/21/announcing-quizgrid-dot-com/ here]&lt;br /&gt;
# [http://myfest.in Myfest.in] is a college fest aggregator I built using the same technology stack. It&#039;s quite popular in India and it has got thousands of hits in a short span of time.&lt;br /&gt;
# I built a [https://chrome.google.com/webstore/detail/wikimedia-input-method-ex/cealbihienhpnlglmhmmmlbjdcjfjkap chrome extension] for language transliteration using Wikimedia&#039;s jQueryIME library and it won &#039;The most innovative project&#039; award in Wikimedia Dev Camp held at IIM Bangalore&lt;br /&gt;
&lt;br /&gt;
I&#039;ve also some open source contributions, please find them in my [http://github.com/ershad github] profile&lt;br /&gt;
&lt;br /&gt;
=== Have you communicated with a potential mentor? If so, who? ===&lt;br /&gt;
Yes, I&#039;ve communicated with Anivar Aravind.&lt;br /&gt;
&lt;br /&gt;
=== SMC Wiki link of your proposal ===&lt;br /&gt;
http://wiki.smc.org.in/User:Ershad/GSoC2013_Malayalagrandham&lt;/div&gt;</summary>
		<author><name>Ershad</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=User:Ershad/GSoC2013_Malayalagrandham&amp;diff=3600</id>
		<title>User:Ershad/GSoC2013 Malayalagrandham</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=User:Ershad/GSoC2013_Malayalagrandham&amp;diff=3600"/>
		<updated>2013-04-24T14:49:36Z</updated>

		<summary type="html">&lt;p&gt;Ershad: /* Tell us about something you have created. */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Google Summer of Code 2013 Proposal for Swathanthra Malalayalam Computing&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Personal Information==&lt;br /&gt;
  Email Address:                    ershad92@gmail.com&lt;br /&gt;
  Telephone:                        +91 8089133362&lt;br /&gt;
  Blog URL:                         http://ershadk.com&lt;br /&gt;
  Freenode IRC Nick:                ershad&lt;br /&gt;
  University and current education: BSc Computer Science, Bharathiyar University&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Why do you want to work with the Swathanthra Malayalam Computing? ===&lt;br /&gt;
Swathanthra Malayalam Computing is contributing much to Indic languages and language computing, it&#039;s great to be a part of it.&lt;br /&gt;
&lt;br /&gt;
=== Do you have any past involvement with the Swathanthra Malayalam Computing or another open source project as a contributor? ===&lt;br /&gt;
Yes. I&#039;ve contributed to Swathanthra Malayalam Computing, MediaWiki and a couple of other open source projects.&lt;br /&gt;
&lt;br /&gt;
=== Did you participate with the past GSoC programs, if so which years, which organizations? ===&lt;br /&gt;
No, I&#039;ve not participated in GSoC programs before.&lt;br /&gt;
&lt;br /&gt;
=== Do you have other obligations between May and August ? Please note that we expect the Summer of Code to be a full time, 40 hour a week commitment ===&lt;br /&gt;
It will be possible for me to work 35-40 hours / Week.&lt;br /&gt;
&lt;br /&gt;
=== Will you continue contributing/ supporting the Swathanthra Malayalam Computing after the GSoC 2013 program, if yes, which area(s), you are interested in? ===&lt;br /&gt;
I&#039;ve been contributing to SMC, I will definitely continue that. My interested areas include Language Computing, SILPA and translation.&lt;br /&gt;
 &lt;br /&gt;
=== Why should we choose you over other applicants? ===&lt;br /&gt;
I&#039;ve been a FOSS enthusiast for years and have been continuously trying for ways to contribute to it. GSoC will be a great platform for me to contribute more.&lt;br /&gt;
&lt;br /&gt;
This proposal is meant for Malayalagrandham Bibliography Data project. I&#039;m planning to do it in Ruby on Rails in which I&#039;m well versed and have more than 1 year of experience. I also have a track record of doing end-to-end hobby projects in Ruby on Rails.&lt;br /&gt;
&lt;br /&gt;
And right the at moment, I&#039;ve done its backend and wrote scripts to import data from old database. It will be easy for me to build upon that.&lt;br /&gt;
&lt;br /&gt;
== Proposal Description ==&lt;br /&gt;
=== An overview of your proposal ===&lt;br /&gt;
Malayalagrandham.com is a web application to store and process bibliography data of books. Currently it has a growing database with information of more than 50K books. The current live application was built a few years before and it lacks  features such as crowd sourcing, RESTFul API, Feedback, Visualization and so on. The proposed project aims at building a more advanced and contributor/developer friendly version of Malayalagrandham Bibliography Data application with the aforementioned features. The new version of Malayalagrandham will be a crowd sourced Internet Book Database. It will have features to export data to various formats such as MARC21 and MARCXML.&lt;br /&gt;
&lt;br /&gt;
The application essentially will have the following interfaces.&lt;br /&gt;
&lt;br /&gt;
1. Interface for the task force&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Task force is a group of people with administrative privileges. These admins should be able to select the right submission from crowd sourced data and they should be able to moderate any the contents in the web application.  They should also be able to visualize existing data.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
2. Interface for contributor&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Any person should be able to become a contributor by signing up using his/her email ID. Contributor should be able to add new bibliography information and post comments/reviews through the feedback system. He should also be able to upload cover photos of books.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
3. Interface for Publisher&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Publishers should be able to add bibliography information of the books they publish. They should also be able to generate QR code that links to specific book&#039;s page.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
4. Interface for Librarian&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Librarians should be able to update the location of the books in Malayalagrandham.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
All the data in Malayalagrandham will be open to Public. But users need special permission (admin privileges) to modify the existing approved data.&lt;br /&gt;
&lt;br /&gt;
=== The need you believe it fulfills ===&lt;br /&gt;
Apart from the bibliographic information it provides, Malayalagrandham would help people to locate books easily. Building a new version this application has the following benefits:&lt;br /&gt;
&lt;br /&gt;
# It will be easy for users to contribute new data&lt;br /&gt;
# REFTul API makes the application developer friendly. The API will enable developers to write client applications across platforms.&lt;br /&gt;
# We will have a centralized location of information of many books in a breadth of languages.&lt;br /&gt;
# It will be easy to perform complex searches to locate specific books.&lt;br /&gt;
# The feedback feature attracts more engagement/dicussion from users.&lt;br /&gt;
# QR code for each book would help the user to locate its Malayagrandham page&lt;br /&gt;
&lt;br /&gt;
=== Any relevant experience you have ===&lt;br /&gt;
&lt;br /&gt;
I&#039;ve industrial experiencing in building and deploying Ruby on Rails web applications. I also have learned about MARC21/MARCXML formats and ISBN.&lt;br /&gt;
&lt;br /&gt;
=== How you intend to implement your proposal ===&lt;br /&gt;
Technology stack is Ruby on Rails web framework with MySQL backend. We will be using the following Open Source gems and modules :&lt;br /&gt;
&lt;br /&gt;
# devise - User Authorization&lt;br /&gt;
# ruby-marc - Read and Write in MARC Format&lt;br /&gt;
# marc21-utils - MARC Validation&lt;br /&gt;
# ferret - Text Search&lt;br /&gt;
# Jbuilder - DSL to configure JSON API&lt;br /&gt;
# rqrcode - QR code generator&lt;br /&gt;
# Twitter Bootstrap - Front end Framework&lt;br /&gt;
&lt;br /&gt;
=== A rough timeline for your progress with phases ===&lt;br /&gt;
==== Jun 17 - Jun 30 ====&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Resume the development on the existing application I wrote for this project and design the remaining parts of the software.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Jul 1 - Jul 15==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Implement the application logic as per the design and start focusing on API&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== July 16 - Jul 31==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Implement the basic API and get the functionalities working in the back end&lt;br /&gt;
Test the built features and fix bugs for mid term evaluation&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Aug 1 - Aug 20==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Build advanced features such as crowd sourcing support, data export and QR support&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Aug 21 - Sept 5==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Implement basic UI for Task force, Publisher, Contributor and Librarian.&lt;br /&gt;
Focus more on UX, get the minute details working properly.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Sept 5 - Sept 12==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Control the access to the site pragmatically and do a security auditing. &lt;br /&gt;
Polish the interface and all features should be working by now.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Sept 13 - Sept 27 ==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Review code, fix bugs and get ready for final evaluation.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
=== Any other details you feel we should consider ===&lt;br /&gt;
It will be great if we can sync Malayagrandham with Wikisource. We can also link to Public Domain books in Malayagrandham pages.&lt;br /&gt;
&lt;br /&gt;
=== Tell us about something you have created. ===&lt;br /&gt;
# [http://quizgrid.com QuizGrid.com] is a social network I built using Ruby on Rails and MySQL. More details are [http://ershadk.com/blog/2013/01/21/announcing-quizgrid-dot-com/ here]&lt;br /&gt;
# [http://myfest.in Myfest.in] is a college fest aggregator I built using the same technology stack. It&#039;s quite popular in India and it has got thousands of hits in a short span of time.&lt;br /&gt;
# I built a [https://chrome.google.com/webstore/detail/wikimedia-input-method-ex/cealbihienhpnlglmhmmmlbjdcjfjkap chrome extension] for language transliteration using Wikimedia&#039;s jQueryIME library and it won &#039;The most innovative project&#039; award in Wikimedia Dev Camp held at IIM Bangalore&lt;br /&gt;
&lt;br /&gt;
I&#039;ve also some open source contributions, please find them in my [http://github.com/ershad github] profile&lt;br /&gt;
&lt;br /&gt;
=== Have you communicated with a potential mentor? If so, who? ===&lt;br /&gt;
Yes, I&#039;ve communicated with Anivar Aravind.&lt;br /&gt;
&lt;br /&gt;
=== SMC Wiki link of your proposal ===&lt;br /&gt;
http://wiki.smc.org.in/User:Ershad/GSoC2013_Malayalagrandham&lt;/div&gt;</summary>
		<author><name>Ershad</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=User:Ershad/GSoC2013_Malayalagrandham&amp;diff=3599</id>
		<title>User:Ershad/GSoC2013 Malayalagrandham</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=User:Ershad/GSoC2013_Malayalagrandham&amp;diff=3599"/>
		<updated>2013-04-24T14:48:50Z</updated>

		<summary type="html">&lt;p&gt;Ershad: /* How you intend to implement your proposal */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Google Summer of Code 2013 Proposal for Swathanthra Malalayalam Computing&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Personal Information==&lt;br /&gt;
  Email Address:                    ershad92@gmail.com&lt;br /&gt;
  Telephone:                        +91 8089133362&lt;br /&gt;
  Blog URL:                         http://ershadk.com&lt;br /&gt;
  Freenode IRC Nick:                ershad&lt;br /&gt;
  University and current education: BSc Computer Science, Bharathiyar University&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Why do you want to work with the Swathanthra Malayalam Computing? ===&lt;br /&gt;
Swathanthra Malayalam Computing is contributing much to Indic languages and language computing, it&#039;s great to be a part of it.&lt;br /&gt;
&lt;br /&gt;
=== Do you have any past involvement with the Swathanthra Malayalam Computing or another open source project as a contributor? ===&lt;br /&gt;
Yes. I&#039;ve contributed to Swathanthra Malayalam Computing, MediaWiki and a couple of other open source projects.&lt;br /&gt;
&lt;br /&gt;
=== Did you participate with the past GSoC programs, if so which years, which organizations? ===&lt;br /&gt;
No, I&#039;ve not participated in GSoC programs before.&lt;br /&gt;
&lt;br /&gt;
=== Do you have other obligations between May and August ? Please note that we expect the Summer of Code to be a full time, 40 hour a week commitment ===&lt;br /&gt;
It will be possible for me to work 35-40 hours / Week.&lt;br /&gt;
&lt;br /&gt;
=== Will you continue contributing/ supporting the Swathanthra Malayalam Computing after the GSoC 2013 program, if yes, which area(s), you are interested in? ===&lt;br /&gt;
I&#039;ve been contributing to SMC, I will definitely continue that. My interested areas include Language Computing, SILPA and translation.&lt;br /&gt;
 &lt;br /&gt;
=== Why should we choose you over other applicants? ===&lt;br /&gt;
I&#039;ve been a FOSS enthusiast for years and have been continuously trying for ways to contribute to it. GSoC will be a great platform for me to contribute more.&lt;br /&gt;
&lt;br /&gt;
This proposal is meant for Malayalagrandham Bibliography Data project. I&#039;m planning to do it in Ruby on Rails in which I&#039;m well versed and have more than 1 year of experience. I also have a track record of doing end-to-end hobby projects in Ruby on Rails.&lt;br /&gt;
&lt;br /&gt;
And right the at moment, I&#039;ve done its backend and wrote scripts to import data from old database. It will be easy for me to build upon that.&lt;br /&gt;
&lt;br /&gt;
== Proposal Description ==&lt;br /&gt;
=== An overview of your proposal ===&lt;br /&gt;
Malayalagrandham.com is a web application to store and process bibliography data of books. Currently it has a growing database with information of more than 50K books. The current live application was built a few years before and it lacks  features such as crowd sourcing, RESTFul API, Feedback, Visualization and so on. The proposed project aims at building a more advanced and contributor/developer friendly version of Malayalagrandham Bibliography Data application with the aforementioned features. The new version of Malayalagrandham will be a crowd sourced Internet Book Database. It will have features to export data to various formats such as MARC21 and MARCXML.&lt;br /&gt;
&lt;br /&gt;
The application essentially will have the following interfaces.&lt;br /&gt;
&lt;br /&gt;
1. Interface for the task force&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Task force is a group of people with administrative privileges. These admins should be able to select the right submission from crowd sourced data and they should be able to moderate any the contents in the web application.  They should also be able to visualize existing data.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
2. Interface for contributor&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Any person should be able to become a contributor by signing up using his/her email ID. Contributor should be able to add new bibliography information and post comments/reviews through the feedback system. He should also be able to upload cover photos of books.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
3. Interface for Publisher&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Publishers should be able to add bibliography information of the books they publish. They should also be able to generate QR code that links to specific book&#039;s page.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
4. Interface for Librarian&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Librarians should be able to update the location of the books in Malayalagrandham.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
All the data in Malayalagrandham will be open to Public. But users need special permission (admin privileges) to modify the existing approved data.&lt;br /&gt;
&lt;br /&gt;
=== The need you believe it fulfills ===&lt;br /&gt;
Apart from the bibliographic information it provides, Malayalagrandham would help people to locate books easily. Building a new version this application has the following benefits:&lt;br /&gt;
&lt;br /&gt;
# It will be easy for users to contribute new data&lt;br /&gt;
# REFTul API makes the application developer friendly. The API will enable developers to write client applications across platforms.&lt;br /&gt;
# We will have a centralized location of information of many books in a breadth of languages.&lt;br /&gt;
# It will be easy to perform complex searches to locate specific books.&lt;br /&gt;
# The feedback feature attracts more engagement/dicussion from users.&lt;br /&gt;
# QR code for each book would help the user to locate its Malayagrandham page&lt;br /&gt;
&lt;br /&gt;
=== Any relevant experience you have ===&lt;br /&gt;
&lt;br /&gt;
I&#039;ve industrial experiencing in building and deploying Ruby on Rails web applications. I also have learned about MARC21/MARCXML formats and ISBN.&lt;br /&gt;
&lt;br /&gt;
=== How you intend to implement your proposal ===&lt;br /&gt;
Technology stack is Ruby on Rails web framework with MySQL backend. We will be using the following Open Source gems and modules :&lt;br /&gt;
&lt;br /&gt;
# devise - User Authorization&lt;br /&gt;
# ruby-marc - Read and Write in MARC Format&lt;br /&gt;
# marc21-utils - MARC Validation&lt;br /&gt;
# ferret - Text Search&lt;br /&gt;
# Jbuilder - DSL to configure JSON API&lt;br /&gt;
# rqrcode - QR code generator&lt;br /&gt;
# Twitter Bootstrap - Front end Framework&lt;br /&gt;
&lt;br /&gt;
=== A rough timeline for your progress with phases ===&lt;br /&gt;
==== Jun 17 - Jun 30 ====&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Resume the development on the existing application I wrote for this project and design the remaining parts of the software.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Jul 1 - Jul 15==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Implement the application logic as per the design and start focusing on API&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== July 16 - Jul 31==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Implement the basic API and get the functionalities working in the back end&lt;br /&gt;
Test the built features and fix bugs for mid term evaluation&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Aug 1 - Aug 20==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Build advanced features such as crowd sourcing support, data export and QR support&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Aug 21 - Sept 5==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Implement basic UI for Task force, Publisher, Contributor and Librarian.&lt;br /&gt;
Focus more on UX, get the minute details working properly.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Sept 5 - Sept 12==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Control the access to the site pragmatically and do a security auditing. &lt;br /&gt;
Polish the interface and all features should be working by now.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Sept 13 - Sept 27 ==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Review code, fix bugs and get ready for final evaluation.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
=== Any other details you feel we should consider ===&lt;br /&gt;
It will be great if we can sync Malayagrandham with Wikisource. We can also link to Public Domain books in Malayagrandham pages.&lt;br /&gt;
&lt;br /&gt;
=== Tell us about something you have created. ===&lt;br /&gt;
# [http://quizgrid.com QuizGrid.com] is a social network I built using Ruby on Rails and MySQL. More details are [http://ershadk.com/blog/2013/01/21/announcing-quizgrid-dot-com/ here]&lt;br /&gt;
# [http://myfest.in Myfest.in] is a college fest aggregator I built using the same technology stack. It&#039;s quite popular in India and it has got thousands of hits in a short span of time.&lt;br /&gt;
# I built a [https://chrome.google.com/webstore/detail/wikimedia-input-method-ex/cealbihienhpnlglmhmmmlbjdcjfjkap chrome extension] for language transliteration using Wikimedia&#039;s jQueryIME library and it won &#039;The most innovative project&#039; award in Wikimedia Dev Camp held at IIM bangalore&lt;br /&gt;
&lt;br /&gt;
I&#039;ve also some open source contributions, please find them in my [http://github.com/ershad github] profile&lt;br /&gt;
&lt;br /&gt;
=== Have you communicated with a potential mentor? If so, who? ===&lt;br /&gt;
Yes, I&#039;ve communicated with Anivar Aravind.&lt;br /&gt;
&lt;br /&gt;
=== SMC Wiki link of your proposal ===&lt;br /&gt;
http://wiki.smc.org.in/User:Ershad/GSoC2013_Malayalagrandham&lt;/div&gt;</summary>
		<author><name>Ershad</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=User:Ershad/GSoC2013_Malayalagrandham&amp;diff=3598</id>
		<title>User:Ershad/GSoC2013 Malayalagrandham</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=User:Ershad/GSoC2013_Malayalagrandham&amp;diff=3598"/>
		<updated>2013-04-24T14:39:35Z</updated>

		<summary type="html">&lt;p&gt;Ershad: /* SMC Wiki link of your proposal */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Google Summer of Code 2013 Proposal for Swathanthra Malalayalam Computing&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Personal Information==&lt;br /&gt;
  Email Address:                    ershad92@gmail.com&lt;br /&gt;
  Telephone:                        +91 8089133362&lt;br /&gt;
  Blog URL:                         http://ershadk.com&lt;br /&gt;
  Freenode IRC Nick:                ershad&lt;br /&gt;
  University and current education: BSc Computer Science, Bharathiyar University&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Why do you want to work with the Swathanthra Malayalam Computing? ===&lt;br /&gt;
Swathanthra Malayalam Computing is contributing much to Indic languages and language computing, it&#039;s great to be a part of it.&lt;br /&gt;
&lt;br /&gt;
=== Do you have any past involvement with the Swathanthra Malayalam Computing or another open source project as a contributor? ===&lt;br /&gt;
Yes. I&#039;ve contributed to Swathanthra Malayalam Computing, MediaWiki and a couple of other open source projects.&lt;br /&gt;
&lt;br /&gt;
=== Did you participate with the past GSoC programs, if so which years, which organizations? ===&lt;br /&gt;
No, I&#039;ve not participated in GSoC programs before.&lt;br /&gt;
&lt;br /&gt;
=== Do you have other obligations between May and August ? Please note that we expect the Summer of Code to be a full time, 40 hour a week commitment ===&lt;br /&gt;
It will be possible for me to work 35-40 hours / Week.&lt;br /&gt;
&lt;br /&gt;
=== Will you continue contributing/ supporting the Swathanthra Malayalam Computing after the GSoC 2013 program, if yes, which area(s), you are interested in? ===&lt;br /&gt;
I&#039;ve been contributing to SMC, I will definitely continue that. My interested areas include Language Computing, SILPA and translation.&lt;br /&gt;
 &lt;br /&gt;
=== Why should we choose you over other applicants? ===&lt;br /&gt;
I&#039;ve been a FOSS enthusiast for years and have been continuously trying for ways to contribute to it. GSoC will be a great platform for me to contribute more.&lt;br /&gt;
&lt;br /&gt;
This proposal is meant for Malayalagrandham Bibliography Data project. I&#039;m planning to do it in Ruby on Rails in which I&#039;m well versed and have more than 1 year of experience. I also have a track record of doing end-to-end hobby projects in Ruby on Rails.&lt;br /&gt;
&lt;br /&gt;
And right the at moment, I&#039;ve done its backend and wrote scripts to import data from old database. It will be easy for me to build upon that.&lt;br /&gt;
&lt;br /&gt;
== Proposal Description ==&lt;br /&gt;
=== An overview of your proposal ===&lt;br /&gt;
Malayalagrandham.com is a web application to store and process bibliography data of books. Currently it has a growing database with information of more than 50K books. The current live application was built a few years before and it lacks  features such as crowd sourcing, RESTFul API, Feedback, Visualization and so on. The proposed project aims at building a more advanced and contributor/developer friendly version of Malayalagrandham Bibliography Data application with the aforementioned features. The new version of Malayalagrandham will be a crowd sourced Internet Book Database. It will have features to export data to various formats such as MARC21 and MARCXML.&lt;br /&gt;
&lt;br /&gt;
The application essentially will have the following interfaces.&lt;br /&gt;
&lt;br /&gt;
1. Interface for the task force&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Task force is a group of people with administrative privileges. These admins should be able to select the right submission from crowd sourced data and they should be able to moderate any the contents in the web application.  They should also be able to visualize existing data.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
2. Interface for contributor&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Any person should be able to become a contributor by signing up using his/her email ID. Contributor should be able to add new bibliography information and post comments/reviews through the feedback system. He should also be able to upload cover photos of books.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
3. Interface for Publisher&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Publishers should be able to add bibliography information of the books they publish. They should also be able to generate QR code that links to specific book&#039;s page.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
4. Interface for Librarian&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Librarians should be able to update the location of the books in Malayalagrandham.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
All the data in Malayalagrandham will be open to Public. But users need special permission (admin privileges) to modify the existing approved data.&lt;br /&gt;
&lt;br /&gt;
=== The need you believe it fulfills ===&lt;br /&gt;
Apart from the bibliographic information it provides, Malayalagrandham would help people to locate books easily. Building a new version this application has the following benefits:&lt;br /&gt;
&lt;br /&gt;
# It will be easy for users to contribute new data&lt;br /&gt;
# REFTul API makes the application developer friendly. The API will enable developers to write client applications across platforms.&lt;br /&gt;
# We will have a centralized location of information of many books in a breadth of languages.&lt;br /&gt;
# It will be easy to perform complex searches to locate specific books.&lt;br /&gt;
# The feedback feature attracts more engagement/dicussion from users.&lt;br /&gt;
# QR code for each book would help the user to locate its Malayagrandham page&lt;br /&gt;
&lt;br /&gt;
=== Any relevant experience you have ===&lt;br /&gt;
&lt;br /&gt;
I&#039;ve industrial experiencing in building and deploying Ruby on Rails web applications. I also have learned about MARC21/MARCXML formats and ISBN.&lt;br /&gt;
&lt;br /&gt;
=== How you intend to implement your proposal ===&lt;br /&gt;
Our technology stack is Ruby on Rails web framework with MySQL backend. We will be using the following Open Source gems and modules :&lt;br /&gt;
&lt;br /&gt;
# devise - User Authorization&lt;br /&gt;
# ruby-marc - Read and Write in MARC Format&lt;br /&gt;
# marc21-utils - MARC Validation&lt;br /&gt;
# ferret - Text Search&lt;br /&gt;
# Jbuilder - DSL to configure JSON API&lt;br /&gt;
# rqrcode - QR code generator&lt;br /&gt;
# Twitter Bootstrap - Front end Framework&lt;br /&gt;
&lt;br /&gt;
=== A rough timeline for your progress with phases ===&lt;br /&gt;
==== Jun 17 - Jun 30 ====&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Resume the development on the existing application I wrote for this project and design the remaining parts of the software.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Jul 1 - Jul 15==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Implement the application logic as per the design and start focusing on API&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== July 16 - Jul 31==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Implement the basic API and get the functionalities working in the back end&lt;br /&gt;
Test the built features and fix bugs for mid term evaluation&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Aug 1 - Aug 20==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Build advanced features such as crowd sourcing support, data export and QR support&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Aug 21 - Sept 5==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Implement basic UI for Task force, Publisher, Contributor and Librarian.&lt;br /&gt;
Focus more on UX, get the minute details working properly.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Sept 5 - Sept 12==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Control the access to the site pragmatically and do a security auditing. &lt;br /&gt;
Polish the interface and all features should be working by now.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Sept 13 - Sept 27 ==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Review code, fix bugs and get ready for final evaluation.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
=== Any other details you feel we should consider ===&lt;br /&gt;
It will be great if we can sync Malayagrandham with Wikisource. We can also link to Public Domain books in Malayagrandham pages.&lt;br /&gt;
&lt;br /&gt;
=== Tell us about something you have created. ===&lt;br /&gt;
# [http://quizgrid.com QuizGrid.com] is a social network I built using Ruby on Rails and MySQL. More details are [http://ershadk.com/blog/2013/01/21/announcing-quizgrid-dot-com/ here]&lt;br /&gt;
# [http://myfest.in Myfest.in] is a college fest aggregator I built using the same technology stack. It&#039;s quite popular in India and it has got thousands of hits in a short span of time.&lt;br /&gt;
# I built a [https://chrome.google.com/webstore/detail/wikimedia-input-method-ex/cealbihienhpnlglmhmmmlbjdcjfjkap chrome extension] for language transliteration using Wikimedia&#039;s jQueryIME library and it won &#039;The most innovative project&#039; award in Wikimedia Dev Camp held at IIM bangalore&lt;br /&gt;
&lt;br /&gt;
I&#039;ve also some open source contributions, please find them in my [http://github.com/ershad github] profile&lt;br /&gt;
&lt;br /&gt;
=== Have you communicated with a potential mentor? If so, who? ===&lt;br /&gt;
Yes, I&#039;ve communicated with Anivar Aravind.&lt;br /&gt;
&lt;br /&gt;
=== SMC Wiki link of your proposal ===&lt;br /&gt;
http://wiki.smc.org.in/User:Ershad/GSoC2013_Malayalagrandham&lt;/div&gt;</summary>
		<author><name>Ershad</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=User:Ershad/GSoC2013_Malayalagrandham&amp;diff=3597</id>
		<title>User:Ershad/GSoC2013 Malayalagrandham</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=User:Ershad/GSoC2013_Malayalagrandham&amp;diff=3597"/>
		<updated>2013-04-24T14:38:54Z</updated>

		<summary type="html">&lt;p&gt;Ershad: /* Have you communicated with a potential mentor? If so, who? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Google Summer of Code 2013 Proposal for Swathanthra Malalayalam Computing&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Personal Information==&lt;br /&gt;
  Email Address:                    ershad92@gmail.com&lt;br /&gt;
  Telephone:                        +91 8089133362&lt;br /&gt;
  Blog URL:                         http://ershadk.com&lt;br /&gt;
  Freenode IRC Nick:                ershad&lt;br /&gt;
  University and current education: BSc Computer Science, Bharathiyar University&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Why do you want to work with the Swathanthra Malayalam Computing? ===&lt;br /&gt;
Swathanthra Malayalam Computing is contributing much to Indic languages and language computing, it&#039;s great to be a part of it.&lt;br /&gt;
&lt;br /&gt;
=== Do you have any past involvement with the Swathanthra Malayalam Computing or another open source project as a contributor? ===&lt;br /&gt;
Yes. I&#039;ve contributed to Swathanthra Malayalam Computing, MediaWiki and a couple of other open source projects.&lt;br /&gt;
&lt;br /&gt;
=== Did you participate with the past GSoC programs, if so which years, which organizations? ===&lt;br /&gt;
No, I&#039;ve not participated in GSoC programs before.&lt;br /&gt;
&lt;br /&gt;
=== Do you have other obligations between May and August ? Please note that we expect the Summer of Code to be a full time, 40 hour a week commitment ===&lt;br /&gt;
It will be possible for me to work 35-40 hours / Week.&lt;br /&gt;
&lt;br /&gt;
=== Will you continue contributing/ supporting the Swathanthra Malayalam Computing after the GSoC 2013 program, if yes, which area(s), you are interested in? ===&lt;br /&gt;
I&#039;ve been contributing to SMC, I will definitely continue that. My interested areas include Language Computing, SILPA and translation.&lt;br /&gt;
 &lt;br /&gt;
=== Why should we choose you over other applicants? ===&lt;br /&gt;
I&#039;ve been a FOSS enthusiast for years and have been continuously trying for ways to contribute to it. GSoC will be a great platform for me to contribute more.&lt;br /&gt;
&lt;br /&gt;
This proposal is meant for Malayalagrandham Bibliography Data project. I&#039;m planning to do it in Ruby on Rails in which I&#039;m well versed and have more than 1 year of experience. I also have a track record of doing end-to-end hobby projects in Ruby on Rails.&lt;br /&gt;
&lt;br /&gt;
And right the at moment, I&#039;ve done its backend and wrote scripts to import data from old database. It will be easy for me to build upon that.&lt;br /&gt;
&lt;br /&gt;
== Proposal Description ==&lt;br /&gt;
=== An overview of your proposal ===&lt;br /&gt;
Malayalagrandham.com is a web application to store and process bibliography data of books. Currently it has a growing database with information of more than 50K books. The current live application was built a few years before and it lacks  features such as crowd sourcing, RESTFul API, Feedback, Visualization and so on. The proposed project aims at building a more advanced and contributor/developer friendly version of Malayalagrandham Bibliography Data application with the aforementioned features. The new version of Malayalagrandham will be a crowd sourced Internet Book Database. It will have features to export data to various formats such as MARC21 and MARCXML.&lt;br /&gt;
&lt;br /&gt;
The application essentially will have the following interfaces.&lt;br /&gt;
&lt;br /&gt;
1. Interface for the task force&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Task force is a group of people with administrative privileges. These admins should be able to select the right submission from crowd sourced data and they should be able to moderate any the contents in the web application.  They should also be able to visualize existing data.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
2. Interface for contributor&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Any person should be able to become a contributor by signing up using his/her email ID. Contributor should be able to add new bibliography information and post comments/reviews through the feedback system. He should also be able to upload cover photos of books.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
3. Interface for Publisher&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Publishers should be able to add bibliography information of the books they publish. They should also be able to generate QR code that links to specific book&#039;s page.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
4. Interface for Librarian&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Librarians should be able to update the location of the books in Malayalagrandham.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
All the data in Malayalagrandham will be open to Public. But users need special permission (admin privileges) to modify the existing approved data.&lt;br /&gt;
&lt;br /&gt;
=== The need you believe it fulfills ===&lt;br /&gt;
Apart from the bibliographic information it provides, Malayalagrandham would help people to locate books easily. Building a new version this application has the following benefits:&lt;br /&gt;
&lt;br /&gt;
# It will be easy for users to contribute new data&lt;br /&gt;
# REFTul API makes the application developer friendly. The API will enable developers to write client applications across platforms.&lt;br /&gt;
# We will have a centralized location of information of many books in a breadth of languages.&lt;br /&gt;
# It will be easy to perform complex searches to locate specific books.&lt;br /&gt;
# The feedback feature attracts more engagement/dicussion from users.&lt;br /&gt;
# QR code for each book would help the user to locate its Malayagrandham page&lt;br /&gt;
&lt;br /&gt;
=== Any relevant experience you have ===&lt;br /&gt;
&lt;br /&gt;
I&#039;ve industrial experiencing in building and deploying Ruby on Rails web applications. I also have learned about MARC21/MARCXML formats and ISBN.&lt;br /&gt;
&lt;br /&gt;
=== How you intend to implement your proposal ===&lt;br /&gt;
Our technology stack is Ruby on Rails web framework with MySQL backend. We will be using the following Open Source gems and modules :&lt;br /&gt;
&lt;br /&gt;
# devise - User Authorization&lt;br /&gt;
# ruby-marc - Read and Write in MARC Format&lt;br /&gt;
# marc21-utils - MARC Validation&lt;br /&gt;
# ferret - Text Search&lt;br /&gt;
# Jbuilder - DSL to configure JSON API&lt;br /&gt;
# rqrcode - QR code generator&lt;br /&gt;
# Twitter Bootstrap - Front end Framework&lt;br /&gt;
&lt;br /&gt;
=== A rough timeline for your progress with phases ===&lt;br /&gt;
==== Jun 17 - Jun 30 ====&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Resume the development on the existing application I wrote for this project and design the remaining parts of the software.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Jul 1 - Jul 15==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Implement the application logic as per the design and start focusing on API&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== July 16 - Jul 31==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Implement the basic API and get the functionalities working in the back end&lt;br /&gt;
Test the built features and fix bugs for mid term evaluation&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Aug 1 - Aug 20==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Build advanced features such as crowd sourcing support, data export and QR support&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Aug 21 - Sept 5==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Implement basic UI for Task force, Publisher, Contributor and Librarian.&lt;br /&gt;
Focus more on UX, get the minute details working properly.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Sept 5 - Sept 12==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Control the access to the site pragmatically and do a security auditing. &lt;br /&gt;
Polish the interface and all features should be working by now.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Sept 13 - Sept 27 ==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Review code, fix bugs and get ready for final evaluation.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
=== Any other details you feel we should consider ===&lt;br /&gt;
It will be great if we can sync Malayagrandham with Wikisource. We can also link to Public Domain books in Malayagrandham pages.&lt;br /&gt;
&lt;br /&gt;
=== Tell us about something you have created. ===&lt;br /&gt;
# [http://quizgrid.com QuizGrid.com] is a social network I built using Ruby on Rails and MySQL. More details are [http://ershadk.com/blog/2013/01/21/announcing-quizgrid-dot-com/ here]&lt;br /&gt;
# [http://myfest.in Myfest.in] is a college fest aggregator I built using the same technology stack. It&#039;s quite popular in India and it has got thousands of hits in a short span of time.&lt;br /&gt;
# I built a [https://chrome.google.com/webstore/detail/wikimedia-input-method-ex/cealbihienhpnlglmhmmmlbjdcjfjkap chrome extension] for language transliteration using Wikimedia&#039;s jQueryIME library and it won &#039;The most innovative project&#039; award in Wikimedia Dev Camp held at IIM bangalore&lt;br /&gt;
&lt;br /&gt;
I&#039;ve also some open source contributions, please find them in my [http://github.com/ershad github] profile&lt;br /&gt;
&lt;br /&gt;
=== Have you communicated with a potential mentor? If so, who? ===&lt;br /&gt;
Yes, I&#039;ve communicated with Anivar Aravind.&lt;br /&gt;
&lt;br /&gt;
=== SMC Wiki link of your proposal ===&lt;/div&gt;</summary>
		<author><name>Ershad</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=User:Ershad/GSoC2013_Malayalagrandham&amp;diff=3596</id>
		<title>User:Ershad/GSoC2013 Malayalagrandham</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=User:Ershad/GSoC2013_Malayalagrandham&amp;diff=3596"/>
		<updated>2013-04-24T14:37:10Z</updated>

		<summary type="html">&lt;p&gt;Ershad: /* Tell us about something you have created. */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Google Summer of Code 2013 Proposal for Swathanthra Malalayalam Computing&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Personal Information==&lt;br /&gt;
  Email Address:                    ershad92@gmail.com&lt;br /&gt;
  Telephone:                        +91 8089133362&lt;br /&gt;
  Blog URL:                         http://ershadk.com&lt;br /&gt;
  Freenode IRC Nick:                ershad&lt;br /&gt;
  University and current education: BSc Computer Science, Bharathiyar University&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Why do you want to work with the Swathanthra Malayalam Computing? ===&lt;br /&gt;
Swathanthra Malayalam Computing is contributing much to Indic languages and language computing, it&#039;s great to be a part of it.&lt;br /&gt;
&lt;br /&gt;
=== Do you have any past involvement with the Swathanthra Malayalam Computing or another open source project as a contributor? ===&lt;br /&gt;
Yes. I&#039;ve contributed to Swathanthra Malayalam Computing, MediaWiki and a couple of other open source projects.&lt;br /&gt;
&lt;br /&gt;
=== Did you participate with the past GSoC programs, if so which years, which organizations? ===&lt;br /&gt;
No, I&#039;ve not participated in GSoC programs before.&lt;br /&gt;
&lt;br /&gt;
=== Do you have other obligations between May and August ? Please note that we expect the Summer of Code to be a full time, 40 hour a week commitment ===&lt;br /&gt;
It will be possible for me to work 35-40 hours / Week.&lt;br /&gt;
&lt;br /&gt;
=== Will you continue contributing/ supporting the Swathanthra Malayalam Computing after the GSoC 2013 program, if yes, which area(s), you are interested in? ===&lt;br /&gt;
I&#039;ve been contributing to SMC, I will definitely continue that. My interested areas include Language Computing, SILPA and translation.&lt;br /&gt;
 &lt;br /&gt;
=== Why should we choose you over other applicants? ===&lt;br /&gt;
I&#039;ve been a FOSS enthusiast for years and have been continuously trying for ways to contribute to it. GSoC will be a great platform for me to contribute more.&lt;br /&gt;
&lt;br /&gt;
This proposal is meant for Malayalagrandham Bibliography Data project. I&#039;m planning to do it in Ruby on Rails in which I&#039;m well versed and have more than 1 year of experience. I also have a track record of doing end-to-end hobby projects in Ruby on Rails.&lt;br /&gt;
&lt;br /&gt;
And right the at moment, I&#039;ve done its backend and wrote scripts to import data from old database. It will be easy for me to build upon that.&lt;br /&gt;
&lt;br /&gt;
== Proposal Description ==&lt;br /&gt;
=== An overview of your proposal ===&lt;br /&gt;
Malayalagrandham.com is a web application to store and process bibliography data of books. Currently it has a growing database with information of more than 50K books. The current live application was built a few years before and it lacks  features such as crowd sourcing, RESTFul API, Feedback, Visualization and so on. The proposed project aims at building a more advanced and contributor/developer friendly version of Malayalagrandham Bibliography Data application with the aforementioned features. The new version of Malayalagrandham will be a crowd sourced Internet Book Database. It will have features to export data to various formats such as MARC21 and MARCXML.&lt;br /&gt;
&lt;br /&gt;
The application essentially will have the following interfaces.&lt;br /&gt;
&lt;br /&gt;
1. Interface for the task force&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Task force is a group of people with administrative privileges. These admins should be able to select the right submission from crowd sourced data and they should be able to moderate any the contents in the web application.  They should also be able to visualize existing data.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
2. Interface for contributor&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Any person should be able to become a contributor by signing up using his/her email ID. Contributor should be able to add new bibliography information and post comments/reviews through the feedback system. He should also be able to upload cover photos of books.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
3. Interface for Publisher&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Publishers should be able to add bibliography information of the books they publish. They should also be able to generate QR code that links to specific book&#039;s page.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
4. Interface for Librarian&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Librarians should be able to update the location of the books in Malayalagrandham.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
All the data in Malayalagrandham will be open to Public. But users need special permission (admin privileges) to modify the existing approved data.&lt;br /&gt;
&lt;br /&gt;
=== The need you believe it fulfills ===&lt;br /&gt;
Apart from the bibliographic information it provides, Malayalagrandham would help people to locate books easily. Building a new version this application has the following benefits:&lt;br /&gt;
&lt;br /&gt;
# It will be easy for users to contribute new data&lt;br /&gt;
# REFTul API makes the application developer friendly. The API will enable developers to write client applications across platforms.&lt;br /&gt;
# We will have a centralized location of information of many books in a breadth of languages.&lt;br /&gt;
# It will be easy to perform complex searches to locate specific books.&lt;br /&gt;
# The feedback feature attracts more engagement/dicussion from users.&lt;br /&gt;
# QR code for each book would help the user to locate its Malayagrandham page&lt;br /&gt;
&lt;br /&gt;
=== Any relevant experience you have ===&lt;br /&gt;
&lt;br /&gt;
I&#039;ve industrial experiencing in building and deploying Ruby on Rails web applications. I also have learned about MARC21/MARCXML formats and ISBN.&lt;br /&gt;
&lt;br /&gt;
=== How you intend to implement your proposal ===&lt;br /&gt;
Our technology stack is Ruby on Rails web framework with MySQL backend. We will be using the following Open Source gems and modules :&lt;br /&gt;
&lt;br /&gt;
# devise - User Authorization&lt;br /&gt;
# ruby-marc - Read and Write in MARC Format&lt;br /&gt;
# marc21-utils - MARC Validation&lt;br /&gt;
# ferret - Text Search&lt;br /&gt;
# Jbuilder - DSL to configure JSON API&lt;br /&gt;
# rqrcode - QR code generator&lt;br /&gt;
# Twitter Bootstrap - Front end Framework&lt;br /&gt;
&lt;br /&gt;
=== A rough timeline for your progress with phases ===&lt;br /&gt;
==== Jun 17 - Jun 30 ====&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Resume the development on the existing application I wrote for this project and design the remaining parts of the software.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Jul 1 - Jul 15==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Implement the application logic as per the design and start focusing on API&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== July 16 - Jul 31==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Implement the basic API and get the functionalities working in the back end&lt;br /&gt;
Test the built features and fix bugs for mid term evaluation&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Aug 1 - Aug 20==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Build advanced features such as crowd sourcing support, data export and QR support&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Aug 21 - Sept 5==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Implement basic UI for Task force, Publisher, Contributor and Librarian.&lt;br /&gt;
Focus more on UX, get the minute details working properly.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Sept 5 - Sept 12==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Control the access to the site pragmatically and do a security auditing. &lt;br /&gt;
Polish the interface and all features should be working by now.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Sept 13 - Sept 27 ==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Review code, fix bugs and get ready for final evaluation.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
=== Any other details you feel we should consider ===&lt;br /&gt;
It will be great if we can sync Malayagrandham with Wikisource. We can also link to Public Domain books in Malayagrandham pages.&lt;br /&gt;
&lt;br /&gt;
=== Tell us about something you have created. ===&lt;br /&gt;
# [http://quizgrid.com QuizGrid.com] is a social network I built using Ruby on Rails and MySQL. More details are [http://ershadk.com/blog/2013/01/21/announcing-quizgrid-dot-com/ here]&lt;br /&gt;
# [http://myfest.in Myfest.in] is a college fest aggregator I built using the same technology stack. It&#039;s quite popular in India and it has got thousands of hits in a short span of time.&lt;br /&gt;
# I built a [https://chrome.google.com/webstore/detail/wikimedia-input-method-ex/cealbihienhpnlglmhmmmlbjdcjfjkap chrome extension] for language transliteration using Wikimedia&#039;s jQueryIME library and it won &#039;The most innovative project&#039; award in Wikimedia Dev Camp held at IIM bangalore&lt;br /&gt;
&lt;br /&gt;
I&#039;ve also some open source contributions, please find them in my [http://github.com/ershad github] profile&lt;br /&gt;
&lt;br /&gt;
=== Have you communicated with a potential mentor? If so, who? ===&lt;br /&gt;
=== SMC Wiki link of your proposal ===&lt;/div&gt;</summary>
		<author><name>Ershad</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=User:Ershad/GSoC2013_Malayalagrandham&amp;diff=3595</id>
		<title>User:Ershad/GSoC2013 Malayalagrandham</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=User:Ershad/GSoC2013_Malayalagrandham&amp;diff=3595"/>
		<updated>2013-04-24T14:28:21Z</updated>

		<summary type="html">&lt;p&gt;Ershad: /* Any other details you feel we should consider */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Google Summer of Code 2013 Proposal for Swathanthra Malalayalam Computing&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Personal Information==&lt;br /&gt;
  Email Address:                    ershad92@gmail.com&lt;br /&gt;
  Telephone:                        +91 8089133362&lt;br /&gt;
  Blog URL:                         http://ershadk.com&lt;br /&gt;
  Freenode IRC Nick:                ershad&lt;br /&gt;
  University and current education: BSc Computer Science, Bharathiyar University&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Why do you want to work with the Swathanthra Malayalam Computing? ===&lt;br /&gt;
Swathanthra Malayalam Computing is contributing much to Indic languages and language computing, it&#039;s great to be a part of it.&lt;br /&gt;
&lt;br /&gt;
=== Do you have any past involvement with the Swathanthra Malayalam Computing or another open source project as a contributor? ===&lt;br /&gt;
Yes. I&#039;ve contributed to Swathanthra Malayalam Computing, MediaWiki and a couple of other open source projects.&lt;br /&gt;
&lt;br /&gt;
=== Did you participate with the past GSoC programs, if so which years, which organizations? ===&lt;br /&gt;
No, I&#039;ve not participated in GSoC programs before.&lt;br /&gt;
&lt;br /&gt;
=== Do you have other obligations between May and August ? Please note that we expect the Summer of Code to be a full time, 40 hour a week commitment ===&lt;br /&gt;
It will be possible for me to work 35-40 hours / Week.&lt;br /&gt;
&lt;br /&gt;
=== Will you continue contributing/ supporting the Swathanthra Malayalam Computing after the GSoC 2013 program, if yes, which area(s), you are interested in? ===&lt;br /&gt;
I&#039;ve been contributing to SMC, I will definitely continue that. My interested areas include Language Computing, SILPA and translation.&lt;br /&gt;
 &lt;br /&gt;
=== Why should we choose you over other applicants? ===&lt;br /&gt;
I&#039;ve been a FOSS enthusiast for years and have been continuously trying for ways to contribute to it. GSoC will be a great platform for me to contribute more.&lt;br /&gt;
&lt;br /&gt;
This proposal is meant for Malayalagrandham Bibliography Data project. I&#039;m planning to do it in Ruby on Rails in which I&#039;m well versed and have more than 1 year of experience. I also have a track record of doing end-to-end hobby projects in Ruby on Rails.&lt;br /&gt;
&lt;br /&gt;
And right the at moment, I&#039;ve done its backend and wrote scripts to import data from old database. It will be easy for me to build upon that.&lt;br /&gt;
&lt;br /&gt;
== Proposal Description ==&lt;br /&gt;
=== An overview of your proposal ===&lt;br /&gt;
Malayalagrandham.com is a web application to store and process bibliography data of books. Currently it has a growing database with information of more than 50K books. The current live application was built a few years before and it lacks  features such as crowd sourcing, RESTFul API, Feedback, Visualization and so on. The proposed project aims at building a more advanced and contributor/developer friendly version of Malayalagrandham Bibliography Data application with the aforementioned features. The new version of Malayalagrandham will be a crowd sourced Internet Book Database. It will have features to export data to various formats such as MARC21 and MARCXML.&lt;br /&gt;
&lt;br /&gt;
The application essentially will have the following interfaces.&lt;br /&gt;
&lt;br /&gt;
1. Interface for the task force&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Task force is a group of people with administrative privileges. These admins should be able to select the right submission from crowd sourced data and they should be able to moderate any the contents in the web application.  They should also be able to visualize existing data.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
2. Interface for contributor&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Any person should be able to become a contributor by signing up using his/her email ID. Contributor should be able to add new bibliography information and post comments/reviews through the feedback system. He should also be able to upload cover photos of books.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
3. Interface for Publisher&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Publishers should be able to add bibliography information of the books they publish. They should also be able to generate QR code that links to specific book&#039;s page.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
4. Interface for Librarian&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Librarians should be able to update the location of the books in Malayalagrandham.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
All the data in Malayalagrandham will be open to Public. But users need special permission (admin privileges) to modify the existing approved data.&lt;br /&gt;
&lt;br /&gt;
=== The need you believe it fulfills ===&lt;br /&gt;
Apart from the bibliographic information it provides, Malayalagrandham would help people to locate books easily. Building a new version this application has the following benefits:&lt;br /&gt;
&lt;br /&gt;
# It will be easy for users to contribute new data&lt;br /&gt;
# REFTul API makes the application developer friendly. The API will enable developers to write client applications across platforms.&lt;br /&gt;
# We will have a centralized location of information of many books in a breadth of languages.&lt;br /&gt;
# It will be easy to perform complex searches to locate specific books.&lt;br /&gt;
# The feedback feature attracts more engagement/dicussion from users.&lt;br /&gt;
# QR code for each book would help the user to locate its Malayagrandham page&lt;br /&gt;
&lt;br /&gt;
=== Any relevant experience you have ===&lt;br /&gt;
&lt;br /&gt;
I&#039;ve industrial experiencing in building and deploying Ruby on Rails web applications. I also have learned about MARC21/MARCXML formats and ISBN.&lt;br /&gt;
&lt;br /&gt;
=== How you intend to implement your proposal ===&lt;br /&gt;
Our technology stack is Ruby on Rails web framework with MySQL backend. We will be using the following Open Source gems and modules :&lt;br /&gt;
&lt;br /&gt;
# devise - User Authorization&lt;br /&gt;
# ruby-marc - Read and Write in MARC Format&lt;br /&gt;
# marc21-utils - MARC Validation&lt;br /&gt;
# ferret - Text Search&lt;br /&gt;
# Jbuilder - DSL to configure JSON API&lt;br /&gt;
# rqrcode - QR code generator&lt;br /&gt;
# Twitter Bootstrap - Front end Framework&lt;br /&gt;
&lt;br /&gt;
=== A rough timeline for your progress with phases ===&lt;br /&gt;
==== Jun 17 - Jun 30 ====&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Resume the development on the existing application I wrote for this project and design the remaining parts of the software.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Jul 1 - Jul 15==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Implement the application logic as per the design and start focusing on API&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== July 16 - Jul 31==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Implement the basic API and get the functionalities working in the back end&lt;br /&gt;
Test the built features and fix bugs for mid term evaluation&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Aug 1 - Aug 20==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Build advanced features such as crowd sourcing support, data export and QR support&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Aug 21 - Sept 5==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Implement basic UI for Task force, Publisher, Contributor and Librarian.&lt;br /&gt;
Focus more on UX, get the minute details working properly.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Sept 5 - Sept 12==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Control the access to the site pragmatically and do a security auditing. &lt;br /&gt;
Polish the interface and all features should be working by now.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Sept 13 - Sept 27 ==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Review code, fix bugs and get ready for final evaluation.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
=== Any other details you feel we should consider ===&lt;br /&gt;
It will be great if we can sync Malayagrandham with Wikisource. We can also link to Public Domain books in Malayagrandham pages.&lt;br /&gt;
&lt;br /&gt;
=== Tell us about something you have created. ===&lt;br /&gt;
=== Have you communicated with a potential mentor? If so, who? ===&lt;br /&gt;
=== SMC Wiki link of your proposal ===&lt;/div&gt;</summary>
		<author><name>Ershad</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=User:Ershad/GSoC2013_Malayalagrandham&amp;diff=3594</id>
		<title>User:Ershad/GSoC2013 Malayalagrandham</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=User:Ershad/GSoC2013_Malayalagrandham&amp;diff=3594"/>
		<updated>2013-04-24T14:26:31Z</updated>

		<summary type="html">&lt;p&gt;Ershad: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Google Summer of Code 2013 Proposal for Swathanthra Malalayalam Computing&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Personal Information==&lt;br /&gt;
  Email Address:                    ershad92@gmail.com&lt;br /&gt;
  Telephone:                        +91 8089133362&lt;br /&gt;
  Blog URL:                         http://ershadk.com&lt;br /&gt;
  Freenode IRC Nick:                ershad&lt;br /&gt;
  University and current education: BSc Computer Science, Bharathiyar University&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Why do you want to work with the Swathanthra Malayalam Computing? ===&lt;br /&gt;
Swathanthra Malayalam Computing is contributing much to Indic languages and language computing, it&#039;s great to be a part of it.&lt;br /&gt;
&lt;br /&gt;
=== Do you have any past involvement with the Swathanthra Malayalam Computing or another open source project as a contributor? ===&lt;br /&gt;
Yes. I&#039;ve contributed to Swathanthra Malayalam Computing, MediaWiki and a couple of other open source projects.&lt;br /&gt;
&lt;br /&gt;
=== Did you participate with the past GSoC programs, if so which years, which organizations? ===&lt;br /&gt;
No, I&#039;ve not participated in GSoC programs before.&lt;br /&gt;
&lt;br /&gt;
=== Do you have other obligations between May and August ? Please note that we expect the Summer of Code to be a full time, 40 hour a week commitment ===&lt;br /&gt;
It will be possible for me to work 35-40 hours / Week.&lt;br /&gt;
&lt;br /&gt;
=== Will you continue contributing/ supporting the Swathanthra Malayalam Computing after the GSoC 2013 program, if yes, which area(s), you are interested in? ===&lt;br /&gt;
I&#039;ve been contributing to SMC, I will definitely continue that. My interested areas include Language Computing, SILPA and translation.&lt;br /&gt;
 &lt;br /&gt;
=== Why should we choose you over other applicants? ===&lt;br /&gt;
I&#039;ve been a FOSS enthusiast for years and have been continuously trying for ways to contribute to it. GSoC will be a great platform for me to contribute more.&lt;br /&gt;
&lt;br /&gt;
This proposal is meant for Malayalagrandham Bibliography Data project. I&#039;m planning to do it in Ruby on Rails in which I&#039;m well versed and have more than 1 year of experience. I also have a track record of doing end-to-end hobby projects in Ruby on Rails.&lt;br /&gt;
&lt;br /&gt;
And right the at moment, I&#039;ve done its backend and wrote scripts to import data from old database. It will be easy for me to build upon that.&lt;br /&gt;
&lt;br /&gt;
== Proposal Description ==&lt;br /&gt;
=== An overview of your proposal ===&lt;br /&gt;
Malayalagrandham.com is a web application to store and process bibliography data of books. Currently it has a growing database with information of more than 50K books. The current live application was built a few years before and it lacks  features such as crowd sourcing, RESTFul API, Feedback, Visualization and so on. The proposed project aims at building a more advanced and contributor/developer friendly version of Malayalagrandham Bibliography Data application with the aforementioned features. The new version of Malayalagrandham will be a crowd sourced Internet Book Database. It will have features to export data to various formats such as MARC21 and MARCXML.&lt;br /&gt;
&lt;br /&gt;
The application essentially will have the following interfaces.&lt;br /&gt;
&lt;br /&gt;
1. Interface for the task force&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Task force is a group of people with administrative privileges. These admins should be able to select the right submission from crowd sourced data and they should be able to moderate any the contents in the web application.  They should also be able to visualize existing data.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
2. Interface for contributor&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Any person should be able to become a contributor by signing up using his/her email ID. Contributor should be able to add new bibliography information and post comments/reviews through the feedback system. He should also be able to upload cover photos of books.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
3. Interface for Publisher&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Publishers should be able to add bibliography information of the books they publish. They should also be able to generate QR code that links to specific book&#039;s page.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
4. Interface for Librarian&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Librarians should be able to update the location of the books in Malayalagrandham.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
All the data in Malayalagrandham will be open to Public. But users need special permission (admin privileges) to modify the existing approved data.&lt;br /&gt;
&lt;br /&gt;
=== The need you believe it fulfills ===&lt;br /&gt;
Apart from the bibliographic information it provides, Malayalagrandham would help people to locate books easily. Building a new version this application has the following benefits:&lt;br /&gt;
&lt;br /&gt;
# It will be easy for users to contribute new data&lt;br /&gt;
# REFTul API makes the application developer friendly. The API will enable developers to write client applications across platforms.&lt;br /&gt;
# We will have a centralized location of information of many books in a breadth of languages.&lt;br /&gt;
# It will be easy to perform complex searches to locate specific books.&lt;br /&gt;
# The feedback feature attracts more engagement/dicussion from users.&lt;br /&gt;
# QR code for each book would help the user to locate its Malayagrandham page&lt;br /&gt;
&lt;br /&gt;
=== Any relevant experience you have ===&lt;br /&gt;
&lt;br /&gt;
I&#039;ve industrial experiencing in building and deploying Ruby on Rails web applications. I also have learned about MARC21/MARCXML formats and ISBN.&lt;br /&gt;
&lt;br /&gt;
=== How you intend to implement your proposal ===&lt;br /&gt;
Our technology stack is Ruby on Rails web framework with MySQL backend. We will be using the following Open Source gems and modules :&lt;br /&gt;
&lt;br /&gt;
# devise - User Authorization&lt;br /&gt;
# ruby-marc - Read and Write in MARC Format&lt;br /&gt;
# marc21-utils - MARC Validation&lt;br /&gt;
# ferret - Text Search&lt;br /&gt;
# Jbuilder - DSL to configure JSON API&lt;br /&gt;
# rqrcode - QR code generator&lt;br /&gt;
# Twitter Bootstrap - Front end Framework&lt;br /&gt;
&lt;br /&gt;
=== A rough timeline for your progress with phases ===&lt;br /&gt;
==== Jun 17 - Jun 30 ====&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Resume the development on the existing application I wrote for this project and design the remaining parts of the software.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Jul 1 - Jul 15==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Implement the application logic as per the design and start focusing on API&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== July 16 - Jul 31==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Implement the basic API and get the functionalities working in the back end&lt;br /&gt;
Test the built features and fix bugs for mid term evaluation&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Aug 1 - Aug 20==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Build advanced features such as crowd sourcing support, data export and QR support&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Aug 21 - Sept 5==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Implement basic UI for Task force, Publisher, Contributor and Librarian.&lt;br /&gt;
Focus more on UX, get the minute details working properly.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Sept 5 - Sept 12==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Control the access to the site pragmatically and do a security auditing. &lt;br /&gt;
Polish the interface and all features should be working by now.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==== Sept 13 - Sept 27 ==== &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Review code, fix bugs and get ready for final evaluation.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
=== Any other details you feel we should consider ===&lt;br /&gt;
=== Tell us about something you have created. ===&lt;br /&gt;
=== Have you communicated with a potential mentor? If so, who? ===&lt;br /&gt;
=== SMC Wiki link of your proposal ===&lt;/div&gt;</summary>
		<author><name>Ershad</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=User:Ershad/GSoC2013_Malayalagrandham&amp;diff=3593</id>
		<title>User:Ershad/GSoC2013 Malayalagrandham</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=User:Ershad/GSoC2013_Malayalagrandham&amp;diff=3593"/>
		<updated>2013-04-24T14:02:33Z</updated>

		<summary type="html">&lt;p&gt;Ershad: /* How you intend to implement your proposal */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Google Summer of Code 2013 Proposal for Swathanthra Malalayalam Computing&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Personal Information==&lt;br /&gt;
  Email Address:                    ershad92@gmail.com&lt;br /&gt;
  Telephone:                        +91 8089133362&lt;br /&gt;
  Blog URL:                         http://ershadk.com&lt;br /&gt;
  Freenode IRC Nick:                ershad&lt;br /&gt;
  University and current education: BSc Computer Science, Bharathiyar University&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Why do you want to work with the Swathanthra Malayalam Computing? ===&lt;br /&gt;
Swathanthra Malayalam Computing is contributing much to Indic languages and language computing, it&#039;s great to be a part of it.&lt;br /&gt;
&lt;br /&gt;
=== Do you have any past involvement with the Swathanthra Malayalam Computing or another open source project as a contributor? ===&lt;br /&gt;
Yes. I&#039;ve contributed to Swathanthra Malayalam Computing, MediaWiki and a couple of other open source projects.&lt;br /&gt;
&lt;br /&gt;
=== Did you participate with the past GSoC programs, if so which years, which organizations? ===&lt;br /&gt;
No, I&#039;ve not participated in GSoC programs before.&lt;br /&gt;
&lt;br /&gt;
=== Do you have other obligations between May and August ? Please note that we expect the Summer of Code to be a full time, 40 hour a week commitment ===&lt;br /&gt;
It will be possible for me to work 35-40 hours / Week.&lt;br /&gt;
&lt;br /&gt;
=== Will you continue contributing/ supporting the Swathanthra Malayalam Computing after the GSoC 2013 program, if yes, which area(s), you are interested in? ===&lt;br /&gt;
I&#039;ve been contributing to SMC, I will definitely continue that. My interested areas include Language Computing, SILPA and translation.&lt;br /&gt;
 &lt;br /&gt;
=== Why should we choose you over other applicants? ===&lt;br /&gt;
I&#039;ve been a FOSS enthusiast for years and have been continuously trying for ways to contribute to it. GSoC will be a great platform for me to contribute more.&lt;br /&gt;
&lt;br /&gt;
This proposal is meant for Malayalagrandham Bibliography Data project. I&#039;m planning to do it in Ruby on Rails in which I&#039;m well versed and have more than 1 year of experience. I also have a track record of doing end-to-end hobby projects in Ruby on Rails.&lt;br /&gt;
&lt;br /&gt;
And right the at moment, I&#039;ve done its backend and wrote scripts to import data from old database. It will be easy for me to build upon that.&lt;br /&gt;
&lt;br /&gt;
== Proposal Description ==&lt;br /&gt;
=== An overview of your proposal ===&lt;br /&gt;
Malayalagrandham.com is a web application to store and process bibliography data of books. Currently it has a growing database with information of more than 50K books. The current live application was built a few years before and it lacks  features such as crowd sourcing, RESTFul API, Feedback, Visualization and so on. The proposed project aims at building a more advanced and contributor/developer friendly version of Malayalagrandham Bibliography Data application with the aforementioned features. The new version of Malayalagrandham will be a crowd sourced Internet Book Database. It will have features to export data to various formats such as MARC21 and MARCXML.&lt;br /&gt;
&lt;br /&gt;
The application essentially will have the following interfaces.&lt;br /&gt;
&lt;br /&gt;
1. Interface for the task force&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Task force is a group of people with administrative privileges. These admins should be able to select the right submission from crowd sourced data and they should be able to moderate any the contents in the web application.  They should also be able to visualize existing data.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
2. Interface for contributor&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Any person should be able to become a contributor by signing up using his/her email ID. Contributor should be able to add new bibliography information and post comments/reviews through the feedback system. He should also be able to upload cover photos of books.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
3. Interface for Publisher&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Publishers should be able to add bibliography information of the books they publish. They should also be able to generate QR code that links to specific book&#039;s page.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
4. Interface for Librarian&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Librarians should be able to update the location of the books in Malayalagrandham.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
All the data in Malayalagrandham will be open to Public. But users need special permission (admin privileges) to modify the existing approved data.&lt;br /&gt;
&lt;br /&gt;
=== The need you believe it fulfills ===&lt;br /&gt;
Apart from the bibliographic information it provides, Malayalagrandham would help people to locate books easily. Building a new version this application has the following benefits:&lt;br /&gt;
&lt;br /&gt;
1. It will be easy for users to contribute new data&lt;br /&gt;
2. REFTul API makes the application developer friendly. The API will enable developers to write client applications across platforms.&lt;br /&gt;
3. We will have a centralized location of information of many books in a breadth of languages.&lt;br /&gt;
4. It will be easy to perform complex searches to locate specific books.&lt;br /&gt;
5. The feedback feature attracts more engagement/dicussion from users.&lt;br /&gt;
&lt;br /&gt;
=== Any relevant experience you have ===&lt;br /&gt;
&lt;br /&gt;
I&#039;ve industrial experiencing in building and deploying Ruby on Rails web applications. I also have learned about MARC21/MARCXML formats and ISBN.&lt;br /&gt;
&lt;br /&gt;
== How you intend to implement your proposal ==&lt;br /&gt;
Our technology stack is Ruby on Rails web framework with MySQL backend. We will be using the following Open Source gems and modules :&lt;br /&gt;
&lt;br /&gt;
# devise - User Authorization&lt;br /&gt;
#. ruby-marc - Read and Write in MARC Format&lt;br /&gt;
# marc21-utils - MARC Validation&lt;br /&gt;
# ferret - Text Search&lt;br /&gt;
# Jbuilder - DSL to configure JSON API&lt;br /&gt;
# Twitter Bootstrap - Front end Framework&lt;br /&gt;
&lt;br /&gt;
== A rough timeline for your progress with phases ==&lt;br /&gt;
== Any other details you feel we should consider ==&lt;br /&gt;
== Tell us about something you have created. ==&lt;br /&gt;
== Have you communicated with a potential mentor? If so, who? ==&lt;br /&gt;
== SMC Wiki link of your proposal ==&lt;/div&gt;</summary>
		<author><name>Ershad</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=User:Ershad/GSoC2013_Malayalagrandham&amp;diff=3592</id>
		<title>User:Ershad/GSoC2013 Malayalagrandham</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=User:Ershad/GSoC2013_Malayalagrandham&amp;diff=3592"/>
		<updated>2013-04-24T13:59:46Z</updated>

		<summary type="html">&lt;p&gt;Ershad: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Google Summer of Code 2013 Proposal for Swathanthra Malalayalam Computing&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Personal Information==&lt;br /&gt;
  Email Address:                    ershad92@gmail.com&lt;br /&gt;
  Telephone:                        +91 8089133362&lt;br /&gt;
  Blog URL:                         http://ershadk.com&lt;br /&gt;
  Freenode IRC Nick:                ershad&lt;br /&gt;
  University and current education: BSc Computer Science, Bharathiyar University&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Why do you want to work with the Swathanthra Malayalam Computing? ===&lt;br /&gt;
Swathanthra Malayalam Computing is contributing much to Indic languages and language computing, it&#039;s great to be a part of it.&lt;br /&gt;
&lt;br /&gt;
=== Do you have any past involvement with the Swathanthra Malayalam Computing or another open source project as a contributor? ===&lt;br /&gt;
Yes. I&#039;ve contributed to Swathanthra Malayalam Computing, MediaWiki and a couple of other open source projects.&lt;br /&gt;
&lt;br /&gt;
=== Did you participate with the past GSoC programs, if so which years, which organizations? ===&lt;br /&gt;
No, I&#039;ve not participated in GSoC programs before.&lt;br /&gt;
&lt;br /&gt;
=== Do you have other obligations between May and August ? Please note that we expect the Summer of Code to be a full time, 40 hour a week commitment ===&lt;br /&gt;
It will be possible for me to work 35-40 hours / Week.&lt;br /&gt;
&lt;br /&gt;
=== Will you continue contributing/ supporting the Swathanthra Malayalam Computing after the GSoC 2013 program, if yes, which area(s), you are interested in? ===&lt;br /&gt;
I&#039;ve been contributing to SMC, I will definitely continue that. My interested areas include Language Computing, SILPA and translation.&lt;br /&gt;
 &lt;br /&gt;
=== Why should we choose you over other applicants? ===&lt;br /&gt;
I&#039;ve been a FOSS enthusiast for years and have been continuously trying for ways to contribute to it. GSoC will be a great platform for me to contribute more.&lt;br /&gt;
&lt;br /&gt;
This proposal is meant for Malayalagrandham Bibliography Data project. I&#039;m planning to do it in Ruby on Rails in which I&#039;m well versed and have more than 1 year of experience. I also have a track record of doing end-to-end hobby projects in Ruby on Rails.&lt;br /&gt;
&lt;br /&gt;
And right the at moment, I&#039;ve done its backend and wrote scripts to import data from old database. It will be easy for me to build upon that.&lt;br /&gt;
&lt;br /&gt;
== Proposal Description ==&lt;br /&gt;
=== An overview of your proposal ===&lt;br /&gt;
Malayalagrandham.com is a web application to store and process bibliography data of books. Currently it has a growing database with information of more than 50K books. The current live application was built a few years before and it lacks  features such as crowd sourcing, RESTFul API, Feedback, Visualization and so on. The proposed project aims at building a more advanced and contributor/developer friendly version of Malayalagrandham Bibliography Data application with the aforementioned features. The new version of Malayalagrandham will be a crowd sourced Internet Book Database. It will have features to export data to various formats such as MARC21 and MARCXML.&lt;br /&gt;
&lt;br /&gt;
The application essentially will have the following interfaces.&lt;br /&gt;
&lt;br /&gt;
1. Interface for the task force&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Task force is a group of people with administrative privileges. These admins should be able to select the right submission from crowd sourced data and they should be able to moderate any the contents in the web application.  They should also be able to visualize existing data.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
2. Interface for contributor&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Any person should be able to become a contributor by signing up using his/her email ID. Contributor should be able to add new bibliography information and post comments/reviews through the feedback system. He should also be able to upload cover photos of books.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
3. Interface for Publisher&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Publishers should be able to add bibliography information of the books they publish. They should also be able to generate QR code that links to specific book&#039;s page.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
4. Interface for Librarian&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Librarians should be able to update the location of the books in Malayalagrandham.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
All the data in Malayalagrandham will be open to Public. But users need special permission (admin privileges) to modify the existing approved data.&lt;br /&gt;
&lt;br /&gt;
=== The need you believe it fulfills ===&lt;br /&gt;
Apart from the bibliographic information it provides, Malayalagrandham would help people to locate books easily. Building a new version this application has the following benefits:&lt;br /&gt;
&lt;br /&gt;
1. It will be easy for users to contribute new data&lt;br /&gt;
2. REFTul API makes the application developer friendly. The API will enable developers to write client applications across platforms.&lt;br /&gt;
3. We will have a centralized location of information of many books in a breadth of languages.&lt;br /&gt;
4. It will be easy to perform complex searches to locate specific books.&lt;br /&gt;
5. The feedback feature attracts more engagement/dicussion from users.&lt;br /&gt;
&lt;br /&gt;
=== Any relevant experience you have ===&lt;br /&gt;
&lt;br /&gt;
I&#039;ve industrial experiencing in building and deploying Ruby on Rails web applications. I also have learned about MARC21/MARCXML formats and ISBN.&lt;br /&gt;
&lt;br /&gt;
== How you intend to implement your proposal ==&lt;br /&gt;
Our technology stack is Ruby on Rails web framework with MySQL backend. We will be using the following Open Source gems and modules :&lt;br /&gt;
&lt;br /&gt;
1. devise - User Authorization&lt;br /&gt;
2. ruby-marc - Read and Write in MARC Format&lt;br /&gt;
3. marc21-utils - MARC Validation&lt;br /&gt;
4. ferret - Text Search&lt;br /&gt;
5. Jbuilder - DSL to configure JSON API&lt;br /&gt;
6. Twitter Bootstrap - Front end Framework&lt;br /&gt;
&lt;br /&gt;
== A rough timeline for your progress with phases ==&lt;br /&gt;
== Any other details you feel we should consider ==&lt;br /&gt;
== Tell us about something you have created. ==&lt;br /&gt;
== Have you communicated with a potential mentor? If so, who? ==&lt;br /&gt;
== SMC Wiki link of your proposal ==&lt;/div&gt;</summary>
		<author><name>Ershad</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=User:Ershad/GSoC2013_Malayalagrandham&amp;diff=3591</id>
		<title>User:Ershad/GSoC2013 Malayalagrandham</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=User:Ershad/GSoC2013_Malayalagrandham&amp;diff=3591"/>
		<updated>2013-04-24T13:45:23Z</updated>

		<summary type="html">&lt;p&gt;Ershad: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Google Summer of Code 2013 Proposal for Swathanthra Malalayalam Computing&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Personal Information==&lt;br /&gt;
  Email Address:                    ershad92@gmail.com&lt;br /&gt;
  Telephone:                        +91 8089133362&lt;br /&gt;
  Blog URL:                         http://ershadk.com&lt;br /&gt;
  Freenode IRC Nick:                ershad&lt;br /&gt;
  University and current education: BSc Computer Science, Bharathiyar University&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Why do you want to work with the Swathanthra Malayalam Computing? ===&lt;br /&gt;
Swathanthra Malayalam Computing is contributing much to Indic languages and language computing, it&#039;s great to be a part of it.&lt;br /&gt;
&lt;br /&gt;
=== Do you have any past involvement with the Swathanthra Malayalam Computing or another open source project as a contributor? ===&lt;br /&gt;
Yes. I&#039;ve contributed to Swathanthra Malayalam Computing, MediaWiki and a couple of other open source projects.&lt;br /&gt;
&lt;br /&gt;
=== Did you participate with the past GSoC programs, if so which years, which organizations? ===&lt;br /&gt;
No, I&#039;ve not participated in GSoC programs before.&lt;br /&gt;
&lt;br /&gt;
=== Do you have other obligations between May and August ? Please note that we expect the Summer of Code to be a full time, 40 hour a week commitment ===&lt;br /&gt;
It will be possible for me to work 35-40 hours / Week.&lt;br /&gt;
&lt;br /&gt;
=== Will you continue contributing/ supporting the Swathanthra Malayalam Computing after the GSoC 2013 program, if yes, which area(s), you are interested in? ===&lt;br /&gt;
I&#039;ve been contributing to SMC, I will definitely continue that. My interested areas include Language Computing, SILPA and translation.&lt;br /&gt;
 &lt;br /&gt;
=== Why should we choose you over other applicants? ===&lt;br /&gt;
I&#039;ve been a FOSS enthusiast for years and have been continuously trying for ways to contribute to it. GSoC will be a great platform for me to contribute more.&lt;br /&gt;
&lt;br /&gt;
This proposal is meant for Malayalagrandham Bibliography Data project. I&#039;m planning to do it in Ruby on Rails in which I&#039;m well versed and have more than 1 year of experience. I also have a track record of doing end-to-end hobby projects in Ruby on Rails.&lt;br /&gt;
&lt;br /&gt;
And right the at moment, I&#039;ve done its backend and wrote scripts to import data from old database. It will be easy for me to build upon that.&lt;br /&gt;
&lt;br /&gt;
== Proposal Description ==&lt;br /&gt;
=== An overview of your proposal ===&lt;br /&gt;
Malayalagrandham.com is a web application to store and process bibliography data of books. Currently it has a growing database with information of more than 50K books. The current live application was built a few years before and it lacks  features such as crowd sourcing, RESTFul API, Feedback, Visualization and so on. The proposed project aims at building a more advanced and contributor/developer friendly version of Malayalagrandham Bibliography Data application with the aforementioned features. The new version of Malayalagrandham will be a crowd sourced Internet Book Database. It will have features to export data to various formats such as MARC21 and MARCXML.&lt;br /&gt;
&lt;br /&gt;
The application essentially will have the following interfaces.&lt;br /&gt;
&lt;br /&gt;
1. Interface for the task force&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Task force is a group of people with administrative privileges. These admins should be able to select the right submission from crowd sourced data and they should be able to moderate any the contents in the web application.  They should also be able to visualize existing data.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
2. Interface for contributor&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Any person should be able to become a contributor by signing up using his/her email ID. Contributor should be able to add new bibliography information and post comments/reviews through the feedback system. He should also be able to upload cover photos of books.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
3. Interface for Publisher&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Publishers should be able to add bibliography information of the books they publish. They should also be able to generate QR code that links to specific book&#039;s page.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
4. Interface for Librarian&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
  Librarians should be able to update the location of the books in Malayalagrandham.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
All the data in Malayalagrandham will be open to Public. But users need special permission (admin privileges) to modify the existing approved data.&lt;/div&gt;</summary>
		<author><name>Ershad</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=User:Ershad/GSoC2013_Malayalagrandham&amp;diff=3581</id>
		<title>User:Ershad/GSoC2013 Malayalagrandham</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=User:Ershad/GSoC2013_Malayalagrandham&amp;diff=3581"/>
		<updated>2013-04-23T15:00:12Z</updated>

		<summary type="html">&lt;p&gt;Ershad: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Google Summer of Code 2013 Proposal for Swathanthra Malalayalam Computing&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Personal Information==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
Email Address&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;code&amp;gt;ershad92@gmail.com&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
Telephone&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;code&amp;gt;+91 8089133362&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
Blog URL&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;code&amp;gt;http://ershadk.com&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
Freenode IRC Nick&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;code&amp;gt;ershad&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
University and current education&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;code&amp;gt;BSc Computer Science, Bharathiyar University&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Why do you want to work with the Swathanthra Malayalam Computing? ===&lt;br /&gt;
Swathanthra Malayalam Computing is contributing much to Indic languages and language computing, it&#039;s great to be a part of it.&lt;br /&gt;
&lt;br /&gt;
=== Do you have any past involvement with the Swathanthra Malayalam Computing or another open source project as a contributor? ===&lt;br /&gt;
Yes. I&#039;ve contributed to Swathanthra Malayalam Computing, MediaWiki and a couple of other open source projects.&lt;br /&gt;
&lt;br /&gt;
=== Did you participate with the past GSoC programs, if so which years, which organizations? ===&lt;br /&gt;
No, I&#039;ve not participated in GSoC programs before.&lt;br /&gt;
&lt;br /&gt;
=== Do you have other obligations between May and August ? Please note that we expect the Summer of Code to be a full time, 40 hour a week commitment ===&lt;br /&gt;
It will be possible for me to work 35-40 hours / Week.&lt;br /&gt;
&lt;br /&gt;
=== Will you continue contributing/ supporting the Swathanthra Malayalam Computing after the GSoC 2013 program, if yes, which area(s), you are interested in? ===&lt;br /&gt;
I&#039;ve been contributing to SMC, I will definitely continue that. My interested areas include Language Computing, SILPA and translation.&lt;br /&gt;
 &lt;br /&gt;
=== Why should we choose you over other applicants? ===&lt;br /&gt;
I&#039;ve been a FOSS enthusiast for years and have been continuously trying for ways to contribute to it. GSoC will be a great platform for me to contribute more.&lt;br /&gt;
&lt;br /&gt;
This proposal is meant for Malayalagrandham Bibliography Data project. I&#039;m planning to do it in Ruby on Rails in which I&#039;m well versed and have more than 1 year of experience. I also have a track record of doing end-to-end hobby projects in Ruby on Rails.&lt;br /&gt;
&lt;br /&gt;
And right the at moment, I&#039;ve done its backend and wrote scripts to import data from old database. It will be easy for me to build upon that.&lt;/div&gt;</summary>
		<author><name>Ershad</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=User:Ershad/GSoC2013_Malayalagrandham&amp;diff=3580</id>
		<title>User:Ershad/GSoC2013 Malayalagrandham</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=User:Ershad/GSoC2013_Malayalagrandham&amp;diff=3580"/>
		<updated>2013-04-23T14:02:43Z</updated>

		<summary type="html">&lt;p&gt;Ershad: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Google Summer of Code 2013 Proposal for Swathanthra Malalayalam Computing&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Personal Information==&lt;br /&gt;
&lt;br /&gt;
  * Email Address:                         ershad92@gmail.com&lt;br /&gt;
  * Telephone:                             +91 8089133362&lt;br /&gt;
  * Blog URL:                              http://ershadk.com&lt;br /&gt;
  * Freenode IRC Nick:                     ershad&lt;br /&gt;
  * Your university and current education: BSc Computer Science, Bharathiyar University&lt;/div&gt;</summary>
		<author><name>Ershad</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=User:Ershad/GSoC2013_Malayalagrandham&amp;diff=3579</id>
		<title>User:Ershad/GSoC2013 Malayalagrandham</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=User:Ershad/GSoC2013_Malayalagrandham&amp;diff=3579"/>
		<updated>2013-04-23T13:58:12Z</updated>

		<summary type="html">&lt;p&gt;Ershad: Created page with &amp;quot;&amp;#039;&amp;#039;&amp;#039;Google Summer of Code 2013 Proposal for Swathanthra Malalayalam Computing&amp;#039;&amp;#039;&amp;#039;  ===Personal Information===  Email Address:                                     ershad92@gmail....&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Google Summer of Code 2013 Proposal for Swathanthra Malalayalam Computing&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
===Personal Information===&lt;br /&gt;
&lt;br /&gt;
Email Address:                                     ershad92@gmail.com&lt;br /&gt;
Telephone:                                          +91 8089133362&lt;br /&gt;
Blog URL:                                             http://ershadk.com&lt;br /&gt;
Freenode IRC Nick:                               ershad&lt;br /&gt;
Your university and current education: BSc Computer Science, Bharathiyar University&lt;/div&gt;</summary>
		<author><name>Ershad</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=3248</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=3248"/>
		<updated>2012-09-26T04:16:57Z</updated>

		<summary type="html">&lt;p&gt;Ershad: /* പങ്കെടുക്കുന്നവര്‍  */&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:50am &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;
* Talk on SMC (Praveen A)&lt;br /&gt;
&lt;br /&gt;
11.00am - 12.00am&lt;br /&gt;
* Matrics,CSE Association MESCE, Inaguration Ceremony ( Hussain K H) &lt;br /&gt;
* Book publishing event - പ്രശസ്ത കവി പിപി രാമചന്ദ്രന്‍ ജിനേഷിന്റെ അച്ഛനു് ഒരു പകര്‍പ്പു് കൈമാറും&lt;br /&gt;
&lt;br /&gt;
12:00am - 12:45am&lt;br /&gt;
* Talk on OCR (Sathyan Master)&lt;br /&gt;
* Demonstration of OCR ( Naveen TS)&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;
&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>Ershad</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=GNOME_3.4_Release_Party&amp;diff=3165</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=3165"/>
		<updated>2012-04-06T09:06:04Z</updated>

		<summary type="html">&lt;p&gt;Ershad: /* പങ്കെടുക്കുന്നവര്‍ */&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;
&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>Ershad</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=User:Ershad&amp;diff=3144</id>
		<title>User:Ershad</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=User:Ershad&amp;diff=3144"/>
		<updated>2012-04-04T08:58:36Z</updated>

		<summary type="html">&lt;p&gt;Ershad: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;എന്റെ ബ്ലോഗ് [http://ershadk.com ഇവിടെ] കാണാം&lt;br /&gt;
&lt;br /&gt;
== Twitter Updates ==&lt;br /&gt;
{{#widget:Twitter&lt;br /&gt;
|user=ershus&lt;br /&gt;
|count=20&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Ershad</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=GNOME_3.4_Release_Party&amp;diff=3143</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=3143"/>
		<updated>2012-04-04T08:56:51Z</updated>

		<summary type="html">&lt;p&gt;Ershad: /* പങ്കെടുക്കുന്നവര്‍ */&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;
&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;/div&gt;</summary>
		<author><name>Ershad</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=Meeting/IRC/2010Oct9&amp;diff=1709</id>
		<title>Meeting/IRC/2010Oct9</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=Meeting/IRC/2010Oct9&amp;diff=1709"/>
		<updated>2010-10-05T11:04:55Z</updated>

		<summary type="html">&lt;p&gt;Ershad: /* Attending */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== SMC IRC Meeting 2010 October 9 ==&lt;br /&gt;
Time : 21:00 IST October 9&lt;br /&gt;
Location: #smc-project @ irc.freenode.net&lt;br /&gt;
==Agenda==&lt;br /&gt;
# Inroduction to Project and its activities to new members&lt;br /&gt;
# Ongoing and planned Projects - Status, Contribution&lt;br /&gt;
# Packaging of projects - Debian, Fedora  - Status , Contribution&lt;br /&gt;
# Publishing Malayalam translation of &#039;Free Software, Free Society&#039;&lt;br /&gt;
# Malayalam [https://fedorahosted.org/fuel/ FUEL] &lt;br /&gt;
# Upcoming Camps&lt;br /&gt;
# Project Publicity Planning&lt;br /&gt;
&lt;br /&gt;
==IRC Log ==&lt;br /&gt;
&lt;br /&gt;
==RSVP==&lt;br /&gt;
===Attending===&lt;br /&gt;
# [http://wiki.smc.org.in/User:Manojk മനോജ്‌.കെ] - manojkmohan&lt;br /&gt;
# ഇര്‍ഷാദ്.കെ - ershad&lt;br /&gt;
&lt;br /&gt;
===Maybe Attending===&lt;br /&gt;
# ഹിരണ്‍ - hfactor&lt;br /&gt;
# മണിലാല്‍ - libregeek&lt;br /&gt;
# ഉണ്ണി കൃഷ്ണന്‍ - krish8664&lt;br /&gt;
&lt;br /&gt;
===Not Attending===&lt;/div&gt;</summary>
		<author><name>Ershad</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=%E0%B4%AB%E0%B4%AF%E0%B4%B0%E0%B5%8D%E2%80%8D%E0%B4%AB%E0%B5%8B%E0%B4%95%E0%B5%8D%E0%B4%B8%E0%B5%8D_%E0%B4%AE%E0%B4%B2%E0%B4%AF%E0%B4%BE%E0%B4%B3%E0%B4%82_%E0%B4%AA%E0%B4%A4%E0%B5%8D%E0%B4%B0%E0%B4%95%E0%B5%8D%E0%B4%95%E0%B5%81%E0%B4%B1%E0%B4%BF%E0%B4%AA%E0%B5%8D%E0%B4%AA%E0%B5%8D&amp;diff=1424</id>
		<title>ഫയര്‍ഫോക്സ് മലയാളം പത്രക്കുറിപ്പ്</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=%E0%B4%AB%E0%B4%AF%E0%B4%B0%E0%B5%8D%E2%80%8D%E0%B4%AB%E0%B5%8B%E0%B4%95%E0%B5%8D%E0%B4%B8%E0%B5%8D_%E0%B4%AE%E0%B4%B2%E0%B4%AF%E0%B4%BE%E0%B4%B3%E0%B4%82_%E0%B4%AA%E0%B4%A4%E0%B5%8D%E0%B4%B0%E0%B4%95%E0%B5%8D%E0%B4%95%E0%B5%81%E0%B4%B1%E0%B4%BF%E0%B4%AA%E0%B5%8D%E0%B4%AA%E0%B5%8D&amp;diff=1424"/>
		<updated>2010-08-03T14:35:56Z</updated>

		<summary type="html">&lt;p&gt;Ershad: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;big&amp;gt;&#039;&#039;&#039;ഫയര്‍ഫോക്സ് ഇനി മലയാളത്തിലും&#039;&#039;&#039;&amp;lt;/big&amp;gt;&lt;br /&gt;
{{prettyurl|Firefox Malayalam - Press release}}&lt;br /&gt;
സുഹൃത്തുക്കളെ,&lt;br /&gt;
&lt;br /&gt;
ഇന്റര്‍നെറ്റ് ലോകത്ത് വളരെയധികം ജനപ്രീതിയാര്‍ജിച്ച സ്വതന്ത്ര വെബ് ബ്രൗസര്‍, മോസില്ല ഫയര്‍ഫോക്സ്  ഇനിമുതല്‍ മലയാളത്തിലും ലഭ്യമാണെന്ന സന്തോഷവാര്‍ത്ത നിങ്ങളെ അറിയിച്ചുകൊള്ളുന്നു. സ്വതന്ത്ര സോഫ്റ്റ്‌വെയറുകളിലൂടെ മലയാളികളെ തങ്ങളുടെ മാതൃഭാഷയില്‍ത്തന്നെ കമ്പ്യൂട്ടര്‍ ഉപയോഗിക്കുവാന്‍ പ്രാപ്തരാക്കുന്നതിനായി പ്രവര്‍ത്തിക്കുന്ന സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ്ങ് എന്ന കൂട്ടായ്മയുടെ ഭാഗമായ [[ഫയര്‍ഫോക്സ് മലയാളം | ഫയര്‍ഫോക്സ് മലയാളം]] സംഘമാണ് ഈ അഭിമാന നേട്ടത്തിന് പിന്നില്‍.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;മോസില്ല ഫയര്‍ഫോക്സ്&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
മോസില്ല കോര്‍പ്പറേഷന്റെ നേതൃത്വത്തില്‍ സൃഷ്ടിക്കപ്പെട്ട ഒരു സ്വതന്ത്ര വെബ്ബ് ബ്രൗസറാണ് മോസില്ല ഫയര്‍ഫോക്സ്. മോസില്ല അപ്ലിക്കേഷന്‍ സ്വീറ്റിന്റെ പിന്‍‌ഗാമിയെന്നോണം പ്രവര്‍ത്തനമാരംഭിച്ച ഫയര്‍ഫോക്സ് ഇന്ന് ഏറ്റവും ജനകീയമായ സ്വതന്ത്ര സോഫ്റ്റ്‌വെയറുകളിലൊന്നാണ്. വെബ്ബ് ബ്രൗസര്‍ ഉപഭോക്താക്കളില്‍ 30%-ഓളം ആളുകള്‍ ഉപയോഗിക്കുന്ന ഫയര്‍ഫോക്സ്, പ്രചാരത്തില്‍ ഇന്റര്‍നെറ്റ് എക്സ്പ്ലോററിനു പിന്നിലായി രണ്ടാം സ്ഥാനത്താണ്. 2010 ജൂലൈ 23-ന് ഇതിന്റെ ഏറ്റവും പുതിയ സ്ഥിരതയുള്ള പതിപ്പ് 3.6.8 പുറത്തിറങ്ങി.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ്ങ്&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;quot;എന്റെ കമ്പ്യൂട്ടറിനു് എന്റെ ഭാഷ&amp;quot; എന്ന മുദ്രാവാക്യത്തോടെ 2001-ല്‍ സ്ഥാപിതമായ സന്നദ്ധപ്രവര്‍ത്തകരുടെ ഒരു കൂട്ടായ്മയാണ് സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ്ങ് (എസ്.എം.സി). സ്വതന്ത്ര സോഫ്റ്റ്‌വെയറുകള്‍ അടിസ്ഥാനമാക്കി മലയാളം കമ്പ്യൂട്ടിങ്ങ് ജനങ്ങളിലേക്കെത്തിക്കാന്‍ പ്രവര്‍ത്തിക്കുന്ന എസ്.എം.സി. ഇന്ത്യയിലെ സ്വതന്ത്ര സോഫ്റ്റ്വെയര്‍ കൂട്ടായ്മകളില്‍ ഏറ്റവും വലുതാണ്. ഭാഷാ കമ്പ്യൂട്ടിങ്ങുമായി ബന്ധപ്പെട്ട സോഫ്റ്റ്‌വെയറുകളുടെ വികസനം, സ്വതന്ത്ര പണിയിട സം‌വിധാനങ്ങളുടെയും സോഫ്റ്റ്‌വെയറുകളുടെയും പ്രാദേശികവത്കരണം, മലയാളം ഫോണ്ടുകളുടെ നിര്‍മാണം തുടങ്ങിയവയാണ് സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ്ങിന്റെ പ്രധാന കാര്യപരിപാടികള്‍.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ഫയര്‍ഫോക്സിന്റെ പ്രാദേശികവത്കരണം&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
അനി പീറ്റര്‍, അനൂപന്‍, ഹരി വിഷ്ണു, ആഷിക് സലാഹുദ്ദീന്‍ എന്നിവരടങ്ങുന്ന ഫയര്‍ഫോക്സ് മലയാളം സംഘമാണ് പ്രാദേശികവത്കരണ പ്രവര്‍ത്തനങ്ങള്‍ക്ക് ചുക്കാന്‍ പിടിക്കുന്നത്. 3.1 പതിപ്പ് മുതല്‍ പരീക്ഷണാടിസ്ഥാനത്തിലായിരുന്ന മലയാളം ഫയര്‍ഫോക്സിന് 3.6.8 പതിപ്പോടെ ഔദ്യോഗിക പിന്തുണ ലഭിച്ചു. മലയാളം കമ്പ്യൂട്ടിങ്ങിന്റെ ചരിത്രത്തില്‍ വളരെ പ്രധാനപ്പെട്ടൊരു നാഴികക്കല്ലാണിത്.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;മലയാളം  ഫയര്‍ഫോക്സ്&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
ഉപയോക്താക്കള്‍ക്ക് ഫയര്‍ഫോക്സിന്റെ മലയാളം  പതിപ്പ് മോസില്ലയുടെ [http://www.mozilla.com/ml/ ഔദ്യോഗിക വെബ്‌‌സൈറ്റില്‍] നിന്ന് സൗജന്യമായി ഡൗണ്‍ലോഡ് ചെയ്‌‌ത് ഉപയോഗിക്കാവുന്നതാണ്. &lt;br /&gt;
&lt;br /&gt;
സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ്ങ് പ്രവര്‍ത്തകര്‍&amp;lt;br/&amp;gt;&lt;br /&gt;
(തിയ്യതി)&amp;lt;br/&amp;gt;&lt;br /&gt;
http://wiki.smc.org.in&amp;lt;br/&amp;gt;&lt;br /&gt;
smc-discuss@googlegroups.com&lt;/div&gt;</summary>
		<author><name>Ershad</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=%E0%B4%AB%E0%B4%AF%E0%B4%B0%E0%B5%8D%E2%80%8D%E0%B4%AB%E0%B5%8B%E0%B4%95%E0%B5%8D%E0%B4%B8%E0%B5%8D_%E0%B4%AE%E0%B4%B2%E0%B4%AF%E0%B4%BE%E0%B4%B3%E0%B4%82_%E0%B4%AA%E0%B4%A4%E0%B5%8D%E0%B4%B0%E0%B4%95%E0%B5%8D%E0%B4%95%E0%B5%81%E0%B4%B1%E0%B4%BF%E0%B4%AA%E0%B5%8D%E0%B4%AA%E0%B5%8D&amp;diff=1423</id>
		<title>ഫയര്‍ഫോക്സ് മലയാളം പത്രക്കുറിപ്പ്</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=%E0%B4%AB%E0%B4%AF%E0%B4%B0%E0%B5%8D%E2%80%8D%E0%B4%AB%E0%B5%8B%E0%B4%95%E0%B5%8D%E0%B4%B8%E0%B5%8D_%E0%B4%AE%E0%B4%B2%E0%B4%AF%E0%B4%BE%E0%B4%B3%E0%B4%82_%E0%B4%AA%E0%B4%A4%E0%B5%8D%E0%B4%B0%E0%B4%95%E0%B5%8D%E0%B4%95%E0%B5%81%E0%B4%B1%E0%B4%BF%E0%B4%AA%E0%B5%8D%E0%B4%AA%E0%B5%8D&amp;diff=1423"/>
		<updated>2010-08-03T14:27:50Z</updated>

		<summary type="html">&lt;p&gt;Ershad: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;big&amp;gt;&#039;&#039;&#039;ഫയര്‍ഫോക്സ് ഇനി മലയാളത്തിലും&#039;&#039;&#039;&amp;lt;/big&amp;gt;&lt;br /&gt;
{{prettyurl|Firefox Malayalam - Press release}}&lt;br /&gt;
സുഹൃത്തുക്കളെ,&lt;br /&gt;
&lt;br /&gt;
ഇന്റര്‍നെറ്റ് ലോകത്ത് വളരെയധികം ജനപ്രീതിയാര്‍ജിച്ച സ്വതന്ത്ര വെബ് ബ്രൗസര്‍, മോസില്ല ഫയര്‍ഫോക്സ്  ഇനിമുതല്‍ മലയാളത്തിലും ലഭ്യമാണെന്ന സന്തോഷവാര്‍ത്ത നിങ്ങളെ അറിയിച്ചുകൊള്ളുന്നു. സ്വതന്ത്ര സോഫ്റ്റ്‌വെയറുകളിലൂടെ മലയാളികളെ തങ്ങളുടെ മാതൃഭാഷയില്‍ത്തന്നെ കമ്പ്യൂട്ടര്‍ ഉപയോഗിക്കുവാന്‍ പ്രാപ്തരാക്കുന്നതിനായി പ്രവര്‍ത്തിക്കുന്ന സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ്ങ് എന്ന കൂട്ടായ്മയുടെ ഭാഗമായ [[ഫയര്‍ഫോക്സ് മലയാളം | ഫയര്‍ഫോക്സ് മലയാളം]] സംഘമാണ് ഈ അഭിമാന നേട്ടത്തിന് പിന്നില്‍.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;മോസില്ല ഫയര്‍ഫോക്സ്&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
മോസില്ല കോര്‍പ്പറേഷന്റെ നേതൃത്വത്തില്‍ സൃഷ്ടിക്കപ്പെട്ട ഒരു സ്വതന്ത്ര വെബ്ബ് ബ്രൗസറാണ് മോസില്ല ഫയര്‍ഫോക്സ്. മോസില്ല അപ്ലിക്കേഷന്‍ സ്വീറ്റിന്റെ പിന്‍‌ഗാമിയെന്നോണം പ്രവര്‍ത്തനമാരംഭിച്ച ഫയര്‍ഫോക്സ് ഇന്ന് ഏറ്റവും ജനകീയമായ സ്വതന്ത്ര സോഫ്റ്റ്‌വെയറുകളിലൊന്നാണ്. വെബ്ബ് ബ്രൗസര്‍ ഉപഭോക്താക്കളില്‍ 30%-ഓളം ആളുകള്‍ ഉപയോഗിക്കുന്ന ഫയര്‍ഫോക്സ്, പ്രചാരത്തില്‍ ഇന്റര്‍നെറ്റ് എക്സ്പ്ലോററിനു പിന്നിലായി രണ്ടാം സ്ഥാനത്താണ്. 2010 ജൂലൈ 23-ന് ഇതിന്റെ ഏറ്റവും പുതിയ സ്ഥിരതയുള്ള പതിപ്പ് 3.6.8 പുറത്തിറങ്ങി.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ്ങ്&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;quot;എന്റെ കമ്പ്യൂട്ടറിനു് എന്റെ ഭാഷ&amp;quot; എന്ന മുദ്രാവാക്യത്തോടെ 2001-ല്‍ സ്ഥാപിതമായ സന്നദ്ധപ്രവര്‍ത്തകരുടെ ഒരു കൂട്ടായ്മയാണ് സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ്ങ് (എസ്.എം.സി). സ്വതന്ത്ര സോഫ്റ്റ്‌വെയറുകള്‍ അടിസ്ഥാനമാക്കി മലയാളം കമ്പ്യൂട്ടിങ്ങ് ജനങ്ങളിലേക്കെത്തിക്കാന്‍ പ്രവര്‍ത്തിക്കുന്ന എസ്.എം.സി. ഇന്ത്യയിലെ സ്വതന്ത്ര സോഫ്റ്റ്വെയര്‍ കൂട്ടായ്മകളില്‍ ഏറ്റവും വലുതാണ്. ഭാഷാ കമ്പ്യൂട്ടിങ്ങുമായി ബന്ധപ്പെട്ട സോഫ്റ്റ്‌വെയറുകളുടെ വികസനം, സ്വതന്ത്ര പണിയിട സം‌വിധാനങ്ങളുടെയും സോഫ്റ്റ്‌വെയറുകളുടെയും പ്രാദേശികവത്കരണം, മലയാളം ഫോണ്ടുകളുടെ നിര്‍മാണം തുടങ്ങിയവയാണ് സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ്ങിന്റെ പ്രധാന കാര്യപരിപാടികള്‍.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ഫയര്‍ഫോക്സിന്റെ പ്രാദേശികവത്കരണം&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
അനി പീറ്റര്‍, അനൂപന്‍, ഹരി വിഷ്ണു, ആഷിക് സലാഹുദ്ദീന്‍ എന്നിവരടങ്ങുന്ന ഫയര്‍ഫോക്സ് മലയാളം സംഘമാണ് പ്രാദേശികവത്കരണ പ്രവര്‍ത്തനങ്ങള്‍ക്ക് ചുക്കാന്‍ പിടിക്കുന്നത്. 3.1 പതിപ്പ് മുതല്‍ പരീക്ഷണാടിസ്ഥാനത്തിലായിരുന്ന മലയാളം ഫയര്‍ഫോക്സിന് 3.6.8 പതിപ്പോടെ ഔദ്യോഗിക പിന്തുണ ലഭിച്ചു. മലയാളം കമ്പ്യൂട്ടിങ്ങിന്റെ ചരിത്രത്തില്‍ വളരെ പ്രധാനപ്പെട്ടൊരു നാഴികക്കല്ലാണിത്.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;മലയാളം  ഫയര്‍ഫോക്സ്&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
ഉപയോക്താക്കള്‍ക്ക് ഫയര്‍ഫോക്സിന്റെ മലയാളം  പതിപ്പ് മോസില്ലയുടെ [http://www.mozilla.com/ml/| ഔദ്യോഗിക വെബ്‌‌സൈറ്റില്‍] നിന്ന് സൗജന്യമായി ഡൗണ്‍ലോഡ് ചെയ്‌‌ത് ഉപയോഗിക്കാവുന്നതാണ്. &lt;br /&gt;
&lt;br /&gt;
സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ്ങ് പ്രവര്‍ത്തകര്‍&amp;lt;br/&amp;gt;&lt;br /&gt;
(തിയ്യതി)&amp;lt;br/&amp;gt;&lt;br /&gt;
http://wiki.smc.org.in&amp;lt;br/&amp;gt;&lt;br /&gt;
smc-discuss@googlegroups.com&lt;/div&gt;</summary>
		<author><name>Ershad</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=%E0%B4%AB%E0%B4%AF%E0%B4%B0%E0%B5%8D%E2%80%8D%E0%B4%AB%E0%B5%8B%E0%B4%95%E0%B5%8D%E0%B4%B8%E0%B5%8D_%E0%B4%AE%E0%B4%B2%E0%B4%AF%E0%B4%BE%E0%B4%B3%E0%B4%82_%E0%B4%AA%E0%B4%A4%E0%B5%8D%E0%B4%B0%E0%B4%95%E0%B5%8D%E0%B4%95%E0%B5%81%E0%B4%B1%E0%B4%BF%E0%B4%AA%E0%B5%8D%E0%B4%AA%E0%B5%8D&amp;diff=1406</id>
		<title>ഫയര്‍ഫോക്സ് മലയാളം പത്രക്കുറിപ്പ്</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=%E0%B4%AB%E0%B4%AF%E0%B4%B0%E0%B5%8D%E2%80%8D%E0%B4%AB%E0%B5%8B%E0%B4%95%E0%B5%8D%E0%B4%B8%E0%B5%8D_%E0%B4%AE%E0%B4%B2%E0%B4%AF%E0%B4%BE%E0%B4%B3%E0%B4%82_%E0%B4%AA%E0%B4%A4%E0%B5%8D%E0%B4%B0%E0%B4%95%E0%B5%8D%E0%B4%95%E0%B5%81%E0%B4%B1%E0%B4%BF%E0%B4%AA%E0%B5%8D%E0%B4%AA%E0%B5%8D&amp;diff=1406"/>
		<updated>2010-08-02T15:18:00Z</updated>

		<summary type="html">&lt;p&gt;Ershad: &amp;#039;പത്രക്കുറിപ്പ് ഇവിടെ...&amp;#039; താള്‍ സൃഷ്ടിച്ചിരിക്കുന്നു&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;പത്രക്കുറിപ്പ് ഇവിടെ...&lt;/div&gt;</summary>
		<author><name>Ershad</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=Mlcaptcha&amp;diff=1383</id>
		<title>Mlcaptcha</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=Mlcaptcha&amp;diff=1383"/>
		<updated>2010-07-31T07:33:12Z</updated>

		<summary type="html">&lt;p&gt;Ershad: കണ്ണികളിലുണ്ടായിരുന്ന &amp;#039;|&amp;#039; തിരുത്തി.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;mlCaptcha അഥവാ മലയാളം കാപ്ച, പൂര്‍ണ്ണമായും മലയാളം യുണീകോഡ് അടിസ്ഥാനമാക്കി പ്രവര്‍ത്തിക്കുന്ന സുരക്ഷാവാചക പരിശോധനാ സംവിധാനമാണിത്.&lt;br /&gt;
&lt;br /&gt;
==എന്താണ് കാപ്ച?==&lt;br /&gt;
ഉപയോക്താവ് ഒരു മനുഷ്യനാണോ അതോ ഒരു കം‌പ്യൂട്ടറാണോ എന്ന് പറയാന്‍ കഴിയുന്ന ഒരു പ്രോഗ്രാമാണ് കാപ്ച . &amp;quot;ബോട്ടുകള്‍&amp;quot; അധവാ സ്പാമിങ്ങിന് ഉപയോഗിക്കുന്ന ഓട്ടോമേറ്റഡ് പ്രോഗ്രാമുകളില്‍ നിന്ന് രക്ഷനേടാനായി നിരവധി വെബ് സൈറ്റുകള്‍ കാപ്ച ഉപയോഗിക്കുന്നു. ക്രമരഹിതമായ അക്ഷരങ്ങളെ ഒരു മനുഷ്യന്‍ മനസിലാക്കുന്നതിനേക്കാള്‍ നന്നായി ഒരു കം‌പ്യൂട്ടറിന് മനസിലാക്കാന്‍ കഴിയില്ല. അതിനാല്‍ കാപ്ച ഉപയോഗിച്ച് സം‌രക്ഷിക്കപ്പെട്ട വെബ്സൈറ്റുകള്‍ ബോട്ടുകള്‍ക്ക്  ഉപയോഗിക്കാന്‍ കഴിയില്ല. &lt;br /&gt;
&lt;br /&gt;
==മലയാളം കാപ്ചയുടെ പ്രസക്തി==&lt;br /&gt;
[[ചിത്രം:MlCaptcha-Sample.png|200px|thumb|center|മലയാളം കാപ്ച]]&lt;br /&gt;
mlCaptcha നിര്‍മ്മിക്കുന്ന സുരക്ഷാവാചകങ്ങള്‍ അടങ്ങിയ ചിത്രങ്ങള്‍ ഉപയോഗപ്പെടുത്തി, വെബ് ഫോമുകളിലും മറ്റുമുള്ള സ്പാമുകളുടെ കടന്നുകയറ്റങ്ങളെ തീര്‍ത്തും പ്രതിരോധിക്കാന്‍ കഴിയും. mlCaptcha യില്‍ അക്കങ്ങളോ, ഇംഗ്ലീഷ് അക്ഷരങ്ങളോ ഉപയോഗിക്കാത്തതിനാല്‍ ഇംഗ്ലീഷ് Captcha യേക്കാള്‍ സുരക്ഷിതമാണ്. കാരക്റ്റര്‍ റെക്കഗ്നിഷന്‍ സോഫ്റ്റ്വെയറുകള്‍ ഉപയോഗിച്ച് ഇംഗ്ലീഷ് കാപ്ച സെക്യൂരിറ്റിയെ മറികടക്കാന്‍ കഴിയും, പക്ഷേ mlCaptcha അക്കാര്യത്തില്‍ സുരക്ഷിതമാണ്. മലയാളം അക്ഷരങ്ങളും, മലയാളം യുണീകോഡ് കീബോ‍ഡും അറിയുന്ന ആര്‍ക്കും വളരെ എളുപ്പത്തില്‍ mlCaptcha കൈകാര്യം ചെയ്യാന്‍ കഴിയും.&lt;br /&gt;
&lt;br /&gt;
==പുറമേക്കുള്ള കണ്ണികള്‍==&lt;br /&gt;
*[http://www.saranymedia.com/mlCaptcha/ മലയാളം കാപ്ച : മാതൃക]&lt;br /&gt;
*[http://sourceforge.net/projects/mlcaptcha/ സോഴ്സ് കോഡ്]&lt;br /&gt;
*[http://mlcaptcha.blogspot.com/ മറ്റു വിവരങ്ങള്‍ (ബ്ലോഗ്)]&lt;br /&gt;
*[http://groups.google.com/group/smc-discuss/browse_thread/thread/b629af876638b78f/ea6d39faa4cedd74 ഇതോടനുബന്ധിച്ച് മെയിലിംഗ് ലിസ്റ്റില്‍ നടന്ന ചര്‍ച്ച]&lt;br /&gt;
*[http://www.captcha.net/ കാപ്ച]&lt;br /&gt;
&lt;br /&gt;
==പിന്നില്‍ പ്രവര്‍ത്തിച്ചത്==&lt;br /&gt;
*യാസിര്‍ കുറ്റ്യാടി&lt;/div&gt;</summary>
		<author><name>Ershad</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=User:Ershad&amp;diff=1233</id>
		<title>User:Ershad</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=User:Ershad&amp;diff=1233"/>
		<updated>2010-07-26T23:54:29Z</updated>

		<summary type="html">&lt;p&gt;Ershad: /* Twitter Updates */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;എന്റെ ബ്ലോഗ് [http://ershadk.wordpress.com ഇവിടെ] കാണാം&lt;br /&gt;
&lt;br /&gt;
== Twitter Updates ==&lt;br /&gt;
{{#widget:Twitter&lt;br /&gt;
|user=ershus&lt;br /&gt;
|count=20&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Ershad</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=%E0%B4%8E%E0%B4%99%E0%B5%8D%E0%B4%99%E0%B4%A8%E0%B5%86_%E0%B4%B8%E0%B4%B9%E0%B4%BE%E0%B4%AF%E0%B4%BF%E0%B4%95%E0%B5%8D%E0%B4%95%E0%B4%BE%E0%B4%82&amp;diff=1232</id>
		<title>എങ്ങനെ സഹായിക്കാം</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=%E0%B4%8E%E0%B4%99%E0%B5%8D%E0%B4%99%E0%B4%A8%E0%B5%86_%E0%B4%B8%E0%B4%B9%E0%B4%BE%E0%B4%AF%E0%B4%BF%E0%B4%95%E0%B5%8D%E0%B4%95%E0%B4%BE%E0%B4%82&amp;diff=1232"/>
		<updated>2010-07-26T10:49:12Z</updated>

		<summary type="html">&lt;p&gt;Ershad: &amp;#039;Git&amp;#039; പേജിലേക്കുള്ള കണ്ണി ചേര്‍ക്കുന്നു.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{prettyurl|Contribute}}&lt;br /&gt;
സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ്ങ് പൂര്‍ണ്ണമായും സന്നദ്ധപ്രവര്‍ത്തകരുടെ സഹായത്തോടെ പ്രവര്‍ത്തിക്കുന്ന കൂട്ടായ്മയാണു്. ഡിജിറ്റല്‍ യുഗത്തില്‍ നമ്മുടെ മാതൃഭാഷയെ അതിന്റെ തനിമ നിലനിര്‍ത്തിക്കൊണ്ടു് പരിപാലിയ്ക്കണമെന്നാഗ്രഹമുള്ള ആര്‍ക്കും ഇതില്‍ പങ്കാളിയാകാം.  &lt;br /&gt;
&lt;br /&gt;
* സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ്ങ് ഏറ്റെടുത്ത [https://savannah.nongnu.org/task/?group=smc ജോലികളുടെ പട്ടിക] - അതില്‍ നിങ്ങള്‍ക്കു് താത്പര്യമുള്ള ജോലികളില്‍ പങ്കു ചേരാം.&lt;br /&gt;
&lt;br /&gt;
സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ്ങിന്റെ വിവിധ സംരംഭങ്ങളെ എങ്ങനെ സഹായിക്കാം എന്നു് താഴെപ്പറയുന്നു.&lt;br /&gt;
&lt;br /&gt;
==പ്രാദേശികവത്കരണം(Localization)==&lt;br /&gt;
* [[സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ്ങ്/പ്രാദേശികവത്കരണ പ്രക്രിയാ നടപടിക്രമങ്ങള്‍|പ്രാദേശികവത്കരണ നടപടിക്രമങ്ങള്‍ (വഴികാട്ടി)]]&lt;br /&gt;
* [[സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ്ങ്/InputMethods | ഗ്നു/ലിനക്സിലെ മലയാളം നിവേശകരീതികള്‍]]&lt;br /&gt;
&lt;br /&gt;
==പരിശോധന(Testing)==&lt;br /&gt;
# പ്രാദേശികവത്കരിക്കപ്പെട്ട പ്രയോഗങ്ങള്‍ പരീക്ഷിക്കല്‍, അവയിലെ തര്‍ജ്ജമകളിലെ തെറ്റു തിരുത്തല്‍&lt;br /&gt;
# ഫോണ്ടുകളുടെ പരിശോധന- വിവിധ ഗ്നു/ലിനക്സ് വിതരണങ്ങളില്‍, വിവിധ പതിപ്പുകളില്‍&lt;br /&gt;
# മലയാള ചിത്രീകരണ പരിശോധന- വിവിധ ഗ്നു/ലിനക്സ് വിതരണങ്ങളില്‍, വിവിധ പതിപ്പുകളില്‍&lt;br /&gt;
# സോഫ്റ്റ്‌വെയറുകളുടെ പരിശോധന- വിവിധ ഗ്നു/ലിനക്സ് വിതരണങ്ങളില്‍, വിവിധ പതിപ്പുകളില്‍&lt;br /&gt;
# സംഭരണികളുടെ പരിശോധന- വിവിധ ഗ്നു/ലിനക്സ് വിതരണങ്ങളില്‍, വിവിധ പതിപ്പുകളില്‍&lt;br /&gt;
&lt;br /&gt;
==സോഫ്റ്റ്‌വെയര്‍ വികസനം(Software Development)==&lt;br /&gt;
സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ്ങ് ഭാഷാ കമ്പ്യൂട്ടിങ്ങിനാവശ്യമായ ഒരുപാടു സോഫ്റ്റ്‌വേറുകള്‍ നിര്‍മ്മിക്കുന്നുണ്ട്. അവയുടെ വികസനത്തില്‍ പങ്കാളികളായും, പുതിയവയുടെ വികസനത്തിലും അനുബന്ധ പ്രവൃത്തികളിലും സഹായിച്ചും സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ്ങിനു് സംഭാവനകള്‍ നല്‍കാം.&lt;br /&gt;
&lt;br /&gt;
==സംഭരണികളുടെ പരിപാലനം(Repository Maintaining)==&lt;br /&gt;
സഹായകരമായേക്കാവുന്ന കണ്ണികള്‍&lt;br /&gt;
* [[സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ്ങ്/ഡെബിയനുള്ള_ശേഖരം|ഡെബിയന്‍]] (ഐടി@സ്കൂള്‍ ഗ്നു/ലിനക്സ്)&lt;br /&gt;
* [[സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ്ങ്/ഫെഡോറയ്ക്കുള്ള_ശേഖരം|ഫെഡോറ]]&lt;br /&gt;
* [[സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ്ങ്/സെന്റ് ഒ.എസ്സിനുള്ള_ശേഖരം|സെന്റ് ഒ.എസ്സ്]]&lt;br /&gt;
&lt;br /&gt;
==സഹായപുസ്തകങ്ങളെഴുതല്‍(Help Documentation )==&lt;br /&gt;
സഹായകരമാവുന്ന കണ്ണികള്‍&lt;br /&gt;
&lt;br /&gt;
* [http://smc.nongnu.org/docs/debian/etch/debian-4.0-etch-installation-guide.pdf ഡബിയന്‍ എച് ഇന്‍സ്റ്റാളേഷന്‍ നടപടിക്രമങ്ങള്‍]&lt;br /&gt;
* [[സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ്ങ്/ഡെബിയനുള്ള_ശേഖരം| ഡെബിയന്‍ ഗ്നു/ലിനക്സില്‍ സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ്ങിന്റെ ശേഖരം ഉപയോഗിയ്ക്കുന്നതിനുള്ള വഴികാട്ടി]]&lt;br /&gt;
* [[സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ്ങ്/InputMethods | ഗ്നു/ലിനക്സിലെ മലയാളം നിവേശകരീതികള്‍]]&lt;br /&gt;
* [[സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ്ങ്/സുറുമയിട്ട പാംഗോയും ചില സംശയങ്ങളും|സുറുമയിട്ട പാംഗോയും ചില സംശയങ്ങളും]]&lt;br /&gt;
* [[Git | ഗിറ്റ് സഹായി]]&lt;br /&gt;
&lt;br /&gt;
==പരിശീലനം(Training)==&lt;br /&gt;
# ചെറുതും വലുതുമായിട്ടുള്ള വര്‍ക്ക്ഷോപ്പുകള്‍ - പ്രത്യേകിച്ച് പ്രവാസി മലയാളികള്‍ക്കിടയില്‍.&lt;br /&gt;
&lt;br /&gt;
==പ്രചരണം(Publicity)==&lt;br /&gt;
# വിവിധ മാദ്ധ്യമങ്ങളിലൂടെ സ്വതന്ത്ര സോഫ്റ്റ്‌വെയറുകള്‍ ഉപയോഗിച്ചുള്ള മലയാളം കമ്പ്യൂട്ടിങ്ങിനെ പ്രചരിപ്പിക്കല്‍.&lt;br /&gt;
&lt;br /&gt;
==എന്താണു് പ്രതിഫലം?==&lt;br /&gt;
* നിങ്ങള്‍ക്കു് നേരിട്ടുള്ള ഒരു സാമ്പത്തികനേട്ടവും പ്രതീക്ഷിക്കരുതു്.&lt;br /&gt;
* സ്വതന്ത്ര സോഫ്റ്റ്‌വെയര്‍ കൂട്ടായ്മയുടെ ബഹുമാനം&lt;br /&gt;
* സമൂഹത്തിനു വേണ്ടി എന്തെങ്കിലും ചെയ്തു എന്ന അഭിമാനം&lt;br /&gt;
* ചെയ്ത സോഫ്റ്റ്‌വെയറുകളില്‍ നിങ്ങളുടെ പേരു് എടുത്തുപറഞ്ഞുകൊണ്ടുള്ള ക്രെഡിറ്റ്. അതുവഴിയുണ്ടാകുന്ന പ്രശസ്തി&lt;br /&gt;
* നിങ്ങളുടെ Resume ല്‍ നല്ല കുറച്ചുവരികള്‍ കൂടി,അതുവഴിയുണ്ടാകുന്ന മെച്ചപ്പെട്ട ജോലി സാധ്യതകള്‍&lt;br /&gt;
* അറിവിന്റെ പരസ്പരപങ്കുവെയ്ക്കലില്‍ വിശ്വസിക്കുന്ന കൂട്ടായ്മയില്‍  പ്രവര്‍ത്തിക്കുമ്പോളുണ്ടാകുന്ന അമൂല്യമായ അറിവുകളുടെ സമ്പത്തു്&lt;/div&gt;</summary>
		<author><name>Ershad</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=%E0%B4%95%E0%B5%86.%E0%B4%A1%E0%B4%BF.%E0%B4%87_%E0%B4%AE%E0%B4%B2%E0%B4%AF%E0%B4%BE%E0%B4%B3%E0%B4%82&amp;diff=1187</id>
		<title>കെ.ഡി.ഇ മലയാളം</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=%E0%B4%95%E0%B5%86.%E0%B4%A1%E0%B4%BF.%E0%B4%87_%E0%B4%AE%E0%B4%B2%E0%B4%AF%E0%B4%BE%E0%B4%B3%E0%B4%82&amp;diff=1187"/>
		<updated>2010-07-10T15:36:21Z</updated>

		<summary type="html">&lt;p&gt;Ershad: Small changes according to the decisions taken in SMC camp at Palakkad on 10/7/2010.&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;
കെഡിഇ മലയാളം [[പ്രധാനതാള്‍| സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ്ങി]]ലെ ഒരംഗമാണു്. സ്വതന്ത്ര കമ്പ്യൂട്ടര്‍ പ്രവര്‍ത്തക സംവിധാനങ്ങള്‍ക്കായുള്ള കെഡിഇ പണിയിടം മലയാളത്തില്‍ ലഭ്യമാക്കുകയാണു് ഈ ഉപസംരംഭത്തിന്റെ ലക്ഷ്യം. ഈ ഉപസംരംഭത്തിലെ അംഗങ്ങളുടെ നാമാവലി [http://l10n.kde.org/team-infos.php?teamcode=ml ഇവിടെ]. നിങ്ങള്‍ക്കും ഇതിലംഗമാകാവുന്നതാണു്. ഗ്നോം നൂറടിയ്ക്കുന്നതിനു് മുമ്പേ നൂറടിയ്ക്കുക എന്നതാണു് കെഡിഇ മലയാളത്തിന്റെ ഒരു ലക്ഷ്യം. നിങ്ങളുടെ സജീവ പങ്കാളിത്തമില്ലാതെ ഈ ലക്ഷ്യം കൈവരിയ്ക്കാന്‍ സാധ്യമല്ല. കെഡിഇയെ എപ്പോഴും ഒരു രണ്ടാം തരക്കാരനായി കണക്കാക്കുന്നതായി നിങ്ങള്‍ക്കു് തോന്നിയിട്ടുണ്ടോ? ഒരു കെഡിഇ പ്രേമിയാണെങ്കില്‍ അതിനൊരു മാറ്റം വരുത്താനിതാ നിങ്ങള്‍ക്കൊരവസരം. ഇനിയും മടിച്ചു് നില്‍ക്കാതെ ഇന്നു് തന്നെ ഒരു ഫയല്‍ പരിഭാഷപ്പെടുത്തിത്തുടങ്ങൂ.&lt;br /&gt;
&lt;br /&gt;
പരിഭാഷ ചെയ്യേണ്ട ഫയലുകള്‍ [http://l10n.kde.org/stats/gui/trunk-kde4/team/ml/ ഇവിടെ] ലഭ്യമാണ്.&lt;br /&gt;
&lt;br /&gt;
ആദ്യമായി മലയാളം കെഡിഇയില്‍ ഉള്‍പ്പെടുത്തുന്നതിനായി [http://l10n.kde.org/stats/gui/trunk-kde4/essential/ ഏറ്റവും പ്രധാനപ്പെട്ട] ഫയലുകളുടെ പരിഭാഷ പൂര്‍ത്തിയായിരിയ്ക്കണം. ഈ ഉപസംരംഭത്തില്‍ പങ്കുചേരാന്‍ നിങ്ങളാഗ്രഹിയ്ക്കുന്നെങ്കില്‍ [http://l10n.kde.org/stats/gui/trunk-kde4/team/ml/kdebase/index.php കെഡിഇബേസിലെ] ഏതെങ്കിലും ഒരു ഫയല്‍ പരിഭാഷപ്പെടുത്തി തുടങ്ങാം. നിങ്ങള്‍ തിരഞ്ഞെടുത്ത ഫയല്‍ തന്നെ വേറൊരാള്‍ കൂടി പരിഭാഷപ്പെടുത്തുന്നതൊഴിവാക്കാന്‍ താഴെ നിങ്ങളുടെ പേരും പരിഭാഷപ്പെടുത്തുന്ന ഫയലും ചേര്‍ക്കുക.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;[[പ്രാദേശികവത്കരണ പ്രക്രിയാ നടപടിക്രമങ്ങള്‍]] എന്ന കണ്ണിയില്‍ പരിഭാഷ ചെയ്തു് തുടങ്ങാന്‍ സഹായകരമായ പൊതുവായുള്ള കൂടുതല്‍ വിവരങ്ങളുണ്ടു്&#039;&#039;&#039;. കെഡിഇ സംഭരണിയില്‍ പരിഭാഷകള്‍ ചേര്‍ക്കാന്‍ അനുമതിയുള്ള അംഗങ്ങളാണു് മാക്സിന്‍ ബി ജോണും പ്രവീണും അനി പീറ്ററും ശരത് ലക്ഷ്മണും.&lt;br /&gt;
&lt;br /&gt;
കെഡിഇ പരിഭാഷ ചെയ്തുകൊണ്ടിരിയ്ക്കുന്ന ഭാഷകളില്‍ 59 മതു് സ്ഥാനമാണു് നമ്മള്‍ക്കിപ്പോഴുള്ളതു്. ആകെ 101 ഭാഷകളുള്ളതില്‍ ഒന്നാം സ്ഥാനത്തു് നില്‍ക്കുന്നതു് പോര്‍ച്ചുഗീസും ഉക്രേനിയനും ഇന്ത്യന്‍ ഭാഷകളില്‍ ഒന്നാം സ്ഥാനത്തു് നില്‍ക്കുന്നതു് തമിഴുമാണു്. എല്ലാ ഭാഷകളുമുള്‍പ്പെടുത്തിയ പട്ടിക [http://l10n.kde.org/stats/gui/trunk-kde4/toplist/ ഇവിടെ]&lt;br /&gt;
&lt;br /&gt;
==ശ്രദ്ധിയ്ക്കുക==&lt;br /&gt;
 l10n.kde.org പലപ്പോഴും പ്രവര്‍ത്തനരഹിതമായതിനാല്‍ [http://websvn.kde.org/trunk/l10n-kde4/templates/messages/ ഇവിടെ] നിന്നും ഫയലുകളെടുക്കാവുന്നതാണു്.  &lt;br /&gt;
 പക്ഷേ എടുക്കുന്നതിനു് മുമ്പു് [http://websvn.kde.org/trunk/l10n-kde4/ml/messages/ ഇവിടെ] നോക്കി അതു് നേരത്തെ പരിഭാഷ ചെയ്തിട്ടില്ലെന്നുറപ്പു് വരുത്തുക. &lt;br /&gt;
 മുഴുവനല്ലാത്ത പരിഭാഷകള്‍ പരിഭാഷകള്‍ പൂര്‍ത്തിയാക്കാനോ, മുഴുവനായവ മെച്ചപ്പെടുത്താനോ സഹായിയ്ക്കാവുന്നതാണു്.&lt;br /&gt;
 kdebase ല്‍ പരിഭാഷപ്പെടുത്തിയിട്ടുള്ള ഫയലുകളുടെ പട്ടിക [http://download.savannah.gnu.org/releases/smc/kdebase-list.txt ഇവിടെ]. kdebase ല്‍ നിന്നും ഒരു &lt;br /&gt;
 ഫയല്‍ പരിഭാഷപ്പെടുത്താനെടുക്കുന്നതിനു് മുമ്പു് ഈ പട്ടിക നോക്കുക.&lt;br /&gt;
&lt;br /&gt;
==പരിഭാഷപ്പെടുത്തിക്കൊണ്ടിരിയ്ക്കുന്ന പാക്കേജുകളും പരിഭാഷകരും==&lt;br /&gt;
&#039;&#039;&#039;വിക്കിയില്‍ മാറ്റം വരുത്തുമ്പോള്‍ ശ്രദ്ധിക്കേണ്ട കാര്യങ്ങള്‍:&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
1. നിങ്ങള്‍ തര്‍ജ്ജമ ചെയ്യുന്നതിനായി [http://l10n.kde.org/stats/gui/trunk-kde4/team/ml/ കെഡിഇ l10n സ്റ്റേറ്റസ് പേജു്] -ല്‍ നിന്നും ഒരു ഫയല്‍ എടുക്കുന്നതിനുമുമ്പായി വിക്കി നോക്കുക. &lt;br /&gt;
&lt;br /&gt;
2. എടുത്ത ഫയലിന്റെ പേരു് നിങ്ങളുടെ പേരിനോടൊപ്പം വിക്കിയില്‍ ചേര്‍ക്കുക. &lt;br /&gt;
&lt;br /&gt;
3. തര്‍ജ്ജമ ചെയ്ത ഫയല്‍ റിവ്യൂ ചെയ്യുന്നതിനായി അയയ്ച്ചതിനു് ശേഷം, വിക്കിയില്‍ ആ ഫയല്‍ &#039;&#039;&#039;ബോള്‍ഡാക്കുക&#039;&#039;&#039;. &lt;br /&gt;
&lt;br /&gt;
4. റിവ്യൂ ചെയ്ത ഫയല്‍ കമ്മിറ്റ് ചെയ്ത ശേഷം ആ വ്യക്തി (ഇവിടെ, പ്രവീണ്‍) അതു് &#039;&#039;ഇറ്റാലിക്സിലാക്കുക&#039;&#039;. &lt;br /&gt;
5. [http://l10n.kde.org/stats/gui/trunk-kde4/team/ml/ കെഡിഇ l10n സ്റ്റേറ്റസ് പേജു്] പരിഷ്കരിച്ച ശേഷം, ഇറ്റാലിക്സിലുള്ള കമ്മിറ്റ് ചെയ്ത ഫയലുകളെ വിക്കിയില്‍ നിന്നും &lt;br /&gt;
പ്രവീണ്‍/അനി നീക്കം ചെയ്യുക.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== PO File - Translators==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;extragear-base&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;extragear-multimedia&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* amarok.pot -  Jesse Francis&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;kdebase&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* kcmkwinrules.po - Pratheesh Prakash&lt;br /&gt;
&lt;br /&gt;
* processui.po -  Anoop Panavalappil&lt;br /&gt;
&lt;br /&gt;
* kcm_platform.pot -  Nadir K M&lt;br /&gt;
&lt;br /&gt;
* kdmconfig.po, kfontinst.po -  Manu Madhav&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;kcmnic.pot&#039;&#039;&#039;  - Manoj.K&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;kcm_device_automounter.pot&#039;&#039;&#039;  - Manoj.K&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;kio_nepomuk.po&#039;&#039;&#039;, &#039;&#039;&#039;kio_info.po&#039;&#039;&#039;  - Hrishikesh K B&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;kdeedu&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* kig.po - Anoop Panavalappil&lt;br /&gt;
&lt;br /&gt;
* kstars.po -  Manu Madhav, Shiju Alex&lt;br /&gt;
&lt;br /&gt;
* kanagram.po - Shyam K&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;kdegames&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Abhishek Oommen Jacob &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;koffice&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* kspread.po - Manu Madhav&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [[കെ ഡി ഇ 4.5 പതിപ്പില്‍ പ്രവര്‍ത്തിച്ചവരുടെ പേരുകള്‍]] - ഇപ്പോള്‍ സജീവമായി നടക്കുന്നു&lt;br /&gt;
* [[കെ ഡി ഇ 4.4 പതിപ്പില്‍ പ്രവര്‍ത്തിച്ചവരുടെ പേരുകള്‍]]&lt;br /&gt;
* [[കെ ഡി ഇ 4.2 പതിപ്പില്‍ പ്രവര്‍ത്തിച്ചവരുടെ പേരുകള്‍]]&lt;br /&gt;
* [[കെ ഡി ഇ 4.1 പതിപ്പില്‍ പ്രവര്‍ത്തിച്ചവരുടെ പേരുകള്‍]]&lt;/div&gt;</summary>
		<author><name>Ershad</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=Localisation_Camp/7_Palakkad_10,_11_July_2010&amp;diff=1184</id>
		<title>Localisation Camp/7 Palakkad 10, 11 July 2010</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=Localisation_Camp/7_Palakkad_10,_11_July_2010&amp;diff=1184"/>
		<updated>2010-07-09T17:35:37Z</updated>

		<summary type="html">&lt;p&gt;Ershad: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[ചിത്രം:Bigbazar school.png|thumb|right|250px]]&lt;br /&gt;
തിയ്യതി: ജൂലൈ 10, 11&lt;br /&gt;
&lt;br /&gt;
സമയം: രാവിലെ 10 മുതല്‍ വൈകുന്നേരം 5 വരെ&lt;br /&gt;
&lt;br /&gt;
സ്ഥലം: ബിഗ് ബസാര്‍ സ്കൂള്‍ (വലിയങ്ങാടി സ്ക്കൂള്‍)&lt;br /&gt;
&lt;br /&gt;
* [[Localisation_Camp/7_Palakkad_10,_11_July_2010/Press_Release1 |പത്രക്കുറിപ്പു്]]&lt;br /&gt;
&lt;br /&gt;
==വിഷയങ്ങള്‍==&lt;br /&gt;
&lt;br /&gt;
* [http://savannah.nongnu.org/task/?group=smc തീര്‍ക്കാനുള്ള വിഷയങ്ങള്‍] പരിചയപ്പെടുത്തലും തുടക്കവും രണ്ടു് ദിവസത്തെ ശിബിരത്തിന്റെ പ്രാഥമികോദ്ദേശ്യങ്ങളിലൊന്നാണു്.&lt;br /&gt;
* ബിഗ് ബസാര്‍ സ്ഖൂളും (വലിയങ്ങാടി സ്ക്കൂളും) അതിനടുത്തുള്ള റോഡുകളും മറ്റു് പ്രധാന്യമുള്ള വിലാസങ്ങളും സ്വതന്ത്ര ഭൂപട സംരംഭമായ ഓപ്പണ്‍സ്ട്രീറ്റ് മാപ്പില്‍ ചേര്‍ക്കുക.&lt;br /&gt;
&lt;br /&gt;
=== ദിവസം ഒന്നു് ===&lt;br /&gt;
&lt;br /&gt;
* കമ്പ്യൂട്ടറില്‍ മലയാളം എങ്ങനെ - എന്‍കോഡിങ്ങ്, അക്ഷരസഞ്ചയങ്ങള്‍, ഓപ്പണ്‍ടൈപ്പ്, ചിത്രീകരണ എഞ്ചിനുകള്‍ - വിശദീകരണവും ചര്‍ച്ചയും&lt;br /&gt;
* കെഡിഇ പരിഭാഷ - kdebase 80% പൂര്‍ത്തിയാക്കുക, കെഡിഇയിലെ എല്ലാ കളികളും പരിഭാഷപ്പെടുത്തുകയും പരിഭാഷ പരീക്ഷിച്ചു് നോക്കുകയും ചെയ്യുക - അഭിഷേക്&lt;br /&gt;
* കലാസൃഷ്ടികള്‍ - ചുമര്‍ചിത്രങ്ങള്‍, ചിഹ്നങ്ങള്‍... [https://savannah.nongnu.org/task/index.php?7103 കൂടുതല്‍ വിവരങ്ങള്‍]&lt;br /&gt;
** വിഎച്ച്എസ്എസ് ഇരുമ്പനത്തിലെ കൊച്ചു് കൂട്ടുകാര്‍ [http://vhssirimpanam.org/?p=329 ടക്സ്‌പെയിന്റില്‍ കേരളത്തിലെ പൂക്കള്‍ ചേര്‍ത്തു് മാതൃക കാട്ടിയിട്ടുണ്ടു്]&lt;br /&gt;
&lt;br /&gt;
=== ദിവസം രണ്ടു് ===&lt;br /&gt;
&lt;br /&gt;
* [[WWW-ML|സ്വതന്ത്ര സോഫ്റ്റ്‌വെയര്‍ തത്വശാസ്ത്ര ലേഖനങ്ങളുടെ പരിഭാഷ]] - ശ്യാം കരനാട്ടു്&lt;br /&gt;
* [[ഡെബിയന്‍_മലയാളം/ഡെബിയന്‍_ഇന്‍സ്റ്റാളറിന്റെ_മലയാളം_പരിഭാഷ| ഡെബിയന്‍ ഇന്‍സ്റ്റോളറിന്റെ മലയാളം പരിഭാഷ]]&lt;br /&gt;
* പഠനസഹായികള്‍ കെജ്യോഗ്രഫിയും കെലെറ്റേര്‍സും - [https://savannah.nongnu.org/task/index.php?8961 സഹായക്കുറിപ്പുകളും] [https://savannah.nongnu.org/task/index.php?8950 ഉറവയില്‍ ചേര്‍ക്കലും].&lt;br /&gt;
* കെഡിഇ പരിഭാഷ തുടരുന്നു&lt;br /&gt;
&lt;br /&gt;
==പങ്കെടുക്കുന്നവര്‍==&lt;br /&gt;
&lt;br /&gt;
പങ്കെടുക്കാനാഗ്രഹിയ്ക്കുന്നവര്‍ താഴെ പേരും ഫോണ്‍ നമ്പറും ചേര്‍ക്കുക (ഫോണ്‍ നമ്പര്‍ മനുഷ്യര്‍ക്കു് മാത്രം വായിയ്ക്കാവുന്ന രീതിയില്‍ എഴുതിയാല്‍ കമ്പ്യൂട്ടര്‍ പ്രോഗ്രാമുകളുപയോഗിച്ചുള്ള ദുരുപയോഗം അഥവ സ്പാമ്മിങ്ങ് ഒഴിവാക്കാം). പേരു് ചേര്‍ക്കുവാന്‍ [http://wiki.smc.org.in/index.php?title=Localisation_Camp/7_Palakkad_10,_11_July_2010&amp;amp;action=edit&amp;amp;section=4 ഇവിടെ ക്ലിക്ക് ചെയ്യുക]]&lt;br /&gt;
&lt;br /&gt;
# പ്രവീണ്‍ അരിമ്പ്രത്തൊടിയില്‍ - ഒന്‍പതു് അഞ്ചു് ആറു് ഒന്നു് ഏഴു് നാലു് അഞ്ചു് ഏഴു് ഒന്നു് രണ്ടു്&lt;br /&gt;
# ലബീബ് എംഎം - ഒന്‍പത് ഒന്‍പത് രണ്ട് മൂന്ന് പിന്നെ ഏഴ് പൂജ്യം ഒന്‍പത് ഏഴ് ഏഴ് രണ്ട്.&lt;br /&gt;
# ഇര്‍ഷാദ് കെ - 8 പൂജ്യം 8 9 ഒന്നു് മൂന്ന് മൂന്ന് മൂന്ന് 6 രണ്ടു്&lt;br /&gt;
# മുഹമ്മദ് മുസ്ഫിര്‍ -9895177840&lt;br /&gt;
# അനസ്.കെ 9809506169 begin_of_the_skype_highlighting              9809506169      end_of_the_skype_highlighting&lt;br /&gt;
# ഹിരണ്‍ വേണുഗോപാലന്‍ 9 4 9 6 മൂന്ന് 4 6 7 പൂജ്യം 9&lt;br /&gt;
# ആര്‍ക്ക് അര്‍ജുന്‍ &lt;br /&gt;
# നിഖില്‍ എസ്. - ഒന്‍പത് 4 ഒന്‍പത് 6 മൂന്ന് അഞ്ച് 1 ആറ് 1 രണ്ട്.&lt;br /&gt;
# ശ്യാം കരനാട്ടു്&lt;br /&gt;
# മനോജ്‌ കെ മോഹന്‍ -൯൪൯൫൫൧൩൮൭൪&lt;br /&gt;
# അഭിഷേക് ജേക്കബ് &lt;br /&gt;
#സൂരജ് കേണോത്ത് മൂന്ന് ഒന്‍പത്, മൂന്ന് അഞ്ച്, പതിനഞ്ച്, നാല്പത്തൊന്‍പത്.&lt;br /&gt;
[[Category:Localisation Camp]]&lt;/div&gt;</summary>
		<author><name>Ershad</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=Localisation_Camp/7_Palakkad_10,_11_July_2010&amp;diff=1088</id>
		<title>Localisation Camp/7 Palakkad 10, 11 July 2010</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=Localisation_Camp/7_Palakkad_10,_11_July_2010&amp;diff=1088"/>
		<updated>2010-07-03T05:30:01Z</updated>

		<summary type="html">&lt;p&gt;Ershad: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;തിയ്യതി: ജൂലൈ 10, 11&lt;br /&gt;
&lt;br /&gt;
സമയം: രാവിലെ 10 മുതല്‍ വൈകുന്നേരം 5 വരെ&lt;br /&gt;
&lt;br /&gt;
സ്ഥലം: പിന്നീടു് അറിയിയ്ക്കും&lt;br /&gt;
&lt;br /&gt;
==വിഷയങ്ങള്‍==&lt;br /&gt;
&lt;br /&gt;
* കമ്പ്യൂട്ടറില്‍ മലയാളം എങ്ങനെ - എന്‍കോഡിങ്ങ്, അക്ഷരസഞ്ചയങ്ങള്‍, ഓപ്പണ്‍ടൈപ്പ്, ചിത്രീകരണ എഞ്ചിനുകള്‍ - വിശദീകരണവും ചര്‍ച്ചയും&lt;br /&gt;
* കെഡിഇ പരിഭാഷ - kdebase 80% പൂര്‍ത്തിയാക്കുക&lt;br /&gt;
* [http://savannah.nongnu.org/task/?group=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;
[[Category:Localisation Camp]]&lt;/div&gt;</summary>
		<author><name>Ershad</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=Git&amp;diff=1086</id>
		<title>Git</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=Git&amp;diff=1086"/>
		<updated>2010-07-02T14:06:49Z</updated>

		<summary type="html">&lt;p&gt;Ershad: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{prettyurl|Git}}&lt;br /&gt;
സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ്ങ് സോഴ്സ് കോഡ് കൈകാര്യം ചെയ്യാന്‍ ഗിറ്റാണുപയോഗിയ്ക്കുന്നത്. ഇതുപയോഗിയ്ക്കാനുള്ള നിര്‍ദ്ദേശങ്ങളാണിവിടെ.&lt;br /&gt;
&lt;br /&gt;
ആദ്യമായി ഒരു എസ്എസ്എച്ച് കീ നിര്‍മ്മിയ്ക്കുക. സാവന്നയിലെ ഡൌണ്‍ലോഡ് ഏരിയ തുടങ്ങി മറ്റു പല സേവനങ്ങള്‍ക്കും ഇതൊരു അവശ്യ നടപടി ക്രമമാണ്.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
ssh-keygen -b 1024 -t rsa&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
ഇത് സ്വകാര്യ കീയും മറ്റുള്ളവര്‍ക്കുള്ള കീയും സൃഷ്ടിയ്ക്കും. കീ .ssh/ ഫോള്‍ഡറിലല്ലെങ്കില്‍ സ്വകാര്യ കീ ssh client-ല്‍ ചേര്‍ക്കുക.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
ssh-add &amp;lt;path-to-key&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
ഇതിനു ശേഷം നിങ്ങളുടെ മറ്റുള്ളവര്‍ക്കുള്ള കീ സാവന്നയില്‍ ചേര്‍ക്കുക.&lt;br /&gt;
&lt;br /&gt;
[https://savannah.nongnu.org/projects/smc https://savannah.nongnu.org/projects/smc] എന്ന വിലാസത്തില്‍ നിങ്ങളുടെ ഉപയോക്താവിന്റെ പേരും അടയാളവാക്കുമുപയോഗിച്ച് അകത്തു കയറിയ ശേഷം, ഇടത് വശത്തുള്ള &#039;[https://savannah.nongnu.org/my/admin/ My Account Conf]&#039; എന്ന കണ്ണിയില്‍ ക്ലിക്ക് ചെയ്യുക.&lt;br /&gt;
&lt;br /&gt;
അവിടെ &#039;Authentication Setup&#039; എന്നതിനടിയില്‍ കൊടുത്തിട്ടുള്ള &#039;SSH Public key&#039; എന്നതുപയോഗിച്ച് നിങ്ങളുടെ .ssh/id_rsa.pub എന്ന ഫയലിലെ വിവരങ്ങള്‍ ചേര്‍ക്കുക.&lt;br /&gt;
&lt;br /&gt;
ഇത് എല്ലായിടത്തുമെത്താന്‍ ഒരു മണിക്കൂറോളമെടുത്തേയ്ക്കാം.&lt;br /&gt;
&lt;br /&gt;
ഗിറ്റ് ഇന്‍സ്റ്റാള്‍ ചെയ്ത് ക്രമീകരിയ്കാന്‍ താഴെ പറയുന്ന നടപടി ക്രമങ്ങള്‍ പിന്തുടരുക&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo apt-get install git-core&lt;br /&gt;
&lt;br /&gt;
git config --global user.name &amp;quot;Your Name Comes Here&amp;quot;&lt;br /&gt;
git config --global user.email you@yourdomain.example.com&lt;br /&gt;
&lt;br /&gt;
git clone ssh://&amp;lt;your login username&amp;gt;@git.sv.gnu.org/srv/git/smc.git&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
നിങ്ങള്‍ക്കിപ്പോള്‍ smc എന്ന തട്ടും അതിലെ ഫയലുകളും കാണാം. നിങ്ങള്‍ക്ക് വരുത്തേണ്ട മാറ്റങ്ങള്‍ വരുത്തിയതിന് ശേഷം താഴെ പറയുന്ന ആജ്ഞ ഉപയോഗിച്ച് നിങ്ങളുടെ മാറ്റങ്ങള്‍ സാവന്നയിലേയ്ക്കയയ്ക്കാവുന്നതാണ്.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
git push &amp;lt;your login username&amp;gt;@git.sv.gnu.org:/srv/git/smc.git master&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
ഇടയ്ക്കിടെ മറ്റുള്ളവര്‍ വരുത്തിയ മാറ്റങ്ങള്‍ ലഭ്യമാകാന്‍ നിങ്ങളുടെ പ്രാദേശിക ശേഖരം പുതുക്കുന്നതു് നല്ലതാണു്. ഗിറ്റ് ഫയലുകളുള്ള തട്ടില്‍ നിന്നും താഴെ കൊടുത്ത ആജ്ഞ അതിനുപയോഗിയ്ക്കാം.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
git pull&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[https://savannah.nongnu.org/git/?group=smc കൂടുതല്‍ വിവരങ്ങള്‍ ]&lt;br /&gt;
&lt;br /&gt;
[http://www.kernel.org/pub/software/scm/git/docs/tutorial.html A tutorial introduction to git]&lt;/div&gt;</summary>
		<author><name>Ershad</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=Git&amp;diff=1085</id>
		<title>Git</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=Git&amp;diff=1085"/>
		<updated>2010-07-02T14:02:56Z</updated>

		<summary type="html">&lt;p&gt;Ershad: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{prettyurl|Git}}&lt;br /&gt;
സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ്ങ് സോഴ്സ് കോഡ് കൈകാര്യം ചെയ്യാന്‍ ഗിറ്റാണുപയോഗിയ്ക്കുന്നത്. ഇതുപയോഗിയ്ക്കാനുള്ള നിര്‍ദ്ദേശങ്ങളാണിവിടെ.&lt;br /&gt;
&lt;br /&gt;
ആദ്യമായി ഒരു എസ്എസ്എച്ച് കീ നിര്‍മ്മിയ്ക്കുക. സാവന്നയിലെ ഡൌണ്‍ലോഡ് ഏരിയ തുടങ്ങി മറ്റു പല സേവനങ്ങള്‍ക്കും ഇതൊരു അവശ്യ നടപടി ക്രമമാണ്.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
ssh-keygen -b 1024 -t rsa&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
ഇത് സ്വകാര്യ കീയും മറ്റുള്ളവര്‍ക്കുള്ള കീയും സൃഷ്ടിയ്ക്കും. സ്വകാര്യ കീ ssh client-ല്‍ ചേര്‍ക്കുക.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
ssh-add &amp;lt;path-to-key&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
ഇതിനു ശേഷം നിങ്ങളുടെ മറ്റുള്ളവര്‍ക്കുള്ള കീ സാവന്നയില്‍ ചേര്‍ക്കുക.&lt;br /&gt;
&lt;br /&gt;
[https://savannah.nongnu.org/projects/smc https://savannah.nongnu.org/projects/smc] എന്ന വിലാസത്തില്‍ നിങ്ങളുടെ ഉപയോക്താവിന്റെ പേരും അടയാളവാക്കുമുപയോഗിച്ച് അകത്തു കയറിയ ശേഷം, ഇടത് വശത്തുള്ള &#039;[https://savannah.nongnu.org/my/admin/ My Account Conf]&#039; എന്ന കണ്ണിയില്‍ ക്ലിക്ക് ചെയ്യുക.&lt;br /&gt;
&lt;br /&gt;
അവിടെ &#039;Authentication Setup&#039; എന്നതിനടിയില്‍ കൊടുത്തിട്ടുള്ള &#039;SSH Public key&#039; എന്നതുപയോഗിച്ച് നിങ്ങളുടെ .ssh/id_rsa.pub എന്ന ഫയലിലെ വിവരങ്ങള്‍ ചേര്‍ക്കുക.&lt;br /&gt;
&lt;br /&gt;
ഇത് എല്ലായിടത്തുമെത്താന്‍ ഒരു മണിക്കൂറോളമെടുത്തേയ്ക്കാം.&lt;br /&gt;
&lt;br /&gt;
ഗിറ്റ് ഇന്‍സ്റ്റാള്‍ ചെയ്ത് ക്രമീകരിയ്കാന്‍ താഴെ പറയുന്ന നടപടി ക്രമങ്ങള്‍ പിന്തുടരുക&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo apt-get install git-core&lt;br /&gt;
&lt;br /&gt;
git config --global user.name &amp;quot;Your Name Comes Here&amp;quot;&lt;br /&gt;
git config --global user.email you@yourdomain.example.com&lt;br /&gt;
&lt;br /&gt;
git clone ssh://&amp;lt;your login username&amp;gt;@git.sv.gnu.org/srv/git/smc.git&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
നിങ്ങള്‍ക്കിപ്പോള്‍ smc എന്ന തട്ടും അതിലെ ഫയലുകളും കാണാം. നിങ്ങള്‍ക്ക് വരുത്തേണ്ട മാറ്റങ്ങള്‍ വരുത്തിയതിന് ശേഷം താഴെ പറയുന്ന ആജ്ഞ ഉപയോഗിച്ച് നിങ്ങളുടെ മാറ്റങ്ങള്‍ സാവന്നയിലേയ്ക്കയയ്ക്കാവുന്നതാണ്.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
git push &amp;lt;your login username&amp;gt;@git.sv.gnu.org:/srv/git/smc.git master&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
ഇടയ്ക്കിടെ മറ്റുള്ളവര്‍ വരുത്തിയ മാറ്റങ്ങള്‍ ലഭ്യമാകാന്‍ നിങ്ങളുടെ പ്രാദേശിക ശേഖരം പുതുക്കുന്നതു് നല്ലതാണു്. ഗിറ്റ് ഫയലുകളുള്ള തട്ടില്‍ നിന്നും താഴെ കൊടുത്ത ആജ്ഞ അതിനുപയോഗിയ്ക്കാം.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
git pull&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[https://savannah.nongnu.org/git/?group=smc കൂടുതല്‍ വിവരങ്ങള്‍ ]&lt;br /&gt;
&lt;br /&gt;
[http://www.kernel.org/pub/software/scm/git/docs/tutorial.html A tutorial introduction to git]&lt;/div&gt;</summary>
		<author><name>Ershad</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=Git&amp;diff=1084</id>
		<title>Git</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=Git&amp;diff=1084"/>
		<updated>2010-07-02T14:00:22Z</updated>

		<summary type="html">&lt;p&gt;Ershad: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{prettyurl|Git}}&lt;br /&gt;
സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ്ങ് സോഴ്സ് കോഡ് കൈകാര്യം ചെയ്യാന്‍ ഗിറ്റാണുപയോഗിയ്ക്കുന്നത്. ഇതുപയോഗിയ്ക്കാനുള്ള നിര്‍ദ്ദേശങ്ങളാണിവിടെ.&lt;br /&gt;
&lt;br /&gt;
ആദ്യമായി ഒരു എസ്എസ്എച്ച് കീ നിര്‍മ്മിയ്ക്കുക. സാവന്നയിലെ ഡൌണ്‍ലോഡ് ഏരിയ തുടങ്ങി മറ്റു പല സേവനങ്ങള്‍ക്കും ഇതൊരു അവശ്യ നടപടി ക്രമമാണ്.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
ssh-keygen -b 1024 -t rsa&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
ഇത് സ്വകാര്യ കീയും മറ്റുള്ളവര്‍ക്കുള്ള കീയും സൃഷ്ടിയ്ക്കും. സ്വകാര്യ കീ ssh client-ല്‍ ചേര്‍ക്കുക.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
ssh-add &amp;lt;path-to-key&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
ഇതിനു ശേഷം നിങ്ങളുടെ മറ്റുള്ളവര്‍ക്കുള്ള കീ സാവന്നയില്‍ ചേര്‍ക്കുക.&lt;br /&gt;
&lt;br /&gt;
[https://savannah.nongnu.org/projects/smc https://savannah.nongnu.org/projects/smc] എന്ന വിലാസത്തില്‍ നിങ്ങളുടെ ഉപയോക്താവിന്റെ പേരും അടയാളവാക്കുമുപയോഗിച്ച് അകത്തു കയറിയ ശേഷം, ഇടത് വശത്തുള്ള &#039;[https://savannah.nongnu.org/my/admin/ My Account Conf]&#039; എന്ന കണ്ണിയില്‍ ക്ലിക്ക് ചെയ്യുക.&lt;br /&gt;
&lt;br /&gt;
അവിടെ &#039;Authentication Setup&#039; എന്നതിനടിയില്‍ കൊടുത്തിട്ടുള്ള &#039;SSH Public key&#039; എന്നതുപയോഗിച്ച് നിങ്ങളുടെ .ssh/id_rsa.pub എന്ന ഫയലിലെ വിവരങ്ങള്‍ ചേര്‍ക്കുക.&lt;br /&gt;
&lt;br /&gt;
ഇത് എല്ലായിടത്തുമെത്താന്‍ ഒരു മണിക്കൂറോളമെടുത്തേയ്ക്കാം.&lt;br /&gt;
&lt;br /&gt;
ഗിറ്റ് ഇന്‍സ്റ്റാള്‍ ചെയ്ത് ക്രമീകരിയ്കാന്‍ താഴെ പറയുന്ന നടപടി ക്രമങ്ങള്‍ പിന്തുടരുക&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo apt-get install git-core&lt;br /&gt;
&lt;br /&gt;
git config --global user.name &amp;quot;Your Name Comes Here&amp;quot;&lt;br /&gt;
git config --global user.email you@yourdomain.example.com&lt;br /&gt;
&lt;br /&gt;
git clone ssh://login@git.sv.gnu.org/srv/git/smc.git&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
നിങ്ങള്‍ക്കിപ്പോള്‍ smc എന്ന തട്ടും അതിലെ ഫയലുകളും കാണാം. നിങ്ങള്‍ക്ക് വരുത്തേണ്ട മാറ്റങ്ങള്‍ വരുത്തിയതിന് ശേഷം താഴെ പറയുന്ന ആജ്ഞ ഉപയോഗിച്ച് നിങ്ങളുടെ മാറ്റങ്ങള്‍ സാവന്നയിലേയ്ക്കയയ്ക്കാവുന്നതാണ്.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
git push login@git.sv.gnu.org:/srv/git/smc.git master&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
ഇടയ്ക്കിടെ മറ്റുള്ളവര്‍ വരുത്തിയ മാറ്റങ്ങള്‍ ലഭ്യമാകാന്‍ നിങ്ങളുടെ പ്രാദേശിക ശേഖരം പുതുക്കുന്നതു് നല്ലതാണു്. ഗിറ്റ് ഫയലുകളുള്ള തട്ടില്‍ നിന്നും താഴെ കൊടുത്ത ആജ്ഞ അതിനുപയോഗിയ്ക്കാം.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
git pull&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[https://savannah.nongnu.org/git/?group=smc കൂടുതല്‍ വിവരങ്ങള്‍ ]&lt;br /&gt;
&lt;br /&gt;
[http://www.kernel.org/pub/software/scm/git/docs/tutorial.html A tutorial introduction to git]&lt;/div&gt;</summary>
		<author><name>Ershad</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=Git&amp;diff=1071</id>
		<title>Git</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=Git&amp;diff=1071"/>
		<updated>2010-06-30T15:42:45Z</updated>

		<summary type="html">&lt;p&gt;Ershad: Savannah currently recommends to use rsa keys&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{prettyurl|Git}}&lt;br /&gt;
സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ്ങ് സോഴ്സ് കോഡ് കൈകാര്യം ചെയ്യാന്‍ ഗിറ്റാണുപയോഗിയ്ക്കുന്നത്. ഇതുപയോഗിയ്ക്കാനുള്ള നിര്‍ദ്ദേശങ്ങളാണിവിടെ.&lt;br /&gt;
&lt;br /&gt;
ആദ്യമായി ഒരു എസ്എസ്എച്ച് കീ നിര്‍മ്മിയ്ക്കുക. സാവന്നയിലെ ഡൌണ്‍ലോഡ് ഏരിയ തുടങ്ങി മറ്റു പല സേവനങ്ങള്‍ക്കും ഇതൊരു അവശ്യ നടപടി ക്രമമാണ്.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
ssh-keygen -b 1024 -t rsa&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
ഇത് സ്വകാര്യ കീയും മറ്റുള്ളവര്‍ക്കുള്ള കീയും സൃഷ്ടിയ്ക്കും. സ്വകാര്യ കീ ssh client-ല്‍ ചേര്‍ക്കുക.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
ssh-add &amp;lt;path-to-key&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
ഇതിനു ശേഷം നിങ്ങളുടെ മറ്റുള്ളവര്‍ക്കുള്ള കീ സാവന്നയില്‍ ചേര്‍ക്കുക.&lt;br /&gt;
&lt;br /&gt;
[https://savannah.nongnu.org/projects/smc https://savannah.nongnu.org/projects/smc] എന്ന വിലാസത്തില്‍ നിങ്ങളുടെ ഉപയോക്താവിന്റെ പേരും അടയാളവാക്കുമുപയോഗിച്ച് അകത്തു കയറിയ ശേഷം, ഇടത് വശത്തുള്ള &#039;[https://savannah.nongnu.org/my/admin/ My Account Conf]&#039; എന്ന കണ്ണിയില്‍ ക്ലിക്ക് ചെയ്യുക.&lt;br /&gt;
&lt;br /&gt;
അവിടെ &#039;Authentication Setup&#039; എന്നതിനടിയില്‍ കൊടുത്തിട്ടുള്ള &#039;SSH Public key&#039; എന്നതുപയോഗിച്ച് നിങ്ങളുടെ .ssh/id_dsa.pub എന്ന ഫയലിലെ വിവരങ്ങള്‍ ചേര്‍ക്കുക.&lt;br /&gt;
&lt;br /&gt;
ഇത് എല്ലായിടത്തുമെത്താന്‍ ഒരു മണിക്കൂറോളമെടുത്തേയ്ക്കാം.&lt;br /&gt;
&lt;br /&gt;
ഗിറ്റ് ഇന്‍സ്റ്റാള്‍ ചെയ്ത് ക്രമീകരിയ്കാന്‍ താഴെ പറയുന്ന നടപടി ക്രമങ്ങള്‍ പിന്തുടരുക&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo apt-get install git-core&lt;br /&gt;
&lt;br /&gt;
git config --global user.name &amp;quot;Your Name Comes Here&amp;quot;&lt;br /&gt;
git config --global user.email you@yourdomain.example.com&lt;br /&gt;
&lt;br /&gt;
git clone ssh://login@git.sv.gnu.org/srv/git/smc.git&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
നിങ്ങള്‍ക്കിപ്പോള്‍ smc എന്ന തട്ടും അതിലെ ഫയലുകളും കാണാം. നിങ്ങള്‍ക്ക് വരുത്തേണ്ട മാറ്റങ്ങള്‍ വരുത്തിയതിന് ശേഷം താഴെ പറയുന്ന ആജ്ഞ ഉപയോഗിച്ച് നിങ്ങളുടെ മാറ്റങ്ങള്‍ സാവന്നയിലേയ്ക്കയയ്ക്കാവുന്നതാണ്.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
git push login@git.sv.gnu.org:/srv/git/smc.git master&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
ഇടയ്ക്കിടെ മറ്റുള്ളവര്‍ വരുത്തിയ മാറ്റങ്ങള്‍ ലഭ്യമാകാന്‍ നിങ്ങളുടെ പ്രാദേശിക ശേഖരം പുതുക്കുന്നതു് നല്ലതാണു്. ഗിറ്റ് ഫയലുകളുള്ള തട്ടില്‍ നിന്നും താഴെ കൊടുത്ത ആജ്ഞ അതിനുപയോഗിയ്ക്കാം.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
git pull&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[https://savannah.nongnu.org/git/?group=smc കൂടുതല്‍ വിവരങ്ങള്‍ ]&lt;br /&gt;
&lt;br /&gt;
[http://www.kernel.org/pub/software/scm/git/docs/tutorial.html A tutorial introduction to git]&lt;/div&gt;</summary>
		<author><name>Ershad</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=%E0%B4%95%E0%B5%86.%E0%B4%A1%E0%B4%BF.%E0%B4%87_%E0%B4%AE%E0%B4%B2%E0%B4%AF%E0%B4%BE%E0%B4%B3%E0%B4%82&amp;diff=1069</id>
		<title>കെ.ഡി.ഇ മലയാളം</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=%E0%B4%95%E0%B5%86.%E0%B4%A1%E0%B4%BF.%E0%B4%87_%E0%B4%AE%E0%B4%B2%E0%B4%AF%E0%B4%BE%E0%B4%B3%E0%B4%82&amp;diff=1069"/>
		<updated>2010-06-29T09:11:24Z</updated>

		<summary type="html">&lt;p&gt;Ershad: &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;
കെഡിഇ മലയാളം [[പ്രധാനതാള്‍| സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ്ങി]]ലെ ഒരംഗമാണു്. സ്വതന്ത്ര കമ്പ്യൂട്ടര്‍ പ്രവര്‍ത്തക സംവിധാനങ്ങള്‍ക്കായുള്ള കെഡിഇ പണിയിടം മലയാളത്തില്‍ ലഭ്യമാക്കുകയാണു് ഈ ഉപസംരംഭത്തിന്റെ ലക്ഷ്യം. ഈ ഉപസംരംഭത്തിലെ അംഗങ്ങളുടെ നാമാവലി [http://l10n.kde.org/team-infos.php?teamcode=ml ഇവിടെ]. നിങ്ങള്‍ക്കും ഇതിലംഗമാകാവുന്നതാണു്. ഗ്നോം നൂറടിയ്ക്കുന്നതിനു് മുമ്പേ നൂറടിയ്ക്കുക എന്നതാണു് കെഡിഇ മലയാളത്തിന്റെ ഒരു ലക്ഷ്യം. നിങ്ങളുടെ സജീവ പങ്കാളിത്തമില്ലാതെ ഈ ലക്ഷ്യം കൈവരിയ്ക്കാന്‍ സാധ്യമല്ല. കെഡിഇയെ എപ്പോഴും ഒരു രണ്ടാം തരക്കാരനായി കണക്കാക്കുന്നതായി നിങ്ങള്‍ക്കു് തോന്നിയിട്ടുണ്ടോ? ഒരു കെഡിഇ പ്രേമിയാണെങ്കില്‍ അതിനൊരു മാറ്റം വരുത്താനിതാ നിങ്ങള്‍ക്കൊരവസരം. ഇനിയും മടിച്ചു് നില്‍ക്കാതെ ഇന്നു് തന്നെ ഒരു ഫയല്‍ പരിഭാഷപ്പെടുത്തിത്തുടങ്ങൂ.&lt;br /&gt;
&lt;br /&gt;
പരിഭാഷ ചെയ്യേണ്ട ഫയലുകള്‍ [http://l10n.kde.org/stats/gui/trunk-kde4/team/ml/ ഇവിടെ] ലഭ്യമാണ്.&lt;br /&gt;
&lt;br /&gt;
ആദ്യമായി മലയാളം കെഡിഇയില്‍ ഉള്‍പ്പെടുത്തുന്നതിനായി [http://l10n.kde.org/stats/gui/trunk-kde4/essential/ ഏറ്റവും പ്രധാനപ്പെട്ട] ഫയലുകളുടെ പരിഭാഷ പൂര്‍ത്തിയായിരിയ്ക്കണം. ഈ ഉപസംരംഭത്തില്‍ പങ്കുചേരാന്‍ നിങ്ങളാഗ്രഹിയ്ക്കുന്നെങ്കില്‍ [http://l10n.kde.org/stats/gui/trunk-kde4/team/ml/kdebase/index.php കെഡിഇബേസിലെ] ഏതെങ്കിലും ഒരു ഫയല്‍ പരിഭാഷപ്പെടുത്തി തുടങ്ങാം. നിങ്ങള്‍ തിരഞ്ഞെടുത്ത ഫയല്‍ തന്നെ വേറൊരാള്‍ കൂടി പരിഭാഷപ്പെടുത്തുന്നതൊഴിവാക്കാന്‍ താഴെ നിങ്ങളുടെ പേരും പരിഭാഷപ്പെടുത്തുന്ന ഫയലും ചേര്‍ക്കുക.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;[[പ്രാദേശികവത്കരണ പ്രക്രിയാ നടപടിക്രമങ്ങള്‍]] എന്ന കണ്ണിയില്‍ പരിഭാഷ ചെയ്തു് തുടങ്ങാന്‍ സഹായകരമായ പൊതുവായുള്ള കൂടുതല്‍ വിവരങ്ങളുണ്ടു്&#039;&#039;&#039;. കെഡിഇ സംഭരണിയില്‍ പരിഭാഷകള്‍ ചേര്‍ക്കാന്‍ അനുമതിയുള്ള അംഗങ്ങളാണു് മാക്സിന്‍ ബി ജോണും പ്രവീണും അനി പീറ്ററും ശരത് ലക്ഷ്മണും.&lt;br /&gt;
&lt;br /&gt;
കെഡിഇ പരിഭാഷ ചെയ്തുകൊണ്ടിരിയ്ക്കുന്ന ഭാഷകളില്‍ 59 മതു് സ്ഥാനമാണു് നമ്മള്‍ക്കിപ്പോഴുള്ളതു്. ആകെ 101 ഭാഷകളുള്ളതില്‍ ഒന്നാം സ്ഥാനത്തു് നില്‍ക്കുന്നതു് പോര്‍ച്ചുഗീസും ഉക്രേനിയനും ഇന്ത്യന്‍ ഭാഷകളില്‍ ഒന്നാം സ്ഥാനത്തു് നില്‍ക്കുന്നതു് തമിഴുമാണു്. എല്ലാ ഭാഷകളുമുള്‍പ്പെടുത്തിയ പട്ടിക [http://l10n.kde.org/stats/gui/trunk-kde4/toplist/ ഇവിടെ]&lt;br /&gt;
&lt;br /&gt;
==ശ്രദ്ധിയ്ക്കുക==&lt;br /&gt;
 l10n.kde.org പലപ്പോഴും പ്രവര്‍ത്തനരഹിതമായതിനാല്‍ [http://websvn.kde.org/trunk/l10n-kde4/templates/messages/ ഇവിടെ] നിന്നും ഫയലുകളെടുക്കാവുന്നതാണു്.  &lt;br /&gt;
 പക്ഷേ എടുക്കുന്നതിനു് മുമ്പു് [http://websvn.kde.org/trunk/l10n-kde4/ml/messages/ ഇവിടെ] നോക്കി അതു് നേരത്തെ പരിഭാഷ ചെയ്തിട്ടില്ലെന്നുറപ്പു് വരുത്തുക. &lt;br /&gt;
 മുഴുവനല്ലാത്ത പരിഭാഷകള്‍ പരിഭാഷകള്‍ പൂര്‍ത്തിയാക്കാനോ, മുഴുവനായവ മെച്ചപ്പെടുത്താനോ സഹായിയ്ക്കാവുന്നതാണു്.&lt;br /&gt;
 kdebase ല്‍ പരിഭാഷപ്പെടുത്തിയിട്ടുള്ള ഫയലുകളുടെ പട്ടിക [http://download.savannah.gnu.org/releases/smc/kdebase-list.txt ഇവിടെ]. kdebase ല്‍ നിന്നും ഒരു &lt;br /&gt;
 ഫയല്‍ പരിഭാഷപ്പെടുത്താനെടുക്കുന്നതിനു് മുമ്പു് ഈ പട്ടിക നോക്കുക.&lt;br /&gt;
&lt;br /&gt;
==പരിഭാഷപ്പെടുത്തിക്കൊണ്ടിരിയ്ക്കുന്ന പാക്കേജുകളും പരിഭാഷകരും==&lt;br /&gt;
&#039;&#039;&#039;വിക്കിയില്‍ മാറ്റം വരുത്തുമ്പോള്‍ ശ്രദ്ധിക്കേണ്ട കാര്യങ്ങള്‍:&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
1. നിങ്ങള്‍ തര്‍ജ്ജമ ചെയ്യുന്നതിനായി [http://l10n.kde.org/stats/gui/trunk-kde4/team/ml/ കെഡിഇ l10n സ്റ്റേറ്റസ് പേജു്] -ല്‍ നിന്നും ഒരു ഫയല്‍ എടുക്കുന്നതിനുമുമ്പായി വിക്കി നോക്കുക. &lt;br /&gt;
&lt;br /&gt;
2. എടുത്ത ഫയലിന്റെ പേരു് നിങ്ങളുടെ പേരിനോടൊപ്പം വിക്കിയില്‍ ചേര്‍ക്കുക. &lt;br /&gt;
&lt;br /&gt;
3. തര്‍ജ്ജമ ചെയ്ത ഫയല്‍ റിവ്യൂ ചെയ്യുന്നതിനായി അയയ്ച്ചതിനു് ശേഷം, വിക്കിയില്‍ ആ ഫയല്‍ &#039;&#039;&#039;ബോള്‍ഡാക്കുക&#039;&#039;&#039;. &lt;br /&gt;
&lt;br /&gt;
4. റിവ്യൂ ചെയ്ത ഫയല്‍ കമ്മിറ്റ് ചെയ്ത ശേഷം ആ വ്യക്തി (ഇവിടെ, പ്രവീണ്‍) അതു് &#039;&#039;ഇറ്റാലിക്സിലാക്കുക&#039;&#039;. &lt;br /&gt;
5. [http://l10n.kde.org/stats/gui/trunk-kde4/team/ml/ കെഡിഇ l10n സ്റ്റേറ്റസ് പേജു്] പരിഷ്കരിച്ച ശേഷം, ഇറ്റാലിക്സിലുള്ള കമ്മിറ്റ് ചെയ്ത ഫയലുകളെ വിക്കിയില്‍ നിന്നും &lt;br /&gt;
പ്രവീണ്‍/അനി നീക്കം ചെയ്യുക.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
!style=&amp;quot;background:#ffdead;&amp;quot; | PO File &lt;br /&gt;
!style=&amp;quot;background:#ffdead;&amp;quot; | Translators &lt;br /&gt;
|- style=&amp;quot;background:#efefef;&amp;quot;&lt;br /&gt;
|colspan=&amp;quot;5&amp;quot; align=&amp;quot;center&amp;quot; | &#039;&#039;&#039;extragear-multimedia&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* amarok.pot &lt;br /&gt;
| Jesse Francis&lt;br /&gt;
|- style=&amp;quot;background:#efefef;&amp;quot;&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot; align=&amp;quot;center&amp;quot; | &#039;&#039;&#039;kdebase&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* kio_sftp.po&lt;br /&gt;
| Hari Vishnu&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* kcmkwinrules.po&lt;br /&gt;
| Pratheesh Prakash&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* processui.po&lt;br /&gt;
| Anoop Panavalappil&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* kcm_platform.pot&lt;br /&gt;
| Nadir K M&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* kdmconfig.po&lt;br /&gt;
* kfontinst.po&lt;br /&gt;
| Manu Madhav&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* &#039;&#039;&#039;freespacenotifier.pot&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;plasma_runner_kill.pot&#039;&#039;&#039;&lt;br /&gt;
| Hrishikesh.K B&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* plasma_engine_soliddevice.pot&lt;br /&gt;
| ArkArjun&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* webarchiver.pot&lt;br /&gt;
*desktop_extragear-base_kwebkitpart.pot &lt;br /&gt;
| Raru Rv&lt;br /&gt;
|-&lt;br /&gt;
|- style=&amp;quot;background:#efefef;&amp;quot;&lt;br /&gt;
|colspan=&amp;quot;5&amp;quot; align=&amp;quot;center&amp;quot; | &#039;&#039;&#039;kdeedu&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* kig.po&lt;br /&gt;
| Anoop Panavalappil&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* kstars.po&lt;br /&gt;
| Manu Madhav, Shiju Alex&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* kanagram.po&lt;br /&gt;
|Shyam K&lt;br /&gt;
|- style=&amp;quot;background:#efefef;&amp;quot;&lt;br /&gt;
|colspan=&amp;quot;5&amp;quot; align=&amp;quot;center&amp;quot; | &#039;&#039;&#039;kdegames&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
| Abhishek Oommen Jacob&lt;br /&gt;
|- style=&amp;quot;background:#efefef;&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background:#efefef;&amp;quot;&lt;br /&gt;
|colspan=&amp;quot;5&amp;quot; align=&amp;quot;center&amp;quot; | &#039;&#039;&#039;koffice&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* kspread.po&lt;br /&gt;
| Manu Madhav&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* [[കെ ഡി ഇ 4.5 പതിപ്പില്‍ പ്രവര്‍ത്തിച്ചവരുടെ പേരുകള്‍]] - ഇപ്പോള്‍ സജീവമായി നടക്കുന്നു&lt;br /&gt;
* [[കെ ഡി ഇ 4.4 പതിപ്പില്‍ പ്രവര്‍ത്തിച്ചവരുടെ പേരുകള്‍]]&lt;br /&gt;
* [[കെ ഡി ഇ 4.2 പതിപ്പില്‍ പ്രവര്‍ത്തിച്ചവരുടെ പേരുകള്‍]]&lt;br /&gt;
* [[കെ ഡി ഇ 4.1 പതിപ്പില്‍ പ്രവര്‍ത്തിച്ചവരുടെ പേരുകള്‍]]&lt;/div&gt;</summary>
		<author><name>Ershad</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=%E0%B4%95%E0%B5%86.%E0%B4%A1%E0%B4%BF.%E0%B4%87_%E0%B4%AE%E0%B4%B2%E0%B4%AF%E0%B4%BE%E0%B4%B3%E0%B4%82&amp;diff=1068</id>
		<title>കെ.ഡി.ഇ മലയാളം</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=%E0%B4%95%E0%B5%86.%E0%B4%A1%E0%B4%BF.%E0%B4%87_%E0%B4%AE%E0%B4%B2%E0%B4%AF%E0%B4%BE%E0%B4%B3%E0%B4%82&amp;diff=1068"/>
		<updated>2010-06-28T14:54:31Z</updated>

		<summary type="html">&lt;p&gt;Ershad: &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;
കെഡിഇ മലയാളം [[പ്രധാനതാള്‍| സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ്ങി]]ലെ ഒരംഗമാണു്. സ്വതന്ത്ര കമ്പ്യൂട്ടര്‍ പ്രവര്‍ത്തക സംവിധാനങ്ങള്‍ക്കായുള്ള കെഡിഇ പണിയിടം മലയാളത്തില്‍ ലഭ്യമാക്കുകയാണു് ഈ ഉപസംരംഭത്തിന്റെ ലക്ഷ്യം. ഈ ഉപസംരംഭത്തിലെ അംഗങ്ങളുടെ നാമാവലി [http://l10n.kde.org/team-infos.php?teamcode=ml ഇവിടെ]. നിങ്ങള്‍ക്കും ഇതിലംഗമാകാവുന്നതാണു്. ഗ്നോം നൂറടിയ്ക്കുന്നതിനു് മുമ്പേ നൂറടിയ്ക്കുക എന്നതാണു് കെഡിഇ മലയാളത്തിന്റെ ഒരു ലക്ഷ്യം. നിങ്ങളുടെ സജീവ പങ്കാളിത്തമില്ലാതെ ഈ ലക്ഷ്യം കൈവരിയ്ക്കാന്‍ സാധ്യമല്ല. കെഡിഇയെ എപ്പോഴും ഒരു രണ്ടാം തരക്കാരനായി കണക്കാക്കുന്നതായി നിങ്ങള്‍ക്കു് തോന്നിയിട്ടുണ്ടോ? ഒരു കെഡിഇ പ്രേമിയാണെങ്കില്‍ അതിനൊരു മാറ്റം വരുത്താനിതാ നിങ്ങള്‍ക്കൊരവസരം. ഇനിയും മടിച്ചു് നില്‍ക്കാതെ ഇന്നു് തന്നെ ഒരു ഫയല്‍ പരിഭാഷപ്പെടുത്തിത്തുടങ്ങൂ.&lt;br /&gt;
&lt;br /&gt;
പരിഭാഷ ചെയ്യേണ്ട ഫയലുകള്‍ [http://l10n.kde.org/stats/gui/trunk-kde4/team/ml/ ഇവിടെ] ലഭ്യമാണ്.&lt;br /&gt;
&lt;br /&gt;
ആദ്യമായി മലയാളം കെഡിഇയില്‍ ഉള്‍പ്പെടുത്തുന്നതിനായി [http://l10n.kde.org/stats/gui/trunk-kde4/essential/ ഏറ്റവും പ്രധാനപ്പെട്ട] ഫയലുകളുടെ പരിഭാഷ പൂര്‍ത്തിയായിരിയ്ക്കണം. ഈ ഉപസംരംഭത്തില്‍ പങ്കുചേരാന്‍ നിങ്ങളാഗ്രഹിയ്ക്കുന്നെങ്കില്‍ [http://l10n.kde.org/stats/gui/trunk-kde4/team/ml/kdebase/index.php കെഡിഇബേസിലെ] ഏതെങ്കിലും ഒരു ഫയല്‍ പരിഭാഷപ്പെടുത്തി തുടങ്ങാം. നിങ്ങള്‍ തിരഞ്ഞെടുത്ത ഫയല്‍ തന്നെ വേറൊരാള്‍ കൂടി പരിഭാഷപ്പെടുത്തുന്നതൊഴിവാക്കാന്‍ താഴെ നിങ്ങളുടെ പേരും പരിഭാഷപ്പെടുത്തുന്ന ഫയലും ചേര്‍ക്കുക.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;[[പ്രാദേശികവത്കരണ പ്രക്രിയാ നടപടിക്രമങ്ങള്‍]] എന്ന കണ്ണിയില്‍ പരിഭാഷ ചെയ്തു് തുടങ്ങാന്‍ സഹായകരമായ പൊതുവായുള്ള കൂടുതല്‍ വിവരങ്ങളുണ്ടു്&#039;&#039;&#039;. കെഡിഇ സംഭരണിയില്‍ പരിഭാഷകള്‍ ചേര്‍ക്കാന്‍ അനുമതിയുള്ള അംഗങ്ങളാണു് മാക്സിന്‍ ബി ജോണും പ്രവീണും അനി പീറ്ററും ശരത് ലക്ഷ്മണും.&lt;br /&gt;
&lt;br /&gt;
കെഡിഇ പരിഭാഷ ചെയ്തുകൊണ്ടിരിയ്ക്കുന്ന ഭാഷകളില്‍ 59 മതു് സ്ഥാനമാണു് നമ്മള്‍ക്കിപ്പോഴുള്ളതു്. ആകെ 101 ഭാഷകളുള്ളതില്‍ ഒന്നാം സ്ഥാനത്തു് നില്‍ക്കുന്നതു് പോര്‍ച്ചുഗീസും ഉക്രേനിയനും ഇന്ത്യന്‍ ഭാഷകളില്‍ ഒന്നാം സ്ഥാനത്തു് നില്‍ക്കുന്നതു് തമിഴുമാണു്. എല്ലാ ഭാഷകളുമുള്‍പ്പെടുത്തിയ പട്ടിക [http://l10n.kde.org/stats/gui/trunk-kde4/toplist/ ഇവിടെ]&lt;br /&gt;
&lt;br /&gt;
==ശ്രദ്ധിയ്ക്കുക==&lt;br /&gt;
 l10n.kde.org പലപ്പോഴും പ്രവര്‍ത്തനരഹിതമായതിനാല്‍ [http://websvn.kde.org/trunk/l10n-kde4/templates/messages/ ഇവിടെ] നിന്നും ഫയലുകളെടുക്കാവുന്നതാണു്.  &lt;br /&gt;
 പക്ഷേ എടുക്കുന്നതിനു് മുമ്പു് [http://websvn.kde.org/trunk/l10n-kde4/ml/messages/ ഇവിടെ] നോക്കി അതു് നേരത്തെ പരിഭാഷ ചെയ്തിട്ടില്ലെന്നുറപ്പു് വരുത്തുക. &lt;br /&gt;
 മുഴുവനല്ലാത്ത പരിഭാഷകള്‍ പരിഭാഷകള്‍ പൂര്‍ത്തിയാക്കാനോ, മുഴുവനായവ മെച്ചപ്പെടുത്താനോ സഹായിയ്ക്കാവുന്നതാണു്.&lt;br /&gt;
 kdebase ല്‍ പരിഭാഷപ്പെടുത്തിയിട്ടുള്ള ഫയലുകളുടെ പട്ടിക [http://download.savannah.gnu.org/releases/smc/kdebase-list.txt ഇവിടെ]. kdebase ല്‍ നിന്നും ഒരു &lt;br /&gt;
 ഫയല്‍ പരിഭാഷപ്പെടുത്താനെടുക്കുന്നതിനു് മുമ്പു് ഈ പട്ടിക നോക്കുക.&lt;br /&gt;
&lt;br /&gt;
==പരിഭാഷപ്പെടുത്തിക്കൊണ്ടിരിയ്ക്കുന്ന പാക്കേജുകളും പരിഭാഷകരും==&lt;br /&gt;
&#039;&#039;&#039;വിക്കിയില്‍ മാറ്റം വരുത്തുമ്പോള്‍ ശ്രദ്ധിക്കേണ്ട കാര്യങ്ങള്‍:&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
1. നിങ്ങള്‍ തര്‍ജ്ജമ ചെയ്യുന്നതിനായി [http://l10n.kde.org/stats/gui/trunk-kde4/team/ml/ കെഡിഇ l10n സ്റ്റേറ്റസ് പേജു്] -ല്‍ നിന്നും ഒരു ഫയല്‍ എടുക്കുന്നതിനുമുമ്പായി വിക്കി നോക്കുക. &lt;br /&gt;
&lt;br /&gt;
2. എടുത്ത ഫയലിന്റെ പേരു് നിങ്ങളുടെ പേരിനോടൊപ്പം വിക്കിയില്‍ ചേര്‍ക്കുക. &lt;br /&gt;
&lt;br /&gt;
3. തര്‍ജ്ജമ ചെയ്ത ഫയല്‍ റിവ്യൂ ചെയ്യുന്നതിനായി അയയ്ച്ചതിനു് ശേഷം, വിക്കിയില്‍ ആ ഫയല്‍ &#039;&#039;&#039;ബോള്‍ഡാക്കുക&#039;&#039;&#039;. &lt;br /&gt;
&lt;br /&gt;
4. റിവ്യൂ ചെയ്ത ഫയല്‍ കമ്മിറ്റ് ചെയ്ത ശേഷം ആ വ്യക്തി (ഇവിടെ, പ്രവീണ്‍) അതു് &#039;&#039;ഇറ്റാലിക്സിലാക്കുക&#039;&#039;. &lt;br /&gt;
5. [http://l10n.kde.org/stats/gui/trunk-kde4/team/ml/ കെഡിഇ l10n സ്റ്റേറ്റസ് പേജു്] പരിഷ്കരിച്ച ശേഷം, ഇറ്റാലിക്സിലുള്ള കമ്മിറ്റ് ചെയ്ത ഫയലുകളെ വിക്കിയില്‍ നിന്നും &lt;br /&gt;
പ്രവീണ്‍/അനി നീക്കം ചെയ്യുക.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
!style=&amp;quot;background:#ffdead;&amp;quot; | PO File &lt;br /&gt;
!style=&amp;quot;background:#ffdead;&amp;quot; | Translators &lt;br /&gt;
|- style=&amp;quot;background:#efefef;&amp;quot;&lt;br /&gt;
|colspan=&amp;quot;5&amp;quot; align=&amp;quot;center&amp;quot; | &#039;&#039;&#039;extragear-multimedia&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* amarok.pot &lt;br /&gt;
| Jesse Francis&lt;br /&gt;
|- style=&amp;quot;background:#efefef;&amp;quot;&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot; align=&amp;quot;center&amp;quot; | &#039;&#039;&#039;kdebase&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* kio_sftp.po&lt;br /&gt;
| Hari Vishnu&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* kcmkwinrules.po&lt;br /&gt;
| Pratheesh Prakash&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* processui.po&lt;br /&gt;
| Anoop Panavalappil&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* kcm_platform.pot&lt;br /&gt;
| Nadir K M&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* kdmconfig.po&lt;br /&gt;
* kfontinst.po&lt;br /&gt;
| Manu Madhav&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* &#039;&#039;&#039;freespacenotifier.pot&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;plasma_runner_kill.pot&#039;&#039;&#039;&lt;br /&gt;
| Hrishikesh.K B&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* plasma_engine_soliddevice.pot&lt;br /&gt;
| ArkArjun&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* webarchiver.pot&lt;br /&gt;
*desktop_extragear-base_kwebkitpart.pot &lt;br /&gt;
| Raru Rv&lt;br /&gt;
|-&lt;br /&gt;
|- style=&amp;quot;background:#efefef;&amp;quot;&lt;br /&gt;
|colspan=&amp;quot;5&amp;quot; align=&amp;quot;center&amp;quot; | &#039;&#039;&#039;kdeedu&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* kig.po&lt;br /&gt;
| Anoop Panavalappil&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* kstars.po&lt;br /&gt;
| Manu Madhav, Shiju Alex&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* kanagram.po&lt;br /&gt;
|Shyam K&lt;br /&gt;
|- style=&amp;quot;background:#efefef;&amp;quot;&lt;br /&gt;
|colspan=&amp;quot;5&amp;quot; align=&amp;quot;center&amp;quot; | &#039;&#039;&#039;kdegames&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
| Abhishek Oommen Jacob&lt;br /&gt;
|- style=&amp;quot;background:#efefef;&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background:#efefef;&amp;quot;&lt;br /&gt;
|colspan=&amp;quot;5&amp;quot; align=&amp;quot;center&amp;quot; | &#039;&#039;&#039;koffice&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* kspread.po&lt;br /&gt;
| Manu Madhav&lt;br /&gt;
|-&lt;br /&gt;
|- style=&amp;quot;background:#efefef;&amp;quot;&lt;br /&gt;
|colspan=&amp;quot;5&amp;quot; align=&amp;quot;center&amp;quot; | &#039;&#039;&#039;kdelibs&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* kdelibs4.po&lt;br /&gt;
| Ershad K&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* [[കെ ഡി ഇ 4.5 പതിപ്പില്‍ പ്രവര്‍ത്തിച്ചവരുടെ പേരുകള്‍]] - ഇപ്പോള്‍ സജീവമായി നടക്കുന്നു&lt;br /&gt;
* [[കെ ഡി ഇ 4.4 പതിപ്പില്‍ പ്രവര്‍ത്തിച്ചവരുടെ പേരുകള്‍]]&lt;br /&gt;
* [[കെ ഡി ഇ 4.2 പതിപ്പില്‍ പ്രവര്‍ത്തിച്ചവരുടെ പേരുകള്‍]]&lt;br /&gt;
* [[കെ ഡി ഇ 4.1 പതിപ്പില്‍ പ്രവര്‍ത്തിച്ചവരുടെ പേരുകള്‍]]&lt;/div&gt;</summary>
		<author><name>Ershad</name></author>
	</entry>
	<entry>
		<id>https://wiki.smc.org.in/index.php?title=%E0%B4%95%E0%B5%86.%E0%B4%A1%E0%B4%BF.%E0%B4%87_%E0%B4%AE%E0%B4%B2%E0%B4%AF%E0%B4%BE%E0%B4%B3%E0%B4%82&amp;diff=1044</id>
		<title>കെ.ഡി.ഇ മലയാളം</title>
		<link rel="alternate" type="text/html" href="https://wiki.smc.org.in/index.php?title=%E0%B4%95%E0%B5%86.%E0%B4%A1%E0%B4%BF.%E0%B4%87_%E0%B4%AE%E0%B4%B2%E0%B4%AF%E0%B4%BE%E0%B4%B3%E0%B4%82&amp;diff=1044"/>
		<updated>2010-06-24T05:23:19Z</updated>

		<summary type="html">&lt;p&gt;Ershad: &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;
കെഡിഇ മലയാളം [[പ്രധാനതാള്‍| സ്വതന്ത്ര മലയാളം കമ്പ്യൂട്ടിങ്ങി]]ലെ ഒരംഗമാണു്. സ്വതന്ത്ര കമ്പ്യൂട്ടര്‍ പ്രവര്‍ത്തക സംവിധാനങ്ങള്‍ക്കായുള്ള കെഡിഇ പണിയിടം മലയാളത്തില്‍ ലഭ്യമാക്കുകയാണു് ഈ ഉപസംരംഭത്തിന്റെ ലക്ഷ്യം. ഈ ഉപസംരംഭത്തിലെ അംഗങ്ങളുടെ നാമാവലി [http://l10n.kde.org/team-infos.php?teamcode=ml ഇവിടെ]. നിങ്ങള്‍ക്കും ഇതിലംഗമാകാവുന്നതാണു്. ഗ്നോം നൂറടിയ്ക്കുന്നതിനു് മുമ്പേ നൂറടിയ്ക്കുക എന്നതാണു് കെഡിഇ മലയാളത്തിന്റെ ഒരു ലക്ഷ്യം. നിങ്ങളുടെ സജീവ പങ്കാളിത്തമില്ലാതെ ഈ ലക്ഷ്യം കൈവരിയ്ക്കാന്‍ സാധ്യമല്ല. കെഡിഇയെ എപ്പോഴും ഒരു രണ്ടാം തരക്കാരനായി കണക്കാക്കുന്നതായി നിങ്ങള്‍ക്കു് തോന്നിയിട്ടുണ്ടോ? ഒരു കെഡിഇ പ്രേമിയാണെങ്കില്‍ അതിനൊരു മാറ്റം വരുത്താനിതാ നിങ്ങള്‍ക്കൊരവസരം. ഇനിയും മടിച്ചു് നില്‍ക്കാതെ ഇന്നു് തന്നെ ഒരു ഫയല്‍ പരിഭാഷപ്പെടുത്തിത്തുടങ്ങൂ.&lt;br /&gt;
&lt;br /&gt;
പരിഭാഷ ചെയ്യേണ്ട ഫയലുകള്‍ [http://l10n.kde.org/stats/gui/trunk-kde4/team/ml/ ഇവിടെ] ലഭ്യമാണ്.&lt;br /&gt;
&lt;br /&gt;
ആദ്യമായി മലയാളം കെഡിഇയില്‍ ഉള്‍പ്പെടുത്തുന്നതിനായി [http://l10n.kde.org/stats/gui/trunk-kde4/essential/ ഏറ്റവും പ്രധാനപ്പെട്ട] ഫയലുകളുടെ പരിഭാഷ പൂര്‍ത്തിയായിരിയ്ക്കണം. ഈ ഉപസംരംഭത്തില്‍ പങ്കുചേരാന്‍ നിങ്ങളാഗ്രഹിയ്ക്കുന്നെങ്കില്‍ [http://l10n.kde.org/stats/gui/trunk-kde4/team/ml/kdebase/index.php കെഡിഇബേസിലെ] ഏതെങ്കിലും ഒരു ഫയല്‍ പരിഭാഷപ്പെടുത്തി തുടങ്ങാം. നിങ്ങള്‍ തിരഞ്ഞെടുത്ത ഫയല്‍ തന്നെ വേറൊരാള്‍ കൂടി പരിഭാഷപ്പെടുത്തുന്നതൊഴിവാക്കാന്‍ താഴെ നിങ്ങളുടെ പേരും പരിഭാഷപ്പെടുത്തുന്ന ഫയലും ചേര്‍ക്കുക.&lt;br /&gt;
&lt;br /&gt;
[[സ്വതന്ത്ര_മലയാളം_കമ്പ്യൂട്ടിങ്ങ്/പ്രാദേശികവത്കരണ_പ്രക്രിയാ_നടപടിക്രമങ്ങള്‍|പ്രാദേശികവത്കരണ പ്രക്രിയാ നടപടിക്രമങ്ങള്‍]] എന്ന കണ്ണിയില്‍ പൊതുവായുള്ള കൂടുതല്‍ വിവരങ്ങളുണ്ടു്. കെഡിഇ സംഭരണിയില്‍ പരിഭാഷകള്‍ ചേര്‍ക്കാന്‍ അനുമതിയുള്ള അംഗങ്ങളാണു് മാക്സിന്‍ ബി ജോണും പ്രവീണും അനി പീറ്ററും ശരതി ലക്ഷ്മണും.&lt;br /&gt;
&lt;br /&gt;
കെഡിഇ പരിഭാഷ ചെയ്തുകൊണ്ടിരിയ്ക്കുന്ന ഭാഷകളില്‍ 59 മതു് സ്ഥാനമാണു് നമ്മള്‍ക്കിപ്പോഴുള്ളതു്. ആകെ 101 ഭാഷകളുള്ളതില്‍ ഒന്നാം സ്ഥാനത്തു് നില്‍ക്കുന്നതു് പോര്‍ച്ചുഗീസും ഉക്രേനിയനും ഇന്ത്യന്‍ ഭാഷകളില്‍ ഒന്നാം സ്ഥാനത്തു് നില്‍ക്കുന്നതു് തമിഴുമാണു്. എല്ലാ ഭാഷകളുമുള്‍പ്പെടുത്തിയ പട്ടിക [http://l10n.kde.org/stats/gui/trunk-kde4/toplist/ ഇവിടെ]&lt;br /&gt;
&lt;br /&gt;
==ശ്രദ്ധിയ്ക്കുക==&lt;br /&gt;
 l10n.kde.org പലപ്പോഴും പ്രവര്‍ത്തനരഹിതമായതിനാല്‍ [http://websvn.kde.org/trunk/l10n-kde4/templates/messages/ ഇവിടെ] നിന്നും ഫയലുകളെടുക്കാവുന്നതാണു്.  &lt;br /&gt;
 പക്ഷേ എടുക്കുന്നതിനു് മുമ്പു് [http://websvn.kde.org/trunk/l10n-kde4/ml/messages/ ഇവിടെ] നോക്കി അതു് നേരത്തെ പരിഭാഷ ചെയ്തിട്ടില്ലെന്നുറപ്പു് വരുത്തുക. &lt;br /&gt;
 മുഴുവനല്ലാത്ത പരിഭാഷകള്‍ പരിഭാഷകള്‍ പൂര്‍ത്തിയാക്കാനോ, മുഴുവനായവ മെച്ചപ്പെടുത്താനോ സഹായിയ്ക്കാവുന്നതാണു്.&lt;br /&gt;
 kdebase ല്‍ പരിഭാഷപ്പെടുത്തിയിട്ടുള്ള ഫയലുകളുടെ പട്ടിക [http://download.savannah.gnu.org/releases/smc/kdebase-list.txt ഇവിടെ]. kdebase ല്‍ നിന്നും ഒരു &lt;br /&gt;
 ഫയല്‍ പരിഭാഷപ്പെടുത്താനെടുക്കുന്നതിനു് മുമ്പു് ഈ പട്ടിക നോക്കുക.&lt;br /&gt;
&lt;br /&gt;
==പരിഭാഷപ്പെടുത്തിക്കൊണ്ടിരിയ്ക്കുന്ന പാക്കേജുകളും പരിഭാഷകരും==&lt;br /&gt;
&#039;&#039;&#039;വിക്കിയില്‍ മാറ്റം വരുത്തുമ്പോള്‍ ശ്രദ്ധിക്കേണ്ട കാര്യങ്ങള്‍:&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
1. നിങ്ങള്‍ തര്‍ജ്ജമ ചെയ്യുന്നതിനായി [http://l10n.kde.org/stats/gui/trunk-kde4/team/ml/ കെഡിഇ l10n സ്റ്റേറ്റസ് പേജു്] -ല്‍ നിന്നും ഒരു ഫയല്‍ എടുക്കുന്നതിനുമുമ്പായി വിക്കി നോക്കുക. &lt;br /&gt;
&lt;br /&gt;
2. എടുത്ത ഫയലിന്റെ പേരു് നിങ്ങളുടെ പേരിനോടൊപ്പം വിക്കിയില്‍ ചേര്‍ക്കുക. &lt;br /&gt;
&lt;br /&gt;
3. തര്‍ജ്ജമ ചെയ്ത ഫയല്‍ റിവ്യൂ ചെയ്യുന്നതിനായി അയയ്ച്ചതിനു് ശേഷം, വിക്കിയില്‍ ആ ഫയല്‍ &#039;&#039;&#039;ബോള്‍ഡാക്കുക&#039;&#039;&#039;. &lt;br /&gt;
&lt;br /&gt;
4. റിവ്യൂ ചെയ്ത ഫയല്‍ കമ്മിറ്റ് ചെയ്ത ശേഷം ആ വ്യക്തി (ഇവിടെ, പ്രവീണ്‍) അതു് &#039;&#039;ഇറ്റാലിക്സിലാക്കുക&#039;&#039;. &lt;br /&gt;
5. [http://l10n.kde.org/stats/gui/trunk-kde4/team/ml/ കെഡിഇ l10n സ്റ്റേറ്റസ് പേജു്] പരിഷ്കരിച്ച ശേഷം, ഇറ്റാലിക്സിലുള്ള കമ്മിറ്റ് ചെയ്ത ഫയലുകളെ വിക്കിയില്‍ നിന്നും &lt;br /&gt;
പ്രവീണ്‍/അനി നീക്കം ചെയ്യുക.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
!style=&amp;quot;background:#ffdead;&amp;quot; | PO File &lt;br /&gt;
!style=&amp;quot;background:#ffdead;&amp;quot; | Translators &lt;br /&gt;
|- style=&amp;quot;background:#efefef;&amp;quot;&lt;br /&gt;
|colspan=&amp;quot;5&amp;quot; align=&amp;quot;center&amp;quot; | &#039;&#039;&#039;extragear-multimedia&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* amarok.pot &lt;br /&gt;
| Jesse Francis&lt;br /&gt;
|- style=&amp;quot;background:#efefef;&amp;quot;&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot; align=&amp;quot;center&amp;quot; | &#039;&#039;&#039;kdebase&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* &#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039; desktop_kdebase&#039;&#039;&#039; &lt;br /&gt;
 &#039;&#039;&#039; kcmkeys.po&#039;&#039;&#039;&lt;br /&gt;
  kcmkwinscreen&lt;br /&gt;
| Sankaranarayanan&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* konqueror&lt;br /&gt;
* powerdevil&lt;br /&gt;
| Praveen Arimbrathodiyil &lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* kio_sftp.po&lt;br /&gt;
| Hari Vishnu&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* kcmkwinrules.po&lt;br /&gt;
| Pratheesh Prakash&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* processui.po&lt;br /&gt;
| Anoop Panavalappil&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* kcm_platform.pot&lt;br /&gt;
| Nadir K M&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* kdmconfig.po&lt;br /&gt;
* kfontinst.po&lt;br /&gt;
| Manu Madhav&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* &#039;&#039;&#039;kcmdevinfo.pot&#039;&#039;&#039;&lt;br /&gt;
| Hrishikesh.K B&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* nepomuk.po&lt;br /&gt;
| Ershad K&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* kcm_desktoppaths.po&lt;br /&gt;
| ArkArjun&lt;br /&gt;
|-&lt;br /&gt;
|- style=&amp;quot;background:#efefef;&amp;quot;&lt;br /&gt;
|colspan=&amp;quot;5&amp;quot; align=&amp;quot;center&amp;quot; | &#039;&#039;&#039;kdeedu&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* kig.po&lt;br /&gt;
| Anoop Panavalappil&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* kstars.po&lt;br /&gt;
| Manu Madhav, Shiju Alex&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* kgeography.po&lt;br /&gt;
| Praveen Arimbrathodiyil&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* kanagram.po&lt;br /&gt;
|Shyam K&lt;br /&gt;
|- style=&amp;quot;background:#efefef;&amp;quot;&lt;br /&gt;
|colspan=&amp;quot;5&amp;quot; align=&amp;quot;center&amp;quot; | &#039;&#039;&#039;kdegames&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
| Abhishek Oommen Jacob&lt;br /&gt;
|- style=&amp;quot;background:#efefef;&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background:#efefef;&amp;quot;&lt;br /&gt;
|colspan=&amp;quot;5&amp;quot; align=&amp;quot;center&amp;quot; | &#039;&#039;&#039;koffice&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* kspread.po&lt;br /&gt;
| Manu Madhav&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* [[കെ ഡി ഇ 4.4 പതിപ്പില്‍ പ്രവര്‍ത്തിച്ചവരുടെ പേരുകള്‍]]&lt;br /&gt;
* [[കെ ഡി ഇ 4.2 പതിപ്പില്‍ പ്രവര്‍ത്തിച്ചവരുടെ പേരുകള്‍]]&lt;br /&gt;
* [[കെ ഡി ഇ 4.1 പതിപ്പില്‍ പ്രവര്‍ത്തിച്ചവരുടെ പേരുകള്‍]]&lt;/div&gt;</summary>
		<author><name>Ershad</name></author>
	</entry>
</feed>