<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Tux Coder</title>
	<atom:link href="http://tuxcoder.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://tuxcoder.wordpress.com</link>
	<description>Learning . . . Coding . . . Contributing . . . !</description>
	<lastBuildDate>Tue, 30 Apr 2013 13:06:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='tuxcoder.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Tux Coder</title>
		<link>http://tuxcoder.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://tuxcoder.wordpress.com/osd.xml" title="Tux Coder" />
	<atom:link rel='hub' href='http://tuxcoder.wordpress.com/?pushpress=hub'/>
		<item>
		<title>hdd quota control through webmin &#8211; GUI &#8211; Linux &#8211; Ubuntu</title>
		<link>http://tuxcoder.wordpress.com/2013/04/08/hdd-quota-control-through-webmin-gui-linux-ubuntu-2/</link>
		<comments>http://tuxcoder.wordpress.com/2013/04/08/hdd-quota-control-through-webmin-gui-linux-ubuntu-2/#comments</comments>
		<pubDate>Mon, 08 Apr 2013 07:23:56 +0000</pubDate>
		<dc:creator>arulalant</dc:creator>
				<category><![CDATA[Documentation]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[grace]]></category>
		<category><![CDATA[gui]]></category>
		<category><![CDATA[hard]]></category>
		<category><![CDATA[hdd]]></category>
		<category><![CDATA[quota]]></category>
		<category><![CDATA[soft]]></category>
		<category><![CDATA[usr]]></category>
		<category><![CDATA[webmin]]></category>

		<guid isPermaLink="false">http://tuxcoder.wordpress.com/2013/04/08/hdd-quota-control-through-webmin-gui-linux-ubuntu-2/</guid>
		<description><![CDATA[Dear All, Here I documented about how to control/set the hard disk / home space quota to each users, groups through webmin gui. You may get so many documents on how to do the same in command line itself. Here &#8230; <a href="http://tuxcoder.wordpress.com/2013/04/08/hdd-quota-control-through-webmin-gui-linux-ubuntu-2/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tuxcoder.wordpress.com&#038;blog=13598218&#038;post=410&#038;subd=tuxcoder&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Dear All,</p>
<p>Here I documented about how to control/set the hard disk / home space quota to each users, groups through webmin gui.</p>
<p>You may get so many documents on how to do the same in command line itself.</p>
<p>Here we go !!!</p>
<h3>1. Enable quota check on filesystem</h3>
<p>First, you should specify which filesystem are allowed for quota check.</p>
<p>Modify the /etc/fstab, and add the keyword usrquota and grpquota to the corresponding filesystem that you would like to monitor.</p>
<p>The following example indicates that both user and group quota check is enabled on /home filesystem</p>
<pre># vim /etc/fstab</pre>
<pre>UUID=4ea80ca3-37b7-447e-831a-700a38627029 /home ext4 defaults,usrquota,grpquota 1 2 </pre>
<p>or</p>
<pre> /dev/hda1 /home ext4 defaults,usrquota,grpquota 1 2</pre>
<p>Reboot the server after the above change. While rebooting it will take some time (only one time) to enable usrquota, grpquota on the /home filesystem. So wait.</p>
<h3>2. Initial quota check on Linux filesystem using quotacheck</h3>
<p>Once you’ve enabled disk quota check on the filesystem, collect all quota information initially as shown below. For that you may need to install the following packages.</p>
<pre># apt-get install quota quotatool</pre>
<pre># quotacheck -avug </pre>
<pre>quotacheck: Scanning /dev/sda3 [/home] done 
quotacheck: Checked 5182 directories and 31566 files 
quotacheck: Old file not found. 
quotacheck: Old file not found.</pre>
<p>In the above command:</p>
<ul>
<li>a: Check all quota-enabled filesystem</li>
<li>v: Verbose mode</li>
<li>u: Check for user disk quota</li>
<li>g: Check for group disk quota</li>
</ul>
<p>The above command will create a aquota file for user and group under the filesystem directory as shown below.</p>
<pre># ls /home/ </pre>
<pre>aquota.user aquota.group</pre>
<pre># quotaon -avug</pre>
<h3>3. Install webmin gui to control hdd quota for the users &amp; groups</h3>
<p>First install the dependencies as shown below</p>
<pre># apt-get install apt-show-versions</pre>
<p>For Ubuntu 12.04 you can download the webmin deb file from the below link</p>
<p><a href="http://sourceforge.net/projects/webadmin/files/webmin/1.620/webmin_1.620_all.deb/download">http://sourceforge.net/projects/webadmin/files/webmin/1.620/webmin_1.620_all.deb/download</a></p>
<p>and install as follows</p>
<pre># dpkg -i webmin_1.620_all.deb</pre>
<p>Once you installed you can access the webmin in your browser at either <a href="https://localhost:10000/">https://localhost:10000/</a> or it will give you hostname as like below.</p>
<p><a href="https://arulalan:10000/">https://arulalan:10000/</a></p>
<p>You can download other os distro binary and source files from the below link.</p>
<p><a href="http://sourceforge.net/projects/webadmin/files/webmin/">http://sourceforge.net/projects/webadmin/files/webmin/</a></p>
<h3>4. Open webmin gui</h3>
<p>now log into webmin &amp; search &#8216;quota&#8217; you should see a result called &#8220;Disk Quotas&#8221;</p>
<p>click on it and press enable quotas on /home</p>
<p>now u can create/set hdd quotas like soft, hart limits &amp; grace time for each users, groups&#8230; <img title="Wink" alt="" src="http://ubuntuforums.org/images/smilies/icon_wink.gif" /></p>
<p>Soft limit : Actual size that you are allocating to the user/group<br />
Grace time : Some grace period (seconds to days) you are allocating to allow the user to exceed the soft limit (upto grace period) but not hard limit.<br />
             Once they exceed the soft limit, then they have to revert back to less than their soft limit size within the allocated grace time period.<br />
Hard limit : Hard limit that you are allocating to the user/group for the max size they can use at any most case. They can not exceed this limit at any time.</p>
<h3>5. Notify the used home size &amp; quota status report to the user when they login into the shell/terminal</h3>
<p>Finally :-</p>
<p>add the below lines in the
<pre># vim /etc/bash.bashrc</pre>
<p> to show the users quota information with their limit &amp; used space whenever they login to the shell/terminal.</p>
<pre>
echo "Your home directory quota information "
quota -us $USER
echo "Try to keep space &lt; quota. You cant exceed the limit "</pre>
<p>Have Fun !</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tuxcoder.wordpress.com/410/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tuxcoder.wordpress.com/410/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tuxcoder.wordpress.com&#038;blog=13598218&#038;post=410&#038;subd=tuxcoder&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tuxcoder.wordpress.com/2013/04/08/hdd-quota-control-through-webmin-gui-linux-ubuntu-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/fc754f70f57f109902e8ba61c99eb184?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">arulalant</media:title>
		</media:content>

		<media:content url="http://ubuntuforums.org/images/smilies/icon_wink.gif" medium="image">
			<media:title type="html">Wink</media:title>
		</media:content>
	</item>
		<item>
		<title>2012 in review</title>
		<link>http://tuxcoder.wordpress.com/2013/01/01/2012-in-review/</link>
		<comments>http://tuxcoder.wordpress.com/2013/01/01/2012-in-review/#comments</comments>
		<pubDate>Tue, 01 Jan 2013 14:00:54 +0000</pubDate>
		<dc:creator>arulalant</dc:creator>
				<category><![CDATA[Arulalan]]></category>

		<guid isPermaLink="false">http://tuxcoder.wordpress.com/?p=405</guid>
		<description><![CDATA[The WordPress.com stats helper monkeys prepared a 2012 annual report for this blog. Here&#8217;s an excerpt: 4,329 films were submitted to the 2012 Cannes Film Festival. This blog had 18,000 views in 2012. If each view were a film, this &#8230; <a href="http://tuxcoder.wordpress.com/2013/01/01/2012-in-review/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tuxcoder.wordpress.com&#038;blog=13598218&#038;post=405&#038;subd=tuxcoder&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>The WordPress.com stats helper monkeys prepared a 2012 annual report for this blog.</p>
<p><a href="http://tuxcoder.wordpress.com/2012/annual-report/"><img alt="" src="http://www.wordpress.com/wp-content/mu-plugins/annual-reports/img/2012-emailteaser.png" width="100%" /></a></p>
<p>Here&#8217;s an excerpt:</p>
<blockquote><p>4,329 films were submitted to the 2012 Cannes Film Festival. This blog had <strong>18,000</strong> views in 2012. If each view were a film, this blog would power 4 Film Festivals</p></blockquote>
<p><a href="http://tuxcoder.wordpress.com/2012/annual-report/">Click here to see the complete report.</a></p>
<p>I couldn&#8217;t post my thoughts &amp; codes in the past 6 months. <img src='http://s0.wp.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> .</p>
<p>I learned many new subjects in M.Tech Atmospheric Sciences.</p>
<p>Let me post those stuff in following days.</p>
<p>Happy new year to all. <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Regards,</p>
<p>Arulalan.T</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tuxcoder.wordpress.com/405/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tuxcoder.wordpress.com/405/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tuxcoder.wordpress.com&#038;blog=13598218&#038;post=405&#038;subd=tuxcoder&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tuxcoder.wordpress.com/2013/01/01/2012-in-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/fc754f70f57f109902e8ba61c99eb184?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">arulalant</media:title>
		</media:content>

		<media:content url="http://www.wordpress.com/wp-content/mu-plugins/annual-reports/img/2012-emailteaser.png" medium="image" />
	</item>
		<item>
		<title>I am an IITian &#8211; V1.5</title>
		<link>http://tuxcoder.wordpress.com/2012/05/24/i-am-an-iitian-v1-5/</link>
		<comments>http://tuxcoder.wordpress.com/2012/05/24/i-am-an-iitian-v1-5/#comments</comments>
		<pubDate>Thu, 24 May 2012 12:41:27 +0000</pubDate>
		<dc:creator>arulalant</dc:creator>
				<category><![CDATA[Arulalan]]></category>
		<category><![CDATA[IIT D]]></category>
		<category><![CDATA[climate data analysis]]></category>
		<category><![CDATA[research]]></category>
		<category><![CDATA[science]]></category>
		<category><![CDATA[software-development]]></category>
		<category><![CDATA[t shirt logo]]></category>

		<guid isPermaLink="false">http://tuxcoder.wordpress.com/?p=382</guid>
		<description><![CDATA[Dear All, Greetings.!. This is my first post of the year 2012! Yup. Became lazy&#8230; ok. Here after I will do blog posts regularly . Cool. Since 27.12.2010 I have been working as a Project Associate in in the Centre for Atmospheric  &#8230; <a href="http://tuxcoder.wordpress.com/2012/05/24/i-am-an-iitian-v1-5/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tuxcoder.wordpress.com&#038;blog=13598218&#038;post=382&#038;subd=tuxcoder&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Dear All,</p>
<p>Greetings.!.</p>
<p>This is my first post of the year 2012!</p>
<p>Yup. Became lazy&#8230; ok. Here after I will do blog posts regularly . Cool.</p>
<p>Since 27.12.2010 I have been working as a <strong>Project Associate</strong> in in the <strong>Centre for Atmospheric  Science, IIT Delhi</strong> in the project named <strong>&#8220;Development of Framework for Systematic Model Diagnosis&#8221;</strong> under the guidance of  <strong><a href="http://web.iitd.ac.in/~akrishna/" target="_blank">Prof./Dr. Krishna AchutaRao</a></strong> . Our client is <a href="http://www.ncmrwf.gov.in/">NCMRWF</a>, Noida.</p>
<p>Now 1.5 years passed away.</p>
<p><strong>I am happy to say that I got selected in <span style="color:#000080;">M.Tech (part-time)</span> Interview which was held on 22.05.2012 in the <span style="color:#000080;">Centre for Atmospheric  Science, IIT Delhi.</span></strong></p>
<p>Yes. In my centre itself I am going to do M.Tech programme in Atmospheric &amp; Oceanic Science Technology.  Instead of 2 years the part time M.Tech degree will take 3 years to complete it.</p>
<p>Around 140 students were appeared for the interview. But only 16 people (14 regular, 2 part time) are selected by the committee. I am one among them. <span style="color:#000080;">Now I am proud to say that &#8220;<strong>I am an IITian</strong></span><span style="color:#000080;">&#8220;&#8230;</span> <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<div id="attachment_386" class="wp-caption aligncenter" style="width: 235px"><a href="http://tuxcoder.files.wordpress.com/2012/05/100_2100.jpg"><img class=" wp-image-386" title="Arulalan" src="http://tuxcoder.files.wordpress.com/2012/05/100_2100.jpg?w=225&#038;h=300" alt="" width="225" height="300" /></a><p class="wp-caption-text">Close enough</p></div>
<div id="attachment_388" class="wp-caption aligncenter" style="width: 279px"><a href="http://tuxcoder.files.wordpress.com/2012/05/100_2097.jpg"><img class="size-medium wp-image-388" title="Arulalan" src="http://tuxcoder.files.wordpress.com/2012/05/100_2097.jpg?w=269&#038;h=300" alt="" width="269" height="300" /></a><p class="wp-caption-text">Back Side</p></div>
<p><a href="http://tuxcoder.files.wordpress.com/2012/05/100_20961.jpg"><img class="aligncenter size-medium wp-image-387" title="Arulalan" src="http://tuxcoder.files.wordpress.com/2012/05/100_20961.jpg?w=187&#038;h=300" alt="" width="187" height="300" /></a></p>
<p>Hope the T-Shirt Logo suits to me too&#8230; <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>I have been here (in delhi, iit delhi, zanskar hostel) for the past one and half years.</p>
<p>Delhi has two extreme climates in a year, those are Summer and Winter.</p>
<p>I am comfortable in summer than winter&#8230;.</p>
<p>Initially I dont like north indian food. But I had to accept it by the year passes away.  I am missing my south indian veg food idly, sambar, rice, rasam, keerai, poriyal, pickle, etc., :&#8217;(</p>
<p><strong>My Learnings in the past 1.5 years :-</strong></p>
<p>* Python Programming as Standard Way of Writing Scripts</p>
<p>* PyTest &#8211; Unit Test</p>
<p>* Sphinix &#8211; Python Documentation</p>
<p>* XML, HTML, CSS, JS, JQuery</p>
<p>* Quickly, Glade, PyGtk (Desktop GUI)</p>
<p>* More about CDAT (Climate Data Analysis Tool)</p>
<p><strong>My Contributions to CDAT :-</strong></p>
<p>In the past one and half years, I have fixed two bugs in the cdat.</p>
<p>1. Domain region selector &#8211; &#8216;cc&#8217;, &#8216;co&#8217; bounds</p>
<p>2. Taylor Diagram &#8211; Plots Standard deviation lines over the 2nd quadrant.</p>
<p>They have accepted my patches for those bugs.</p>
<p><strong>Under Future Contributions to CDAT:</strong></p>
<p>Also I am working on plotting weather fronts, highs &amp; lows over the map using CDAT.</p>
<p>I am doing this in my free time. Let me update here once I will finish it.</p>
<p>I love to work on CDAT/Python under my Professor/Dr.Krishna AchutaoRao.</p>
<div id="attachment_391" class="wp-caption aligncenter" style="width: 310px"><a href="http://web.iitd.ac.in/~akrishna/"><img class="size-medium wp-image-391 " title="Prof./Dr.Krishna AchutaRao" src="http://tuxcoder.files.wordpress.com/2012/05/krishna11.jpg?w=300&#038;h=225" alt="" width="300" height="225" /></a><p class="wp-caption-text">Prof./Dr.Krishna AchutaRao</p></div>
<p>Hmmm&#8230; By July 2012, I will be joining in M.Tech Program in IITD. So here after I will post more about meteorology and atmospheric related stuffs. Also I will post about programming.</p>
<p>The thing is I have to learn <strong>Fortran/Grads</strong> to work in M.Tech Laboratory&#8230; <strong>OMG!</strong></p>
<p>By the way, I have to be here (in Delhi, IITD) for 3 more years&#8230; Still I couldn&#8217;t learn Hindi. But I will try to learn it here after.</p>
<p>I have already studied M.C.A (Master of Computer Applications) in Saveetha Engg College, Anna University Affiliated, Tamil Nadu (2007 to 2010 batch).</p>
<p>According to Anna University, M.C.A is a Post Graduation Degree. But according to IIT, M.C.A is an Under Graduate Degree. <img src='http://s0.wp.com/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' />  . I dont know what to say&#8230; Each Institutions having their own rules.  So I can not do Ph.D in IIT with my M.C.A degree Or I may need to write GATE.</p>
<p>If I had done M.Sc, then I will be eligible for Ph.D program in IIT. Shhhh..!</p>
<p>So I have chosen M.Tech programme.  To apply/join part time M.Tech programme, we need one year work experience. I have more than that. Finally I got it.</p>
<p>Past one and half years I have been working in the Centre for Atmospheric Sciences.  But I couldnt understand few scientific analytical parts of what I am processing &amp; plotting over the maps.</p>
<p>Hopefully I will fill the gap between the atmospheric science &amp; computer science using the modern language in the future.</p>
<p>See you soon .!.</p>
<p>Regards.,</p>
<p>Arulalan Thanigachalam</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tuxcoder.wordpress.com/382/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tuxcoder.wordpress.com/382/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tuxcoder.wordpress.com&#038;blog=13598218&#038;post=382&#038;subd=tuxcoder&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tuxcoder.wordpress.com/2012/05/24/i-am-an-iitian-v1-5/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/fc754f70f57f109902e8ba61c99eb184?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">arulalant</media:title>
		</media:content>

		<media:content url="http://tuxcoder.files.wordpress.com/2012/05/100_2100.jpg?w=225" medium="image">
			<media:title type="html">Arulalan</media:title>
		</media:content>

		<media:content url="http://tuxcoder.files.wordpress.com/2012/05/100_2097.jpg?w=269" medium="image">
			<media:title type="html">Arulalan</media:title>
		</media:content>

		<media:content url="http://tuxcoder.files.wordpress.com/2012/05/100_20961.jpg?w=187" medium="image">
			<media:title type="html">Arulalan</media:title>
		</media:content>

		<media:content url="http://tuxcoder.files.wordpress.com/2012/05/krishna11.jpg?w=300" medium="image">
			<media:title type="html">Prof./Dr.Krishna AchutaRao</media:title>
		</media:content>
	</item>
		<item>
		<title>2011 in review</title>
		<link>http://tuxcoder.wordpress.com/2012/01/01/2011-in-review/</link>
		<comments>http://tuxcoder.wordpress.com/2012/01/01/2011-in-review/#comments</comments>
		<pubDate>Sun, 01 Jan 2012 09:59:48 +0000</pubDate>
		<dc:creator>arulalant</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://tuxcoder.wordpress.com/?p=375</guid>
		<description><![CDATA[The WordPress.com stats helper monkeys prepared a 2011 annual report for this blog. Here&#8217;s an excerpt: The concert hall at the Syndey Opera House holds 2,700 people. This blog was viewed about 30,000 times in 2011. If it were a &#8230; <a href="http://tuxcoder.wordpress.com/2012/01/01/2011-in-review/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tuxcoder.wordpress.com&#038;blog=13598218&#038;post=375&#038;subd=tuxcoder&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>The WordPress.com stats helper monkeys prepared a 2011 annual report for this blog.</p>
<div style="background:url('/wp-content/mu-plugins/annual-reports/img/emailteaser.jpg') no-repeat center center;height:300px;"></div>
<p>Here&#8217;s an excerpt:</p>
<blockquote><p>The concert hall at the Syndey Opera House holds 2,700 people. This blog was viewed about <strong>30,000</strong> times in 2011. If it were a concert at Sydney Opera House, it would take about 11 sold-out performances for that many people to see it.</p></blockquote>
<p><a href="/2011/annual-report/">Click here to see the complete report.</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tuxcoder.wordpress.com/375/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tuxcoder.wordpress.com/375/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tuxcoder.wordpress.com&#038;blog=13598218&#038;post=375&#038;subd=tuxcoder&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tuxcoder.wordpress.com/2012/01/01/2011-in-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/fc754f70f57f109902e8ba61c99eb184?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">arulalant</media:title>
		</media:content>
	</item>
		<item>
		<title>About MetPy (ECMWF)</title>
		<link>http://tuxcoder.wordpress.com/2011/12/16/about-metpy-ecmwf/</link>
		<comments>http://tuxcoder.wordpress.com/2011/12/16/about-metpy-ecmwf/#comments</comments>
		<pubDate>Fri, 16 Dec 2011 17:38:40 +0000</pubDate>
		<dc:creator>arulalant</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://tuxcoder.wordpress.com/2011/12/16/about-metpy-ecmwf/</guid>
		<description><![CDATA[Dear Friends, I have read about the MetPy from the ECMWF http://www.ecmwf.int/ . MetPy = Meteorological Python Few words about ECMWF : They are using Perl language to created web application to serve the auto generated plots for both intranet &#8230; <a href="http://tuxcoder.wordpress.com/2011/12/16/about-metpy-ecmwf/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tuxcoder.wordpress.com&#038;blog=13598218&#038;post=374&#038;subd=tuxcoder&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Dear Friends,</p>
<p>I have read about the MetPy from the ECMWF <a href="http://www.ecmwf.int/">http://www.ecmwf.int/</a> .</p>
<p>MetPy = Meteorological Python</p>
<p><strong>Few words about ECMWF :</strong></p>
<p>They are using</p>
<ul>
<li>Perl language to created web application to serve the auto generated plots for both intranet &amp; internet (in the above link)</li>
<li>Python language to do diagnostics</li>
<li>Magics or MetView to do plot</li>
<li>Serving around 24,000 images per day</li>
</ul>
<p><strong>Few words about MetPy : </strong></p>
<p>A high level library called MetPy is being</p>
<p>developed. It currently offers:</p>
<ul>
<li>an abstract definition of meteorological data and fields,</li>
<li>GRIB decoding, coding and field computation,</li>
<li>Field sorting and indexing,</li>
<li>ODB access using its NetCDF file export facility,</li>
<li>core score computing (rmse, ancf, stddev, mean), on a weighed grid and limited areas,</li>
<li>access to Verify scores (backwards compatibility) ,</li>
<li>interface with Magics,</li>
<li>interface with PCMS,</li>
<li>everything available in open source.</li>
</ul>
<p><strong>Example Program of MetPy usage :</strong></p>
<p>&gt;&gt;&gt; from MetPy import *</p>
<p>&gt;&gt;&gt; an = FieldSet( &#8216;an.grib&#8217; )<br />
&gt;&gt;&gt; fc = FieldSet( &#8216;fc.grib&#8217; )<br />
&gt;&gt;&gt; cl = FieldSet( &#8216;climatology.grib&#8217; )<br />
&gt;&gt;&gt; bi = FieldSet( &#8216;biases.grib&#8217; )</p>
<p>&gt;&gt;&gt; scores = Scores( fc-cl+bi,<br />
an-cl,<br />
area = verify_config[ &#039;europe&#039; ] )</p>
<p>&gt;&gt;&gt; print scores.correlation( )</p>
<p>&gt;&gt;&gt; print scores.rmse( )</p>
<p><strong>Few Application of MetPy :</strong></p>
<ul>
<li>Currently a typical experiment diagnostics is being written on ocean data.</li>
<li>compare ocean observation profiles with experiment fields and generate statistics.</li>
</ul>
<p><strong>MetPy Utilities :</strong></p>
<ul>
<li>The Date class is a primordial building block as computations on dates are always needed particularly in diagnostics &amp; verification.</li>
<li>Configuration tools are also important, once your library can read configuration files with sufficient flexibility, you can introduce parametrisation from the begin-ning of any new development.</li>
</ul>
<p><strong>MetPy Source Link :<br />
</strong><br />
<a href="https://github.com/pmarshwx/MetPy">https://github.com/pmarshwx/MetPy</a></p>
<p><strong>Presentation Link :</strong><br />
It contains about ECMWF &amp; little core about MetPy</p>
<p><a href="http://www.ecmwf.int/newsevents/meetings/workshops/2003/9th_Meteorological_Operational_Systems/presentations/Gibert.pdf">http://www.ecmwf.int/newsevents/meetings/workshops/2003/9th_Meteorological_Operational_Systems/presentations/Gibert.pdf</a></p>
<p><a href="http://synopticview.co.uk/WhitePapers/metpy/">http://synopticview.co.uk/WhitePapers/metpy/</a></p>
<p><strong>Conclusion :</strong></p>
<ul>
<li>MetPy Meteo France also installed &amp; running the MetPy.</li>
<li>MetPy module has Fields, FieldSet, Ensemble, FieldIndex, Diagnostics.</li>
</ul>
<p>I couldnt understand few meteorological terms in the MetPy. So I couldnt realize the more power of it.</p>
<p>What I understood from the example is metpy can calculate Scores, correlation, rmse &amp; etc.,</p>
<p>I will post the CDAT Vs MetPy in upcoming posts in my blog.</p>
<p>Thanks.</p>
<p>Arulalan.T</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tuxcoder.wordpress.com/374/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tuxcoder.wordpress.com/374/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tuxcoder.wordpress.com&#038;blog=13598218&#038;post=374&#038;subd=tuxcoder&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tuxcoder.wordpress.com/2011/12/16/about-metpy-ecmwf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/fc754f70f57f109902e8ba61c99eb184?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">arulalant</media:title>
		</media:content>
	</item>
		<item>
		<title>Installing Sphinx inside the UV-CDAT (alpha)</title>
		<link>http://tuxcoder.wordpress.com/2011/12/13/installing-sphinx-inside-the-uv-cdat-alpha/</link>
		<comments>http://tuxcoder.wordpress.com/2011/12/13/installing-sphinx-inside-the-uv-cdat-alpha/#comments</comments>
		<pubDate>Tue, 13 Dec 2011 11:18:24 +0000</pubDate>
		<dc:creator>arulalant</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://tuxcoder.wordpress.com/2011/12/13/installing-sphinx-inside-the-uv-cdat-alpha/</guid>
		<description><![CDATA[Dear All, I have face a problem that I can not install sphinx inside uv-cdat (alpha) python path. Also I can not use easy_install of uv-cdat python, since it has some zlib library missing. I hope uv-cdat team will fix &#8230; <a href="http://tuxcoder.wordpress.com/2011/12/13/installing-sphinx-inside-the-uv-cdat-alpha/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tuxcoder.wordpress.com&#038;blog=13598218&#038;post=373&#038;subd=tuxcoder&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Dear All,</p>
<p>I have face a problem that I can not install sphinx inside uv-cdat (alpha) python path.</p>
<p>Also I can not use easy_install of uv-cdat python, since it has some zlib library missing.</p>
<p>I hope uv-cdat team will fix all these issues soon.</p>
<p>Mean while we should learn how to use sphinx for our uv-cdat python modules.</p>
<p>Once we installed the sphinx correctly inside our system python,<br />
then do the following steps.</p>
<p>* we can not install sphinx successfully inside the uv-cdat due to zlib version problem of uv-cdat.</p>
<p>Here is short route to work out the sphinx for uv-cdat modules&#8230;.</p>
<p>Below is uv-cdat installed path in my machine.</p>
<p>*******************************************************</p>
<p>sys.path.append(&#8216;/opt/uv-cdat/bin/&#8217;)<br />
sys.path.append(&#8216;/opt/uv-cdat/lib/python2.7/site-packages&#8217;)</p>
<p>*******************************************************</p>
<p>Add the above two sys.path.append lines in the following three system executable python scripts.</p>
<p>$ sudo gedit /usr/local/bin/sphinx-quickstart</p>
<p>$ sudo gedit /usr/local/bin/sphinx-autogen</p>
<p>$ sudo gedit /usr/local/bin/sphinx-build</p>
<p>Thats it.</p>
<p>Here after from the normal system executables sphinx-quickstart, sphinx-autogen, sphinx-build we can generate the sphinx index.html<br />
of our uv-cdat (diagnosis) py modules.</p>
<p>We have to understand that we didnt installed sphinx inside the uv-cdat python path.</p>
<p>We just added the uv-cdat packages path into the system python path, while the above three executables running.</p>
<p>Enjoy.</p>
<p>By,</p>
<p>Arulalan.T<br />
Dated : 13.12.2011</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tuxcoder.wordpress.com/373/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tuxcoder.wordpress.com/373/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tuxcoder.wordpress.com&#038;blog=13598218&#038;post=373&#038;subd=tuxcoder&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tuxcoder.wordpress.com/2011/12/13/installing-sphinx-inside-the-uv-cdat-alpha/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/fc754f70f57f109902e8ba61c99eb184?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">arulalant</media:title>
		</media:content>
	</item>
		<item>
		<title>Setting Auto Completion in Python Shell</title>
		<link>http://tuxcoder.wordpress.com/2011/10/07/setting-auto-completion-in-python-shell/</link>
		<comments>http://tuxcoder.wordpress.com/2011/10/07/setting-auto-completion-in-python-shell/#comments</comments>
		<pubDate>Fri, 07 Oct 2011 07:33:46 +0000</pubDate>
		<dc:creator>arulalant</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[auto]]></category>
		<category><![CDATA[CDAT]]></category>
		<category><![CDATA[completion]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[uvcdat]]></category>

		<guid isPermaLink="false">http://tuxcoder.wordpress.com/2011/10/07/setting-auto-completion-in-python-shell/</guid>
		<description><![CDATA[Dear Friends, Today I found very useful tips from the CDAT document page about how to make auto completion in python shell. Save the above code as .auto_completion_python_shell.py inyour home directory of your home directory in *nix system. Then open &#8230; <a href="http://tuxcoder.wordpress.com/2011/10/07/setting-auto-completion-in-python-shell/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tuxcoder.wordpress.com&#038;blog=13598218&#038;post=370&#038;subd=tuxcoder&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Dear Friends,</p>
<p>Today I found very useful tips from the CDAT document page about how to make <a href="http://www2-pcmdi.llnl.gov/cdat/tips_and_tricks/python_tips/autocompletion.html">auto completion in python shell</a>.</p>
<p>#!/usr/bin/env python<br />
import rlcompleter<br />
import readline<br />
readline.parse_and_bind(&amp;quot;tab: complete&amp;quot;)</p>
<p>Save the above code as <strong>.auto_completion_python_shell.py </strong>inyour home directory of your home directory in *nix system.</p>
<p>Then open the .bashrc by</p>
<p>$ <strong>gedit .bashrc</strong></p>
<p>add the following line at the end of the file.<br />
<strong><br />
export PYTHONSTARTUP=&quot;$HOME/.auto_complete_python_shell.py&quot;</strong></p>
<p>Save the file and close it. Close the terminal.</p>
<p>Now reopen the terminal, issue the command <strong>python</strong></p>
<p>&gt;&gt;&gt; im[tab] [tab]<br />
it should automatically complete the <strong>import</strong> command.</p>
<p>It also displays the available methods, and variables of any object in the shell prompt.</p>
<p>Of-course it will not be fashion as <strong>&quot;bpython&quot; </strong>and<strong> &quot;ipython&quot;</strong>&#8230;</p>
<p>But in some situations, python shell is best compare to bpython when we accessing large set of data.</p>
<p>In some cases bpython ncurses fails to handle large set of data&#8230;</p>
<p>Those cases we can apply our own PYTHONSTARTUP script to make it as auto complete commands&#8230;</p>
<p>Note : This auto completion will works only under shell, not under $python -i some_script.py (not under interactive script shell).</p>
<p>Cheers!</p>
<p>Arulalan.T</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tuxcoder.wordpress.com/370/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tuxcoder.wordpress.com/370/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tuxcoder.wordpress.com&#038;blog=13598218&#038;post=370&#038;subd=tuxcoder&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tuxcoder.wordpress.com/2011/10/07/setting-auto-completion-in-python-shell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/fc754f70f57f109902e8ba61c99eb184?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">arulalant</media:title>
		</media:content>
	</item>
		<item>
		<title>SFD 2011 Stalls Suggestions</title>
		<link>http://tuxcoder.wordpress.com/2011/09/14/sfd-2011-stalls-suggestions/</link>
		<comments>http://tuxcoder.wordpress.com/2011/09/14/sfd-2011-stalls-suggestions/#comments</comments>
		<pubDate>Wed, 14 Sep 2011 14:24:05 +0000</pubDate>
		<dc:creator>arulalant</dc:creator>
				<category><![CDATA[Ideas]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[freedome]]></category>
		<category><![CDATA[ilugc]]></category>
		<category><![CDATA[sfd]]></category>
		<category><![CDATA[sfd 2011]]></category>

		<guid isPermaLink="false">http://tuxcoder.wordpress.com/2011/09/14/sfd-2011-stalls-suggestions/</guid>
		<description><![CDATA[Dear All, I hope the SFD 2011 preparation is going on. Here I narrated the list of stalls which will be helpful to the public and students. If you are newbie to sfd and have interest to put stalls, then &#8230; <a href="http://tuxcoder.wordpress.com/2011/09/14/sfd-2011-stalls-suggestions/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tuxcoder.wordpress.com&#038;blog=13598218&#038;post=365&#038;subd=tuxcoder&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Dear All,</p>
<p>I hope the SFD 2011 preparation is going on.</p>
<p>Here I narrated the list of stalls which will be helpful to the public and students.</p>
<p>If you are newbie to sfd and have interest to put stalls,</p>
<p>then the following list may gives you an idea about it.</p>
<p>There are two ways to put stall. 1. Easy way, 2. Medium way.</p>
<p>Easy way not even takes more than one hour to prepare to make stall.</p>
<p>How it means, if you know some thing / already used some tools means,<br />
you can make stall by showing slide show / live demo.</p>
<p>Medium way means, it needs 2 or 3 people to be combined, need to spend few days<br />
to execution it and need some more hardware resources.</p>
<p>Easy Way :<br />
************<br />
SFD goal is reach the foss to the public and students.<br />
So first of all showcase them about what they already know in their M$ os for daily usage.</p>
<ol>
<li>What is FOSS/ GNU License,</li>
<li>OO / Libre Office Word, Spread Sheet, Presentation, Drawing</li>
<li>GIMP</li>
<li>Inkscape</li>
<li>Languages Introductions (including installation steps in the slides)</li>
</ol>
<blockquote style="padding-left:30px;">
<ol>
<li>Gcc, G++</li>
<li>Ruby, JRuby</li>
<li>Python, Jython, Cython</li>
<li>Php,</li>
<li>Perl,</li>
<li>Bash,</li>
<li>Java (Explain about how to setup/install java. Most of newbies dont know about this)</li>
<li>more</li>
</ol>
<p>6. Language Frameworks Introductions</p></blockquote>
<blockquote>
<ol>
<li>RoR,</li>
<li>Django,</li>
<li>Catelist,</li>
<li>more</li>
</ol>
</blockquote>
<p style="padding-left:60px;">7. Data Bases with GUIs and Shell</p>
<blockquote>
<ol style="padding-left:60px;">
<li>MySql,</li>
<li>Postgres,</li>
<li>Sqlite3</li>
<li>Mongo DB</li>
<li>DBase</li>
</ol>
</blockquote>
<p style="padding-left:60px;">8. DB Connections from languages</p>
<blockquote>
<ol style="padding-left:60px;">
<li>phpMyadmin (GUI)</li>
<li>DB connections Python, Ruby, Perl, Php scripts</li>
</ol>
</blockquote>
<p style="padding-left:60px;">9.CMS (Content Management Systems)</p>
<blockquote>
<ol style="padding-left:60px;">
<li>Drupal</li>
<li>Joomla</li>
<li>WordPress</li>
</ol>
</blockquote>
<p style="padding-left:60px;">10. Editors</p>
<blockquote>
<ol style="padding-left:60px;">
<li>gedit with its plugins for developers</li>
</ol>
</blockquote>
<blockquote>
<blockquote>
<ol>
<li>Auto word completion</li>
<li>Showing in side panel of Python Syntax Error and disobeying PEP8 rules (from ubuntu 11.04)</li>
<li>Snippet</li>
<li>Other languages advantages in gedit</li>
<li>more</li>
</ol>
</blockquote>
</blockquote>
<p style="padding-left:120px;">2.VIM</p>
<blockquote>
<ol style="padding-left:60px;">
<li>Intro</li>
<li>Its advantage over languages</li>
</ol>
</blockquote>
<p style="padding-left:120px;">3.emacs</p>
<blockquote>
<ol style="padding-left:60px;">
<li>Intro</li>
</ol>
</blockquote>
<p style="padding-left:60px;">11.Version Controls (both gui &amp; commands)</p>
<blockquote>
<ol style="padding-left:60px;">
<li>Subversion (bleeding edge)</li>
<li>Git</li>
<li>Bazzar</li>
<li>Mercurial</li>
<li>more (show demos by make live changes in images (gimp), audio/video partial edited files and make changes in text files)</li>
</ol>
</blockquote>
<p style="padding-left:60px;">12.Audio Players</p>
<blockquote>
<ol style="padding-left:60px;">
<li>MPlayer,</li>
<li>VLC,</li>
<li>Amarok</li>
</ol>
</blockquote>
<p style="padding-left:60px;">13.Video Players Audio &amp; Video editing tools</p>
<blockquote>
<ol style="padding-left:60px;">
<li>Audacity</li>
<li>Pitivi</li>
</ol>
</blockquote>
<p style="padding-left:60px;">14. 3D Compiz effects live demo and its videos</p>
<p style="padding-left:60px;">15. OS Distributions (ubuntu, fedora, centOs, debian, BSD, etc)</p>
<p style="padding-left:60px;">16. KDE environments and its tools</p>
<p style="padding-left:60px;">17. Gnome environments and its tools</p>
<p style="padding-left:60px;">18. Live CD Live Installation (or slide)</p>
<p style="padding-left:60px;">19. Famous FOSS Tools Like</p>
<blockquote>
<ol style="padding-left:60px;">
<li>K3b (Dvd/cd writer) and more</li>
</ol>
</blockquote>
<p style="padding-left:60px;">20. Games</p>
<blockquote>
<ol style="padding-left:60px;">
<li>2D games for kids</li>
<li>3D games like</li>
</ol>
</blockquote>
<blockquote>
<blockquote>
<ol style="padding-left:60px;">
<li>Open Arena</li>
<li>Alien Arena</li>
<li>more [1]</li>
</ol>
</blockquote>
</blockquote>
<p style="padding-left:60px;">21. Education Tools</p>
<blockquote>
<ol style="padding-left:60px;">
<li>Physics &amp; Electronics Simulations</li>
</ol>
</blockquote>
<blockquote>
<blockquote>
<ol style="padding-left:60px;">
<li>gnusim8085</li>
<li>circuits connections simulation (search in net)</li>
<li>more</li>
</ol>
</blockquote>
</blockquote>
<p style="padding-left:120px;">2.Chemistry Simulations (search in net)</p>
<p style="padding-left:120px;">3.Biology more(Last time Jaya College students showed demo of all these edu tools)</p>
<p style="padding-left:60px;">22. FireFox Addons Demo (If wifi/Internet dongle available)</p>
<blockquote>
<ol style="padding-left:60px;">
<li>FireBug</li>
<li>Download Helpers</li>
<li>Live download by firefox addons (in simple way)</li>
<li>Twitter connections/post from firefox</li>
<li>WordPress posts from firefox</li>
<li>more</li>
</ol>
</blockquote>
<p style="padding-left:60px;">23. Tamil in ubuntu / fedora</p>
<blockquote>
<ol style="padding-left:60px;">
<li>Full ubuntu environment in tamil</li>
<li>Tamil Key board layouts (both tamil unicode and symphony[english to tamil] type writer)</li>
<li>more</li>
</ol>
</blockquote>
<p style="padding-left:60px;">All the above are very basics only. Where ever I mentioned &#8220;more&#8221;, you can get it more ideas by searching in Internet.</p>
<p style="padding-left:60px;">and if you want to know about available specific tools means (for eg education tools, physics, chemistry, etc) I suggest<br />
you to open the Ubuntu Software Centre or synaptic package manager.</p>
<p style="padding-left:60px;">You will get more detailed info about available packages/software tools.</p>
<p style="padding-left:60px;">[1] <a href="http://www.online-game-walkthrough.com/2007/12/top-10-free-linux-3d-games.html">http://www.online-game-walkthrough.com/2007/12/top-10-free-linux-3d-games.html</a></p>
<p style="padding-left:60px;">Medium Way :</p>
<p style="padding-left:60px;">****************</p>
<ol style="padding-left:60px;">
<li>Multiple Desktops (Single CPU, multi monitors, multi keyboards, multi mouse)</li>
<li>Thin Client Demo</li>
<li>Heart Beats Demo</li>
</ol>
<ol style="padding-left:60px;">
<li>MySql heart beat</li>
<li>more</li>
</ol>
<p style="padding-left:60px;">Big Blue Button (Lan audio/video/text chat &amp; remote presentation) VLC (Video Lan Connection demo by making lan video streaming)</p>
<p style="padding-left:60px;">Arduino Robotics Demo Blender (3D animation maker) more<br />
You can bring your project (if that has done by foss ) and you make stall.</p>
<p style="padding-left:60px;">If you want to make stall in sfd means, please mail to list or the MIT students to allot stall for you.</p>
<p style="padding-left:60px;">Previous years SFD links :<br />
******************************</p>
<p style="padding-left:60px;">SFD by ILUGC</p>
<p style="padding-left:60px;"><a href="http://www.ilugc.in/search/node/sfd">http://www.ilugc.in/search/node/sfd</a><br />
<a href="http://www.ilugc.in/content/sfd-2009-ilugc-recap">http://www.ilugc.in/content/sfd-2009-ilugc-recap</a><br />
<a href="http://www.ilugc.in/content/sfd-2009-topics-and-volunteers">http://www.ilugc.in/content/sfd-2009-topics-and-volunteers</a><br />
<a href="http://www.ilugc.in/content/software-freedom-day-ilugc">http://www.ilugc.in/content/software-freedom-day-ilugc</a><br />
<a href="http://www.ilugc.in/content/sfd-2009-photos">http://www.ilugc.in/content/sfd-2009-photos</a><br />
<a href="http://www.ilugc.in/content/announcing-sofware-freedom-day-celebrations-ilugc">http://www.ilugc.in/content/announcing-sofware-freedom-day-celebrations-ilugc</a><br />
<a href="http://www.ilugc.in/content/call-volunteers-demo-stalls-software-freedom-day-2011">http://www.ilugc.in/content/call-volunteers-demo-stalls-software-freedom-day-2011</a><br />
<a href="http://wiki.ilugc.in/index.php?title=Sfd2011">http://wiki.ilugc.in/index.php?title=Sfd2011</a></p>
<p style="padding-left:60px;">SFD by Jaya Engg College :<br />
<a href="http://www.ilugc.in/content/software-freedom-day-celebraions-jaya-engg-college">http://www.ilugc.in/content/software-freedom-day-celebraions-jaya-engg-college</a></p>
<p style="padding-left:60px;">SFD by Kanchilug :</p>
<p style="padding-left:60px;"><a href="http://kanchilug.wordpress.com/2009/09/21/software-freedom-day-2009/">http://kanchilug.wordpress.com/2009/09/21/software-freedom-day-2009/</a><br />
<a href="http://kanchilug.wordpress.com/2010/09/21/software-freedom-day/">http://kanchilug.wordpress.com/2010/09/21/software-freedom-day/</a><br />
<a href="http://kanchilug.wordpress.com/?s=sfd">http://kanchilug.wordpress.com/?s=sfd</a></p>
<p style="padding-left:60px;">From the above links, you can collect the details like,<br />
how to prepare for SFD stalls and how to organize it.</p>
<p style="padding-left:60px;">I hope this helps you to make stalls in SFD &#8217;11.<br />
If you have any ideas to make SFD&#8217;11 as grand event, you are welcome to share it.</p>
<p style="padding-left:60px;">If you have any idea to put stalls in ILUGC SFD&#8217;11, please add your stall details in the ilugc wiki page here.</p>
<p style="padding-left:60px;"><a href="http://wiki.ilugc.in/index.php?title=Sfd2011">http://wiki.ilugc.in/index.php?title=Sfd2011</a></p>
<p style="padding-left:60px;">Thanks,</p>
<p style="padding-left:60px;">Arulalan.T</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tuxcoder.wordpress.com/365/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tuxcoder.wordpress.com/365/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tuxcoder.wordpress.com&#038;blog=13598218&#038;post=365&#038;subd=tuxcoder&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tuxcoder.wordpress.com/2011/09/14/sfd-2011-stalls-suggestions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/fc754f70f57f109902e8ba61c99eb184?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">arulalant</media:title>
		</media:content>
	</item>
		<item>
		<title>Pytest Documentation: Unit test framework in Python</title>
		<link>http://tuxcoder.wordpress.com/2011/09/13/pytest-documentation-unit-test-framework-in-python/</link>
		<comments>http://tuxcoder.wordpress.com/2011/09/13/pytest-documentation-unit-test-framework-in-python/#comments</comments>
		<pubDate>Tue, 13 Sep 2011 07:46:32 +0000</pubDate>
		<dc:creator>arulalant</dc:creator>
				<category><![CDATA[Arulalan]]></category>
		<category><![CDATA[CDAT]]></category>
		<category><![CDATA[Documentation]]></category>
		<category><![CDATA[IIT D]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[pytest]]></category>
		<category><![CDATA[pytest framework]]></category>
		<category><![CDATA[pytest intro]]></category>
		<category><![CDATA[pytest usage]]></category>
		<category><![CDATA[unittest]]></category>

		<guid isPermaLink="false">http://tuxcoder.wordpress.com/?p=362</guid>
		<description><![CDATA[Dear All, Here I documented about An introduction to unit test in Python How to use PyTest framework in python to test your py code To download the above pdf document click on it. Thanks. Arulalan.T<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tuxcoder.wordpress.com&#038;blog=13598218&#038;post=362&#038;subd=tuxcoder&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Dear All,</p>
<p>Here I documented about</p>
<ul>
<li>An introduction to unit test in Python</li>
<li>How to use PyTest framework in python to test your py code</li>
</ul>
<iframe class="scribd_iframe_embed" src="http://www.scribd.com/embeds/64778405/content?start_page=1&view_mode=list&access_key=key-14cwsqab7czc6c6bx257" data-auto-height="true" scrolling="no" id="scribd_64778405" width="100%" height="500" frameborder="0"></iframe>
<div style="font-size:10px;text-align:center;width:100%"><a href="http://www.scribd.com/doc/64778405">View this document on Scribd</a></div>
<p>To download the above pdf document click on it.</p>
<p>Thanks.</p>
<p>Arulalan.T</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tuxcoder.wordpress.com/362/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tuxcoder.wordpress.com/362/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tuxcoder.wordpress.com&#038;blog=13598218&#038;post=362&#038;subd=tuxcoder&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tuxcoder.wordpress.com/2011/09/13/pytest-documentation-unit-test-framework-in-python/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/fc754f70f57f109902e8ba61c99eb184?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">arulalant</media:title>
		</media:content>
	</item>
		<item>
		<title>Pygrib Installation &amp; Usage Documentation</title>
		<link>http://tuxcoder.wordpress.com/2011/09/13/pygrib-installation-usage-documentation/</link>
		<comments>http://tuxcoder.wordpress.com/2011/09/13/pygrib-installation-usage-documentation/#comments</comments>
		<pubDate>Tue, 13 Sep 2011 07:37:45 +0000</pubDate>
		<dc:creator>arulalant</dc:creator>
				<category><![CDATA[Arulalan]]></category>
		<category><![CDATA[CDAT]]></category>
		<category><![CDATA[Documentation]]></category>
		<category><![CDATA[IIT D]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[doc]]></category>
		<category><![CDATA[documentation]]></category>
		<category><![CDATA[pygrib]]></category>
		<category><![CDATA[pygrib installation]]></category>
		<category><![CDATA[pygrib usage]]></category>

		<guid isPermaLink="false">http://tuxcoder.wordpress.com/?p=357</guid>
		<description><![CDATA[Dear All, Here I documented from where to download the pygrib , how to install it inside our cdat path in ubuntu and how to use it with examples. &#160; To download the above pdf document click on it. Thanks.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tuxcoder.wordpress.com&#038;blog=13598218&#038;post=357&#038;subd=tuxcoder&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Dear All,</p>
<p>Here I documented from where to download the pygrib , how to install it inside our cdat path in ubuntu and how to use it with examples.</p>
<p>&nbsp;</p>
<iframe class="scribd_iframe_embed" src="http://www.scribd.com/embeds/64778148/content?start_page=1&view_mode=list&access_key=key-1xu17v9mikm34q8r7ilk" data-auto-height="true" scrolling="no" id="scribd_64778148" width="100%" height="500" frameborder="0"></iframe>
<div style="font-size:10px;text-align:center;width:100%"><a href="http://www.scribd.com/doc/64778148">View this document on Scribd</a></div>
<p>To download the above pdf document click on it.</p>
<p>Thanks.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tuxcoder.wordpress.com/357/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tuxcoder.wordpress.com/357/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tuxcoder.wordpress.com&#038;blog=13598218&#038;post=357&#038;subd=tuxcoder&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tuxcoder.wordpress.com/2011/09/13/pygrib-installation-usage-documentation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/fc754f70f57f109902e8ba61c99eb184?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">arulalant</media:title>
		</media:content>
	</item>
	</channel>
</rss>
