<?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; News</title>
	<atom:link href="http://kushaldas.in/category/news/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>Darkserver in production</title>
		<link>http://kushaldas.in/2012/03/23/darkserver-in-production/</link>
		<comments>http://kushaldas.in/2012/03/23/darkserver-in-production/#comments</comments>
		<pubDate>Fri, 23 Mar 2012 06:47:49 +0000</pubDate>
		<dc:creator>kd</dc:creator>
				<category><![CDATA[Fedora]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[darkserver]]></category>

		<guid isPermaLink="false">http://kushaldas.in/?p=619</guid>
		<description><![CDATA[In the last few days we managed to get Darkserver live in production. Thanks to Nirik and Dgilmore, without their help it was not possible. This service is providing the API(s) based on which other developers can write tools to query details of build-ids. We Have build-id in every ELF we build from Fedora 8, [...]]]></description>
			<content:encoded><![CDATA[<p>In the last few days we managed to get <a href="https://fedoraproject.org/wiki/Darkserver" target="_blank">Darkserver</a> live in production. Thanks to Nirik and Dgilmore, without their help it was not possible.</p>
<p>This service is providing the API(s) based on which other developers can write tools to query details of build-ids. We Have build-id in every ELF we build from Fedora 8, but there was no good way to query them. More details on why we need the service can be found at the <a href="https://fedoraproject.org/wiki/Darkserver" target="_blank">wiki page</a>.</p>
<p>For now it is handling only primary architecture builds. Within last 4 days we have around 118k build-id(s) in the database.</p>
<p>I am working on a small command line client for the same, called darkclient. Hope to have the first release out in next week.<br />
API details can be found at the <a href="https://darkserver.fedoraproject.org/" target="_blank">home page</a> of the <a href="https://darkserver.fedoraproject.org/" target="_blank">service</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://kushaldas.in/2012/03/23/darkserver-in-production/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Michael Foord&#8217;s python-mock for testing</title>
		<link>http://kushaldas.in/2012/03/22/michael-foords-python-mock-for-testing/</link>
		<comments>http://kushaldas.in/2012/03/22/michael-foords-python-mock-for-testing/#comments</comments>
		<pubDate>Thu, 22 Mar 2012 12:37:57 +0000</pubDate>
		<dc:creator>kd</dc:creator>
				<category><![CDATA[Fedora]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Python]]></category>

		<guid isPermaLink="false">http://kushaldas.in/?p=615</guid>
		<description><![CDATA[The project page is here. Why you need it ? Say you are writing unittests for your favourite application  and in some function you are using xmlrpclib module to interact with a web-application. Now for testing you can easily mock that interaction out, which will help to run your code in fast and easy way. [...]]]></description>
			<content:encoded><![CDATA[<p>The project page is <a href="http://www.voidspace.org.uk/python/mock/" target="_blank">here</a>.</p>
<p>Why you need it ?<br />
Say you are writing unittests for your favourite application  and in some function you are using xmlrpclib module to interact with a web-application. Now for testing you can easily mock that interaction out, which will help to run your code in fast and easy way. Mocking database calls can be another example.</p>
<p>Example:</p>
<pre>
import unittest
import xmlrpclib
from mock import patch

class TestFoo(unittest.TestCase):
    """
	A simple test
    """
    @patch('xmlrpclib.Server')
    def test_first(self, mock_xmlrpc):
        m = mock_xmlrpc.return_value
        m.multiply.return_value = 6
        server = xmlrpclib.Server("http://kushaldas.in/")
        res = server.multiply(2, 3)
        self.assertEqual(res, 6)

if __name__ == '__main__':
    unittest.main()
</pre>
<p>In Fedora you can just yum install python-mock.</p>
]]></content:encoded>
			<wfw:commentRss>http://kushaldas.in/2012/03/22/michael-foords-python-mock-for-testing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2 days of Fedora and python workshops in Durgapur</title>
		<link>http://kushaldas.in/2012/03/05/2-days-of-fedora-and-python-workshops-in-durgapur/</link>
		<comments>http://kushaldas.in/2012/03/05/2-days-of-fedora-and-python-workshops-in-durgapur/#comments</comments>
		<pubDate>Mon, 05 Mar 2012 05:01:05 +0000</pubDate>
		<dc:creator>kd</dc:creator>
				<category><![CDATA[dgplug]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[FOSS]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://kushaldas.in/?p=610</guid>
		<description><![CDATA[With help from local dgplug members we had 2 days of workshops on February 17th and 18th. The idea was to introduce Fedora to the new students and various tools which they can use to develop their skills. This time we tried to get only interested students into the workshops. Day1: We started around 11am [...]]]></description>
			<content:encoded><![CDATA[<p>With help from local dgplug members we had 2 days of workshops on February 17th and 18th.</p>
<p>The idea was to introduce Fedora to the new students and various tools which they can use to develop their skills. This time we tried to get only interested students into the workshops.</p>
<p>Day1: We started around 11am in the seminar hall, had around 45 students attending the first talk on FOSS in general and then about Fedora. Existing contributors like <a href="http://fosswithme.wordpress.com/" target="_blank">Sayan</a>, Biraj also talked about their experience, how they started their journey.<br />
After lunch break we started python workshop, we had to introduce the terminal and various commands to them before I started talking about python. Most of them were being able to catch up and solve the small problems I gave. We closed for the day around 5:30pm. I stayed back in the Boy&#8217;s Hostel and had chats about various projects students are working on.</p>
<p>Day2:<br />
Though we started a bit early but we had almost every participant from previous day. First workshop of the day was on Vi.<br />
In the second half we again started with python but going into more details. Showing them how they can start working on a project, how to do their lab assignments using existing tools in Fedora.<br />
These students can see their seniors who already started contributing to various projects. I hope some of them will follow the path.</p>
<p>&nbsp;</p>
<p><a href="http://kushaldas.in/wp-content/uploads/2012/03/DSC_7216.jpg"><img class="alignnone size-medium wp-image-611" title="Students in the workshop" src="http://kushaldas.in/wp-content/uploads/2012/03/DSC_7216-300x198.jpg" alt="" width="300" height="198" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://kushaldas.in/2012/03/05/2-days-of-fedora-and-python-workshops-in-durgapur/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I am going to FUDCON Pune</title>
		<link>http://kushaldas.in/2011/10/31/i-am-going-to-fudcon-pune/</link>
		<comments>http://kushaldas.in/2011/10/31/i-am-going-to-fudcon-pune/#comments</comments>
		<pubDate>Mon, 31 Oct 2011 05:59:36 +0000</pubDate>
		<dc:creator>kd</dc:creator>
				<category><![CDATA[Fedora]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://kushaldas.in/?p=583</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><img src="http://suchakra.fedorapeople.org/fudcon-designs/fudcon-button-going.png" alt="FUDCON PUNE" /></p>
]]></content:encoded>
			<wfw:commentRss>http://kushaldas.in/2011/10/31/i-am-going-to-fudcon-pune/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Colour colour everywhere :)</title>
		<link>http://kushaldas.in/2011/03/21/colour-colour-everywhere/</link>
		<comments>http://kushaldas.in/2011/03/21/colour-colour-everywhere/#comments</comments>
		<pubDate>Mon, 21 Mar 2011 08:50:23 +0000</pubDate>
		<dc:creator>kd</dc:creator>
				<category><![CDATA[life]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[Holi]]></category>

		<guid isPermaLink="false">http://kushaldas.in/2011/03/21/colour-colour-everywhere/</guid>
		<description><![CDATA[It was time for Holi once again :) Was in the action with my new 24-70. Found people totally drowned in colour Little kids enjoying as much as they can Among all the chaos and fun and colours, still found people alone while trying to dry up. Many smiling faces also. People dancing with all [...]]]></description>
			<content:encoded><![CDATA[<p>It was time for <a href="http://en.wikipedia.org/wiki/Holi">Holi</a> once again :)</p>
<p>Was in the action with my new 24-70. Found people totally drowned in colour </p>
<p><a href="http://www.flickr.com/photos/kushaldas/5543675549/" title="DSC_0098 by Kushal Das, on Flickr"><img src="http://farm6.static.flickr.com/5018/5543675549_c274f8cd91.jpg" width="334" height="500" alt="DSC_0098" /></a></p>
<p><a href="http://www.flickr.com/photos/kushaldas/5544866570/" title="DSC_0296 by Kushal Das, on Flickr"><img src="http://farm6.static.flickr.com/5298/5544866570_904febde6b.jpg" width="334" height="500" alt="DSC_0296" /></a></p>
<p>Little kids enjoying as much as they can </p>
<p><a href="http://www.flickr.com/photos/kushaldas/5544498864/" title="DSC_0167 by Kushal Das, on Flickr"><img src="http://farm6.static.flickr.com/5173/5544498864_d2ce959e99.jpg" width="500" height="334" alt="DSC_0167" /></a></p>
<p>Among all the chaos and fun and colours, still found people alone while trying to dry up.</p>
<p><a href="http://www.flickr.com/photos/kushaldas/5544675710/" title="DSC_0204 by Kushal Das, on Flickr"><img src="http://farm6.static.flickr.com/5296/5544675710_db5e6916ed.jpg" width="500" height="334" alt="DSC_0204" /></a></p>
<p>Many smiling faces also.</p>
<p><a href="http://www.flickr.com/photos/kushaldas/5544813724/" title="DSC_0267 by Kushal Das, on Flickr"><img src="http://farm6.static.flickr.com/5255/5544813724_63132dae17.jpg" width="500" height="334" alt="DSC_0267" /></a></p>
<p><a href="http://www.flickr.com/photos/kushaldas/5544326673/" title="DSC_0317 by Kushal Das, on Flickr"><img src="http://farm6.static.flickr.com/5251/5544326673_8703ab1a9a.jpg" width="500" height="334" alt="DSC_0317" /></a></p>
<p>People dancing with all crazy styles.</p>
<p><a href="http://www.flickr.com/photos/kushaldas/5544998746/" title="DSC_0367 by Kushal Das, on Flickr"><img src="http://farm6.static.flickr.com/5019/5544998746_641ef7b81f.jpg" width="334" height="500" alt="DSC_0367" /></a></p>
<p><a href="http://www.flickr.com/photos/kushaldas/5545086540/" title="DSC_0424 by Kushal Das, on Flickr"><img src="http://farm6.static.flickr.com/5028/5545086540_4deef14dbd.jpg" width="500" height="334" alt="DSC_0424" /></a></p>
<p>One can find the whole set <a href="http://www.flickr.com/photos/kushaldas/sets/72157626309119552/">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://kushaldas.in/2011/03/21/colour-colour-everywhere/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to use lekhonee-gnome for multiple blogs with the same wordpress account ?</title>
		<link>http://kushaldas.in/2010/06/11/how-to-use-lekhonee-gnome-for-multiple-blogs-with-the-same-wordpress-account/</link>
		<comments>http://kushaldas.in/2010/06/11/how-to-use-lekhonee-gnome-for-multiple-blogs-with-the-same-wordpress-account/#comments</comments>
		<pubDate>Fri, 11 Jun 2010 10:23:06 +0000</pubDate>
		<dc:creator>kd</dc:creator>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[lekhonee]]></category>

		<guid isPermaLink="false">http://kushaldas.in/2010/06/11/how-to-use-lekhonee-gnome-for-multiple-blogs-with-the-same-wordpress-account/</guid>
		<description><![CDATA[I was looking into this feature request yesterday, good news is lekhonee-gnome already supports this. Lets say your wordpress username is foobar. So, in the accounts in Preferences window you add the first account with your username and password and WordPress&#160;as service.&#160; Then add another account with same username and password but service as other [...]]]></description>
			<content:encoded><![CDATA[<p>I was looking into this feature request yesterday, good news is lekhonee-gnome already supports this. Lets say your wordpress username is <i>foobar</i>.
<div></div>
<div>So, in the accounts in Preferences window you add the first account with your username and password and <i>WordPress</i>&nbsp;as service.&nbsp;</div>
<div></div>
<div>Then add another account with same username and password but service as <i>other</i> and type the full url of your 2nd blog following /xmlrpc.php (example: http://secondblog.wordpress.org/xmlrpc.php).&nbsp;</div>
<div></div>
<div>Now you can access both the blogs from lekhonee-gnome</div>
]]></content:encoded>
			<wfw:commentRss>http://kushaldas.in/2010/06/11/how-to-use-lekhonee-gnome-for-multiple-blogs-with-the-same-wordpress-account/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Timelapse using Fedora and D80</title>
		<link>http://kushaldas.in/2010/06/05/timelapse-using-fedora-and-d80/</link>
		<comments>http://kushaldas.in/2010/06/05/timelapse-using-fedora-and-d80/#comments</comments>
		<pubDate>Sat, 05 Jun 2010 18:48:28 +0000</pubDate>
		<dc:creator>kd</dc:creator>
				<category><![CDATA[FOSS]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Photo]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[entangle]]></category>
		<category><![CDATA[timelapse]]></category>

		<guid isPermaLink="false">http://kushaldas.in/2010/06/05/timelapse-using-fedora-and-d80/</guid>
		<description><![CDATA[My first timelapse movie: /me trying to clean the kitchen&#160; ogv or in youtube Shot in a Nikon D80 using entangle (#yum install entangle ) and a small python script. Resized using imagemagick and video created using mencoder.&#160; Comments are welcome :)]]></description>
			<content:encoded><![CDATA[<p>My first timelapse movie: /me trying to clean the kitchen&nbsp;
<div><a href="http://kushaldas.in/tmp/timelapse.ogv">ogv</a> or in <a href="http://www.youtube.com/watch?v=eS_ucocsMpQ">youtube</a></div>
<div>Shot in a Nikon D80 using entangle (#yum install entangle ) and a small python script.</div>
<div>Resized using imagemagick and video created using mencoder.&nbsp;</div>
<div>Comments are welcome :)</div>
]]></content:encoded>
			<wfw:commentRss>http://kushaldas.in/2010/06/05/timelapse-using-fedora-and-d80/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
<enclosure url="http://kushaldas.in/tmp/timelapse.ogv" length="958974" type="video/ogg" />
		</item>
		<item>
		<title>lekhonee-gnome 0.10 released</title>
		<link>http://kushaldas.in/2010/06/03/lekhonee-gnome-0-10-released/</link>
		<comments>http://kushaldas.in/2010/06/03/lekhonee-gnome-0-10-released/#comments</comments>
		<pubDate>Thu, 03 Jun 2010 10:42:13 +0000</pubDate>
		<dc:creator>kd</dc:creator>
				<category><![CDATA[Fedora]]></category>
		<category><![CDATA[FOSS]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[lekhonee]]></category>
		<category><![CDATA[lekhonee-gnome]]></category>
		<category><![CDATA[vala]]></category>

		<guid isPermaLink="false">http://kushaldas.in/2010/06/03/lekhonee-gnome-0-10-released/</guid>
		<description><![CDATA[lekhonee-gnome 0.10 is just released. You can download the source from here.&#160; This release comes with new translations for languages like Gujarati or Punjabi, also spell checking option is not anymore under right click menu ( something changed in webkit) Here is an image of the right click menu used to look like.]]></description>
			<content:encoded><![CDATA[<p>lekhonee-gnome 0.10 is just released. You can download the source from <a href="https://fedorahosted.org/releases/l/e/lekhonee/lekhonee-gnome-0.10.tar.bz2">here</a>.&nbsp;
<div></div>
<div>This release comes with new translations for languages like Gujarati or Punjabi, also spell checking option is not anymore under right click menu ( something changed in webkit)</div>
<div></div>
<div></div>
<div></div>
<div><a href="http://runab.fedorapeople.org/lekhonee-gnome.png">Here</a> is an image of the right click menu used to look like.</div>
]]></content:encoded>
			<wfw:commentRss>http://kushaldas.in/2010/06/03/lekhonee-gnome-0-10-released/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>FAD PUNE 2010</title>
		<link>http://kushaldas.in/2010/05/31/fad-pune-2010/</link>
		<comments>http://kushaldas.in/2010/05/31/fad-pune-2010/#comments</comments>
		<pubDate>Mon, 31 May 2010 11:18:37 +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[OLPC]]></category>
		<category><![CDATA[FAD]]></category>
		<category><![CDATA[Pune]]></category>

		<guid isPermaLink="false">http://kushaldas.in/2010/05/31/fad-pune-2010/</guid>
		<description><![CDATA[So this weekend we had FAD Pune 2010. Being organizer the main issue was to get inside the office before everyone else :) Among the things done: Packaged accessx ( with help from Sayamindu to patch it for Fedora) Updated code in Pony so that it works with new flickrapi API (committed but not pushed [...]]]></description>
			<content:encoded><![CDATA[<p>So this weekend we had FAD Pune 2010. Being organizer the main issue was to get inside the office before everyone else :)
<div></div>
<div>Among the things done:</div>
<div>
<ul>
<li>Packaged accessx ( with help from Sayamindu to patch it for Fedora)</li>
<li>Updated code in Pony so that it works with new flickrapi API (committed but not pushed yet)</li>
<li>Now we have cover images in <a href="http://github.com/sayamindu/pathagar">Pathagar</a> , the digital library system.</li>
<li>Helped people with packaging</li>
</ul>
<div>Yesterday in the last hours almost everyone were busy with packaging and helping each other.&nbsp;Had fun with all other contributors for 2 days, now getting back to the normal routine. Photos will come up later this week. I also recorded Sayamindu&#8217;s talk on <a href="http://laptop.org">OLPC</a> as a downstream of <a href="http://fedoraproject.org">Fedora</a> project, you can view it <a href="http://tv.dgplug.org/oggs/sayam.ogv">here</a> (111MB).</div>
</div>
<div></div>
<div>&nbsp;&nbsp;</div>
]]></content:encoded>
			<wfw:commentRss>http://kushaldas.in/2010/05/31/fad-pune-2010/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
<enclosure url="http://tv.dgplug.org/oggs/sayam.ogv" length="115997513" type="video/ogg" />
		</item>
		<item>
		<title>lekhonee-gnome 0.9.1 is released</title>
		<link>http://kushaldas.in/2010/04/29/lekhonee-gnome-0-9-1-is-released/</link>
		<comments>http://kushaldas.in/2010/04/29/lekhonee-gnome-0-9-1-is-released/#comments</comments>
		<pubDate>Thu, 29 Apr 2010 10:29:22 +0000</pubDate>
		<dc:creator>kd</dc:creator>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[FOSS]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[lekhonee]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[vala]]></category>

		<guid isPermaLink="false">http://kushaldas.in/2010/04/29/lekhonee-gnome-0-9-1-is-released/</guid>
		<description><![CDATA[I am happy to announce the release of lekhonee-gnome 0.9.1 . You can download the source or check for koji builds for F12 or F13. New features are like: Supports multiple WordPress accounts Tabbed UI for different modes Now supports adding &#60;br&#62; tag using tool button Preview mode (more details on this below) Advertisement message [...]]]></description>
			<content:encoded><![CDATA[<p>I am happy to announce the release of lekhonee-gnome 0.9.1 . You can download the <a href="https://fedorahosted.org/releases/l/e/lekhonee/lekhonee-gnome-0.9.1.tar.bz2">source</a> or check for koji builds for <a href="http://koji.fedoraproject.org/koji/taskinfo?taskID=2145031">F12</a> or <a href="http://koji.fedoraproject.org/koji/taskinfo?taskID=2145038">F13</a>. New features are like:
<div>
<ul>
<li>Supports multiple WordPress accounts</li>
<li>Tabbed UI for different modes</li>
<li>Now supports adding <i>&lt;br&gt;</i> tag using tool button</li>
<li>Preview mode (more details on this below)</li>
<li>Advertisement message is disabled for this release</li>
<li>Stopped segfault(s) in couple of corner cases</li>
<li>Supports &lt;video&gt; and &lt;audio&gt; tags in Visual and preview mode (you may have to write the details in HTML mode)</li>
<li>Can watch youtube videos in Preview mode (not an actual feature :p )</li>
</ul>
<p>So the main two new features are multiple account handling and Preview mode. In the preview mode you can see how the post will look like in your blog with the theme you are having. To fetch the blog style please click on the small download style/theme button in the toolbar (this button will only come in the toolbar if you don&#8217;t have cached theme downloaded in your system), though you need internet connection for this mode to work.</p></div>
]]></content:encoded>
			<wfw:commentRss>http://kushaldas.in/2010/04/29/lekhonee-gnome-0-9-1-is-released/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

