<?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/"
	>

<channel>
	<title>Kushal , kD &#38; FOSS &#187; Tutorial</title>
	<atom:link href="http://kushaldas.in/category/tutorial/feed/" rel="self" type="application/rss+xml" />
	<link>http://kushaldas.in</link>
	<description>FOSS and life. Kushal Das talks here</description>
	<lastBuildDate>Fri, 18 May 2012 09:02:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>8051 development on Fedora</title>
		<link>http://kushaldas.in/2010/09/06/8051-development-on-fedora/</link>
		<comments>http://kushaldas.in/2010/09/06/8051-development-on-fedora/#comments</comments>
		<pubDate>Mon, 06 Sep 2010 09:33:56 +0000</pubDate>
		<dc:creator>kd</dc:creator>
				<category><![CDATA[Fedora]]></category>
		<category><![CDATA[FOSS]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[8051]]></category>
		<category><![CDATA[embedded]]></category>
		<category><![CDATA[sdcc]]></category>

		<guid isPermaLink="false">http://kushaldas.in/2010/09/06/8051-development-on-fedora/</guid>
		<description><![CDATA[First install sdcc #yum install sdcc Next is a small example to blink a LED connected to P1.7 #include &#60;8051.h&#62; void main(void) { int i=1; P1=0; /* P1.7 used as LED output */ while(1) { P1_7=!(P1_7); /* toggle P1.7*/ for(i=1;i&#60;25000;i++); /* for delay */ } } Compile it and get the hex file from intel [...]]]></description>
			<content:encoded><![CDATA[<p>First install sdcc<br />
<code><br />
#yum install sdcc<br />
</code></p>
<p>Next is a small example to blink a LED connected to P1.7</p>
<p><code><br />
#include &lt;8051.h&gt;<br />
void main(void)<br />
{<br />
int i=1;<br />
P1=0;  /* P1.7 used as LED output */<br />
while(1)<br />
{<br />
P1_7=!(P1_7);   /* toggle P1.7*/</code></p>
<p>for(i=1;i&lt;25000;i++);<br />
/* for delay */</p>
<p>}<br />
}</p>
<p>Compile it and get the hex file from intel hex<br />
<code><br />
$sdcc-sdcc blink.c<br />
$ sdcc-packihx blink.ihx &gt; blink.hex<br />
</code></p>
<p>Now you can upload the hex to the programmer :D /me is also just starting up.</p>
]]></content:encoded>
			<wfw:commentRss>http://kushaldas.in/2010/09/06/8051-development-on-fedora/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to do XMLRPC calls in Vala using libsoup (tutorial)</title>
		<link>http://kushaldas.in/2010/03/22/how-to-do-xmlrpc-calls-in-vala-using-libsoup-tutorial/</link>
		<comments>http://kushaldas.in/2010/03/22/how-to-do-xmlrpc-calls-in-vala-using-libsoup-tutorial/#comments</comments>
		<pubDate>Mon, 22 Mar 2010 11:04:15 +0000</pubDate>
		<dc:creator>kd</dc:creator>
				<category><![CDATA[FOSS]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[vala]]></category>

		<guid isPermaLink="false">http://kushaldas.in/2010/03/22/how-to-do-xmlrpc-calls-in-vala-using-libsoup-tutoria/</guid>
		<description><![CDATA[This is small tutorial showing how one can do XMLRPC in Vala using libsoup. We will call a default demo.sayHello method in WordPress, this will just return a string &#8220;Hello!&#8221;. The code: using Soup; public void main(string[] args) { var message = xmlrpc_request_new("http://kushaldas.wordpress.com/xmlrpc.php","demo.sayHello"); var session = new SessionSync(); session.send_message(message); string data = message.response_body.flatten().data; Value v [...]]]></description>
			<content:encoded><![CDATA[<p>This is small tutorial showing how one can do XMLRPC in <a href="http://live.gnome.org/Vala">Vala </a>using libsoup.<br />
We will call a default demo.sayHello method in <a href="http://wordpress.org">WordPress</a>, this will just return a string &#8220;Hello!&#8221;.</p>
<p>The code:</p>
<p><code><br />
using Soup;</p>
<p>public void main(string[] args) {<br />
        var message = xmlrpc_request_new("http://kushaldas.wordpress.com/xmlrpc.php","demo.sayHello");<br />
        var session = new SessionSync();<br />
        session.send_message(message);</p>
<p>        string data = message.response_body.flatten().data;<br />
        Value v = Value(typeof(string));<br />
        try {<br />
            xmlrpc_parse_method_response(data, -1,v);<br />
        }<br />
        catch(Error e) {<br />
            debug("Error while processing the response");<br />
        }<br />
        string msg = v.get_string();<br />
        debug("Got: %s\n", msg);</p>
<p>}<br />
</code></p>
<p>At the very first line we mention that we are using the libsoup, then using  <a href="http://valadoc.org/libsoup-2.4/Soup.xmlrpc_request_new.html">xmlrpc_request_new</a> method we create a message. It requires the URL and method name strings. It also takes optional arguments to the method (which we will see in the next example). Then in the next few lines we are creating a <a href="http://valadoc.org/libsoup-2.4/Soup.SessionSync.html">SessionSync</a> object and call the method using <a href="http://valadoc.org/libsoup-2.4/Soup.Session.send_message.html">send_message</a> method. The response stays in the same message object we created before. We get the response as string in the variable data. </p>
<p><a href="http://valadoc.org/libsoup-2.4/Soup.xmlrpc_parse_method_response.html">xmlrpc_parse_method_response</a> takes the response as a string in the first argument, next is the length(size) of the response (Note: I used -1 so that it will take the size of data, it comes handy when the response contains unicode chars) and 3rd argument is the <a href="http://www.valadoc.org/gobject-2.0/GLib.Value.html">Value</a> where it will store the parsed result. <i>string msg = v.get_string()</i> gives us the final result , which we print using debug.</p>
<p>Now to compile the code I gave the following command<br />
<code><br />
$ valac --pkg libsoup-2.4  --thread xmlrpc-test.vala<br />
</code><br />
The output<br />
<code><br />
$ ./xmlrpc-test<br />
** (process:28319): DEBUG: xmlrpc-test.vala:17: Got: Hello!<br />
</code></p>
<p>In the next example we will try to add two numbers using another demo method given by wordpress. The code is given below</p>
<p><code><br />
using Soup;</p>
<p>public void main(string[] args) {<br />
        var message = xmlrpc_request_new("http://kushaldas.wordpress.com/xmlrpc.php","demo.addTwoNumbers",typeof(int),20,typeof(int),30);<br />
        var session = new SessionSync();<br />
        session.send_message(message);</p>
<p>        string data = message.response_body.flatten().data;<br />
        Value v = Value(typeof(int));<br />
        try {<br />
            xmlrpc_parse_method_response(data, -1,v);<br />
        }<br />
        catch(Error e) {<br />
            debug("Error while processing the response");<br />
        }<br />
        int msg = v.get_int();<br />
        debug("Got: %d\n", msg);</p>
<p>}<br />
</code></p>
<p>Here while creating the message, we passed the required arguments to the method <i>demo.addTwoNumbers</i>, it goes as type and value pair, so we wrote typeof(int) and then the integer value.</p>
<p>Compilation and result</p>
<p><code><br />
[kdas@d80 vala]$ valac --pkg libsoup-2.4 xmlrpc-test2.vala --thread<br />
[kdas@d80 vala]$ ./xmlrpc-test2<br />
** (process:28565): DEBUG: xmlrpc-test2.vala:17: Got: 50<br />
</code></p>
<p>A small tip: If you don&#8217;t know the return type , use <a href="http://www.valadoc.org/gobject-2.0/GLib.Value.type_name.html">type_name()</a> to find out.<br />
Thanks to the people in #vala who are continuously helping me to understand more of it.</p>
<p>The post is brought to you by <a href="http://fedorahosted.org/lekhonee">lekhonee</a> v0.8</p>
]]></content:encoded>
			<wfw:commentRss>http://kushaldas.in/2010/03/22/how-to-do-xmlrpc-calls-in-vala-using-libsoup-tutorial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Webcast on FOSS</title>
		<link>http://kushaldas.in/2009/07/10/webcast-on-foss/</link>
		<comments>http://kushaldas.in/2009/07/10/webcast-on-foss/#comments</comments>
		<pubDate>Fri, 10 Jul 2009 05:10:44 +0000</pubDate>
		<dc:creator>kd</dc:creator>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[FOSS]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Talk]]></category>

		<guid isPermaLink="false">http://kushaldas.in/2009/07/10/webcast-on-foss/</guid>
		<description><![CDATA[Update: Direct link You can watch it live here. These talks are part of the National mission on education through ICT. More information available here. Date: Friday, July 10th, 2009 Time: 2.30 pm IST ( 09:00 UTC ) Talk 1: 10 things a FOSS developer should know Abstract: FOSS development is easy. A simple set [...]]]></description>
			<content:encoded><![CDATA[<p>Update:  <a href="http://msrv5.encast.in/hall3">Direct link</a><br />
You can watch it live <a href="http://www.cdeep.iitb.ac.in/webcast/">here</a>.<br />
These talks are part of the National mission on education through ICT.  More information available <a href="http://www.cdeep.iitb.ac.in/events.html">here</a>.</p>
<p>Date: Friday, July 10th, 2009<br />
Time: 2.30 pm IST ( 09:00 UTC )</p>
<p>Talk 1: 10 things a FOSS developer should know</p>
<p>Abstract: FOSS development is easy. A simple set of rules and protocols<br />
would get anyone started on FOSS development. In this talk, the 10<br />
essential things are discussed in a form that is easy to remember and,<br />
easy to tell others. Mostly interactive and example-driven, the talk<br />
builds<br />
on the fundamental principles of Software Development and provides<br />
relevance within the FOSS model of doing things.</p>
<p>Speaker: Ramakrishna Reddy is a Sr Software Engineer at Red Hat. A<br />
self-confessed Python fan, Ramakrishna is currently involved in<br />
authoring a book teaching non-programmers the fundamentals of computing.<br />
He is a regular on various Python forums along side NLP related forums.<br />
Ramakrishna maintains various eclectic packages in Fedora and, is also<br />
active in the Debian community.</p>
<p>Talk 2: How to use infrastructure for FOSS Projects</p>
<p>Abstract: Infrastructure is an important part of a FOSS project&#8217;s<br />
lifecycle. In this talk, Prasad talks about how to set up a development<br />
environment for a developer and, how best to set up a<br />
development/project infrastructure. Touching upon the essential<br />
infrastructure aspects, Prasad takes an example of his own project to<br />
demonstrate how important infrastructure is for projects.</p>
<p>Speaker: Prasad J Pandit is a Software Engineer at Red Hat. A developer<br />
who  professes a love for Perl and C, Prasad maintains packages in Fedora.<br />
He  also provides guidance to new participants in FOSS development showing<br />
them how to get their feet wet.</p>
<p>Talk 3: Communication in a FOSS Project</p>
<p>Abstact: Any project is based on communication. Clear, precise and<br />
accurate information at the right time helps to build communities around<br />
projects. Rahul delves into his experience as a Fedora Community<br />
Wrangler to talk about the ways and means to maintain a dialogue with an<br />
evolving community as well as how best to build up communication skills.</p>
<p>Speaker: Rahul Sundaram has been working within the Fedora community for<br />
close  to 5 years now. He works as a Software Engineer at Red Hat and,<br />
provides  inputs and guidance in various aspects of The Fedora Project<br />
ensuring  that concept of collaboration is well established. He also<br />
writes in  various publications and online journals. His profile is<br />
available at<https://fedoraproject.org/wiki/RahulSundaram></p>
<p>The post is brought to you by <a href="http://fedorahosted.org/lekhonee">lekhonee</a> v0.6</p>
]]></content:encoded>
			<wfw:commentRss>http://kushaldas.in/2009/07/10/webcast-on-foss/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pony v0.2 released</title>
		<link>http://kushaldas.in/2009/06/03/pony-v02-released/</link>
		<comments>http://kushaldas.in/2009/06/03/pony-v02-released/#comments</comments>
		<pubDate>Wed, 03 Jun 2009 12:14:19 +0000</pubDate>
		<dc:creator>kd</dc:creator>
				<category><![CDATA[Fedora]]></category>
		<category><![CDATA[FOSS]]></category>
		<category><![CDATA[KDE]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[problem]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://kushaldas.in/2009/06/03/pony-v02-released/</guid>
		<description><![CDATA[I just released Pony v0.2 . It is still under constant development and will go some db changes before v1 release. Please delete .pony.db under your home before using the new release. $rm ~/.pony.db Among new features one can now see the EXIF information of an image. Deleting tag option is also added. Get the [...]]]></description>
			<content:encoded><![CDATA[<p>I just released Pony v0.2 . It is still under constant development and will go some db changes before v1 release. Please delete .pony.db under your home before using the new release.</p>
<p><code><br />
$rm ~/.pony.db<br />
</code></p>
<p><a title="Viewing an Image by Kushal Das, on Flickr" href="http://www.flickr.com/photos/kushaldas/3591444621/"><img src="http://farm4.static.flickr.com/3566/3591444621_097c7baabb.jpg" alt="Viewing an Image" width="500" height="321" /></a></p>
<p>Among new features one can now see the EXIF information of an image.</p>
<p><a href="http://www.flickr.com/photos/kushaldas/3591444269/" title="Showing EXIF information by Kushal Das, on Flickr"><img src="http://farm4.static.flickr.com/3651/3591444269_b4ea30c02a.jpg" width="500" height="321" alt="Showing EXIF information" /></a></p>
<p>Deleting tag option is also added.</p>
<p><a title="Showing tags by Kushal Das, on Flickr" href="http://www.flickr.com/photos/kushaldas/3592250938/"><img src="http://farm4.static.flickr.com/3631/3592250938_da5a3b87c8.jpg" alt="Showing tags" width="500" height="321" /></a></p>
<p>Get the <a href="http://fedorahosted.org/releases/p/o/pony/pony-0.2.tar.bz2">source</a> or rpms from <a href="http://fedorahosted.org/pony">here</a>.</p>
<p>Now I have to add TODO file as too many things need to be fixed. If you have any suggestions please mail me or file a ticket.</p>
]]></content:encoded>
			<wfw:commentRss>http://kushaldas.in/2009/06/03/pony-v02-released/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>pyexiv2 problem in rawhide</title>
		<link>http://kushaldas.in/2009/04/16/pyexiv2-problem-in-rawhide/</link>
		<comments>http://kushaldas.in/2009/04/16/pyexiv2-problem-in-rawhide/#comments</comments>
		<pubDate>Thu, 16 Apr 2009 10:09:27 +0000</pubDate>
		<dc:creator>kd</dc:creator>
				<category><![CDATA[Fedora]]></category>
		<category><![CDATA[problem]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[rawhide]]></category>

		<guid isPermaLink="false">http://kushaldas.in/?p=378</guid>
		<description><![CDATA[pyexiv2 is the python extension of Exiv2 library. It helps to find the EXIF information from an image. The current rawhide version is broken, it just can not be imported. [kdas@d80 ~]$ python Python 2.6 (r26:66714, Mar 17 2009, 11:44:21) [GCC 4.4.0 20090313 (Red Hat 4.4.0-0.26)] on linux2 Type "help", "copyright", "credits" or "license" for [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://tilloy.net/dev/pyexiv2" target="_blank">pyexiv2</a> is the python extension of Exiv2 library. It helps to find the <a href="http://en.wikipedia.org/wiki/Exchangeable_image_file_format" target="_blank">EXIF</a> information from an image.</p>
<p>The current rawhide version is broken, it just can not be imported.</p>
<pre id="comment_text_0" class="bz_comment_text">[kdas@d80 ~]$ python
Python 2.6 (r26:66714, Mar 17 2009, 11:44:21)
[GCC 4.4.0 20090313 (Red Hat 4.4.0-0.26)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
<span class="quote">&gt;&gt;&gt; import pyexiv2</span>
Traceback (most recent call last):
  File "&lt;stdin&gt;", line 1, in &lt;module&gt;
  File "/usr/lib/python2.6/site-packages/pyexiv2.py", line 60, in &lt;module&gt;
    import libexiv2python
ImportError: /usr/lib/python2.6/site-packages/libexiv2python.so: undefined</pre>
<p>Tried to find what that symbol is using c++filt</p>
<pre id="comment_text_0" class="bz_comment_text">[kdas@d80 ~]$ c++filt _ZNK5Exiv29Exifdatum6typeIdEv
Exiv2::Exifdatum::typeId() const</pre>
<p><span style="text-decoration: line-through;">Now is this a very new pyexiv2 which contains symbols from latest exiv2-lib or a problem itself ?</span> The bug is <a href="https://bugzilla.redhat.com/show_bug.cgi?id=496050" target="_blank">here</a>.</p>
<p>Update: <span style="text-decoration: line-through;">It seems to be a local symbol.</span> It comes from exiv2-lib only , but it shows as local with &#8220;notype&#8221; from the eu-readelf output :(</p>
]]></content:encoded>
			<wfw:commentRss>http://kushaldas.in/2009/04/16/pyexiv2-problem-in-rawhide/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Summer training 2009</title>
		<link>http://kushaldas.in/2009/03/29/summer-training-2009/</link>
		<comments>http://kushaldas.in/2009/03/29/summer-training-2009/#comments</comments>
		<pubDate>Sun, 29 Mar 2009 16:07:43 +0000</pubDate>
		<dc:creator>kd</dc:creator>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[dgplug]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[FOSS]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[problem]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://kushaldas.in/?p=360</guid>
		<description><![CDATA[You can find the wiki page here. This year we want to make groups such that there are two students in a group and make them work on any upstream project or  a new project. They should start the work of finding the project ideas within first two weeks of the program.  Comments/suggestions are welcome. [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://wiki.dgplug.org/index.php/SummerTraining09"><img class="aligncenter" title="Summer Training" src="http://kushaldas.in/tmp/summer_training-small.png" alt="" width="446" height="631" /></a></p>
<p>You can find the wiki page <a href="http://wiki.dgplug.org/index.php/SummerTraining09" target="_blank">here</a>. This year we want to make groups such that there are two students in a group and make them work on any upstream project or  a new project. They should start the work of finding the project ideas within first two weeks of the program.  Comments/suggestions are welcome.</p>
<p>We have added a few buzz words in the poster to attract students. Generally students prefer to go to different small institutions to do summer project where most of the times they pay a good amount to get a certificate. Trying to change the situation slowly.</p>
<p>Thanks to <a href="http://nicubunu.ro" target="_blank">Nicu</a> for the poster.</p>
]]></content:encoded>
			<wfw:commentRss>http://kushaldas.in/2009/03/29/summer-training-2009/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>How to install Soas on your regular box</title>
		<link>http://kushaldas.in/2009/03/06/how-to-install-soas-on-your-regular-box/</link>
		<comments>http://kushaldas.in/2009/03/06/how-to-install-soas-on-your-regular-box/#comments</comments>
		<pubDate>Fri, 06 Mar 2009 15:50:50 +0000</pubDate>
		<dc:creator>kd</dc:creator>
				<category><![CDATA[Fedora]]></category>
		<category><![CDATA[FOSS]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[OLPC]]></category>
		<category><![CDATA[problem]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Soas]]></category>
		<category><![CDATA[Sugar]]></category>

		<guid isPermaLink="false">http://kushaldas.in/?p=352</guid>
		<description><![CDATA[Soas (Sugar on a Stick) is a LiveUSB system with sugar on it. It is based on Fedora. You can carry it and boot anywhere as you want like any other live system. You can download the ISO from here. I was using it on a Eee PC (4GB model), suddenly thought of installing it [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://sugarlabs.org/go/Sugar_on_a_Stick" target="_blank">Soas</a> (Sugar on a Stick) is a LiveUSB system with sugar on it. It is based on <a href="http://fedoraproject.org" target="_blank">Fedora</a>. You can carry it and boot anywhere as you want like any other live system. You can download the ISO from <a href="http://sugarlabs.org/go/Sugar_on_a_Stick#Downloads" target="_blank">here</a>.</p>
<p>I was using it on a Eee PC (4GB model), suddenly thought of installing it on the system.</p>
<p>The other Fedora based systems have an option on desktop to install on hard disk, but this system is running sugar so no desktop means no such option. From the #fedora-devel I found the command is &#8220;liveinst&#8221; which is part of anaconda.</p>
<p>So I installed anaconda ( #yum install anaconda ) and then used the command &#8220;liveinst&#8221; ( without quotes) , this will fire up the installer for you. Then go through like any other installation.<br />
After finishing the installation I found X was crashing, tried with many different config but nothing helped. Finally decided to install gdm and gnome on that box ( #yum install @gnome-desktop gdm ),  also installed system-switch-displaymanager using which I changed the display manager to gdm. Next task was to change the init to 5 in inittab. Rebooted and found gdm , chose &#8220;sugar&#8221; as the desktop option and logged in :)</p>
<p>If you want any help come to #sugar on freenode.</p>
]]></content:encoded>
			<wfw:commentRss>http://kushaldas.in/2009/03/06/how-to-install-soas-on-your-regular-box/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Meet the contributor: Parag Nemade (aka  paragn)</title>
		<link>http://kushaldas.in/2008/09/26/meet-the-contributor-parag-nemade-aka-paragn/</link>
		<comments>http://kushaldas.in/2008/09/26/meet-the-contributor-parag-nemade-aka-paragn/#comments</comments>
		<pubDate>Fri, 26 Sep 2008 05:25:46 +0000</pubDate>
		<dc:creator>kd</dc:creator>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[FOSS]]></category>
		<category><![CDATA[Interview]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[India]]></category>
		<category><![CDATA[Meet The Contributor]]></category>

		<guid isPermaLink="false">http://kushaldas.in/?p=320</guid>
		<description><![CDATA[In this edition of meet the contributor series we are happy to introduce Parag Nemade , currently the only sponsor for Fedora packaging from India. Still now he reviewed more than 625 packages. Watch it in youtube or download the ogg.]]></description>
			<content:encoded><![CDATA[<p><a href="http://tv.dgplug.org/oggs/paragn.ogg"><img class="alignnone size-medium wp-image-321" style="vertical-align: middle;" title="Parag Nemade" src="http://kushaldas.in/wp-content/uploads/2008/09/paragn-300x285.png" alt="" width="300" height="285" /></a></p>
<p>In this edition of meet the contributor series we are happy to introduce <a href="https://fedoraproject.org/wiki/ParagNemade" target="_blank">Parag Nemade</a> , currently the only sponsor for Fedora packaging from India. Still now he reviewed more than 625 packages. Watch it in <a href="http://www.youtube.com/watch?v=GlmC8YnIQJk" target="_blank">youtube</a> or download the <a href="http://tv.dgplug.org/oggs/paragn.ogg" target="_blank">ogg</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://kushaldas.in/2008/09/26/meet-the-contributor-parag-nemade-aka-paragn/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>KNotes: the note taking application</title>
		<link>http://kushaldas.in/2008/09/22/knotes-the-note-taking-application/</link>
		<comments>http://kushaldas.in/2008/09/22/knotes-the-note-taking-application/#comments</comments>
		<pubDate>Mon, 22 Sep 2008 18:30:25 +0000</pubDate>
		<dc:creator>kd</dc:creator>
				<category><![CDATA[Fedora]]></category>
		<category><![CDATA[KDE]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[ba]]></category>
		<category><![CDATA[KNotes]]></category>

		<guid isPermaLink="false">http://kushaldas.in/?p=316</guid>
		<description><![CDATA[Knotes is the note taking application from KDE.]]></description>
			<content:encoded><![CDATA[<p><a href="http://tv.dgplug.org/?p=88" target="_blank"><img class="alignnone size-medium wp-image-317" title="KNotes" src="http://kushaldas.in/wp-content/uploads/2008/09/knotes-300x285.png" alt="" width="300" height="285" /></a></p>
<p>Knotes is the note taking application from KDE.</p>
]]></content:encoded>
			<wfw:commentRss>http://kushaldas.in/2008/09/22/knotes-the-note-taking-application/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Wring Python using KDevelop</title>
		<link>http://kushaldas.in/2008/09/13/wring-python-using-kdevelop/</link>
		<comments>http://kushaldas.in/2008/09/13/wring-python-using-kdevelop/#comments</comments>
		<pubDate>Fri, 12 Sep 2008 23:12:18 +0000</pubDate>
		<dc:creator>kd</dc:creator>
				<category><![CDATA[dgplug]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[FOSS]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Pyhton Tutorial KDE]]></category>

		<guid isPermaLink="false">http://kushaldas.in/?p=306</guid>
		<description><![CDATA[How to write Python using KDevelop, find it here.]]></description>
			<content:encoded><![CDATA[<p>How to write <a href="http://python.org" target="_blank">Python</a> using KDevelop, find it <a href="http://tv.dgplug.org/?p=5" target="_blank">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://kushaldas.in/2008/09/13/wring-python-using-kdevelop/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

