<?xml version="1.0"?>
<rss version="2.0">

<channel>
	<title>Planet dgplug</title>
	<link>http://planet.dgplug.org/</link>
	<language>en</language>
	<description>Planet dgplug - http://planet.dgplug.org/</description>

<item>
	<title>Kenneth Gonsalves: django-addition</title>
	<guid>http://lawgon.livejournal.com/80677.html</guid>
	<link>http://lawgon.livejournal.com/80677.html</link>
	<description>django-addition has moved here: &lt;a href=&quot;http://bitbucket.org/lawgon/django-addition/wiki/Home&quot;&gt;http://bitbucket.org/lawgon/django-addition/wiki/Home&lt;/a&gt;. Reason for the move is that livejournal is not very amenable to posting code.</description>
	<pubDate>Thu, 02 Sep 2010 12:12:12 +0000</pubDate>
</item>
<item>
	<title>Kenneth Gonsalves: how to add two numbers in django</title>
	<guid>http://lawgon.livejournal.com/80621.html</guid>
	<link>http://lawgon.livejournal.com/80621.html</link>
	<description>For people coming from backgrounds of php or of application servers, the process by which django works is slightly puzzling. Maybe a simple tutorial that does the barest minimum would put them on the right path - so here is a attempt to do this wrt a thread that came up on the django-users mailing list. Comments?&lt;br /&gt;&lt;br /&gt;1. download django:&lt;br /&gt;svn co &lt;a href=&quot;http://code.djangoproject.com/svn/django/trunk/&quot;&gt;http://code.djangoproject.com/svn/django/trunk/&lt;/a&gt; django-trunk&lt;br /&gt;&lt;br /&gt;2. symlink django to the site-packages directory&lt;br /&gt;ln -s pathtodjango-trunk/django /usr/lib/python2.x/site-packages/django&lt;br /&gt;&lt;br /&gt;3. set up django:&lt;br /&gt;python pathtodjango-admin.py startproject project&lt;br /&gt;cd project&lt;br /&gt;python manage.py startapp addnums&lt;br /&gt;&lt;br /&gt;4. edit settings.py to point to a database called addnums&lt;br /&gt;4.5 add project.addnums to INSTALLED_APPS in settings.py&lt;br /&gt;&lt;br /&gt;5. create the database addnums&lt;br /&gt;&lt;br /&gt;6. create a model in models.py which will be in the addnums directory:&lt;br /&gt;&lt;pre&gt;
class Addnum(models.Model):
    num1 = models.IntegerField(&quot;First number&quot;)
    num2 = models.IntegerField(&quot;Second number&quot;)
    # display result:
    def __unicode__(self):
        return &quot;%s plus %s is %s&quot; %(self.num1,self.num2,selfnum1+self.num2)
&lt;/pre&gt;&lt;br /&gt;6.5 create the database table&lt;br /&gt;&lt;br /&gt;python manage.py syncdb&lt;br /&gt;&lt;br /&gt;7. Create a form in views.py:&lt;br /&gt;&lt;pre&gt;
from django.template import Context,loader,RequestContext

from django.shortcuts import render_to_response, get_object_or_404
from django.forms import ModelForm
from project.addnums.models import Addnum

class Addnumform(forms.ModelForm):
    class Meta:
        model = Addnum
&lt;/pre&gt;&lt;br /&gt;8. Create a view to display and get the data from the form&lt;br /&gt;&lt;pre&gt;
def getnum(request):
    if request.POST:
        form = Addnumform(request.POST)
        if form.is_valid:
            f = form.save()
            #return a success view with the result
            return HttpResponseRedirect(&quot;/success/%d/&quot; % f.id)
    else:
        form = Addnumform()
    return render_to_response('web/addnum.html',
                        context_instance=RequestContext(request,
    
                              {&quot;form&quot;:form,
                               
                               }))
&lt;/pre&gt;&lt;br /&gt;9. create the success view:&lt;br /&gt;&lt;pre&gt;
def success(request,id):
    nums = Addnum.objects.get(pk=id)
    return render_to_response('web/addnum.html',
                        context_instance=RequestContext(request,
    
                              {&quot;nums&quot;:nums,
                               
                               }))
&lt;/pre&gt;&lt;br /&gt;10. create urls for django to find your views in urls.py:&lt;br /&gt;&lt;br /&gt;url(r'getnum/$','project.addnums.views.getnum',name='getnum'),&lt;br /&gt;url(r'success/(?P\d+)/$','project.addnums.views.success,name='success'),&lt;br /&gt;&lt;br /&gt;11. create a base template called base.html:&lt;br /&gt;{% block content%}{% endblock %}&lt;br /&gt;&lt;br /&gt;12. create getnums.html:&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;
{% extends base.html %}
{%block content %}
&lt;p&gt;{% if form.errors %} Please correct the errors below {% endif %}&lt;/p&gt;
    &lt;form enctype=&quot;text/html&quot; method=&quot;POST&quot;&gt;{% csrf_token %}
    {{ form }}
    &lt;input type=&quot;submit&quot; name=&quot;Register&quot; value=&quot;Submit&quot; /&gt;
{% endblock %}
&lt;/form&gt;&lt;/pre&gt;&lt;br /&gt;13. create success.html:&lt;br /&gt;&lt;pre&gt;
{% extends base.html %}
{%block content %}
{{nums}}
{% endblock %}
&lt;/pre&gt;&lt;br /&gt;14. add the directory holding your templates to the templates directory in settings.py&lt;br /&gt;&lt;br /&gt;15. run python manage.py runserver&lt;br /&gt;&lt;br /&gt;16. point browser to &lt;a href=&quot;http://127.0.0.1:8000&quot;&gt;http://127.0.0.1:8000&lt;/a&gt; and start learning arithmetic.</description>
	<pubDate>Tue, 31 Aug 2010 09:34:02 +0000</pubDate>
</item>
<item>
	<title>Bamacharan Kundu: Screenshot-7</title>
	<guid>http://bamacharankundu.wordpress.com/?p=128</guid>
	<link>http://bamacharankundu.wordpress.com/2010/08/30/login-screen-changed-and-modify-option-added-to-openzilla/</link>
	<description>&lt;p&gt;I have Changed the login screen previously it was taking input User name, password, Base URL and topic or product as&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://bamacharankundu.files.wordpress.com/2010/08/screenshot.png&quot;&gt;&lt;img class=&quot;aligncenter size-medium wp-image-130&quot; title=&quot;Screenshot&quot; src=&quot;http://bamacharankundu.files.wordpress.com/2010/08/screenshot.png?w=300&amp;h=175&quot; alt=&quot;&quot; width=&quot;300&quot; height=&quot;175&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Now at first User has to give the base URL which can be selected from one drop down box, and User name and password. like&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://bamacharankundu.files.wordpress.com/2010/08/screenshot-9.png&quot;&gt;&lt;img class=&quot;aligncenter size-medium wp-image-131&quot; title=&quot;Screenshot-9&quot; src=&quot;http://bamacharankundu.files.wordpress.com/2010/08/screenshot-9.png?w=300&amp;h=175&quot; alt=&quot;&quot; width=&quot;300&quot; height=&quot;175&quot; /&gt;&lt;/a&gt;After clicking login it will login to the base URL and if success full then it will go to the product selection page.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://bamacharankundu.files.wordpress.com/2010/08/screenshot-10.png&quot;&gt;&lt;img class=&quot;aligncenter size-medium wp-image-132&quot; title=&quot;Screenshot-10&quot; src=&quot;http://bamacharankundu.files.wordpress.com/2010/08/screenshot-10.png?w=300&amp;h=175&quot; alt=&quot;&quot; width=&quot;300&quot; height=&quot;175&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Then clicking the finish button it will load the bugs for first run depending on the selected product and continue with a screen&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://bamacharankundu.files.wordpress.com/2010/08/screenshot-11.png&quot;&gt;&lt;img class=&quot;aligncenter size-medium wp-image-133&quot; title=&quot;Screenshot-11&quot; src=&quot;http://bamacharankundu.files.wordpress.com/2010/08/screenshot-11.png?w=300&amp;h=175&quot; alt=&quot;&quot; width=&quot;300&quot; height=&quot;175&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Once the bugs are loaded then and next run onwords it will go to the main window which will show the list of bugs already downloaded.&lt;/p&gt;
&lt;p&gt;I have added the modify option to it if one bug is selected from the list of the bugs it can be modified with their fields and comments can be added.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://bamacharankundu.files.wordpress.com/2010/08/screenshot-8.png&quot;&gt;&lt;img class=&quot;aligncenter size-medium wp-image-134&quot; title=&quot;Screenshot-8&quot; src=&quot;http://bamacharankundu.files.wordpress.com/2010/08/screenshot-8.png?w=300&amp;h=175&quot; alt=&quot;&quot; width=&quot;300&quot; height=&quot;175&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://bamacharankundu.files.wordpress.com/2010/08/screenshot-7.png&quot;&gt;&lt;img class=&quot;aligncenter size-medium wp-image-135&quot; title=&quot;Screenshot-7&quot; src=&quot;http://bamacharankundu.files.wordpress.com/2010/08/screenshot-7.png?w=300&amp;h=175&quot; alt=&quot;&quot; width=&quot;300&quot; height=&quot;175&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Thaks.:)&lt;/p&gt;
&lt;br /&gt;  &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/bamacharankundu.wordpress.com/128/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/bamacharankundu.wordpress.com/128/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/bamacharankundu.wordpress.com/128/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/bamacharankundu.wordpress.com/128/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gofacebook/bamacharankundu.wordpress.com/128/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/facebook/bamacharankundu.wordpress.com/128/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gotwitter/bamacharankundu.wordpress.com/128/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/twitter/bamacharankundu.wordpress.com/128/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/bamacharankundu.wordpress.com/128/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/bamacharankundu.wordpress.com/128/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/bamacharankundu.wordpress.com/128/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/bamacharankundu.wordpress.com/128/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/bamacharankundu.wordpress.com/128/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/bamacharankundu.wordpress.com/128/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=bamacharankundu.wordpress.com&amp;blog=10164647&amp;post=128&amp;subd=bamacharankundu&amp;ref=&amp;feed=1&quot; width=&quot;1&quot; height=&quot;1&quot; /&gt;</description>
	<pubDate>Mon, 30 Aug 2010 01:50:19 +0000</pubDate>
</item>
<item>
	<title>Ratnadeep Debnath: rtnpro</title>
	<guid>http://ratnadeepdebnath.wordpress.com/?p=207</guid>
	<link>http://ratnadeepdebnath.wordpress.com/2010/08/29/wordgroupz-development-news-5/</link>
	<description>&lt;p&gt;Lately, I worked on fine tuning the code for wordgroupz. I fixed some bugs that I was aware of, like unable to parse data retrieved from wiktionary pages which did not have any &amp;#8216;Contents&amp;#8217; field, error launching games when no words in db, some bugs in webster view, etc. Now, I have added a dialog which will show a message saying &amp;#8216;Not enough data&amp;#8217; if the number of words in the db are not enough for playing games. I have also added support for parsing data from wiktionary pages which have no &amp;#8216;Contents&amp;#8217; field. Also made some fixes in the webster view.&lt;/p&gt;
&lt;p&gt;I today updated the RPM for wordgroupz to wordgroupz-0.3b-4.fc13.noarch.rpm&lt;/p&gt;
&lt;p&gt;You can install the latest version of wordgroupz as follows:&lt;/p&gt;
&lt;p&gt;1) download &lt;a href=&quot;http://rtnpro.fedorapeople.org/rtnpro.repo&quot;&gt;rtnpro.repo&lt;/a&gt; into /etc/yum.repos.d/&lt;/p&gt;
&lt;p&gt;2) then as root, do :&lt;/p&gt;
&lt;p&gt;yum install wordgroupz&lt;/p&gt;
&lt;p&gt;You can also get the source code from &lt;a href=&quot;http://gitorious.org/wordgroupz/&quot;&gt;http://gitorious.org/wordgroupz/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Please test wordgroupz, and feel free to drop in your suggestions.&lt;/p&gt;
&lt;br /&gt;  &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/ratnadeepdebnath.wordpress.com/207/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/ratnadeepdebnath.wordpress.com/207/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/ratnadeepdebnath.wordpress.com/207/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/ratnadeepdebnath.wordpress.com/207/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gofacebook/ratnadeepdebnath.wordpress.com/207/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/facebook/ratnadeepdebnath.wordpress.com/207/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gotwitter/ratnadeepdebnath.wordpress.com/207/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/twitter/ratnadeepdebnath.wordpress.com/207/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/ratnadeepdebnath.wordpress.com/207/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/ratnadeepdebnath.wordpress.com/207/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/ratnadeepdebnath.wordpress.com/207/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/ratnadeepdebnath.wordpress.com/207/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/ratnadeepdebnath.wordpress.com/207/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/ratnadeepdebnath.wordpress.com/207/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=ratnadeepdebnath.wordpress.com&amp;blog=5702928&amp;post=207&amp;subd=ratnadeepdebnath&amp;ref=&amp;feed=1&quot; width=&quot;1&quot; height=&quot;1&quot; /&gt;</description>
	<pubDate>Sun, 29 Aug 2010 10:58:06 +0000</pubDate>
</item>
<item>
	<title>Anurag: Mumbai, Delhi, Pune, Ahmedabad - Autorickshaw Taxi fares</title>
	<guid>http://web.gnuer.org/blog/archives/96-guid.html</guid>
	<link>http://web.gnuer.org/blog/archives/96-Mumbai,-Delhi,-Pune,-Ahmedabad-Autorickshaw-Taxi-fares.html</link>
	<description>&lt;div class=&quot;serendipity_imageComment_right&quot;&gt;&lt;div class=&quot;serendipity_imageComment_img&quot;&gt;&lt;a class=&quot;serendipity_image_link&quot; href=&quot;http://web.gnuer.org/blog/uploads/screenshots/rickfare.png&quot; target=&quot;_blank&quot;&gt;&lt;!-- s9ymdb:14 --&gt;&lt;img width=&quot;73&quot; height=&quot;110&quot; src=&quot;http://web.gnuer.org/blog/uploads/screenshots/rickfare.serendipityThumb.png&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class=&quot;serendipity_imageComment_txt&quot;&gt;Rickshaw fares for Mumbai&lt;/div&gt;&lt;/div&gt;Two months back Mumbai's autorickshaw and taxi drivers went on a strike, demanding a steep increase in fares. While earlier the fare calculation was simple, after the new fare structure came in place, autorickshaw fare calculations became relatively complex. &lt;br /&gt;
&lt;br /&gt;
I started &lt;a href=&quot;http://rickfare.com&quot; title=&quot;rickfare.com&quot;&gt;http://rickfare.com&lt;/a&gt; on the day new fares came into effect after seeing the new complicated fare structure. Over time, friends pitched in for their cities and I added New Delhi, Ahmedabad, Pune and Navi Mumbai. Today &lt;a href=&quot;http://rickfare.com&quot; title=&quot;http://rickfare.com &quot;&gt;Rickfare.com&lt;/a&gt; is accessed by thousands of commuters over a wide variety of mobile devices including iPhone, BlackBerry, Android, HTC and assorted Nokia handsets.&lt;br /&gt;
&lt;br /&gt;
I'd like to thank &lt;a href=&quot;http://www.ashishmehta.com/blog/&quot;&gt;Ashish Mehta&lt;/a&gt;, &lt;a href=&quot;http://atuljha.com/blog/&quot;&gt;Atul Jha&lt;/a&gt;, &lt;a href=&quot;http://kartikm.wordpress.com/2010/07/20/rickfare/&quot;&gt;Kartik Mistry&lt;/a&gt; and &lt;a href=&quot;http://eficacy.com&quot;&gt;Kamaleshwar&lt;/a&gt; for helping out with auto fares of their cities &lt;img src=&quot;http://web.gnuer.org/blog/templates/default/img/emoticons/smile.png&quot; alt=&quot;:-)&quot; class=&quot;emoticon&quot; /&gt;</description>
	<pubDate>Thu, 26 Aug 2010 08:39:32 +0000</pubDate>
	<author>nospam@example.com (Anurag)</author>
</item>
<item>
	<title>Atul Chitnis: Happy 19th Birthday, Linux!</title>
	<guid>http://atulchitnis.net/?p=2968</guid>
	<link>http://atulchitnis.net/2010/happy-19th-birthday-linux/</link>
	<description>&lt;p&gt;&lt;a href=&quot;http://atulchitnis.net/wp-content/uploads/2010/08/Linux-tux-large-e1282711759615.jpg&quot;&gt;&lt;img class=&quot;alignleft size-full wp-image-2972&quot; title=&quot;Linux Tux&quot; src=&quot;http://atulchitnis.net/wp-content/uploads/2010/08/Linux-tux-large-e1282711759615.jpg&quot; alt=&quot;Linux Tux&quot; width=&quot;149&quot; height=&quot;178&quot; /&gt;&lt;/a&gt;Today (August 25th) is the 19th &amp;#8220;birthday&amp;#8221; of Linux, so I thought I&amp;#8217;d wish everyone&amp;#8217;s favourite computing platform a Very Happy Birthday!&lt;/p&gt;
&lt;p&gt;Why August 25th? Well, just &lt;a href=&quot;http://atulchitnis.net/writings/why-august-25th/&quot;&gt;read up about it&lt;/a&gt; &lt;img src=&quot;http://atulchitnis.net/wp-includes/images/smilies/icon_smile.gif&quot; alt=&quot;:)&quot; class=&quot;wp-smiley&quot; /&gt; &lt;/p&gt;</description>
	<pubDate>Wed, 25 Aug 2010 04:51:30 +0000</pubDate>
</item>
<item>
	<title>Kushal Das: Google video chat plugin for Fedora</title>
	<guid>http://kushaldas.in/2010/08/24/google-video-chat-plugin-for-fedora/</guid>
	<link>http://kushaldas.in/2010/08/24/google-video-chat-plugin-for-fedora/</link>
	<description>&lt;p&gt;Wait is over, you can try the rpms from &lt;a href=&quot;http://v3.sk/~lkundrak/googletalk/&quot;&gt;here&lt;/a&gt;. Before installing don&amp;#8217;t forget to remove nspluginwrapper. Working perfectly on Firefox.&lt;/p&gt;</description>
	<pubDate>Tue, 24 Aug 2010 07:01:48 +0000</pubDate>
</item>
<item>
	<title>Ratnadeep Debnath: rtnpro</title>
	<guid>http://ratnadeepdebnath.wordpress.com/?p=203</guid>
	<link>http://ratnadeepdebnath.wordpress.com/2010/08/24/wordgroupz-development-news-4/</link>
	<description>&lt;p&gt;Although, I had added  the accuracy for the words in wordGroupz in the treeview, it was not satisfactory. First, the app crashed whenever I added a new word to the database. I fixed that easily. But then, the new word would show its accuracy as 0% even before attempting to answer it. I decided to set the CellRendererProgress bar text to &amp;#8216;New&amp;#8217; for new/not attempted words.&lt;/p&gt;
&lt;p&gt;I got some help for IRC Nick: Juhaz at #pygtk in GimpNet. I came to know that set different properties of a cell for a particular column in a gtk.TreeView, I have to set a function in gtk.TreeViewColumn.set_cell_data_func(). I got further help from the documentation at Develp in Fedora.&lt;/p&gt;
&lt;p&gt;Finally, after some tries, I got the code up and running. Now new words show &amp;#8216;New&amp;#8217; and after being attempted, they show their respective accuracy.&lt;/p&gt;
&lt;p&gt;I also wrote some code to enable migration from old wordgroupz db schema to new db schema with retention of the old db contents.&lt;/p&gt;
&lt;p&gt;I have pushed the latest code to gitorious.&lt;/p&gt;
&lt;p&gt;If you want to try the code, you can get the source from &lt;a href=&quot;http://gitorious.org/wordgroupz&quot;&gt;http://gitorious.org/wordgroupz&lt;/a&gt; . Then, you can install wordgroupz in your system as:&lt;/p&gt;
&lt;p&gt;#python setup.py install&lt;/p&gt;
&lt;p&gt;Then run wordgroupz : $wordgroupz&lt;/p&gt;
&lt;p&gt;Now, I need to do a code cleanup.&lt;/p&gt;
&lt;br /&gt;  &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/ratnadeepdebnath.wordpress.com/203/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/ratnadeepdebnath.wordpress.com/203/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/ratnadeepdebnath.wordpress.com/203/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/ratnadeepdebnath.wordpress.com/203/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gofacebook/ratnadeepdebnath.wordpress.com/203/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/facebook/ratnadeepdebnath.wordpress.com/203/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gotwitter/ratnadeepdebnath.wordpress.com/203/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/twitter/ratnadeepdebnath.wordpress.com/203/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/ratnadeepdebnath.wordpress.com/203/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/ratnadeepdebnath.wordpress.com/203/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/ratnadeepdebnath.wordpress.com/203/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/ratnadeepdebnath.wordpress.com/203/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/ratnadeepdebnath.wordpress.com/203/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/ratnadeepdebnath.wordpress.com/203/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=ratnadeepdebnath.wordpress.com&amp;blog=5702928&amp;post=203&amp;subd=ratnadeepdebnath&amp;ref=&amp;feed=1&quot; width=&quot;1&quot; height=&quot;1&quot; /&gt;</description>
	<pubDate>Tue, 24 Aug 2010 05:43:04 +0000</pubDate>
</item>
<item>
	<title>Atul Chitnis: How I use my iPad</title>
	<guid>http://atulchitnis.net/?p=2948</guid>
	<link>http://atulchitnis.net/2010/how-i-use-my-ipad/</link>
	<description>&lt;p&gt;&lt;a href=&quot;http://images.apple.com/ca/education/ipad/images/ipad_wifi_20100409.png&quot;&gt;&lt;img class=&quot;alignleft&quot; title=&quot;iPad&quot; src=&quot;http://images.apple.com/ca/education/ipad/images/ipad_wifi_20100409.png&quot; alt=&quot;iPad&quot; width=&quot;171&quot; height=&quot;153&quot; /&gt;&lt;/a&gt;Ever since I got myself an Apple iPad (64GB, Wifi only) in early April, people have been asking me why I bought it, and how I use it. These questions just got more common once people saw me on the NDTV techlife awards, with the iPad glued to my hand. And since &lt;a href=&quot;http://twitter.com/achitnis&quot;&gt;Twitter&lt;/a&gt; is such a &amp;#8220;smoke puff in a hurricane&amp;#8221; medium, people keep asking the same questions over and over again &amp;#8211; enough for me to put together this blog post. Which has been languishing for a while now, until &lt;a href=&quot;http://kishorebhargava.com&quot; target=&quot;_blank&quot;&gt;Kishore Bhargava&lt;/a&gt;, who was also putting together a rather broader post about iPad usage, pinged me and asked me for inputs. I&amp;#8217;ll update this post and link to his when he publishes it.&lt;br /&gt;
&lt;span id=&quot;more-2948&quot;&gt;&lt;/span&gt;&lt;/p&gt;
&lt;h3&gt;&lt;strong&gt;1. Why did you buy an iPad?&lt;/strong&gt;&lt;/h3&gt;
&lt;p&gt;&lt;strong&gt;Short answer&lt;/strong&gt;: My name is Atul Chitnis. That should completely and comprehensively answer your question. &lt;img src=&quot;http://atulchitnis.net/wp-includes/images/smilies/icon_wink.gif&quot; alt=&quot;;)&quot; class=&quot;wp-smiley&quot; /&gt; &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Long answer&lt;/strong&gt;: I have, for several years now, been studying and talking  about the concept of &lt;strong&gt;The Next Billion Users&lt;/strong&gt; &amp;#8211; people without a PC/Mac  background using technology the way we use our wristwatches  (we don&amp;#8217;t  think of our wristwatches as &amp;#8220;portable time computing devices&amp;#8221;, do we?) and who have consciously stayed away from PC/Mac-type of devices, because they are &amp;#8220;computers&amp;#8221;.&lt;/p&gt;
&lt;p&gt;I have been gathering information that I can share with developers who  need to target this new audience &amp;#8211; you wont believe how hard it is for a  developer with a PC background to wrap his brain around the concept of  &amp;#8220;technology for non-technology-users&amp;#8221;.&lt;/p&gt;
&lt;p&gt;The iPhone, the iPod Touch and now the iPad (and soon to come iTV) all  address this audience, not the lemming-like PC (or even Mac) crowd.&lt;/p&gt;
&lt;p&gt;So I got myself an iPad in early April 2010 for one primary reason: I  assumed that the iPad would represent a tipping point, and I needed to  be able to understand it and its use by The Next Billion Users.&lt;/p&gt;
&lt;p&gt;Oh, and it seemed like a fun device.&lt;/p&gt;
&lt;p&gt;Both points proved to be right.&lt;/p&gt;
&lt;h3&gt;&lt;strong&gt;2. What do you primarily use the iPad for?&lt;/strong&gt;&lt;/h3&gt;
&lt;p&gt;&lt;strong&gt;Short answer&lt;/strong&gt;: to feed Steve Jobs.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Long answer&lt;/strong&gt;: I don&amp;#8217;t use it as a notebook replacement. I don&amp;#8217;t even use  it as a computer. In fact, the second someone suggests that I &amp;#8220;try this  great ssh app for the iPad&amp;#8221;, my hackles stand up. I do have a few  &amp;#8220;computing tools&amp;#8221; on the iPad, but I deliberately bury them on one of  the screens.&lt;/p&gt;
&lt;p&gt;I don&amp;#8217;t do wordprocessing, I don&amp;#8217;t do spreadsheets, I don&amp;#8217;t create  presentations. I barely create email, though I do use it for reading mail.&lt;/p&gt;
&lt;p&gt;And I don&amp;#8217;t take my iPad to client meetings (it distracts too much and  wastes time &amp;#8211; for that kind of work, I prefer a notebook, or a USB stick  with my stuff on it).&lt;/p&gt;
&lt;p&gt;I know that many people actually acquire the iPad  for &amp;#8220;zap value&amp;#8221;, but the iPad isn&amp;#8217;t a one-to-many device, it is a personal  device, and though it does have a VGA out adaptor, that is defeating the  purpose of the device.&lt;/p&gt;
&lt;p&gt;I use the iPad the way I expect The Next Billion Users will use it &amp;#8211; as  a personal content consumption device, without consciously doing so.&lt;/p&gt;
&lt;p&gt;Since I got the iPad, I have watched children, grand-dads, housewives  and other people (who wouldn&amp;#8217;t use a PC/Mac even if someone held a gun  to their heads) take to the iPad like fish to water.&lt;/p&gt;
&lt;p&gt;Clearly, Apple is onto something that the others are missing, and I want  in on that. &lt;img src=&quot;http://atulchitnis.net/wp-includes/images/smilies/icon_smile.gif&quot; alt=&quot;:)&quot; class=&quot;wp-smiley&quot; /&gt; &lt;/p&gt;
&lt;h3&gt;&lt;strong&gt;3. What are some of the apps you use often?&lt;/strong&gt;&lt;/h3&gt;
&lt;p&gt;&lt;strong&gt;Short answer&lt;/strong&gt;: Steve Jobs ain&amp;#8217;t gonna starve.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Long answer&lt;/strong&gt;: I have 200+ apps on my iPad, and at least 600 more on my  mac, downloaded over time.&lt;/p&gt;
&lt;p&gt;I have been an iOS user since 2008 (ever since the concept of  iOS apps and the AppStore kicked off), and I have been downloading (and often paying for)  apps for ages. Since all these apps also work on the iPad, I naturally  had a good selection to start off with when I got my iPad.&lt;/p&gt;
&lt;p&gt;Some of the more common ones I use:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Safari, Email. iPod, Maps, Photos, Youtube and Videos&lt;/strong&gt;: Built-in apps I  can&amp;#8217;t do without. In particular I use Videos to watch video podcasts (will make a separate post about that) and movies, especially when I am on the move.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;iBooks&lt;/strong&gt;: I have been reading eBooks since the mid 90&amp;#8242;s, and hence have a  HUGE collection of ebooks. Using &lt;a href=&quot;http://calibre-ebook.com/&quot; target=&quot;_blank&quot;&gt;Calibre&lt;/a&gt;, it was a cinch to convert them  to ePub format and install them in iBooks. I think that iBooks could be done a whole lot better, but it (along with the &lt;strong&gt;Kindle&lt;/strong&gt; app) is a usable way to read books.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Last.fm&lt;/strong&gt;: &lt;a href=&quot;http://last.fm&quot; target=&quot;_blank&quot;&gt;LAST.FM&lt;/a&gt; client (only available in US, UK &amp;#038; DE appstores)&lt;strong&gt; &lt;/strong&gt;&lt;strong&gt; &lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Kindle&lt;/strong&gt;: I own a couple of physical &lt;a href=&quot;http://amazon.com/kindle&quot; target=&quot;_blank&quot;&gt;Amazon Kindles&lt;/a&gt;, and honestly &amp;#8211; I prefer those for reading books. But in a crunch, the Kindle app lets me read them as well.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Facebook&lt;/strong&gt;: I don&amp;#8217;t actually use the Facebook app for iOS on the iPad, because it  isn&amp;#8217;t native iPad, and in any case, the iPad is big enough to simply use  the Facebook site in the browser. Not that I use Facebook that much.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;MindNode&lt;/strong&gt;: A very nice &lt;a href=&quot;http://en.wikipedia.org/wiki/Mind_map&quot; target=&quot;_blank&quot;&gt;mindmap&lt;/a&gt; tool that I also use on my Mac, but it makes much more sense on the iPad. I use mindmaps a lot while brainstorming, so this tools gets &lt;em&gt;heavily&lt;/em&gt; used.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Goodreader&lt;/strong&gt;: The Swiss Army Knife of PDF reading and file management.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Pulse&lt;/strong&gt;: RSS reader par excellence.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Mundu IM&lt;/strong&gt;, &lt;strong&gt;Mundu Radio&lt;/strong&gt;, &lt;strong&gt;Spokn&lt;/strong&gt; and &lt;strong&gt;Mundu SMS&lt;/strong&gt;: Instant Messaging, Internet Radio, Voice over IP and SMS apps from &lt;a href=&quot;http://geodesic.com&quot; target=&quot;_blank&quot;&gt;Geodesic&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Air Video&lt;/strong&gt;: Let&amp;#8217;s me watch videos stored on a computer on the network, with on-the-fly conversion. I&amp;#8217;d rate this one as one of the top apps I use. Also great for converting AVI/MKV/etc to iPad/iPhone/iPod compatible m4v format.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;SimpleNote&lt;/strong&gt;: A simple note taking app that syncs to the web, and has clients for almost any device and OS. Once I make a note with it, it is available on any of my devices.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Toodledoo&lt;/strong&gt;: Great ToDo app, with lots of bells and whistles. Replaced Things on my iPad after the Things author tried to gouge his iPhone customers.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Echofon&lt;/strong&gt;: I have tried other twitter clients, but until Twitter/Tweetie  for iPad comes out (its a iPhone-only app now), this is my top client  that I also use on my iPhone.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;We Rule&lt;/strong&gt;: Think Farmville for the iPad &amp;#8211; but no Facebook required &lt;img src=&quot;http://atulchitnis.net/wp-includes/images/smilies/icon_smile.gif&quot; alt=&quot;:)&quot; class=&quot;wp-smiley&quot; /&gt; &lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Angry Birds&lt;/strong&gt;: Terribly addictive game!&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Scrabble&lt;/strong&gt;: Fantastic version of this game, and even lets you use your iPhones &amp;#038; iPods as &amp;#8220;tile racks&amp;#8221;.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Mahjongg 2 HD&lt;/strong&gt;: What can I say &amp;#8211; I am a &lt;a href=&quot;http://en.wikipedia.org/wiki/Mahjong_Solitaire&quot; target=&quot;_blank&quot;&gt;Mahjongg&lt;/a&gt; addict. It calms me and provides me endless hours of gameplay.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Myst&lt;/strong&gt;: If I have to tell you what &lt;a href=&quot;http://en.wikipedia.org/wiki/Myst&quot; target=&quot;_blank&quot;&gt;Myst&lt;/a&gt; is, then you probably are not much of a game-player &lt;img src=&quot;http://atulchitnis.net/wp-includes/images/smilies/icon_smile.gif&quot; alt=&quot;:)&quot; class=&quot;wp-smiley&quot; /&gt;  Technically a PC game, but makes far more sense on a toouch device like the iPad.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Bejeweled 2&lt;/strong&gt;: &lt;a href=&quot;http://en.wikipedia.org/wiki/Bejewelled&quot; target=&quot;_blank&quot;&gt;Bejewelled&lt;/a&gt; has been on my mobile devices since the 90&amp;#8242;s. Hopelessly addictive.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Cool Hunting&lt;/strong&gt;: Find and read about cool stuff in art, tech and other things.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Nimbuzz&lt;/strong&gt;: An all-in-one IM app that also does VoIP. I use it rarely (I use &lt;strong&gt;Mundu IM&lt;/strong&gt; and &lt;strong&gt;Spokn&lt;/strong&gt; far more) but keep it around to troubleshoot connections or the rare time that I use Yahoo Messenger.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Billings&lt;/strong&gt;: I am a professional consultant. Tool of my trade.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Idea Sketch&lt;/strong&gt; Another mindmap-kind of app. Rarely used, but useful as an outliner.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;MagCloud&lt;/strong&gt;: A great app for discovering magazines on the net.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;ITC Mobile&lt;/strong&gt;: Apple&amp;#8217;s app to track AppStore sales.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Amazon.com&lt;/strong&gt;: I have to tell you what &lt;a href=&quot;http://Amazon.com&quot; target=&quot;_blank&quot;&gt;Amazon.com&lt;/a&gt; is????&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;houzz&lt;/strong&gt;: Heavily used (along with similar apps) during the design and construction phases of my house.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;WebMD&lt;/strong&gt;: OK, so we all have our little hurts and aches. This one lets me at least figure out the possible issues.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Firefox Home&lt;/strong&gt;: Syncs my Firefox bookmarks and other info (including open tabs) with my other devices&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Clockradio&lt;/strong&gt;: Nice app to show me a clock and play internet radio when I am not using the iPad.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Dropbox&lt;/strong&gt;: Really &amp;#8211; I need to tell you what &lt;a href=&quot;http://dropbox.com&quot; target=&quot;_blank&quot;&gt;Dropbox&lt;/a&gt; is?&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Setlist&lt;/strong&gt;: App to show me songs in a setlist while I am practicing guitar, also lyrics and other useful info.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;L&amp;#038;M Guitar&lt;/strong&gt; Gibson&amp;#8217;s guitar tuner, metronome &amp;#038; Chord diagrams&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Remote&lt;/strong&gt;: Remote control for iTunes&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;PressReader&lt;/strong&gt;: My daily fix of newspapers from across the world.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Skype&lt;/strong&gt;: Skype is&amp;#8230; well.. &lt;a href=&quot;http://skype.com&quot;&gt;Skype&lt;/a&gt;. &amp;#8217;nuff said.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Kayak&lt;/strong&gt;: Flight timings, routes, tracking, etc.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;iBanner HD&lt;/strong&gt;: Great app for running LED banners. Good for telling people on stage that they should hurry up and finish, so we can go have food.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;VNC&lt;/strong&gt;: The only PC centric app &amp;#8211; used to access my Macs and other VNC-capable devices.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Google Earth&lt;/strong&gt;: Fantastic version of Google Earth for the iPad.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;iDraft&lt;/strong&gt;: Great sketching app. Especially nice for simulated press-sensitivity and variable thickness on the fly.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Epicurious&lt;/strong&gt;: A gorgeous cookery book.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Aquarium&lt;/strong&gt;: Does nothing but show fish in an aquarium, but the sound makes people rush to the bathroom &lt;img src=&quot;http://atulchitnis.net/wp-includes/images/smilies/icon_smile.gif&quot; alt=&quot;:)&quot; class=&quot;wp-smiley&quot; /&gt; &lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Many of these apps also exist on the iPhone and I use them there as well.&lt;/p&gt;
&lt;p&gt;Note that I also bought and have installed &lt;strong&gt;Pages&lt;/strong&gt;, &lt;strong&gt;Numbers&lt;/strong&gt; and &lt;strong&gt;Keynote&lt;/strong&gt; for the iPad, but I don&amp;#8217;t use them for anything but demonstrating them to people who want to know about them &lt;img src=&quot;http://atulchitnis.net/wp-includes/images/smilies/icon_smile.gif&quot; alt=&quot;:)&quot; class=&quot;wp-smiley&quot; /&gt; &lt;/p&gt;
&lt;p&gt;This is far from a comprehensive list, and keeps changing as I discover new apps. Unfortunately, no one has written an &lt;strong&gt;AppList&lt;/strong&gt; kind of application that looks at all installed apps, looks them up on the appstore and creates an exportable document that lists the apps, descriptions and frequency of use. (Hint, that&amp;#8217;s an app idea you could exploit!)&lt;/p&gt;</description>
	<pubDate>Tue, 24 Aug 2010 01:30:02 +0000</pubDate>
</item>
<item>
	<title>Kenneth Gonsalves: oss vs foss</title>
	<guid>http://lawgon.livejournal.com/80339.html</guid>
	<link>http://lawgon.livejournal.com/80339.html</link>
	<description>பொதுவான அம்சங்கள்:&lt;br /&gt;&lt;br /&gt;௧. மூலம் இலவசமாக கிடைக்கும்&lt;br /&gt;௨. எப்படி வேண்டுமென்றால் பயன்படுத்தலாம்&lt;br /&gt;௩. விநியோகம் செய்யலாம்&lt;br /&gt;௪. மாற்றங்களை விநியோகம் செய்யலாம்&lt;br /&gt;௫. மூலத்தை மாற்றலாம்.&lt;br /&gt;&lt;br /&gt;வேறுபாடுகள்:&lt;br /&gt;&lt;br /&gt;oss: மூலத்தை மாற்றி அதனை மூடலாம். ஆனால் பெயரை மாற்ற வேண்டும்.&lt;br /&gt;foss: எக்காரணம் கொண்டும் மூரத்தை மூட கூடாது.&lt;br /&gt;&lt;br /&gt;குறிப்பு: 'Free' என்றால் சுதந்தரம், இலவசமல்லா</description>
	<pubDate>Sun, 22 Aug 2010 04:44:09 +0000</pubDate>
</item>
<item>
	<title>Atul Chitnis: Raghu Dixit Project in London</title>
	<guid>http://atulchitnis.net/?p=2939</guid>
	<link>http://atulchitnis.net/2010/raghu-dixit-project-in-london/</link>
	<description>&lt;p&gt;Last year, at &lt;a href=&quot;http://foss.in&quot;&gt;FOSS.IN&lt;/a&gt;, the Raghu Dixit Project performed during the event closing ceremony. People went nuts with delight.&lt;/p&gt;
&lt;p&gt;Sadly, no video of the show exists, but Raghu recently performed in London, as part of a wildly successful UK tour, and the BBC filmed it and put it up! And here it is, straight from the &lt;a href=&quot;http://www.bbc.co.uk/asiannetwork/events/melas/2010/londonmela/videos/raghu-dixit.shtml&quot; target=&quot;_blank&quot;&gt;BBC site&lt;/a&gt;:&lt;/p&gt;
&lt;p&gt;

*Video:raghu dixit oroject live in london

&lt;/p&gt;</description>
	<pubDate>Sat, 21 Aug 2010 16:14:44 +0000</pubDate>
</item>
<item>
	<title>Ratnadeep Debnath: wordgroupz-overview</title>
	<guid>http://ratnadeepdebnath.wordpress.com/?p=198</guid>
	<link>http://ratnadeepdebnath.wordpress.com/2010/08/21/wordgroupz-development-news-3/</link>
	<description>&lt;p&gt;wordGroupz is now slowly moving to the version 0.3 release. I launched the v0.3 b quite some time back. Since then, I have worked on many new features, adding features, deprecating old features and many random changes. In this time, wordgroupz underwent a considerable upgrade in its GUI. Based on the outcome of the games, I decided to store the accuracy of the user for each word and show a bar chart for that. But that did not look good. So, I dropped it. I, instead, showed the accuracy % alongside the words in the wordgroupz tree view with the help of gtk.CellRendererProgressBar.&lt;/p&gt;
&lt;p&gt;I did away the wiktionary browser, edit button under notes, back button over the search bar, etc.&lt;/p&gt;
&lt;p&gt;Now, I am testing the code, and fine tuning the interface. Gotta work &lt;img src=&quot;http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif&quot; alt=&quot;:)&quot; class=&quot;wp-smiley&quot; /&gt; &lt;/p&gt;
&lt;p&gt;More wordgroupz screenshots are available at :&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://rtnpro.fedorapeople.org/wordgroupz_imgs/&quot;&gt;http://rtnpro.fedorapeople.org/wordgroupz_imgs/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Here are the latest screenshots of wordgroupz:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://ratnadeepdebnath.files.wordpress.com/2010/08/screenshot-wordgroupz_new.png&quot;&gt;&lt;img class=&quot;alignright size-medium wp-image-199&quot; title=&quot;Screenshot-wordGroupz&quot; src=&quot;http://ratnadeepdebnath.files.wordpress.com/2010/08/screenshot-wordgroupz_new.png?w=300&amp;h=235&quot; alt=&quot;&quot; width=&quot;300&quot; height=&quot;235&quot; /&gt;&lt;/a&gt;&lt;a href=&quot;http://ratnadeepdebnath.files.wordpress.com/2010/08/screenshot-15.png&quot;&gt;&lt;img class=&quot;alignleft size-medium wp-image-200&quot; title=&quot;wordgroupz-overview&quot; src=&quot;http://ratnadeepdebnath.files.wordpress.com/2010/08/screenshot-15.png?w=300&amp;h=181&quot; alt=&quot;&quot; width=&quot;300&quot; height=&quot;181&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;br /&gt;  &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/ratnadeepdebnath.wordpress.com/198/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/ratnadeepdebnath.wordpress.com/198/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/ratnadeepdebnath.wordpress.com/198/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/ratnadeepdebnath.wordpress.com/198/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gofacebook/ratnadeepdebnath.wordpress.com/198/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/facebook/ratnadeepdebnath.wordpress.com/198/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gotwitter/ratnadeepdebnath.wordpress.com/198/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/twitter/ratnadeepdebnath.wordpress.com/198/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/ratnadeepdebnath.wordpress.com/198/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/ratnadeepdebnath.wordpress.com/198/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/ratnadeepdebnath.wordpress.com/198/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/ratnadeepdebnath.wordpress.com/198/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/ratnadeepdebnath.wordpress.com/198/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/ratnadeepdebnath.wordpress.com/198/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=ratnadeepdebnath.wordpress.com&amp;blog=5702928&amp;post=198&amp;subd=ratnadeepdebnath&amp;ref=&amp;feed=1&quot; width=&quot;1&quot; height=&quot;1&quot; /&gt;</description>
	<pubDate>Sat, 21 Aug 2010 04:17:58 +0000</pubDate>
</item>
<item>
	<title>Arun Sag: sagarun</title>
	<guid>http://arunsag.wordpress.com/?p=177</guid>
	<link>http://arunsag.wordpress.com/2010/08/16/new-package-rinari-a-ruby-on-rails-minor-mode-for-emacs/</link>
	<description>&lt;p&gt;Pushed &lt;a href=&quot;http://rinari.rubyforge.org/&quot; target=&quot;_blank&quot;&gt;emacs-rinari&lt;/a&gt; into Fedora repositories, Review request is at &lt;a href=&quot;https://bugzilla.redhat.com/show_bug.cgi?id=622002&quot; target=&quot;_blank&quot;&gt;https://bugzilla.redhat.com/show_bug.cgi?id=622002&lt;/a&gt; . This is the first time i am using &lt;a href=&quot;http://fedoraproject.org/wiki/Dist_Git_Project#fedpkg&quot; target=&quot;_blank&quot;&gt;fedpkg&lt;/a&gt;. It is nice. Thank you &lt;a href=&quot;http://shakthimaan.com/&quot; target=&quot;_blank&quot;&gt;shakthi&lt;/a&gt; for the review.&lt;/p&gt;
&lt;br /&gt;  &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/arunsag.wordpress.com/177/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/arunsag.wordpress.com/177/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/arunsag.wordpress.com/177/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/arunsag.wordpress.com/177/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gofacebook/arunsag.wordpress.com/177/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/facebook/arunsag.wordpress.com/177/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gotwitter/arunsag.wordpress.com/177/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/twitter/arunsag.wordpress.com/177/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/arunsag.wordpress.com/177/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/arunsag.wordpress.com/177/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/arunsag.wordpress.com/177/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/arunsag.wordpress.com/177/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/arunsag.wordpress.com/177/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/arunsag.wordpress.com/177/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=arunsag.wordpress.com&amp;blog=10858038&amp;post=177&amp;subd=arunsag&amp;ref=&amp;feed=1&quot; /&gt;</description>
	<pubDate>Mon, 16 Aug 2010 17:17:09 +0000</pubDate>
</item>
<item>
	<title>Arun Sag: Screenshot-Mouse Preferences</title>
	<guid>http://arunsag.wordpress.com/?p=170</guid>
	<link>http://arunsag.wordpress.com/2010/08/16/dell-vostro-3500-and-fedora-13/</link>
	<description>&lt;p&gt;&lt;strong&gt;Hardware&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Intel(R) Core(TM) i3 350M(2.26GHz, Dual Core, 4T, 3MB L3)&lt;/li&gt;
&lt;li&gt;3GB (1X2G+1X1G) DDR3-1066MHz SDRAM, 2 DIMM&lt;/li&gt;
&lt;li&gt;320GB Hard Drive, 7200 RPM&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;Realtek Semiconductor Co., Ltd. RTL8111/8168B PCI Express Gigabit Ethernet controller&lt;/li&gt;
&lt;li&gt;Broadcom Corporation BCM4312 802.11b/g wireless&lt;/li&gt;
&lt;li&gt;8X DVD+/-RW Drive for N-Series&lt;/li&gt;
&lt;li&gt;Dell Wireless 365 Bluetooth Module&lt;/li&gt;
&lt;li&gt;6-cell Lithium Ion Primary Battery&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Fedora 13 on dell vostro 3500&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Installation&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Fresh installation using Fedora 13 live usb works.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Details of lsmod,lspci,lsusb and cpuinfo&lt;br /&gt;
&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://sagarun.fedorapeople.org/misc/lsmod.txt&quot; target=&quot;_blank&quot;&gt;lsmod&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://sagarun.fedorapeople.org/misc/lspci.txt&quot; target=&quot;_blank&quot;&gt;lspci&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://sagarun.fedorapeople.org/misc/lsusb.txt&quot; target=&quot;_blank&quot;&gt;lsusb&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://sagarun.fedorapeople.org/misc/cpuinfo.txt&quot; target=&quot;_blank&quot;&gt;cpuinfo&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Desktop Environment&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;I have tried &lt;a href=&quot;http://www.gnome.org/&quot; target=&quot;_blank&quot;&gt;Gnome&lt;/a&gt;, &lt;a href=&quot;http://live.gnome.org/GnomeShell&quot; target=&quot;_blank&quot;&gt;Gnome shell&lt;/a&gt;, &lt;a href=&quot;http://www.compiz.org/&quot; target=&quot;_blank&quot;&gt;Compiz fusion&lt;/a&gt; and &lt;a href=&quot;http://www.sugarlabs.org/&quot; target=&quot;_blank&quot;&gt;sugar&lt;/a&gt; on my laptop everything works well.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Sound&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Sound works by default.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;VLC&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.videolan.org/&quot; target=&quot;_blank&quot;&gt;Vlc&lt;/a&gt; 1.0.6 crashed initially , ran vlc using &amp;#8216;MALLOC_CHECK=1 vlc&amp;#8217; to rectify the problem.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Wired network&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Fedora uses r8169 module and it works&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Wireless&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Wireless &lt;strong&gt;won&amp;#8217;t&lt;/strong&gt; work by default, need to install kmod-wl package from &lt;a href=&quot;http://rpmfusion.org/Configuration&quot; target=&quot;_blank&quot;&gt;rpmfusion&lt;/a&gt; non free repository.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Touchpad&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Works fine. Tapping is not enabled by default, enable it by visiting System-&amp;gt;Preferences-&amp;gt;Mouse-&amp;gt;Touchpad&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://arunsag.files.wordpress.com/2010/08/screenshot-mouse-preferences.png&quot;&gt;&lt;img class=&quot;size-medium wp-image-171 aligncenter&quot; title=&quot;Screenshot-Mouse Preferences&quot; src=&quot;http://arunsag.files.wordpress.com/2010/08/screenshot-mouse-preferences.png?w=239&amp;h=300&quot; alt=&quot;&quot; width=&quot;239&quot; height=&quot;300&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Webcam&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Webcam works. Clicked some pictures with &lt;a href=&quot;http://projects.gnome.org/cheese/&quot; target=&quot;_blank&quot;&gt;cheese&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Bluetooth&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Works. Transferred some files to my mobile.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Multimedia keys&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Multimedia keys response is poor. (Play, pause,next,previous,stop,volume buttons ) I don&amp;#8217;t know whether its the fault of my machine, because i can increase the volume with ease but cannot reduce it.&lt;/p&gt;
&lt;br /&gt;  &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/arunsag.wordpress.com/170/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/arunsag.wordpress.com/170/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/arunsag.wordpress.com/170/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/arunsag.wordpress.com/170/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gofacebook/arunsag.wordpress.com/170/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/facebook/arunsag.wordpress.com/170/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gotwitter/arunsag.wordpress.com/170/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/twitter/arunsag.wordpress.com/170/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/arunsag.wordpress.com/170/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/arunsag.wordpress.com/170/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/arunsag.wordpress.com/170/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/arunsag.wordpress.com/170/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/arunsag.wordpress.com/170/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/arunsag.wordpress.com/170/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=arunsag.wordpress.com&amp;blog=10858038&amp;post=170&amp;subd=arunsag&amp;ref=&amp;feed=1&quot; /&gt;</description>
	<pubDate>Mon, 16 Aug 2010 16:35:45 +0000</pubDate>
</item>
<item>
	<title>Stéphane Péchard: spechard</title>
	<guid>http://spechard.wordpress.com/?p=141</guid>
	<link>http://spechard.wordpress.com/2010/08/12/osmuserstats-0-3-2-is-out/</link>
	<description>&lt;p&gt;As I said in my previous post, I was working on this small Python script which allows you to plot some of your activities statistics as a OpenStreetMap user. The least I can say is that the code was very bad written, therefore very difficult to maintain. That&amp;#8217;s the reason &amp;#8211; the only reason &amp;#8211; of this release, as no new feature are available.&lt;br /&gt;
Now adding some new ones would be easier, thanks to this work of rewriting and refactoring of the code. As a helper to get a cleaner code, I used &lt;a title=&quot;page of Pylint&quot; href=&quot;http://pypi.python.org/pypi/pylint&quot; target=&quot;_self&quot;&gt;Pylint&lt;/a&gt;. That&amp;#8217;s a very nice (and nitpicking) tool that tells you are crappy your code is. In fact, it is quite difficult to get the maximum score (10), especially with HTML code, as OsmUserStats deals with. I used no pylintrc for this evaluation, I probably will use one in the future, in which I&amp;#8217;ll disable the convention messages caused by HTML code. This 0.3.2 version gets a fairly good 9.81/10, with 5 warnings messages, 3 convention messages and 1 refactor messages. Warnings are caused by unused variables that have to be created by matplotlib, the plotting library. The refactor message is caused by a function that has 13 branches, one more than the maximum allowed by Pylint (nitpicking as I said).&lt;br /&gt;
As usual, the code is available at my gitorious account: &lt;a href=&quot;http://gitorious.org/osmuserstats/osmuserstats&quot;&gt;http://gitorious.org/osmuserstats/osmuserstats&lt;/a&gt;&lt;br /&gt;
And the webpage of the project is: &lt;a href=&quot;http://spechard.dgplug.org/OsmUserStats/&quot;&gt;http://spechard.dgplug.org/OsmUserStats/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Enjoy!&lt;/p&gt;
&lt;br /&gt;  &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/spechard.wordpress.com/141/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/spechard.wordpress.com/141/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/spechard.wordpress.com/141/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/spechard.wordpress.com/141/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gofacebook/spechard.wordpress.com/141/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/facebook/spechard.wordpress.com/141/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gotwitter/spechard.wordpress.com/141/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/twitter/spechard.wordpress.com/141/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/spechard.wordpress.com/141/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/spechard.wordpress.com/141/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/spechard.wordpress.com/141/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/spechard.wordpress.com/141/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/spechard.wordpress.com/141/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/spechard.wordpress.com/141/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=spechard.wordpress.com&amp;blog=7732127&amp;post=141&amp;subd=spechard&amp;ref=&amp;feed=1&quot; /&gt;</description>
	<pubDate>Thu, 12 Aug 2010 21:14:47 +0000</pubDate>
</item>
<item>
	<title>Bamacharan Kundu: bamachrn</title>
	<guid>http://bamacharankundu.wordpress.com/?p=120</guid>
	<link>http://bamacharankundu.wordpress.com/2010/08/12/openzilla-v-0-1b-released/</link>
	<description>&lt;p&gt;Today I have released the first version for &lt;a href=&quot;http://gitorious.org/openzilla/openzilla&quot;&gt;openZilla&lt;/a&gt; with the features&lt;/p&gt;
&lt;p&gt;1.At first one has to enter the User name, password the base URL means the web address of the bugzilla site (like &lt;a href=&quot;https://bugzilla.redhat.com/&quot;&gt;https://bugzilla.redhat.com/&lt;/a&gt;). After that he has to enter the topic on which he is Interested to work on.&lt;/p&gt;
&lt;p&gt;2. Then once the user is authenticated to the bugzilla server account the bugs will be downloaded and shown one can search the bugs depending on the field.&lt;/p&gt;
&lt;p&gt;3.One can create new bugs from the New button or the new bug menu (Bugs-&amp;gt;New)&lt;/p&gt;
&lt;p&gt;To install the openZilla&lt;/p&gt;
&lt;p&gt;1.Download  &lt;a href=&quot;http://rtnpro.fedorapeople.org/bama/bamachrn.repo&quot;&gt;http://rtnpro.fedorapeople.org/bama/bamachrn.repo&lt;/a&gt; to /etc/yum.repos.d/&lt;/p&gt;
&lt;p&gt;2.As root do : yum install openzilla&lt;/p&gt;
&lt;p&gt;*To install openzilla on any other linux OS:&lt;/p&gt;
&lt;div&gt;1) download &lt;a href=&quot;http://rtnpro.fedorapeople.org/wordgroupz/wordgroupz-0.3b.tar.gz&quot;&gt;http://rtnpro.fedorapeople.org/bama/openzilla/openzilla-0.1b.tar.gz&lt;/a&gt;&lt;/div&gt;
&lt;div&gt;2) Untar it: $tar xvf openzilla-0.1b.tar.gz&lt;/div&gt;
&lt;div&gt;3) Change directory to openzilla-0.1b: $cd openzilla-0.1b&lt;/div&gt;
&lt;div&gt;4) As root, install from setup.py:&lt;/div&gt;
&lt;div&gt;$su&lt;/div&gt;
&lt;div&gt;#python setup.py install&lt;/div&gt;
&lt;p&gt;Feel free to report any bugs, new feature request or suggestions.&lt;/p&gt;
&lt;p&gt;Thanks.&lt;/p&gt;
&lt;br /&gt;  &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/bamacharankundu.wordpress.com/120/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/bamacharankundu.wordpress.com/120/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/bamacharankundu.wordpress.com/120/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/bamacharankundu.wordpress.com/120/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gofacebook/bamacharankundu.wordpress.com/120/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/facebook/bamacharankundu.wordpress.com/120/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gotwitter/bamacharankundu.wordpress.com/120/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/twitter/bamacharankundu.wordpress.com/120/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/bamacharankundu.wordpress.com/120/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/bamacharankundu.wordpress.com/120/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/bamacharankundu.wordpress.com/120/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/bamacharankundu.wordpress.com/120/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/bamacharankundu.wordpress.com/120/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/bamacharankundu.wordpress.com/120/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=bamacharankundu.wordpress.com&amp;blog=10164647&amp;post=120&amp;subd=bamacharankundu&amp;ref=&amp;feed=1&quot; width=&quot;1&quot; height=&quot;1&quot; /&gt;</description>
	<pubDate>Thu, 12 Aug 2010 07:24:28 +0000</pubDate>
</item>
<item>
	<title>Ratnadeep Debnath: rtnpro</title>
	<guid>http://ratnadeepdebnath.wordpress.com/2010/08/11/193/</guid>
	<link>http://ratnadeepdebnath.wordpress.com/2010/08/11/wordgroupz-development-news-2/</link>
	<description>&lt;p&gt;Finally got time to write this post.&lt;/p&gt;
&lt;div&gt;I&amp;#8217;ve been a lot busy lately. Had to do some changes in wordgroupz.&lt;/div&gt;
&lt;div&gt;I was working on the output display format for wordgroupz, i.e, how to show the definitions stored in the wordgroupz database. I created a policy that whenever a word is added, wordgroupz will fetch its definition from the default &amp;#8220;Wordnet&amp;#8221; dictionary. Then one has the option to search for more of the word&amp;#8217;s details on wiktionary from within wordgroupz. Once the wiktionary page is viewed online, the wiktionary data is saved in the database.&lt;/div&gt;
&lt;div&gt;I have implemented a tabbed design for viewing the details of the word: one for wordnet and the other for wiktionary, till now. I have to expand it for webster as well. A few extra lines of code will do that. The rest remains the same.&lt;/div&gt;
&lt;div&gt;Below are the screenshots of the new tabbed view:&lt;/div&gt;
&lt;div&gt;&lt;img src=&quot;http://rtnpro.fedorapeople.org/images/wordnet_view.png&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;Wordnet output&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;img src=&quot;http://rtnpro.fedorapeople.org/images/wik_view.png&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;Wiktionary Output View&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;Then, I started working on the games frontend. I took inspiration from kwordquiz. I put the flash card and the multiple-choice-question in a tabbed view. I am also recording the number of correct responses given along with the attempts made on a particular word in both the games : flash-card and MCQ. This will help the user to identify the words that are difficult to remember for him. Thus, he can pay more attention on those words. Below are the screenshots for the games module.&lt;/div&gt;
&lt;div&gt;&lt;img src=&quot;http://rtnpro.fedorapeople.org/images/flash_card.png&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;
&lt;div&gt;Flash-Card&lt;/div&gt;
&lt;div&gt;&lt;img src=&quot;http://rtnpro.fedorapeople.org/images/mcq.png&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;
&lt;div&gt;MCQ&lt;/div&gt;
&lt;div&gt;Have to improve the GUI for games. The functional code is almost done. Now, remains beautification.&lt;/div&gt;
&lt;div&gt;I request readers of this blog to give their kind suggestions to make the UI better.&lt;/div&gt;
&lt;div&gt;To test the games module, you can do :&lt;/div&gt;
&lt;div&gt;$git clone git://gitorious.org/wordgroupz/wordgroupz.git&lt;/div&gt;
&lt;div&gt;$cd wordgroupz&lt;/div&gt;
&lt;div&gt;$python wordgroupz.py&lt;/div&gt;
&lt;div&gt;Note: Now you can add some words to wordgroupz&lt;/div&gt;
&lt;div&gt;Note: run the games module&lt;/div&gt;
&lt;div&gt;$python games.py&lt;/div&gt;
&lt;div&gt;&lt;span&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;
&lt;p&gt;The post is brought to you by &lt;a href=&quot;http://fedorahosted.org/lekhonee&quot;&gt;lekhonee-gnome&lt;/a&gt; v0.9&lt;/p&gt;
&lt;br /&gt;  &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/ratnadeepdebnath.wordpress.com/193/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/ratnadeepdebnath.wordpress.com/193/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/ratnadeepdebnath.wordpress.com/193/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/ratnadeepdebnath.wordpress.com/193/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gofacebook/ratnadeepdebnath.wordpress.com/193/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/facebook/ratnadeepdebnath.wordpress.com/193/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gotwitter/ratnadeepdebnath.wordpress.com/193/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/twitter/ratnadeepdebnath.wordpress.com/193/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/ratnadeepdebnath.wordpress.com/193/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/ratnadeepdebnath.wordpress.com/193/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/ratnadeepdebnath.wordpress.com/193/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/ratnadeepdebnath.wordpress.com/193/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/ratnadeepdebnath.wordpress.com/193/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/ratnadeepdebnath.wordpress.com/193/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=ratnadeepdebnath.wordpress.com&amp;blog=5702928&amp;post=193&amp;subd=ratnadeepdebnath&amp;ref=&amp;feed=1&quot; width=&quot;1&quot; height=&quot;1&quot; /&gt;</description>
	<pubDate>Wed, 11 Aug 2010 17:52:37 +0000</pubDate>
</item>
<item>
	<title>Atul Chitnis: Goodbye, TRRK! :’(</title>
	<guid>http://atulchitnis.net/?p=2920</guid>
	<link>http://atulchitnis.net/2010/goodbye-trrk/</link>
	<description>&lt;div class=&quot;wp-caption aligncenter&quot;&gt;&lt;a href=&quot;http://atulchitnis.net/files/photos/cix/trrk.jpg&quot;&gt;&lt;img title=&quot;Dr.TR Rajesh Kumar&quot; src=&quot;http://atulchitnis.net/files/photos/cix/trrk.jpg&quot; alt=&quot;Dr.TR Rajesh Kumar&quot; width=&quot;320&quot; height=&quot;240&quot; /&gt;&lt;/a&gt;&lt;p class=&quot;wp-caption-text&quot;&gt;Dr.TR Rajesh Kumar&lt;/p&gt;&lt;/div&gt;
&lt;p&gt;I just received a message from &lt;a href=&quot;http://mrinal.net&quot;&gt;Mrinal&lt;/a&gt;&amp;#8216;s dad, Babu Kalakrishnan, that Dr.TR Rajesh Kumar, who was known as TRRK on the &lt;a href=&quot;http://atulchitnis.net/writings/cix.php&quot;&gt;CiX BBS&lt;/a&gt;, passed away last week.&lt;/p&gt;
&lt;p&gt;TRRK was effectively the Godfather of the CiX BBS, and in the nicest possible way. Many members of the BBS owed their online existence to him &amp;#8211; which was amazing for someone who lived in far away Alleppey.&lt;/p&gt;
&lt;p&gt;He would religiously dial into the BBS, participate in all discussions, help resolve differences, and generally maintain peace and order in what was then India&amp;#8217;s only online service.&lt;/p&gt;
&lt;p&gt;Over the years, he became an active participant in many online forums, and made it a point to stay in touch with as many people as possible.&lt;/p&gt;
&lt;p&gt;Ongoing condolences can be found &lt;a href=&quot;http://www.team-bhp.com/forum/shifting-gears/86801-trrk-dr-t-r-rajesh-kumar-obituary-2.html&quot; target=&quot;_blank&quot;&gt;here&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Rest In Peace, TRRK. You will be missed.&lt;/p&gt;</description>
	<pubDate>Tue, 10 Aug 2010 11:14:34 +0000</pubDate>
</item>
<item>
	<title>Bamacharan Kundu: Screenshot-5</title>
	<guid>http://bamacharankundu.wordpress.com/?p=109</guid>
	<link>http://bamacharankundu.wordpress.com/2010/08/07/openzilla-bug-id-and-short-description-and-hide-button/</link>
	<description>&lt;p&gt;I have added two main things&lt;/p&gt;
&lt;p&gt;1. The bug ID and the Short description of the bug will be shown on the top of the bug detail shown in the respective fields.&lt;/p&gt;
&lt;p&gt;2. Added one Hide button which will Hide the bug detail if clicked.&lt;/p&gt;
&lt;p&gt;The bug detail was previously showing&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://bamacharankundu.files.wordpress.com/2010/08/screenshot-3.png&quot;&gt;&lt;img class=&quot;aligncenter size-medium wp-image-110&quot; title=&quot;Screenshot-3&quot; src=&quot;http://bamacharankundu.files.wordpress.com/2010/08/screenshot-3.png?w=300&amp;h=175&quot; alt=&quot;&quot; width=&quot;300&quot; height=&quot;175&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Now it is showing the bug id, Short Description and one hide button like:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://bamacharankundu.files.wordpress.com/2010/08/screenshot-4.png&quot;&gt;&lt;img class=&quot;aligncenter size-medium wp-image-113&quot; title=&quot;Screenshot-4&quot; src=&quot;http://bamacharankundu.files.wordpress.com/2010/08/screenshot-4.png?w=300&amp;h=175&quot; alt=&quot;&quot; width=&quot;300&quot; height=&quot;175&quot; /&gt;&lt;/a&gt;The function of the Hide button is to hide the bug detail and show the list of the bugs. It will help the user to view the list clearly and select bug which he/she want to see the detail. like:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://bamacharankundu.files.wordpress.com/2010/08/screenshot-5.png&quot;&gt;&lt;img class=&quot;aligncenter size-medium wp-image-114&quot; title=&quot;Screenshot-5&quot; src=&quot;http://bamacharankundu.files.wordpress.com/2010/08/screenshot-5.png?w=300&amp;h=175&quot; alt=&quot;&quot; width=&quot;300&quot; height=&quot;175&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;I have changed some background functions to increase efficiency.&lt;/p&gt;
&lt;p&gt;Thanks.&lt;/p&gt;
&lt;br /&gt;  &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/bamacharankundu.wordpress.com/109/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/bamacharankundu.wordpress.com/109/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/bamacharankundu.wordpress.com/109/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/bamacharankundu.wordpress.com/109/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gofacebook/bamacharankundu.wordpress.com/109/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/facebook/bamacharankundu.wordpress.com/109/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gotwitter/bamacharankundu.wordpress.com/109/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/twitter/bamacharankundu.wordpress.com/109/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/bamacharankundu.wordpress.com/109/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/bamacharankundu.wordpress.com/109/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/bamacharankundu.wordpress.com/109/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/bamacharankundu.wordpress.com/109/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/bamacharankundu.wordpress.com/109/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/bamacharankundu.wordpress.com/109/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=bamacharankundu.wordpress.com&amp;blog=10164647&amp;post=109&amp;subd=bamacharankundu&amp;ref=&amp;feed=1&quot; width=&quot;1&quot; height=&quot;1&quot; /&gt;</description>
	<pubDate>Sat, 07 Aug 2010 00:16:05 +0000</pubDate>
</item>
<item>
	<title>Subhodip Biswas: subhodipbiswas</title>
	<guid>http://subhodipbiswas.wordpress.com/?p=325</guid>
	<link>http://subhodipbiswas.wordpress.com/2010/08/07/brownian-motion/</link>
	<description>&lt;p&gt;Before you start reading this post, I warn you its  boring and makes no sense  ..may not interest you but I am writing it because it does deserve one.&lt;/p&gt;
&lt;p&gt;Evere since I went out of college I started looking to do something creative and something that goes with me rather than something imposed on me. I stayed in Kolkata for a while starting to look at things in a different way.The way which is completely new to me. Since this is the first time I am away from home. I started facing something which I didn&amp;#8217;t consider a problem before, Well days past by and I had a surgery in my eyes so had to take a break .Problem is somehow I never got that interest back to go to Kolkata and start looking for what I was looking.&lt;/p&gt;
&lt;p&gt;I joined a service MNC. I got posted to Gandhinagar, things were different again. Again lot of things happened to me when least expected. In this phase I really went through a tough time because the learning curve was way over my limit threshold.&lt;/p&gt;
&lt;p&gt;By this time my contribution to open source is almost nill and I am almost a dormant person.&lt;/p&gt;
&lt;p&gt;Gandhinagar period was over, I got posting in Mumbai. Interestingly this is the only place about which I knew nothing although I should have guessed something as this being such a popular place.&lt;/p&gt;
&lt;p&gt;My friends from Gandhinagar helped me a lot. Initial days were tough out here and overall I realized that this city is so big and huge that I could easily get absorbed into it and can never be able get out.&lt;/p&gt;
&lt;p&gt;My company has  a office in almost every single neighborhood. So the next thought in our mind after getting into mumbai is where will our office be.&lt;/p&gt;
&lt;p&gt;When every single of my friend got a office together, I was left alone to go to a different one. Later after two months I am still where I am posted while all my friends are in different offices far away from where they were staying.&lt;/p&gt;
&lt;p&gt;This is also when I started to do experimenting with what I can and how much I can. Because of a idle last year I was how ever a little bit apprehensive  with my confidence level.&lt;/p&gt;
&lt;p&gt;I am now a software tester where all my friends are running behind development. However I am still in touch with some or the other opensource technology just as I wanted. So the experiment didn&amp;#8217;t go wrong at all. I still in touch with coding just the way I wanted.&lt;/p&gt;
&lt;p&gt;But somehow this &amp;#8220;Just the way I wanted&amp;#8221; makes no sense anymore because priorities as well as aspiration changes. So is the situation.&lt;/p&gt;
&lt;p&gt;Mumbai taught me a lot of things in last few months. I saw people homeless in front of some of the mansions out here. I guess anything can happen in this city.&lt;/p&gt;
&lt;p&gt;While all my friends have a fixed goal for next few years about their future. I am still in search for it. I don&amp;#8217;t know what I will do in next few year to come. I like a lot of things that I want to do but they are completely different from each other and can never be persuade together.&lt;/p&gt;
&lt;p&gt;Will I able to pursue any one of them? or will I have to leave them all and make a compromise with something else? Is it that you always need to make your mind understand that somethings you deserve and most of the things you don&amp;#8217;t so dont worry be happy kinda things&amp;#8230;&amp;#8230;.well I am completely clueless.&lt;/p&gt;
&lt;p&gt;If this blog post didn&amp;#8217;t make a single sense to you. well even I can&amp;#8217;t make out what I have written.but this is what i am feeling/thinking/sleeping right now.&lt;/p&gt;
&lt;p&gt;P.S : Tomorrow is the first time I am going for a outing outside Mumbai with my team. let see how it goes.&lt;/p&gt;
&lt;p&gt;P.P.S. I hope to see myself working on a open source project soon with lots of if&amp;#8217;s and but&amp;#8217;s.&lt;/p&gt;
&lt;p&gt;P.P.P.S: Ignore spelling mistakes.&lt;/p&gt;
&lt;br /&gt;Filed under: &lt;a href=&quot;http://subhodipbiswas.wordpress.com/category/blogroll/&quot;&gt;Blogroll&lt;/a&gt;, &lt;a href=&quot;http://subhodipbiswas.wordpress.com/category/life/&quot;&gt;life&lt;/a&gt;  &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/subhodipbiswas.wordpress.com/325/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/subhodipbiswas.wordpress.com/325/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/subhodipbiswas.wordpress.com/325/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/subhodipbiswas.wordpress.com/325/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/subhodipbiswas.wordpress.com/325/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/subhodipbiswas.wordpress.com/325/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/subhodipbiswas.wordpress.com/325/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/subhodipbiswas.wordpress.com/325/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/subhodipbiswas.wordpress.com/325/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/subhodipbiswas.wordpress.com/325/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=subhodipbiswas.wordpress.com&amp;blog=803296&amp;post=325&amp;subd=subhodipbiswas&amp;ref=&amp;feed=1&quot; /&gt;</description>
	<pubDate>Fri, 06 Aug 2010 20:52:34 +0000</pubDate>
</item>
<item>
	<title>Kenneth Gonsalves: hourly billing</title>
	<guid>http://lawgon.livejournal.com/80123.html</guid>
	<link>http://lawgon.livejournal.com/80123.html</link>
	<description>I could never wrap my head around the concept of hourly billing. It is a strange western thingie that is totally unsuitable to our culture. Possible it is realistic in the sense of purely mechanical work - like ploughing a field or writing php code - one can predict exactly how much can be done per hour and bill accordingly. But in any field that involves thought, research or creativity the whole idea of hourly billing is stupid. In both the legal profession and in programming, I may estimate 4 hours to do some work. I may do it in 15 minutes or maybe in 24 hours - so what do I bill? Traditionally in India we bill per piece of work done. And in estimating how much it costs, there are 2 considerations: how much work is expected and, more important, how much the client can be expected to pay.</description>
	<pubDate>Thu, 05 Aug 2010 01:55:11 +0000</pubDate>
</item>
<item>
	<title>Stéphane Péchard: spechard</title>
	<guid>http://spechard.wordpress.com/?p=135</guid>
	<link>http://spechard.wordpress.com/2010/08/03/not-completely-dead/</link>
	<description>&lt;p&gt;Ok, it looks like this blog is dead, but here is the sound of a revival! Some news first: after several months of professional inactivity (which conducted me doing Mediaspy), I found a job last February in a small company in Nantes, called Ripple Motion. It is specialized into mobile application, and very specialized into iPhone apps. I work on a R&amp;amp;D project dedicated to Augmented Reality. My everyday work is a mix of Objective C/OpenCV/OpenGL code samples &lt;img src=&quot;http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif&quot; alt=&quot;:-)&quot; class=&quot;wp-smiley&quot; /&gt; &lt;/p&gt;
&lt;p&gt;The sad news is that I don&amp;#8217;t think I will continue Mediaspy from now on. The good news is that the code is free so anyone can take it to play along! In fact, I heard there maybe are some people interested in this project! That would be great, and gladly encourage these retakers to do so. More to come on this topic, I hope.&lt;/p&gt;
&lt;p&gt;My (not very) new pet project is called OsmUserStats. You can learn more about it at this address : &lt;a href=&quot;http://spechard.dgplug.org/OsmUserStats/&quot;&gt;http://spechard.dgplug.org/OsmUserStats/&lt;/a&gt;. It is a stats generator for user-based data of the OSM project. I have been an &lt;a href=&quot;http://www.openstreetmap.org/&quot;&gt;OSM&lt;/a&gt; contributor for about a year now, and found the project very stimulating and interesting. I mapped about 90% of my hometown and have a lot more to do. As a scientist, I like to see my work going on, as well as making summary, especially is such a big and complex crowdsourcing project. That&amp;#8217;s why I decided to make OsmUserStats. The code is surely not very proper, but that&amp;#8217;s the goal of the next release, expecting for the weeks to come. Again, I&amp;#8217;ll tell more about this in the future.&lt;/p&gt;
&lt;br /&gt;  &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/spechard.wordpress.com/135/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/spechard.wordpress.com/135/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/spechard.wordpress.com/135/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/spechard.wordpress.com/135/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gofacebook/spechard.wordpress.com/135/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/facebook/spechard.wordpress.com/135/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gotwitter/spechard.wordpress.com/135/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/twitter/spechard.wordpress.com/135/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/spechard.wordpress.com/135/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/spechard.wordpress.com/135/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/spechard.wordpress.com/135/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/spechard.wordpress.com/135/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/spechard.wordpress.com/135/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/spechard.wordpress.com/135/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=spechard.wordpress.com&amp;blog=7732127&amp;post=135&amp;subd=spechard&amp;ref=&amp;feed=1&quot; /&gt;</description>
	<pubDate>Mon, 02 Aug 2010 23:36:05 +0000</pubDate>
</item>
<item>
	<title>Ratnadeep Debnath: rtnpro</title>
	<guid>http://ratnadeepdebnath.wordpress.com/2010/08/02/resuming-work-on-wordgroupz/</guid>
	<link>http://ratnadeepdebnath.wordpress.com/2010/08/02/resuming-work-on-wordgroupz/</link>
	<description>&lt;p&gt;For some days, I have not been able to work on wordgroupz. I was sufferring from fever. Apart from that, I came back to Durgapur yesterday. I am, kind of, well now.&amp;nbsp;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;Now, I started working on the saving the various details from wiktionary. Still having some problems regarding customizing wiktionary view. Some trivial issues like :&lt;/div&gt;
&lt;div&gt;* webkit.WebView.load_string(), the backward_forward list doesn&amp;#8217;t work nicely. Rather, if you jump to a new link, you cannot come back to the original load_string page.&lt;/div&gt;
&lt;div&gt;* opening and editing html with beautifulsoup disables the javascripts.&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;p&gt;The post is brought to you by &lt;a href=&quot;http://fedorahosted.org/lekhonee&quot;&gt;lekhonee-gnome&lt;/a&gt; v0.9&lt;/p&gt;
&lt;br /&gt;  &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/ratnadeepdebnath.wordpress.com/192/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/ratnadeepdebnath.wordpress.com/192/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/ratnadeepdebnath.wordpress.com/192/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/ratnadeepdebnath.wordpress.com/192/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gofacebook/ratnadeepdebnath.wordpress.com/192/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/facebook/ratnadeepdebnath.wordpress.com/192/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gotwitter/ratnadeepdebnath.wordpress.com/192/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/twitter/ratnadeepdebnath.wordpress.com/192/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/ratnadeepdebnath.wordpress.com/192/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/ratnadeepdebnath.wordpress.com/192/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/ratnadeepdebnath.wordpress.com/192/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/ratnadeepdebnath.wordpress.com/192/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/ratnadeepdebnath.wordpress.com/192/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/ratnadeepdebnath.wordpress.com/192/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=ratnadeepdebnath.wordpress.com&amp;blog=5702928&amp;post=192&amp;subd=ratnadeepdebnath&amp;ref=&amp;feed=1&quot; width=&quot;1&quot; height=&quot;1&quot; /&gt;&lt;/p&gt;</description>
	<pubDate>Mon, 02 Aug 2010 07:28:39 +0000</pubDate>
</item>
<item>
	<title>Arun Sag: me</title>
	<guid>http://arunsag.wordpress.com/?p=163</guid>
	<link>http://arunsag.wordpress.com/2010/07/29/t-shirt/</link>
	<description>&lt;p&gt;&lt;a href=&quot;http://arunsag.files.wordpress.com/2010/07/image0196.jpg&quot;&gt;&lt;a href=&quot;http://arunsag.files.wordpress.com/2010/07/image0201.jpg&quot;&gt;&lt;img class=&quot;aligncenter size-medium wp-image-166&quot; title=&quot;me&quot; src=&quot;http://arunsag.files.wordpress.com/2010/07/image0201.jpg?w=225&amp;h=300&quot; alt=&quot;&quot; width=&quot;225&quot; height=&quot;300&quot; /&gt;&lt;/a&gt;&lt;/a&gt;&lt;br /&gt;
Got a ubuntu guru T-shirt for creating Tamil remix of Fedora. Yes, you read it correct &amp;#8220;Fedora&amp;#8221; &lt;img src=&quot;http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif&quot; alt=&quot;:-)&quot; class=&quot;wp-smiley&quot; /&gt;  . Thanks to &lt;a href=&quot;http://amachu.net/enblog/&quot;&gt;amachu&lt;/a&gt;&lt;/p&gt;
&lt;br /&gt;  &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/arunsag.wordpress.com/163/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/arunsag.wordpress.com/163/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/arunsag.wordpress.com/163/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/arunsag.wordpress.com/163/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gofacebook/arunsag.wordpress.com/163/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/facebook/arunsag.wordpress.com/163/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gotwitter/arunsag.wordpress.com/163/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/twitter/arunsag.wordpress.com/163/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/arunsag.wordpress.com/163/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/arunsag.wordpress.com/163/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/arunsag.wordpress.com/163/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/arunsag.wordpress.com/163/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/arunsag.wordpress.com/163/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/arunsag.wordpress.com/163/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=arunsag.wordpress.com&amp;blog=10858038&amp;post=163&amp;subd=arunsag&amp;ref=&amp;feed=1&quot; /&gt;</description>
	<pubDate>Thu, 29 Jul 2010 19:09:58 +0000</pubDate>
</item>
<item>
	<title>Sankarshan Mukhopadhyay: How would you accelerate the adoption of OLPC in India?</title>
	<guid>http://sankarshan.randomink.org/blog/?p=680</guid>
	<link>http://sankarshan.randomink.org/blog/2010/07/29/how-would-you-accelerate-the-adoption-of-olpc-in-india/</link>
	<description>&lt;p&gt;OLPC News has &lt;a href=&quot;http://www.olpcnews.com/countries/india/how_would_you_accelerate_the_a.html&quot;&gt;an article&lt;/a&gt; with the original headline (in fact I took the lazy way out and re-used it). It seems to be posted by &amp;#8216;Guest Writer&amp;#8217; but the footer of the article says that &amp;#8220;&lt;em&gt;Satish Jha is the President and CEO, OLPC India&amp;#8221; &lt;/em&gt;so I guess OLPC India is in some form involved with the content that is has.&lt;/p&gt;
&lt;p&gt;It is an interesting piece. There&amp;#8217;s another interesting thread on a mailing list &lt;a href=&quot;http://lists.cpsr.org/lists/arc/india-gii/2010-07/msg00027.html&quot;&gt;here&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;I would have expected it to talk more about the possibilities of doing OLPC stuff in India rather than becoming a somewhat neither-here-nor-there kind of non-committal response to the $35 device that the Ministry of HRD so loudly released. To understand what can bring about the adoption of OLPC India, one would have to probably go back to a &lt;a href=&quot;http://sankarshan.randomink.org/blog/2008/09/19/about-the-olpc-thing/&quot;&gt;post I wrote&lt;/a&gt; some time back.&lt;/p&gt;
&lt;p&gt;The problem that was highlighted still remains. There is no community of any form,shape or sort around the OLPC in India when compared to OLPC efforts/initiatives and deployments in other countries (the nations that are so eloquently held up as shining examples of OLPC success). There is a significant lack of a downstream community of volunteers and participants and, more importantly, a lack of any sort of publicly discussed plans as to whether any educational institute would volunteer students for a while to keep the deployments going forward. Then of course there is the added discourse around availability of the actual XO hardware.&lt;/p&gt;
&lt;p&gt;When I met Dr. Nagarjuna at GNUnify (that&amp;#8217;s February this year), he indicated that he was actively looking at using the Sugar Desktop Environment on standard COTS desktops available much easily from vendors because there wasn&amp;#8217;t much clarity about the how and when of the hardware availability. In fact, this has been a murmur that has been around for a while &amp;#8211; what specifically is the value add of the hardware if the desktop environment is available via a standard Linux desktop/distribution. Which is where an active group of developers working on activities that would be useful in the context of the deployment is a good thing to have. And for that to happen, there needs to be work on building a downstream community &amp;#8211; contributors who use the artifacts provided by OLPC and Sugar to develop their own thing.&lt;/p&gt;
&lt;p&gt;A distinct advantage that OLPC/XO/Sugar has is brand recognition. Anyone who is peripherally involved in doing things around Free and Open Source Software in India know these names. They may not fully understand the depth of work or, the roadmap of the individual projects, but the name recognition is a jump-off point that should be utilized much more. For example, in a space like the College of Engineering Pune, which has a fairly active mailing list for FOSS related stuff, holding a 2 day event with the aim getting work started on new or, un-maintained activities, teaching the basics of testing/QA stuff would probably be more useful than just wishing about growing a community. I am fairly certain that there would be other institutions like CoEP where a day-long or, similar camps can be organized. Why aren&amp;#8217;t they happening ? On that I have no clue.&lt;/p&gt;</description>
	<pubDate>Thu, 29 Jul 2010 06:27:56 +0000</pubDate>
</item>
<item>
	<title>Bamacharan Kundu: Screenshot-3</title>
	<guid>http://bamacharankundu.wordpress.com/?p=103</guid>
	<link>http://bamacharankundu.wordpress.com/2010/07/29/openzilla-getting-the-bugs-and-and-showing-the-fields/</link>
	<description>&lt;p&gt;Getting the bugs:&lt;/p&gt;
&lt;p&gt;Till now I have made the &lt;a href=&quot;http://gitorious.org/openzilla/openzilla&quot; target=&quot;_blank&quot;&gt;openzilla&lt;/a&gt; as,&lt;/p&gt;
&lt;p&gt;&amp;gt;It can download the bugs of a given topic.&lt;/p&gt;
&lt;p&gt;&amp;gt;A list of downloaded bugs will be shown in list.&lt;/p&gt;
&lt;p&gt;&amp;gt;Details of the bugs which is selected will be show in the fields below.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://bamacharankundu.files.wordpress.com/2010/07/screenshot-3.png&quot;&gt;&lt;img class=&quot;aligncenter size-medium wp-image-106&quot; title=&quot;Screenshot-3&quot; src=&quot;http://bamacharankundu.files.wordpress.com/2010/07/screenshot-3.png?w=300&amp;h=175&quot; alt=&quot;&quot; width=&quot;300&quot; height=&quot;175&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;yet to do the searching in field basis.&lt;/p&gt;
&lt;p&gt;Comments are welcome.&lt;/p&gt;
&lt;p&gt;Thanks.&lt;/p&gt;
&lt;br /&gt;  &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/bamacharankundu.wordpress.com/103/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/bamacharankundu.wordpress.com/103/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/bamacharankundu.wordpress.com/103/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/bamacharankundu.wordpress.com/103/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gofacebook/bamacharankundu.wordpress.com/103/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/facebook/bamacharankundu.wordpress.com/103/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gotwitter/bamacharankundu.wordpress.com/103/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/twitter/bamacharankundu.wordpress.com/103/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/bamacharankundu.wordpress.com/103/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/bamacharankundu.wordpress.com/103/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/bamacharankundu.wordpress.com/103/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/bamacharankundu.wordpress.com/103/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/bamacharankundu.wordpress.com/103/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/bamacharankundu.wordpress.com/103/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=bamacharankundu.wordpress.com&amp;blog=10164647&amp;post=103&amp;subd=bamacharankundu&amp;ref=&amp;feed=1&quot; width=&quot;1&quot; height=&quot;1&quot; /&gt;</description>
	<pubDate>Thu, 29 Jul 2010 02:27:37 +0000</pubDate>
</item>
<item>
	<title>Roshan Singh: Roshan Singh</title>
	<guid>http://roshansingh.wordpress.com/?p=308</guid>
	<link>http://roshansingh.wordpress.com/2010/07/26/coin-denomination-problem/</link>
	<description>&lt;p&gt;Coin denomination problem is a very common question asked in interviews. It involves Greedy Approach, Dynamic Programming and Recursion. You may find a lot of stuff on the internet if you just google out &amp;#8220;Coin denomination problem&amp;#8221;.&lt;/p&gt;
&lt;p&gt;A link that was really helpful for me to analyse the problem is &lt;a href=&quot;http://www.ccs.neu.edu/home/jaa/CSG713.04F/Information/Handouts/dyn_prog.pdf&quot;&gt;http://www.ccs.neu.edu/home/jaa/CSG713.04F/Information/Handouts/dyn_prog.pdf&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Some other helpful text to recollect things can be found &lt;a href=&quot;http://courses.csail.mit.edu/iap/interview/materials.php&quot;&gt;here&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Posted from &lt;a href=&quot;http://sourceforge.net/projects/gscribble/&quot;&gt;GScribble&lt;/a&gt;.&lt;/p&gt;
&lt;br /&gt;  &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/roshansingh.wordpress.com/308/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/roshansingh.wordpress.com/308/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/roshansingh.wordpress.com/308/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/roshansingh.wordpress.com/308/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/roshansingh.wordpress.com/308/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/roshansingh.wordpress.com/308/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/roshansingh.wordpress.com/308/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/roshansingh.wordpress.com/308/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/roshansingh.wordpress.com/308/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/roshansingh.wordpress.com/308/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=roshansingh.wordpress.com&amp;blog=3190560&amp;post=308&amp;subd=roshansingh&amp;ref=&amp;feed=1&quot; /&gt;</description>
	<pubDate>Mon, 26 Jul 2010 14:03:35 +0000</pubDate>
</item>
<item>
	<title>Ratnadeep Debnath: rtnpro</title>
	<guid>http://ratnadeepdebnath.wordpress.com/2010/07/25/working-on-flash-card-module-for-wordgroupz/</guid>
	<link>http://ratnadeepdebnath.wordpress.com/2010/07/25/working-on-flash-card-module-for-wordgroupz/</link>
	<description>&lt;p&gt;Now, I am working on making the flash-card module for wordgroupz. I plan to collect the responses( incorrect/ correct) for the words. This will come to use for performance stats generation. Below are the screenshots of the flash-card module.
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;&lt;img src=&quot;http://rtnpro.fedorapeople.org/images/Screenshot-games.py.png&quot; /&gt;&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;&lt;img src=&quot;http://rtnpro.fedorapeople.org/images/Screenshot-games.py-1.png&quot; /&gt;&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;Suggestions are welcome &lt;img src=&quot;http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif&quot; alt=&quot;:)&quot; class=&quot;wp-smiley&quot; /&gt; &lt;/div&gt;
&lt;p&gt;The post is brought to you by &lt;a href=&quot;http://fedorahosted.org/lekhonee&quot;&gt;lekhonee-gnome&lt;/a&gt; v0.9&lt;/p&gt;
&lt;br /&gt;  &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/ratnadeepdebnath.wordpress.com/191/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/ratnadeepdebnath.wordpress.com/191/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/ratnadeepdebnath.wordpress.com/191/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/ratnadeepdebnath.wordpress.com/191/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gofacebook/ratnadeepdebnath.wordpress.com/191/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/facebook/ratnadeepdebnath.wordpress.com/191/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gotwitter/ratnadeepdebnath.wordpress.com/191/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/twitter/ratnadeepdebnath.wordpress.com/191/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/ratnadeepdebnath.wordpress.com/191/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/ratnadeepdebnath.wordpress.com/191/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/ratnadeepdebnath.wordpress.com/191/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/ratnadeepdebnath.wordpress.com/191/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/ratnadeepdebnath.wordpress.com/191/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/ratnadeepdebnath.wordpress.com/191/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=ratnadeepdebnath.wordpress.com&amp;blog=5702928&amp;post=191&amp;subd=ratnadeepdebnath&amp;ref=&amp;feed=1&quot; width=&quot;1&quot; height=&quot;1&quot; /&gt;&lt;/p&gt;</description>
	<pubDate>Sun, 25 Jul 2010 20:01:31 +0000</pubDate>
</item>
<item>
	<title>Harsh verma: yevlempy</title>
	<guid>http://yevlempy.wordpress.com/?p=162</guid>
	<link>http://yevlempy.wordpress.com/2010/07/24/spell-bee-concept-application/</link>
	<description>&lt;p&gt;24 july 2010&lt;/p&gt;
&lt;p&gt;&lt;!-- 		@page { margin: 0.79in } 		P { margin-bottom: 0.08in } 		A:link { so-language: zxx } --&gt;Since few days me and  kishan is working on a project/idea named spell bee[1]( named just for reference of topic, name yet to be decided). We are basically trying to develop a desktop game application based on the popular &amp;#8220;spelling bee&amp;#8221; game/quiz.&lt;/p&gt;
&lt;p&gt;A &amp;#8216;Spelling Bee&amp;#8217; is a game in which a user listens to a spoken word and tries to spell that word correctly. Spelling Bees are conducted across the globe and are widely popular. We intend to bring this game to the desktop, i.e. to develop an application which would allow one or more users to play the game on their pc, basically Spelling Bee is an immensely popular and successful concept. Having a&lt;br /&gt;
desktop application based on the same would be a fun, yet learning experience, especially for children.&lt;/p&gt;
&lt;p&gt;We will be using Programming Language: Python&lt;br /&gt;
Interface Design:  PyGtk&lt;/p&gt;
&lt;p&gt;Database: Sqlite3&lt;br /&gt;
Text-to-Speech:  Festival(tested)/espeak( to be tested)&lt;/p&gt;
&lt;p&gt;A look at the app. from user&amp;#8217;s view :&lt;/p&gt;
&lt;p&gt;The player will have a choice to select a proper difficulty level, based on age groups OR class. The game would consist of the player (pressing a button) to listen to the word being spoken( using the TTS)&lt;br /&gt;
and would have to key in the correct spelling. The game is declared &amp;#8220;over&amp;#8221; when the player gets 3 incorrect spellings. There would be a constant score-display to the player and at the end of the game, if a new &amp;#8220;High Score&amp;#8221; has been achieved, the played would be asked to fill up his/her name and Records would be maintained. The user can chose to &amp;#8220;Play Again&amp;#8221; or exit.&lt;/p&gt;
&lt;p&gt;As of now, we have not thought about any other language. Once we get the app working in English, we could look into the possibility of extending it to other language.&lt;/p&gt;
&lt;p&gt;I will be updating more in details as we proceed. Till then cheers &lt;img src=&quot;http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif&quot; alt=&quot;:)&quot; class=&quot;wp-smiley&quot; /&gt; &lt;/p&gt;
&lt;p&gt;[1] &lt;a href=&quot;http://en.wikipedia.org/wiki/Spelling_bee&quot; target=&quot;_blank&quot;&gt;http://en.wikipedia.org/wiki/Spelling_bee&lt;/a&gt;&lt;/p&gt;
&lt;br /&gt;  &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/yevlempy.wordpress.com/162/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/yevlempy.wordpress.com/162/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/yevlempy.wordpress.com/162/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/yevlempy.wordpress.com/162/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/yevlempy.wordpress.com/162/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/yevlempy.wordpress.com/162/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/yevlempy.wordpress.com/162/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/yevlempy.wordpress.com/162/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/yevlempy.wordpress.com/162/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/yevlempy.wordpress.com/162/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=yevlempy.wordpress.com&amp;blog=6449518&amp;post=162&amp;subd=yevlempy&amp;ref=&amp;feed=1&quot; /&gt;</description>
	<pubDate>Sat, 24 Jul 2010 08:42:10 +0000</pubDate>
</item>
<item>
	<title>Ratnadeep Debnath: rtnpro</title>
	<guid>http://ratnadeepdebnath.wordpress.com/?p=186</guid>
	<link>http://ratnadeepdebnath.wordpress.com/2010/07/23/wordgroupz-development-news/</link>
	<description>&lt;p&gt;For some time now, I have been working on wordgroupz. Since version  0.2, I have added some new features.&lt;/p&gt;
&lt;p&gt;The new features include  dictionary support: online webster dictionary from dict.org and offline  wordnet. For implementing the online dictionary support, I used the  server interface of &lt;a href=&quot;http://www.dict.org&quot;&gt;dict.org&lt;/a&gt;. For offline, I used the  dictionary databases of the wordnet application and the python-nltk  library.&lt;/p&gt;
&lt;p&gt;I also included wiktionary support this time. I used to  find it tedious opening a notebook, browser to search  wikipedia/wiktionary, copy-paste notes. That&amp;#8217;s why I decided to get them  all together under one hood &amp;#8211; wordgroupz. I include a gtkNotebook : 1st  page for showing, editing details of the selected word and the 2nd page  for browsing through wiktionary and downloading pronunciations if  available. I had to study urllib2, BeautifulStone, pywebkitgtk for the  purpose.&lt;/p&gt;
&lt;p&gt;I also worked on the new interface, added some custom  buttons to the interface. I studied gtkNotebook, gtkToolbar,  gtkStockImage, etc. I also improved some logic for the interface. Now,  wordgroupz allows to add words without any groups and such words are put  in an &amp;#8220;no-category&amp;#8221; group. Now, there is a &amp;#8220;details&amp;#8221; field for  group-words. Groups can be deleted. I have to write the code to move the words to the &amp;#8216;no-category&amp;#8217; group once its parent group is deleted.&lt;/p&gt;
&lt;p&gt;I released wordgroupz version 0.3b today. I have to work on machine generated pronunciation for words whose wiktionary pronunciation are not available. I have to design the games and quizzes for wordgroupz. Lots of stuff to do.&lt;/p&gt;
&lt;p&gt;Please feel free to try wordgroupz and suggest any improvements to be done.&lt;/p&gt;
&lt;p&gt;Details of how to get wordgroupz was given on my previous &lt;a href=&quot;http://ratnadeepdebnath.wordpress.com/2010/07/23/wordgroupz-v-0-3-beta-released/&quot;&gt;post&lt;/a&gt;.&lt;/p&gt;
&lt;br /&gt;  &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/ratnadeepdebnath.wordpress.com/186/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/ratnadeepdebnath.wordpress.com/186/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/ratnadeepdebnath.wordpress.com/186/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/ratnadeepdebnath.wordpress.com/186/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gofacebook/ratnadeepdebnath.wordpress.com/186/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/facebook/ratnadeepdebnath.wordpress.com/186/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gotwitter/ratnadeepdebnath.wordpress.com/186/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/twitter/ratnadeepdebnath.wordpress.com/186/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/ratnadeepdebnath.wordpress.com/186/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/ratnadeepdebnath.wordpress.com/186/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/ratnadeepdebnath.wordpress.com/186/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/ratnadeepdebnath.wordpress.com/186/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/ratnadeepdebnath.wordpress.com/186/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/ratnadeepdebnath.wordpress.com/186/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=ratnadeepdebnath.wordpress.com&amp;blog=5702928&amp;post=186&amp;subd=ratnadeepdebnath&amp;ref=&amp;feed=1&quot; width=&quot;1&quot; height=&quot;1&quot; /&gt;</description>
	<pubDate>Fri, 23 Jul 2010 20:15:54 +0000</pubDate>
</item>
<item>
	<title>Ratnadeep Debnath: rtnpro</title>
	<guid>http://ratnadeepdebnath.wordpress.com/?p=182</guid>
	<link>http://ratnadeepdebnath.wordpress.com/2010/07/23/wordgroupz-v-0-3-beta-released/</link>
	<description>&lt;div&gt;
&lt;p&gt;Today I released wordgroupz v 0.3b.&lt;/p&gt;
&lt;div&gt;New Features -&lt;/div&gt;
&lt;div&gt;1. Dictionary support – online dict.org webster, offline wordnet&lt;/div&gt;
&lt;div&gt;2. Wiktionary support – lookup details of the word on wiktionary,  download pronunciations if available&lt;/div&gt;
&lt;div&gt;3. New interface&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;&lt;img src=&quot;http://rtnpro.fedorapeople.org/images/Screenshot-wordGroupz-2.png&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;&lt;img src=&quot;http://rtnpro.fedorapeople.org/images/Screenshot-wordGroupz-3.png&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;
&lt;div&gt;Dependencies for wordgroupz:&lt;/div&gt;
&lt;div&gt;1) gtk, pygtk2&lt;/div&gt;
&lt;div&gt;2) python-nltk&lt;/div&gt;
&lt;div&gt;3) wordnet&lt;/div&gt;
&lt;div&gt;4) pywebkitgtk&lt;/div&gt;
&lt;div&gt;5) BeautifulSoup&lt;/div&gt;
&lt;div&gt;To install wordgroupz for fedora:&lt;/div&gt;
&lt;div&gt;1) download &lt;a href=&quot;http://rtnpro.fedorapeople.org/rtnpro.repo&quot;&gt;http://rtnpro.fedorapeople.org/rtnpro.repo&lt;/a&gt; into  /etc/yum.repos.d/&lt;/div&gt;
&lt;div&gt;2) as root do: yum install wordgroupz&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;To install wordgroupz on any other linux OS:&lt;/div&gt;
&lt;div&gt;1) download &lt;a href=&quot;http://rtnpro.fedorapeople.org/wordgroupz/wordgroupz-0.3b.tar.gz&quot;&gt;http://rtnpro.fedorapeople.org/wordgroupz/wordgroupz-0.3b.tar.gz&lt;/a&gt;&lt;/div&gt;
&lt;div&gt;2) Untar it: $tar xvf wordgroupz-0.3b.tar.gz&lt;/div&gt;
&lt;div&gt;3) Change directory to wordgroupz-0.3b: $cd wordgroupz-0.3b&lt;/div&gt;
&lt;div&gt;4) As root, install from setup.py:&lt;/div&gt;
&lt;div&gt;$su&lt;/div&gt;
&lt;div&gt;#python setup.py install&lt;/div&gt;
&lt;div&gt;Feel free to report any bugs, new feature request or suggestions.&lt;/div&gt;
&lt;/div&gt;
&lt;br /&gt;  &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/ratnadeepdebnath.wordpress.com/182/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/ratnadeepdebnath.wordpress.com/182/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/ratnadeepdebnath.wordpress.com/182/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/ratnadeepdebnath.wordpress.com/182/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gofacebook/ratnadeepdebnath.wordpress.com/182/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/facebook/ratnadeepdebnath.wordpress.com/182/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gotwitter/ratnadeepdebnath.wordpress.com/182/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/twitter/ratnadeepdebnath.wordpress.com/182/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/ratnadeepdebnath.wordpress.com/182/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/ratnadeepdebnath.wordpress.com/182/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/ratnadeepdebnath.wordpress.com/182/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/ratnadeepdebnath.wordpress.com/182/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/ratnadeepdebnath.wordpress.com/182/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/ratnadeepdebnath.wordpress.com/182/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=ratnadeepdebnath.wordpress.com&amp;blog=5702928&amp;post=182&amp;subd=ratnadeepdebnath&amp;ref=&amp;feed=1&quot; width=&quot;1&quot; height=&quot;1&quot; /&gt;</description>
	<pubDate>Fri, 23 Jul 2010 19:29:44 +0000</pubDate>
</item>
<item>
	<title>Bamacharan Kundu: Screenshot-1</title>
	<guid>http://bamacharankundu.wordpress.com/?p=96</guid>
	<link>http://bamacharankundu.wordpress.com/2010/07/23/updating-gui-of-openzilla/</link>
	<description>&lt;p&gt;I have updated the Gui of the Openzilla desktop application.&lt;/p&gt;
&lt;p&gt;I have added one login window with the main window. While running the application from&lt;/p&gt;
&lt;p&gt;http://gitorious.org/openzilla/openzilla&lt;/p&gt;
&lt;p&gt;with the command&lt;/p&gt;
&lt;p&gt;$python openzilla.py&lt;/p&gt;
&lt;p&gt;it will show the login window&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://bamacharankundu.files.wordpress.com/2010/07/screenshot-2.png&quot;&gt;&lt;img class=&quot;aligncenter size-medium wp-image-97&quot; title=&quot;Screenshot-2&quot; src=&quot;http://bamacharankundu.files.wordpress.com/2010/07/screenshot-2.png?w=300&amp;h=175&quot; alt=&quot;&quot; width=&quot;300&quot; height=&quot;175&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;here in the login window user has to insert the email id as user name and password.&lt;/p&gt;
&lt;p&gt;then clicking the login button it will go to the main window. which will show like&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://bamacharankundu.files.wordpress.com/2010/07/screenshot-12.png&quot;&gt;&lt;img class=&quot;aligncenter size-medium wp-image-98&quot; title=&quot;Screenshot-1&quot; src=&quot;http://bamacharankundu.files.wordpress.com/2010/07/screenshot-12.png?w=300&amp;h=175&quot; alt=&quot;&quot; width=&quot;300&quot; height=&quot;175&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;with that I have updated the background features also, and on way to it.&lt;/p&gt;
&lt;p&gt;Thanks.&lt;/p&gt;
&lt;br /&gt;  &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/bamacharankundu.wordpress.com/96/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/bamacharankundu.wordpress.com/96/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/bamacharankundu.wordpress.com/96/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/bamacharankundu.wordpress.com/96/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gofacebook/bamacharankundu.wordpress.com/96/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/facebook/bamacharankundu.wordpress.com/96/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gotwitter/bamacharankundu.wordpress.com/96/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/twitter/bamacharankundu.wordpress.com/96/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/bamacharankundu.wordpress.com/96/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/bamacharankundu.wordpress.com/96/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/bamacharankundu.wordpress.com/96/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/bamacharankundu.wordpress.com/96/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/bamacharankundu.wordpress.com/96/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/bamacharankundu.wordpress.com/96/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=bamacharankundu.wordpress.com&amp;blog=10164647&amp;post=96&amp;subd=bamacharankundu&amp;ref=&amp;feed=1&quot; width=&quot;1&quot; height=&quot;1&quot; /&gt;</description>
	<pubDate>Fri, 23 Jul 2010 10:30:12 +0000</pubDate>
</item>
<item>
	<title>Ratnadeep Debnath: rtnpro</title>
	<guid>http://ratnadeepdebnath.wordpress.com/2010/07/22/wordgroupz-development-news/</guid>
	<link>http://ratnadeepdebnath.wordpress.com/2010/07/22/wordgroupz-version-0-3b-released/</link>
	<description>&lt;p&gt;Lately, I have been working on adding new features to &lt;strong&gt;wordgroupz&lt;/strong&gt; like dictionary support, wiktionary support, pronunciation support. I  have also made some changes to the &lt;strong&gt;wordgroupz&lt;/strong&gt; gui optimized for  the new features.&lt;/p&gt;
&lt;div&gt;&lt;strong&gt;wordgroupz&lt;/strong&gt; v 0.2 screenshot:&lt;/div&gt;
&lt;div&gt;&lt;img src=&quot;http://rtnpro.fedorapeople.org/Screenshot-wordGroupz.png&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;
&lt;div&gt;&lt;img src=&quot;http://home/rtnpro/Pictures/Screenshot-wordGroupz.png&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;
&lt;div&gt;The dictionary support features online dict.org webster dictionary  and a offline wordnet dictionary. I used the server interface to  retrieve definitions from it.&lt;/div&gt;
&lt;div&gt;I used the nltk library to retrieve definitions from wordnet  dicitionary database.&lt;/div&gt;
&lt;div&gt;I implemented the wiktionary support using webkit, BeautifulSoup  and urllib2. Pronunciations if availale on wiktionary are allowed to be  downloaded.&lt;/div&gt;
&lt;div&gt;The new interface looks like this below:&lt;/div&gt;
&lt;div&gt;&lt;img src=&quot;http://rtnpro.fedorapeople.org/Screenshot-wordGroupz-1.png&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;
&lt;div&gt;Due to the frequent changes made in the &lt;strong&gt;wordgroupz&lt;/strong&gt; repository at &lt;a href=&quot;http://gitorious.org/wordgroupz/wordgroupz/trees/master&quot;&gt;http://gitorious.org/&lt;strong&gt;wordgroupz&lt;/strong&gt;/&lt;strong&gt;wordgroupz&lt;/strong&gt;/trees/master&lt;/a&gt;,  I have not been able to update the setup.py, README, etc. files. I also  added a nltk*tar.gz in the src folder, that looks weird. I will be  cleaning up the repository.&lt;/div&gt;
&lt;div&gt;For the time being, to test the code, follow the following steps:&lt;/div&gt;
&lt;div&gt;1) download the src code&lt;/div&gt;
&lt;div&gt;2) do not install it via setup.py&lt;/div&gt;
&lt;div&gt;3) extract the nltk*.tar.gz and install the nltk python module from  the setup.py inside nltk.&lt;/div&gt;
&lt;div&gt;4) install pywebkitgtk&lt;/div&gt;
&lt;div&gt;5) Now run the new interface using wordgroupz_new.py&lt;/div&gt;
&lt;div&gt;All the previous features have not been ported to the  wordgroupz_new.py, which I wrote while coding for the wiktionary  support. I will updating the file soon.&lt;/div&gt;
&lt;div&gt;Please give your valuable feedback for improvements.&lt;/div&gt;
&lt;p&gt;The post is brought to you by &lt;a href=&quot;http://fedorahosted.org/lekhonee&quot;&gt;lekhonee-gnome&lt;/a&gt; v0.9&lt;/p&gt;
&lt;p&gt;&lt;!--adcode--&gt;&lt;/p&gt;
&lt;div&gt;//  // &lt;/div&gt;
&lt;p&gt;&lt;!--/adcode--&gt;&lt;/p&gt;
&lt;br /&gt;  &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/ratnadeepdebnath.wordpress.com/179/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/ratnadeepdebnath.wordpress.com/179/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/ratnadeepdebnath.wordpress.com/179/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/ratnadeepdebnath.wordpress.com/179/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gofacebook/ratnadeepdebnath.wordpress.com/179/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/facebook/ratnadeepdebnath.wordpress.com/179/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gotwitter/ratnadeepdebnath.wordpress.com/179/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/twitter/ratnadeepdebnath.wordpress.com/179/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/ratnadeepdebnath.wordpress.com/179/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/ratnadeepdebnath.wordpress.com/179/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/ratnadeepdebnath.wordpress.com/179/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/ratnadeepdebnath.wordpress.com/179/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/ratnadeepdebnath.wordpress.com/179/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/ratnadeepdebnath.wordpress.com/179/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=ratnadeepdebnath.wordpress.com&amp;blog=5702928&amp;post=179&amp;subd=ratnadeepdebnath&amp;ref=&amp;feed=1&quot; width=&quot;1&quot; height=&quot;1&quot; /&gt;</description>
	<pubDate>Thu, 22 Jul 2010 21:43:38 +0000</pubDate>
</item>
<item>
	<title>Kenneth Gonsalves: language wars</title>
	<guid>http://lawgon.livejournal.com/79744.html</guid>
	<link>http://lawgon.livejournal.com/79744.html</link>
	<description>recently ilugc mailing list had an unprecedentedly huge flame war regarding language. This had it's beginnings a couple of years back when one or two members started posting in Tamil. Ilugc is the biggest LUG in India and has a large and active component of members from outside Tamilnadu as well as members within the state who cannot read Tamil - in many cases do not even have the fonts installed so all they see is either junk or little boxen. Repeated requests were made that the mails be tagged [Tamil] and a brief english translation be appended. The posters expressed the opinion that 'this is the Tamilnadu state LUG and hence they have the right to post in Tamil, and also every member should learn Tamil'. At that time no one was opposed to posts in Tamil - all they asked was that the posters do them the courtesy of tagging the posts so that they could filter it out - or give an english summary so that they could know what is happening. This went on for some years - periodically requests were made for tagging/summary, and the requests were ignored.&lt;br /&gt;&lt;br /&gt;In India language is a very sensitive issue - but in Tamilnadu by and large there is a lot of tolerance as there are large linguistic minorities - although I remember torrid times in the anti-hindi agitations of the past and the Tamil-Kannada riots in the late nineties (this was actually more a dispute over water than over language). There are fanatics like the MNS in Mumbai that wants to kick out all the non Marathi speaking people - and a few hot heads in other states. Bangalore comes to mind in this regard. &lt;br /&gt;&lt;br /&gt;Anyway the issue flared up again a couple of weeks back - and this time due to the intransigence of the tamil posters (actually only 2-3 of them in a 2000 strong list), flames erupted and this time there was heavy opposition to tamil posting itself, along with a much more insistent demand for tagging/translation. Finally the co-ordinator ordained that any language may be used as long as it is tagged and translated. This lead to posts in all manner of languages and a general state of anarchy. In the end the list owner stated that he is willing to start language lists on request, but only english posts would be allowed. Anyone posting in other languages would be warned and then banned.&lt;br /&gt;&lt;br /&gt;So why were they posting in Tamil and refusing to tag/translate? Simply because they wanted to impose Tamil on the members. If they genuinely wanted to promote Tamil, they should have been polite, tagged the mails and also provided translations - or even transliterations to encourage people to learn. There was even one moron who suggested that Marathi posts should be allowed in Mumbai, Kannada posts in Bengaluru and Telugu posts in Hyderabad - which shows how much he knows about the languages spoken in the respective cities and the tensions wrt to language there.&lt;br /&gt;&lt;br /&gt;Well youngsters will be youngsters - but I hope some of them get posted to some place like Kolhapur or Kannur - then they will learn.</description>
	<pubDate>Thu, 22 Jul 2010 02:19:57 +0000</pubDate>
</item>
<item>
	<title>Bamacharan Kundu: Screenshot-1</title>
	<guid>http://bamacharankundu.wordpress.com/?p=88</guid>
	<link>http://bamacharankundu.wordpress.com/2010/07/19/openzilla-gui/</link>
	<description>&lt;p&gt;Till now I have made the Gui of the openzilla as,&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://bamacharankundu.files.wordpress.com/2010/07/screenshot-11.png&quot;&gt;&lt;img class=&quot;aligncenter size-medium wp-image-93&quot; title=&quot;Screenshot-1&quot; src=&quot;http://bamacharankundu.files.wordpress.com/2010/07/screenshot-11.png?w=300&amp;h=175&quot; alt=&quot;&quot; width=&quot;300&quot; height=&quot;175&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;here on the left panel user will select one query for searching the bugs.&lt;/p&gt;
&lt;p&gt;then the list of bugs fulfilling the query will be shown in the space bellow the newtab.&lt;/p&gt;
&lt;p&gt;Then User will be selecting one bug from the list and the details of the selected bug will be shown bellow the list in the specific field.&lt;/p&gt;
&lt;p&gt;thanks&lt;/p&gt;
&lt;br /&gt;  &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/bamacharankundu.wordpress.com/88/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/bamacharankundu.wordpress.com/88/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/bamacharankundu.wordpress.com/88/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/bamacharankundu.wordpress.com/88/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gofacebook/bamacharankundu.wordpress.com/88/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/facebook/bamacharankundu.wordpress.com/88/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gotwitter/bamacharankundu.wordpress.com/88/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/twitter/bamacharankundu.wordpress.com/88/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/bamacharankundu.wordpress.com/88/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/bamacharankundu.wordpress.com/88/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/bamacharankundu.wordpress.com/88/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/bamacharankundu.wordpress.com/88/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/bamacharankundu.wordpress.com/88/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/bamacharankundu.wordpress.com/88/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=bamacharankundu.wordpress.com&amp;blog=10164647&amp;post=88&amp;subd=bamacharankundu&amp;ref=&amp;feed=1&quot; width=&quot;1&quot; height=&quot;1&quot; /&gt;</description>
	<pubDate>Mon, 19 Jul 2010 09:33:04 +0000</pubDate>
</item>
<item>
	<title>Bamacharan Kundu: bamachrn</title>
	<guid>http://bamacharankundu.wordpress.com/?p=84</guid>
	<link>http://bamacharankundu.wordpress.com/2010/07/15/openzilla-a-apllication-for-maintaining-bugzilla-offline/</link>
	<description>&lt;p&gt;From the previous week I have got a idea about maintaining bugzilla in off-line and then synchronize it while being on-line. Actually the Idea was from Kushal Das, he first told me about it.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;What is Openzilla ?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt; It is a desktop application which will download the bugs in a user account. After that it will show them in a sorted manner. One can see the bugs in tag view, means one can see the bugs on the basis of fields which are there in the bugs. &lt;/p&gt;
&lt;p&gt;One can modify the bug field and create new bugs also. &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Why Openzilla?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;It seems that every one can not get on-line all the time. But if any one wants to maintain the bug reports it is almost impossible. Openzilla solve this problem in following way:&lt;br /&gt;
 1. It downloads the bugs with all details to local computer while user is on-line.&lt;br /&gt;
 2. For searching and viewing purpose it retrieves the data from the local pc.&lt;br /&gt;
 3. If any modification is needed then it also stores the modified values to local data.&lt;br /&gt;
4. If any one wants to create new bugs then he can do it while offline, all the data will be stored locally and if net is available data will be updated.&lt;/p&gt;
&lt;p&gt;This is the idea, I am trying to get this done &lt;img src=&quot;http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif&quot; alt=&quot;:)&quot; class=&quot;wp-smiley&quot; /&gt; &lt;/p&gt;
&lt;br /&gt;  &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/bamacharankundu.wordpress.com/84/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/bamacharankundu.wordpress.com/84/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/bamacharankundu.wordpress.com/84/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/bamacharankundu.wordpress.com/84/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gofacebook/bamacharankundu.wordpress.com/84/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/facebook/bamacharankundu.wordpress.com/84/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gotwitter/bamacharankundu.wordpress.com/84/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/twitter/bamacharankundu.wordpress.com/84/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/bamacharankundu.wordpress.com/84/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/bamacharankundu.wordpress.com/84/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/bamacharankundu.wordpress.com/84/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/bamacharankundu.wordpress.com/84/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/bamacharankundu.wordpress.com/84/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/bamacharankundu.wordpress.com/84/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=bamacharankundu.wordpress.com&amp;blog=10164647&amp;post=84&amp;subd=bamacharankundu&amp;ref=&amp;feed=1&quot; width=&quot;1&quot; height=&quot;1&quot; /&gt;</description>
	<pubDate>Thu, 15 Jul 2010 08:17:02 +0000</pubDate>
</item>
<item>
	<title>Kushal Das: More on thumbnailing and optimization</title>
	<guid>http://kushaldas.in/2010/07/09/more-on-thumbnailing-and-optimization/</guid>
	<link>http://kushaldas.in/2010/07/09/more-on-thumbnailing-and-optimization/</link>
	<description>&lt;p&gt;Following my last &lt;a href=&quot;http://kushaldas.in/2010/07/07/speed-vala-sqlite3-and-optimization/&quot;&gt;post&lt;/a&gt;, spent most of the of the time on different imaging libraries to find a faster way of doing thumbnails and optimization.&lt;/p&gt;
&lt;p&gt;I tested the following libraries to create image thumbnails, GdkPixbuf, imlib2, ImageMagic, epeg. Pixbuf gives somewhat  nice timings , imlib2 is fast but was leaking too much memory. ImageMagic seems to the slowest among them. Last try was with epeg which can only handle jpegs and it came out as the fastest. So wrote a C function and using it from inside vala code using &lt;strong&gt;extern&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;Next target was to find better way to get thumbnails from RAW images, tried libopenraw and LibRaw for that. But with help from yorba developers found the way to do it using gexiv2 only.&lt;/p&gt;
&lt;p&gt;In between tried few tools for profiling the application, sayamindu told me about sysprof which seems to be the easiest for my purpose. Using it I found &lt;i&gt;gexiv2_metadata_open_path&lt;/i&gt; is taking around 67% of time, inside it  &lt;i&gt;Exiv2::TiffImage:readMetaData&lt;/i&gt; is taking 51% of time.&lt;/p&gt;
&lt;p&gt;Now coming to the point of speed , 1st run is on 1GB of RAW files&lt;/p&gt;
&lt;pre&gt;
real	0m2.946s
user	0m2.542s
sys	0m0.116s
&lt;/pre&gt;
&lt;p&gt;2nd run is on same 36GB of images , among them around half is RAW.&lt;/p&gt;
&lt;pre&gt;
real	4m0.807s
user	0m54.283s
sys	1m24.789s
&lt;/pre&gt;
&lt;p&gt;Now this is &lt;strong&gt;fast&lt;/strong&gt; in my textbook :D I should not forget to tell about the great help I got from #vala and  &lt;a href=&quot;http://blogs.gnome.org/abustany&quot;&gt;Adrien Bustany&lt;/a&gt; in the whole work.&lt;/p&gt;</description>
	<pubDate>Thu, 08 Jul 2010 20:42:43 +0000</pubDate>
</item>
<item>
	<title>Kushal Das: Speed , Vala, Sqlite3 and optimization</title>
	<guid>http://kushaldas.in/2010/07/07/speed-vala-sqlite3-and-optimization/</guid>
	<link>http://kushaldas.in/2010/07/07/speed-vala-sqlite3-and-optimization/</link>
	<description>&lt;p&gt;All started as just another stupid idea, writing an image indexer (reinventing the wheel ). &amp;nbsp;The code should do the following things:
&lt;div&gt;
&lt;ul&gt;
&lt;li&gt;Index images for any given folder with user provided tags&lt;/li&gt;
&lt;li&gt;Extract and keep &lt;a href=&quot;http://en.wikipedia.org/wiki/Exchangeable_image_file_format&quot;&gt;EXIF&lt;/a&gt; information from the files&lt;/li&gt;
&lt;li&gt;Extract or generate image thumbnails for all files&lt;/li&gt;
&lt;li&gt;Should be able to provide the thumbnail even if the original file is missing (may be in a usb hdd)&lt;/li&gt;
&lt;/ul&gt;
&lt;div&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;Wrote some test code to see how much time it takes to do the above for a folder with 36GB+ in size and 5044 images (both JPEG and NEF )&amp;nbsp;&lt;/div&gt;
&lt;p&gt;1st run &lt;/p&gt;
&lt;pre&gt;
real 30m39.178s
user 0m45.561s
sys 3m42.557s
&lt;/pre&gt;
&lt;p&gt;2nd run with out thumbnail generation but with EXIF information&lt;/p&gt;
&lt;pre&gt;
real 10m14.281s
user 0m58.208s
sys 0m45.969s
&lt;/pre&gt;
&lt;p&gt;3rd run with out thumbnail generation and with out EXIF information&lt;/p&gt;
&lt;pre&gt;
real 14m40.503s
user 0m1.585s
sys 0m7.535s
&lt;/pre&gt;
&lt;p&gt;Here I am confused, managed to find out that transaction in sqlite can cause delay, so changed the code to do everything in single transaction&lt;br /&gt;
4th run with out thumbnail generation and with out EXIF information&lt;/p&gt;
&lt;pre&gt;
real 0m1.032s
user 0m0.216s
sys 0m0.134s
&lt;/pre&gt;
&lt;p&gt;5th run with out thumbnail generation but with EXIF information&lt;/p&gt;
&lt;pre&gt;
real 3m1.191s
user 1m2.525s
sys 0m34.524s
&lt;/pre&gt;
&lt;p&gt;6th run with everything &lt;/p&gt;
&lt;pre&gt;
real 16m47.241s
user 0m43.652s
sys 3m21.640s
&lt;/pre&gt;
&lt;p&gt;So the major bottleneck is thumbnail generation, which I am currently doing Gdk.Pixbuf , for EXIF information I am using beautiful &lt;a href=&quot;http://trac.yorba.org/wiki/gexiv2&quot;&gt;gexiv2&lt;/a&gt; from awesome yorba guys.&lt;/p&gt;&lt;/p&gt;
&lt;div&gt;Now to optimize I have to use some other library to generate thumbnails, &lt;b&gt;which other libraries I can use ?&lt;/b&gt;&lt;/div&gt;
&lt;div&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div&gt;On the side note, I am not saving the thumbnails on disk but creating base64 encoded strings of them (I know I am bad, not following the thumbnail spec).&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;</description>
	<pubDate>Wed, 07 Jul 2010 13:07:50 +0000</pubDate>
</item>
<item>
	<title>Atul Chitnis: The Wind of Change – Part IV</title>
	<guid>http://atulchitnis.net/?p=2804</guid>
	<link>http://atulchitnis.net/2010/the-wind-of-change-part-iv/</link>
	<description>&lt;p&gt;&lt;a href=&quot;http://www.freedigitalphotos.net/images/view_photog.php?photogid=503&quot;&gt;&lt;img class=&quot;size-thumbnail wp-image-2810 alignright&quot; title=&quot;Image Credit: Tina Phillips / FreeDigitalPhotos.net&quot; src=&quot;http://atulchitnis.net/wp-content/uploads/2010/07/photo_6022_20090427-150x150.jpg&quot; alt=&quot;Image Credit: Tina Phillips / FreeDigitalPhotos.net&quot; width=&quot;150&quot; height=&quot;150&quot; /&gt;&lt;/a&gt;Long time readers of my diary will know that the title of this post is usually associated with my professional activities. And this one is no different.&lt;/p&gt;
&lt;p&gt;I left  my 4 year old position as Chief Products Officer and Senior VP at Geodesic Limited several months ago – April 30th 2010 was my last working day at Geodesic.&lt;/p&gt;
&lt;p&gt;I chose not to make that public till now because I wanted to have a few months free of distractions while I went through the massive exercise of completing the construction of my house, and moving there. This is now complete, and I am writing this from my office in my new home. (More on home related matters in a separate post).&lt;/p&gt;
&lt;p&gt;&lt;span id=&quot;more-2804&quot;&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;To quickly answer the obvious questions:&lt;/p&gt;
&lt;p&gt;I left Geodesic because I felt that there was nothing left to accomplish in the capacity that I was working there, as the direction of the company was changing away from what I had joined it for, back in 2006.&lt;/p&gt;
&lt;p&gt;I learnt a lot at Geodesic, streamlined operations (product  development, information systems, etc.), worked with some really great  people, and guided the development and launch of some great products (including the &lt;a href=&quot;http://mundu.com&quot;&gt;Mundu&lt;/a&gt; and &lt;a href=&quot;http://spokn.com&quot;&gt;Spokn&lt;/a&gt; range of products), on new platforms (including the Apple&amp;#8217;s iPhone OS and HP/Palm&amp;#8217;s webOS).&lt;/p&gt;
&lt;p&gt;But I was getting edgy after working at Geodesic for four years. Being in a corporate environment after more than 20 years of being my own master (I was told by some people that I wouldn’t last 3 months – I lasted 4 years &lt;img src=&quot;http://atulchitnis.net/wp-includes/images/smilies/icon_smile.gif&quot; alt=&quot;:)&quot; class=&quot;wp-smiley&quot; /&gt;  ) has its advantages and challenges, but it was time to move on. Also, I really wanted to focus on things that interested me.&lt;/p&gt;
&lt;p&gt;So what’s next for me?&lt;/p&gt;
&lt;p&gt;Obviously, with my kind of background, I have an embarrassment of options, but I will talk about these in detail in later posts.&lt;/p&gt;
&lt;p&gt;But you can be sure that they all involve products &amp;#8211; I am brimming with product ideas, and  I love working with small, tight, passionate and committed teams, directly involved in the the actual development of products that addressed my focus for the future – &lt;em&gt;&lt;strong&gt;The Next Billion Users&lt;/strong&gt;&lt;/em&gt; – which I have been speaking about publicly for many years.&lt;/p&gt;
&lt;p&gt;I will be writing again as well &amp;#8211; something that had almost completely died in the past few years. And I will be on the road again soon, speaking to people about things I am passionate about (including mobile products, Free &amp;amp; Open Source Software, technology directions, etc.).&lt;/p&gt;
&lt;p&gt;And I look forward to getting involved with the music and entertainment side of my life again. Some of my projects have kind of stalled, and need rebooting, others haven&amp;#8217;t been getting the attention they deserve. All need addressing.&lt;/p&gt;
&lt;p&gt;Anyway, beginning next week, I will be responding to a number of organisations who have been in touch. I will also start consulting on a variety of subjects.&lt;/p&gt;
&lt;p&gt;If you want to talk to me, read up on my &lt;a href=&quot;http://www.linkedin.com/in/achitnis&quot;&gt;Linkedin Profile&lt;/a&gt;, and &lt;a href=&quot;http://atulchitnis.net/contact&quot;&gt;get in touch&lt;/a&gt;!&lt;/p&gt;
&lt;p&gt;No matter what I choose to do &amp;#8211; I look forward to the opportunities and fun waiting for me (and people working with me).&lt;/p&gt;
&lt;p&gt;Wish me luck!&lt;/p&gt;
&lt;p&gt;&lt;em&gt;(Yes, I know that this post leaves a lot of  questions unanswered &amp;#8211; including questions about &lt;a href=&quot;http://foss.in&quot;&gt;FOSS.IN&lt;/a&gt; and related activities. Patience &amp;#8211; all will become clear in upcoming posts. Keep watching this  blog, and my posts on &lt;a href=&quot;http://twitter.com/achitnis&quot;&gt;Twitter&lt;/a&gt;)&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;em&gt;&amp;#8220;Find a job you love, and you will never have to work again in your life &amp;#8212; Confucius&amp;#8221;&lt;/em&gt;&lt;/strong&gt;&lt;br /&gt;
&lt;small&gt;&lt;em&gt;&lt;a href=&quot;http://www.freedigitalphotos.net/images/view_photog.php?photogid=503&quot;&gt;Image Credit: Tina Phillips / FreeDigitalPhotos.net&lt;/a&gt;&lt;/em&gt;&lt;/small&gt;&lt;/p&gt;</description>
	<pubDate>Wed, 07 Jul 2010 06:21:54 +0000</pubDate>
</item>
<item>
	<title>Samarjit Adhikari: @breakfast</title>
	<guid>tag:blogger.com,1999:blog-6411097809111611127.post-294885806201499779</guid>
	<link>http://samarjitadhikari.blogspot.com/2010/07/breakfast.html</link>
	<description>&lt;div&gt;It is Monday morning and a holiday. I got up early and was planning for breakfast. As you all know these are very difficult job for a bachelor. :-( The popular breakfast here is idly,Vara and Dhosa which i don't like always. I looked for some interesting breakfast. But what to do? Ok, lets try it. I went to some fruits shop, brought mango/apple/pomegranate then looked for brown bread and then Boost (the secret of my energy). I went back to home and started the real job of preparing the breakfast.(A tough job indeed :-( ). Now have a look how i prepared &lt;b&gt;the &lt;/b&gt;breakfast.&lt;/div&gt;&lt;br /&gt;&lt;a href=&quot;http://1.bp.blogspot.com/_ARZWBWkCyL4/TDFz1ZVEXgI/AAAAAAAABVo/-6WzuyKET8A/s1600/%40breakfast3.jpg&quot;&gt;&lt;img src=&quot;http://1.bp.blogspot.com/_ARZWBWkCyL4/TDFz1ZVEXgI/AAAAAAAABVo/-6WzuyKET8A/s320/%40breakfast3.jpg&quot; border=&quot;0&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5490296781910859266&quot; /&gt;&lt;/a&gt;&lt;a href=&quot;http://4.bp.blogspot.com/_ARZWBWkCyL4/TDFtr5s5REI/AAAAAAAABVg/SBT1PPspYFI/s1600/%40breakfast1.jpg&quot;&gt;&lt;img src=&quot;http://4.bp.blogspot.com/_ARZWBWkCyL4/TDFtr5s5REI/AAAAAAAABVg/SBT1PPspYFI/s320/%40breakfast1.jpg&quot; border=&quot;0&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5490290021732271170&quot; /&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/a&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;img width=&quot;1&quot; height=&quot;1&quot; src=&quot;https://blogger.googleusercontent.com/tracker/6411097809111611127-294885806201499779?l=samarjitadhikari.blogspot.com&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;</description>
	<pubDate>Mon, 05 Jul 2010 00:24:21 +0000</pubDate>
	<author>noreply@blogger.com (Samar)</author>
</item>
<item>
	<title>Bamacharan Kundu: bamachrn</title>
	<guid>http://bamacharankundu.wordpress.com/?p=79</guid>
	<link>http://bamacharankundu.wordpress.com/2010/06/30/installing-all-packages-of-fedora-13-from-iso/</link>
	<description>&lt;p&gt;I got a netbook without DVD drive. For installing Fedora 13 in my box,  I installed the fedora 13 live from a USB device, which was created by liveusb-creator. So I did not get the packages from that live usb. After that I got a fedora13 iso. from there installed all the packages by-default available in the dvd. For that purpose I followed the following steps:&lt;/p&gt;
&lt;p&gt;first mount the iso in some where in the file system (I mounted to /mnt) by&lt;/p&gt;
&lt;p&gt;$su -&lt;/p&gt;
&lt;p&gt;passwd:&lt;/p&gt;
&lt;p&gt;#mount -o loop /path/to/Fedora13.iso /mnt/&lt;/p&gt;
&lt;p&gt;then copy the media repo to the yum.repos.d/ folder by&lt;/p&gt;
&lt;p&gt;#cp /mnt/media.repo  /etc/yum.repos.d/&lt;/p&gt;
&lt;p&gt;then edit the base url of the media.repo to the current the url where the iso is mounted&lt;/p&gt;
&lt;p&gt;#gedit /etc/yum.repos.d/media.repo&lt;/p&gt;
&lt;p&gt;add one line to the media.repo&lt;/p&gt;
&lt;p&gt;baseurl = file:///mnt&lt;/p&gt;
&lt;p&gt;Change the directory to the Package&lt;/p&gt;
&lt;p&gt;#cd /mnt/Package/&lt;/p&gt;
&lt;p&gt;now install the packages you need from the DVD by just doing&lt;/p&gt;
&lt;p&gt;#yum install &amp;#8211;disablerepo=*  &amp;#8211;enablerepo=InstallMedia packagename&lt;/p&gt;
&lt;p&gt;in my case I installed all the packages by doing&lt;/p&gt;
&lt;p&gt;#yum install &amp;#8211;disablerepo=* &amp;#8211;enablerepo=InstallMedia *&lt;/p&gt;
&lt;p&gt;#&lt;/p&gt;
&lt;p&gt;then unmount the iso&lt;/p&gt;
&lt;p&gt;#umount /mnt&lt;/p&gt;
&lt;p&gt;for reference I took the help of $man mount and $man yum&lt;/p&gt;
&lt;p&gt;have a try &lt;img src=&quot;http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif&quot; alt=&quot;:-)&quot; class=&quot;wp-smiley&quot; /&gt; &lt;/p&gt;
&lt;br /&gt;  &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/bamacharankundu.wordpress.com/79/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/bamacharankundu.wordpress.com/79/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/bamacharankundu.wordpress.com/79/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/bamacharankundu.wordpress.com/79/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gofacebook/bamacharankundu.wordpress.com/79/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/facebook/bamacharankundu.wordpress.com/79/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gotwitter/bamacharankundu.wordpress.com/79/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/twitter/bamacharankundu.wordpress.com/79/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/bamacharankundu.wordpress.com/79/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/bamacharankundu.wordpress.com/79/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/bamacharankundu.wordpress.com/79/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/bamacharankundu.wordpress.com/79/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/bamacharankundu.wordpress.com/79/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/bamacharankundu.wordpress.com/79/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=bamacharankundu.wordpress.com&amp;blog=10164647&amp;post=79&amp;subd=bamacharankundu&amp;ref=&amp;feed=1&quot; width=&quot;1&quot; height=&quot;1&quot; /&gt;</description>
	<pubDate>Wed, 30 Jun 2010 13:28:45 +0000</pubDate>
</item>
<item>
	<title>Atul Chitnis: And the blog is back…</title>
	<guid>http://atulchitnis.net/?p=2787</guid>
	<link>http://atulchitnis.net/2010/and-the-blog-is-back/</link>
	<description>&lt;p&gt;And the blog is back &amp;#8211; duly &lt;a href=&quot;http://wordpress.org&quot;&gt;WordPress&lt;/a&gt;&amp;#8216;ed. There are still a bunch of things I need to port across, but that&amp;#8217;s what I am working on right now. Things should stabilise over the weekend.&lt;/p&gt;
&lt;p&gt;For now, I am using the default TwentyTen theme that comes with WordPress, but that should change soon. Also, until I stabilise the setup, I am keeping comments disabled &amp;#8211; use the &lt;a href=&quot;http://atulchitnis.net/contact&quot;&gt;Contact Form&lt;/a&gt; to send me a message if needed.&lt;/p&gt;</description>
	<pubDate>Sat, 26 Jun 2010 05:48:45 +0000</pubDate>
</item>
<item>
	<title>Sankarshan Mukhopadhyay: A question, a survey, a conversation and some feedback</title>
	<guid>http://sankarshan.randomink.org/blog/2010/06/25/a-question-a-survey-a-conversation-and-some-feedback/</guid>
	<link>http://sankarshan.randomink.org/blog/2010/06/25/a-question-a-survey-a-conversation-and-some-feedback/</link>
	<description>&lt;p&gt;During the recent elections Richard Stallman had a &lt;a href=&quot;http://mail.gnome.org/archives/foundation-list/2010-June/msg00023.html&quot;&gt;specific question&lt;/a&gt; for the candidates. Copying from the archives, here&amp;#8217;s the question:&lt;/p&gt;
&lt;blockquote&gt;&lt;div id=&quot;_mcePaste&quot;&gt;Here is a question for the candidates.&lt;/div&gt;
&lt;div id=&quot;_mcePaste&quot;&gt;To advance to the goal of freedom for software users, we need to develop good free software, and we need to teach people to value and demand the freedom that free software offers them. We need to advance at the practical level and at the philosophical level.&lt;/div&gt;
&lt;div&gt;GNOME is good free software, and thus contributes at the practical level. How will candidates use the user community&amp;#8217;s awareness of GNOME to contribute to educating the communityn about freedom?&lt;/div&gt;
&lt;/blockquote&gt;
&lt;div&gt;At a stretch the question is similar in theme to the questions/concerns around GNOME and Free Software ideals that come up from time to time. I recall reading similar questions during earlier elections and, it isn&amp;#8217;t specifically new or, something that has come out of the blue.&lt;/div&gt;
&lt;div&gt;I came to know of the &lt;a href=&quot;http://www.surveymonkey.com/s/HQGY6TJ&quot;&gt;survey&lt;/a&gt; when I read the&lt;a href=&quot;http://identi.ca/notice/37183046&quot;&gt; micro-blog&lt;/a&gt; from &lt;a href=&quot;http://identi.ca/lefty&quot;&gt;Lefty&lt;/a&gt;. And, then we had a bit of &lt;a href=&quot;http://identi.ca/conversation/36968024#notice-37183508&quot;&gt;conversation&lt;/a&gt;.&lt;/div&gt;
&lt;div&gt;Personally, I don&amp;#8217;t feel comfortable about the survey.&lt;/div&gt;
&lt;div&gt;The line of reasoning is as follows &amp;#8211; as a member of the GNOME Foundation one has the right to express one&amp;#8217;s opinion about the direction and focus of the Foundation by supporting the appropriate (set of) candidate(s). From the perspective of a Foundation it is perfectly valid to focus on areas which are aligned with the very reason for the Foundation and the project to exist. In fact, focussing only on those areas wouldn&amp;#8217;t and shouldn&amp;#8217;t be taken amiss. In short, the Foundation can choose to exercise what it should work on in the near or long term future or, it shouldn&amp;#8217;t. As long as such goals and tasks do not appear to be detrimental to the cause of Free and Open Source Software things should work out nicely.&lt;/div&gt;
&lt;div&gt;I hasten to add that similar should be the focus of the Free Software Foundation as well. The survey attempts to somewhat codify this implicit responsibility areas and, I do get the feeling that the specific question&lt;/div&gt;
&lt;blockquote&gt;&lt;div&gt;&amp;#8220;In what way would you ordinarily refer to &amp;#8220;an operating system based on a Linux kernel and using mainstream, mainly community-developed components and applications&amp;#8221;? (Distributions representing such include Debian, Gentoo, Fedora, Open SuSE, etc. Android does not qualify, nor does WebOS, etc.)&amp;#8221;&lt;/div&gt;
&lt;/blockquote&gt;
&lt;div&gt;is implicitly divisive. An &amp;#8220;us/them&amp;#8221; meme that has been festering on the foundation-list for a while now.&lt;/div&gt;
&lt;div&gt;I did not participate in the survey. I don&amp;#8217;t want to. I&amp;#8217;d rather like GNOME to focus on being an excellent desktop environment with strong technical and technology focus going back to the times when I started using it as my primary desktop. The Board needs to work out its focus and, work on the project&amp;#8217;s future with much more rigor than it does now. To me the survey is just a passing distraction. Mildly entertaining but probably not productive.&lt;/div&gt;</description>
	<pubDate>Fri, 25 Jun 2010 09:52:22 +0000</pubDate>
</item>
<item>
	<title>Kushal Das: lekhonee-gnome 0.11 released</title>
	<guid>http://kushaldas.in/2010/06/24/lekhonee-gnome-0-11-released/</guid>
	<link>http://kushaldas.in/2010/06/24/lekhonee-gnome-0-11-released/</link>
	<description>&lt;p&gt;I just released lekhonee-gnome 0.11, you can download the source from &lt;a href=&quot;https://fedorahosted.org/releases/l/e/lekhonee/lekhonee-gnome-0.11.tar.bz2&quot;&gt;here&lt;/a&gt;, a yum repo for Fedora 13 can be found &lt;a href=&quot;http://kushal.fedorapeople.org/kushal.repo&quot;&gt;here&lt;/a&gt;.
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;Release Details:&lt;/div&gt;
&lt;div&gt;
&lt;ul&gt;
&lt;li&gt;Add new category button is re-enabled and it works :p&lt;/li&gt;
&lt;li&gt;Updated translations&lt;/li&gt;
&lt;li&gt;About dialog bug fixed&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;&lt;/p&gt;</description>
	<pubDate>Thu, 24 Jun 2010 10:28:18 +0000</pubDate>
</item>
<item>
	<title>Arun Sag: sagarun</title>
	<guid>http://arunsag.wordpress.com/?p=153</guid>
	<link>http://arunsag.wordpress.com/2010/06/22/new-fedora-remix-tamilan-now-available/</link>
	<description>&lt;p&gt;I &lt;a href=&quot;http://lists.fedoraproject.org/pipermail/tamil-users/2010-June/000002.html&quot;&gt;volunteered &lt;/a&gt;myself for creating a &lt;a href=&quot;http://en.wikipedia.org/wiki/Tamil_language&quot;&gt;Tamil &lt;/a&gt;remix of Fedora for the on going &lt;a href=&quot;http://www.infitt.org/ti2010/&quot;&gt;Tamil Internet conference&lt;/a&gt;. &lt;/p&gt;
&lt;p&gt;The Live DVD is now available for &lt;a href=&quot;http://psgkriya.org/saga/Tamilan-Fedora-Remix/&quot;&gt;download&lt;/a&gt;. It is named as Tamilan (meaning: person who speaks Tamil) . The default language is set to Tamil. You can switch to English if you want to.&lt;/p&gt;
&lt;p&gt;The  DVD includes (1.6 Gb)&lt;/p&gt;
&lt;p&gt;1. KDE 4.4.4 (latest stable bug fix release)&lt;br /&gt;
2. Firefox, konqueror&lt;br /&gt;
3. Multimedia playback support&lt;br /&gt;
4. Pidgin,Transmission,Tucan, Pitivi video editor,Miro ,choqok Micro-blogging application.&lt;br /&gt;
5. Inkscape , GIMP&lt;br /&gt;
6. VLC player&lt;br /&gt;
7. Cheese&lt;br /&gt;
8. IBus Input method&lt;br /&gt;
9. Rpmfusion,livna,adobe flash (sigh) repositories are enabled by default.&lt;br /&gt;
10. Updates upto june 20,2010&lt;br /&gt;
11. GNU/Linux advocacy/philosophical videos.&lt;/p&gt;
&lt;p&gt;The DVD will be used to demonstrate support for localization which exists in GNU/Linux Desktop. Fedora doesn&amp;#8217;t include Tamil support for KDE by default (it&amp;#8217;s incomplete, will be completed soon) , so we compiled the translation files into rpm and included it in the remix.  &lt;/p&gt;
&lt;p&gt;The DVD can be downloaded from : &lt;a href=&quot;http://psgkriya.org/saga/Tamilan-Fedora-Remix/&quot;&gt;http://psgkriya.org/saga/Tamilan-Fedora-Remix/&lt;/a&gt;&lt;br /&gt;
Kickstart file can be downloaded from : &lt;a href=&quot;http://psgkriya.org/saga/Tamilan-Fedora-Remix/tamilan.ks&quot;&gt;http://psgkriya.org/saga/Tamilan-Fedora-Remix/tamilan.ks&lt;br /&gt;
&lt;/a&gt;&lt;br /&gt;
Many thanks to &lt;a href=&quot;http://fedoraproject.org/wiki/RahulSundaram&quot;&gt;Rahul Sundaram&lt;/a&gt; and &lt;a href=&quot;https://fedoraproject.org/wiki/User:Hiemanshu&quot;&gt;Hiemanshu sharma&lt;/a&gt; for their timely help, &lt;a href=&quot;http://hack4geek.wordpress.com/&quot;&gt;Yuvraj &lt;/a&gt;for the hosting &amp;amp; bandwidth and &lt;a href=&quot;http://amachu.net/enblog&quot;&gt;amachu &lt;/a&gt;for the motivation &amp;amp; support.&lt;/p&gt;
&lt;br /&gt;  &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/arunsag.wordpress.com/153/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/arunsag.wordpress.com/153/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/arunsag.wordpress.com/153/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/arunsag.wordpress.com/153/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gofacebook/arunsag.wordpress.com/153/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/facebook/arunsag.wordpress.com/153/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gotwitter/arunsag.wordpress.com/153/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/twitter/arunsag.wordpress.com/153/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/arunsag.wordpress.com/153/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/arunsag.wordpress.com/153/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/arunsag.wordpress.com/153/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/arunsag.wordpress.com/153/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/arunsag.wordpress.com/153/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/arunsag.wordpress.com/153/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=arunsag.wordpress.com&amp;blog=10858038&amp;post=153&amp;subd=arunsag&amp;ref=&amp;feed=1&quot; /&gt;</description>
	<pubDate>Tue, 22 Jun 2010 09:27:49 +0000</pubDate>
</item>
<item>
	<title>Sankarshan Mukhopadhyay: Or, where we talk about digital future of the Bengali language</title>
	<guid>http://sankarshan.randomink.org/blog/?p=670</guid>
	<link>http://sankarshan.randomink.org/blog/2010/06/21/or-where-we-talk-about-digital-future-of-the-bengali-language/</link>
	<description>&lt;p&gt;&lt;a href=&quot;http://abp.in/index.php&quot;&gt;ABP Pvt Ltd&lt;/a&gt; has a history that goes back to 1922. &lt;/p&gt;
&lt;p&gt;From &lt;a href=&quot;http://abp.in/index.php?show=2001&quot;&gt;the website&lt;/a&gt;&lt;/p&gt;
&lt;p&gt; &lt;em&gt;&amp;#8220;In 1922, Anandabazar Patrika first came out as a four-page evening daily that sold at two paise and had a circulation of about 1,000 copies a day. Eighty-five years later, Anandabazar Patrika reaches out to over seven million readers, every day!&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;Today, the ABP Group has evolved into a media conglomerate that has eleven premier publications, three 24-hour national TV news channels, two leading book publishing businesses as well as mobile and internet properties. Touching the lives of millions of readers and viewers, daily.&lt;/p&gt;
&lt;p&gt;We believe the legacy you leave, is the life you lead. We see ourselves as repositories of best practices and processes. And, at times, when we don’t have the very best within, we open windows to look out for expertise. Not surprisingly, ABP is associated with companies and personalities revered across the world.&lt;/p&gt;
&lt;p&gt;In the world of journalism, we are not just a media house. We are really an alma mater.&lt;/p&gt;&amp;#8221;
&lt;p&gt;Given the reach of the group and, the important role it plays in giving shape, form and direction to the literary content that is produced from Bengal, it is not too much to expect them to be at the forefront of technology when it comes to news and content published electronically. The association with Ananda Publishers, which publishes books from a variety of authors for a consumer base that spans ages, it is not too hard to anticipate that they will be heralding change and, changing for the better.&lt;/p&gt;
&lt;p&gt;Unfortunately, when it comes to Bengali/Bangla and digital standards, the group is one of the laggards since they stick to an antique non-standard technology. In short, it is surprising that they are yet to think over adopting Unicode as a part of their online version. &lt;/p&gt;
&lt;p&gt;This lack of interest in adopting Unicode has created an unique situation. The digital content published by the ABP group requires extremely unorthodox parser development to be encoded into Unicode and, used in any form of language study. The inability to be able to easily use the corpus is all the more important from the perspective of being able to extensively use Bengali/Bangla in the digital domain. Additionally, while browsers have demonstrated improved support for Unicode, the online content, including the shopping cart of Ananda Publishers, are unfit to be rendered on such browsers. Stop here for a moment and imagine a plethora of mobile and portable devices which may have extensive support for Bengali/Bangla at the user-interface level, the ability to input, print and render Bengali/Bangla but, would be unable to work with the content provided by the &lt;a href=&quot;http://en.wikipedia.org/wiki/Anandabazar&quot;&gt;most circulated Bengali newspaper in India&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;A group of folks led by Golam M Hossain have devised a &lt;a href=&quot;http://anandabazar-unicode.appspot.com/&quot;&gt;prototype of an Unicode Proxy for Anandabazar Patrika&lt;/a&gt;. The attempt is not aimed at facilitating the reading of the newspaper, that is a happy collateral. The experiment is focused on demonstrating that it may not be difficult for Anandabazar to adopt Unicode.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://anandabazar-unicode.appspot.com/&quot;&gt;Please read this page&lt;/a&gt; and if you desire to support it, write in with your name and affiliation to support the petition. If you know someone at ABP/Anandabazar who would be interested in a discussion, it would be good to get a conversation going.&lt;/p&gt;</description>
	<pubDate>Mon, 21 Jun 2010 09:33:58 +0000</pubDate>
</item>
<item>
	<title>Kushal Das: How to use lekhonee-gnome for multiple blogs with the same wordpress account ?</title>
	<guid>http://kushaldas.in/2010/06/11/how-to-use-lekhonee-gnome-for-multiple-blogs-with-the-same-wordpress-account/</guid>
	<link>http://kushaldas.in/2010/06/11/how-to-use-lekhonee-gnome-for-multiple-blogs-with-the-same-wordpress-account/</link>
	<description>&lt;p&gt;I was looking into this feature request yesterday, good news is lekhonee-gnome already supports this. Lets say your wordpress username is &lt;i&gt;foobar&lt;/i&gt;.
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;So, in the accounts in Preferences window you add the first account with your username and password and &lt;i&gt;Wordpress&lt;/i&gt;&amp;nbsp;as service.&amp;nbsp;&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;Then add another account with same username and password but service as &lt;i&gt;other&lt;/i&gt; and type the full url of your 2nd blog following /xmlrpc.php (example: http://secondblog.wordpress.org/xmlrpc.php).&amp;nbsp;&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;Now you can access both the blogs from lekhonee-gnome&lt;/div&gt;&lt;/p&gt;</description>
	<pubDate>Fri, 11 Jun 2010 10:23:06 +0000</pubDate>
</item>
<item>
	<title>Kenneth Gonsalves: billdesk scamsters?</title>
	<guid>http://lawgon.livejournal.com/79547.html</guid>
	<link>http://lawgon.livejournal.com/79547.html</link>
	<description>I recently had to make an urgent journey - so I booked tickets by 2 different trains - when the waiting list did not clear, I also booked tatkal. 3 or 4 of the bookings ended in failed transaction - billdesk deducted the money from my bank account - but did not credit it to the railways. Then I tried air - two attempts, both times money left my account, but billdesk did not credit it to the booking site. Net result: about 12K rupees left my account and is sitting with billdesk. After lots of emails, all parties agree that I have paid the money, that the transactions have failed and that I should get my money back. Now they say 7-8 business days. Obviously there is some scam here - why should a refund take more than a few seconds when the transaction has failed? They are probably earning lakhs in interest from the money they are holding in this way.</description>
	<pubDate>Wed, 09 Jun 2010 10:22:31 +0000</pubDate>
</item>
<item>
	<title>Samarjit Adhikari: A thought on Relationship</title>
	<guid>tag:blogger.com,1999:blog-6411097809111611127.post-4750918208530621418</guid>
	<link>http://samarjitadhikari.blogspot.com/2010/06/thought-on-relationship.html</link>
	<description>&lt;div&gt;I love you.&lt;/div&gt;&lt;div&gt;I love you..&lt;/div&gt;&lt;div&gt;I love you...&lt;/div&gt;&lt;div&gt;.. hey man ! wait wait. I am not proposing anyone through my blog. (Really?)&lt;/div&gt;&lt;div&gt;Rather it is the most frequent sentence used among teenagers in India.These words are primary steps to start any interesting relation ;-).&lt;/div&gt;&lt;div&gt;let's dig into this relationship chapter.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;[Story 1]&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;First day of XYZ collage of Engineering. (Math classroom)&lt;/div&gt;&lt;div&gt;All good looking girls sat in first few chairs and all guys were back bench er.&lt;/div&gt;&lt;div&gt;A teacher came and started the theory of probability. As you know the theory of probability has always probability of understanding.Very few understood the theory. At the end of the class everybody started moving to corridor for next class. Suddenly some voice was heard. &quot;Hey Sidhardh! do you have notes on the probability? Do you help me to understand it&quot;. A guy fell back from the group, waiting for the source of voice. &lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;After few days the couple find their recognition in college. :-)&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;[Story 2]&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;First day in office. Breakfast time. There was long queue in front of the breakfast counter.&lt;/div&gt;&lt;div&gt;A guy, standing in the queue, looking at someone, made a comment. &quot;These guys are delaying too much to wait. We should complain to higher authority.&quot; The reply came &quot;Certainly. We should complain it. Do you know the contact number?&quot;. Conversation started...&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;After few years later, common friends find them as married couple.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;There are lot of incidents through which people choose their life partners. To find life partner, the sentence &quot;I love you&quot; plays an important role and thus the &quot;Love Marriage&quot; signed it's signature.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;People who did love marriage gives lots of arguments. Lets listen some of them.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&quot;In love marriage, you can judge a person over a period time. How could you get married to someone whom you don't know. You can't take life long decision in just few hours.&quot;&lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;div&gt;&quot;Love marriage is sooooooo sweet. Everyone should do Love Marriage!&quot;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&quot;Love is the strongest sentiment that keeps you young in your relationship. Love marriage is the best thing in this world!&quot;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&quot;We live in 21st century. We should have freedom to choose our own destiny and Love Marriage is part of it.&quot;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;OK, friends. Lets do an open heart surgery of &quot;Love Marriage&quot; and &quot;Arrange Marriage&quot;.&lt;/div&gt;&lt;div&gt;Marriage is an event to start a new relationship.Did you ever think about why most of us expect the marriage to be a memorable one? Can anybody thought of his or her marriage to be a silent simple court registration? It does not matter whether it is a &quot;Love Marriage&quot; or &quot;Arranged Marriage&quot;.The answer would be 'NO'.&lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;div&gt;Some people would say ! &quot;Hey stupid. Didn't you heard of Living together in 21st century?&quot;&lt;/div&gt;&lt;div&gt;My answer would be &quot;Hey dude! do you know the difference between Living together and a Marriage?&quot;&lt;/div&gt;&lt;div&gt;You would say &quot;Live-together is a modernize concept. If you like someone, start living with him/her. No need to do marriage. If you don't like him/her .. just leave him. No legal botheration. It is a concept from West and we can learn a lot from them.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Well friend! whatever you told is correct. It is human-mind generated. Let's looks at it from a different angle. Like in &quot;Love Marriage&quot; a couple is known to each other in living-together relationship.&lt;/div&gt;&lt;div&gt;One can admit that it is not possible to know 100% of a person in just a 4/5 years of relationship. Thus any wrong thing could happen after the marriage as well. Here 'Living relationship' comes into rescue. Here you can leave the partner. If it doesn't happen then you can live happily with your partner like in Marriages(Doesn't matter if it is a Arrange Marriage or Love Marriage)  &lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Thus an event of marriage has a social touch along with legal one. If some misunderstanding happen after marriage it is the social and legal bond that make you compel to adjust with the situation and will taught you&lt;/div&gt;&lt;div&gt;the biggest lesson of life &quot;You could not get whatever you expect.&quot; This lesson couldn't be taught in &quot;Living relationship&quot;, thus making the divorce rate high.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;So friends in &quot;Love Marriage&quot; you could know a person before marriage but could only understand him/her after marriage and thus it is not a different from arrange marriage .. where we start from ;-)&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;[Disclaimer: It is just a thought. It is not for the purpose to heart anyone]&lt;/div&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;img width=&quot;1&quot; height=&quot;1&quot; src=&quot;https://blogger.googleusercontent.com/tracker/6411097809111611127-4750918208530621418?l=samarjitadhikari.blogspot.com&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;</description>
	<pubDate>Wed, 09 Jun 2010 07:58:11 +0000</pubDate>
	<author>noreply@blogger.com (Samar)</author>
</item>
<item>
	<title>Kushal Das: Yet another Sunset in Pune</title>
	<guid>http://kushaldas.in/2010/06/08/yet-another-sunset-in-pune/</guid>
	<link>http://kushaldas.in/2010/06/08/yet-another-sunset-in-pune/</link>
	<description>&lt;p&gt;&lt;a href=&quot;http://www.flickr.com/photos/kushaldas/4679562439/&quot; title=&quot;Yet another sunset in Pune by Kushal Das, on Flickr&quot;&gt;&lt;img src=&quot;http://farm5.static.flickr.com/4003/4679562439_e8509d69f3.jpg&quot; width=&quot;334&quot; height=&quot;500&quot; alt=&quot;Yet another sunset in Pune&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description>
	<pubDate>Tue, 08 Jun 2010 11:47:01 +0000</pubDate>
</item>
<item>
	<title>Subhodip Biswas: subhodipbiswas</title>
	<guid>http://subhodipbiswas.wordpress.com/?p=321</guid>
	<link>http://subhodipbiswas.wordpress.com/2010/06/06/enter-title-here/</link>
	<description>&lt;p&gt;It has been quite a while since I had written my last post.&lt;/p&gt;
&lt;p&gt;There&amp;#8217;s a lot to write about since I joined the company but I dont know how to .&lt;/p&gt;
&lt;p&gt;Right now being posted in mumbai and trying to settle down to the new.&lt;/p&gt;
&lt;p&gt;Hope things goes well this time.&lt;/p&gt;
&lt;br /&gt;Filed under: &lt;a href=&quot;http://subhodipbiswas.wordpress.com/category/blogroll/&quot;&gt;Blogroll&lt;/a&gt;, &lt;a href=&quot;http://subhodipbiswas.wordpress.com/category/life/&quot;&gt;life&lt;/a&gt;, &lt;a href=&quot;http://subhodipbiswas.wordpress.com/category/wow/&quot;&gt;wow&lt;/a&gt;  &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/subhodipbiswas.wordpress.com/321/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/subhodipbiswas.wordpress.com/321/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/subhodipbiswas.wordpress.com/321/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/subhodipbiswas.wordpress.com/321/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/subhodipbiswas.wordpress.com/321/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/subhodipbiswas.wordpress.com/321/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/subhodipbiswas.wordpress.com/321/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/subhodipbiswas.wordpress.com/321/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/subhodipbiswas.wordpress.com/321/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/subhodipbiswas.wordpress.com/321/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=subhodipbiswas.wordpress.com&amp;blog=803296&amp;post=321&amp;subd=subhodipbiswas&amp;ref=&amp;feed=1&quot; /&gt;</description>
	<pubDate>Sat, 05 Jun 2010 20:24:17 +0000</pubDate>
</item>
<item>
	<title>Kushal Das: Timelapse using Fedora and D80</title>
	<guid>http://kushaldas.in/2010/06/05/timelapse-using-fedora-and-d80/</guid>
	<link>http://kushaldas.in/2010/06/05/timelapse-using-fedora-and-d80/</link>
	<description>&lt;p&gt;My first timelapse movie: /me trying to clean the kitchen&amp;nbsp;
&lt;div&gt;&lt;a href=&quot;http://kushaldas.in/tmp/timelapse.ogv&quot;&gt;ogv&lt;/a&gt; or in &lt;a href=&quot;http://www.youtube.com/watch?v=eS_ucocsMpQ&quot;&gt;youtube&lt;/a&gt;&lt;/div&gt;
&lt;div&gt;Shot in a Nikon D80 using entangle (#yum install entangle ) and a small python script.&lt;/div&gt;
&lt;div&gt;Resized using imagemagick and video created using mencoder.&amp;nbsp;&lt;/div&gt;
&lt;div&gt;Comments are welcome :)&lt;/div&gt;&lt;/p&gt;</description>
	<pubDate>Sat, 05 Jun 2010 18:48:28 +0000</pubDate>
</item>
<item>
	<title>Kushal Das: lekhonee-gnome 0.10 released</title>
	<guid>http://kushaldas.in/2010/06/03/lekhonee-gnome-0-10-released/</guid>
	<link>http://kushaldas.in/2010/06/03/lekhonee-gnome-0-10-released/</link>
	<description>&lt;p&gt;lekhonee-gnome 0.10 is just released. You can download the source from &lt;a href=&quot;https://fedorahosted.org/releases/l/e/lekhonee/lekhonee-gnome-0.10.tar.bz2&quot;&gt;here&lt;/a&gt;.&amp;nbsp;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;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)&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;&lt;a href=&quot;http://runab.fedorapeople.org/lekhonee-gnome.png&quot;&gt;Here&lt;/a&gt; is an image of the right click menu used to look like.&lt;/div&gt;&lt;/p&gt;</description>
	<pubDate>Thu, 03 Jun 2010 10:42:13 +0000</pubDate>
</item>
<item>
	<title>Bamacharan Kundu: mouse-manage-aplet</title>
	<guid>http://bamacharankundu.wordpress.com/?p=54</guid>
	<link>http://bamacharankundu.wordpress.com/2010/06/03/fedora-13-in-dell-mini/</link>
	<description>&lt;p&gt;I installed the fedora 13 in my Dell mini. I got Windows XP service pack 3 with my Dell inspiron mini. It is ok but running a bit slow that&amp;#8217;s because of the low speed of intel atom processor and a lot of development aplication environments which were given with it. Lately i had installed Moblin in it. It was cool in look and was working fine. But the main problem there was I can not see more then one window at a time there, means if I want to see one window while working on another window then it was a bad option. Currently I installed Fedora 13 in it. It working fine in it. More over it is faster than the Windows which was running on it.&lt;/p&gt;
&lt;p&gt;But one problem I got with it is the windows of some aplications are partly visible. the lower portion of the windows are not visible. And because of that if there is any button or some thing like that I can  not press it. Though till now it has not made any problem  but it has become a problem for me.&lt;/p&gt;
&lt;p&gt;Here is one of the screen shots the problem which I am facing:&lt;a href=&quot;http://bamacharankundu.files.wordpress.com/2010/06/mouse-applet.png&quot;&gt;&lt;img class=&quot;aligncenter size-medium wp-image-59&quot; title=&quot;mouse-manage-aplet&quot; src=&quot;http://bamacharankundu.files.wordpress.com/2010/06/screenshot3.png?w=300&amp;h=175&quot; alt=&quot;&quot; width=&quot;300&quot; height=&quot;175&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;I think this is because of the applet size has been kept fixed even though change in screen size.&lt;/p&gt;
&lt;br /&gt;  &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/bamacharankundu.wordpress.com/54/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/bamacharankundu.wordpress.com/54/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/bamacharankundu.wordpress.com/54/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/bamacharankundu.wordpress.com/54/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gofacebook/bamacharankundu.wordpress.com/54/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/facebook/bamacharankundu.wordpress.com/54/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gotwitter/bamacharankundu.wordpress.com/54/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/twitter/bamacharankundu.wordpress.com/54/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/bamacharankundu.wordpress.com/54/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/bamacharankundu.wordpress.com/54/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/bamacharankundu.wordpress.com/54/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/bamacharankundu.wordpress.com/54/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/bamacharankundu.wordpress.com/54/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/bamacharankundu.wordpress.com/54/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=bamacharankundu.wordpress.com&amp;blog=10164647&amp;post=54&amp;subd=bamacharankundu&amp;ref=&amp;feed=1&quot; width=&quot;1&quot; height=&quot;1&quot; /&gt;</description>
	<pubDate>Wed, 02 Jun 2010 23:47:54 +0000</pubDate>
</item>
<item>
	<title>Kishan Goyal: kishangoyal</title>
	<guid>http://honeyinveins.wordpress.com/?p=195</guid>
	<link>http://honeyinveins.wordpress.com/2010/06/03/fad-pune-2010/</link>
	<description>&lt;p&gt;A Fedora Activity Day was held at the Red Hat office at Pune, India on the 29th and 30th of May, 2010. The event page can be found &lt;a href=&quot;https://fedoraproject.org/wiki/FAD_Pune_2010&quot;&gt;here&lt;/a&gt; and the reports by the attendees is &lt;a href=&quot;https://fedoraproject.org/wiki/FAD_Pune_2010#Reports&quot;&gt;here&lt;/a&gt;. I had the opportunity to be a part of the event which turned out to be a great learning experience for me.&lt;/p&gt;
&lt;p&gt;meejan , yevlempy and /me reached Pune just past midnight on the 28th. We reached the Red Hat office the next day at 9 a.m. The day started with a session on GNU Autotools by &lt;a href=&quot;https://fedoraproject.org/wiki/User:Siddhesh&quot;&gt;debiansid&lt;/a&gt; after which everyone present there spoke of the work they intended to do over the weekend. After struggling with many typos for sometime, I finally managed to get things working.&lt;/p&gt;
&lt;p&gt;Meejan and /me worked on &lt;a href=&quot;http://gitorious.org/gfotostat&quot;&gt;gFotoStat&lt;/a&gt; over the two days. Since the &lt;a href=&quot;http://honeyinveins.wordpress.com/2010/05/20/gfotostat-v0-2-released/&quot;&gt;release of v 0.2&lt;/a&gt;, we had got a list of around &lt;a href=&quot;http://honeyinveins.wordpress.com/2010/05/21/gfotostat-repo-created/#comments&quot;&gt;8 bugs/features&lt;/a&gt; to be worked upon and I worked on shortening the list as much as possible. Meanwhile, I also submitted the gfotostat spec for  review.  Meejan and myself managed to kill some of the bugs and added a Preferences menu to the app. (it is not fully functional as of now). Unmanindu suggested to add an option to select the bar or pie charts to be set as default view from the Preferences menu. Also, on the 30th was his talk on OLPC as a Fedora downstream which was recorded by &lt;a href=&quot;http://kushaldas.in&quot;&gt;kushal&lt;/a&gt;. View the talk &lt;a href=&quot;http://tv.dgplug.org/oggs/sayam.ogv&quot;&gt;here&lt;/a&gt; (111 mb)&lt;/p&gt;
&lt;p&gt;Towards the end of the event, there was a feedback session and discussion whether organizing such FADs did serve its purpose and  FUDCon among other things.&lt;/p&gt;
&lt;p&gt;Some work still left to do after which I will be finishing as soon as my semester exams wrap up (on the 18th) Expecting  the v0.3 release of gFotoStat very soon after that.&lt;/p&gt;
&lt;br /&gt;  &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/honeyinveins.wordpress.com/195/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/honeyinveins.wordpress.com/195/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/honeyinveins.wordpress.com/195/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/honeyinveins.wordpress.com/195/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/honeyinveins.wordpress.com/195/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/honeyinveins.wordpress.com/195/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/honeyinveins.wordpress.com/195/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/honeyinveins.wordpress.com/195/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/honeyinveins.wordpress.com/195/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/honeyinveins.wordpress.com/195/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=honeyinveins.wordpress.com&amp;amp;blog=4143312&amp;amp;post=195&amp;amp;subd=honeyinveins&amp;amp;ref=&amp;amp;feed=1&quot; /&gt;</description>
	<pubDate>Wed, 02 Jun 2010 20:14:04 +0000</pubDate>
</item>
<item>
	<title>Meejanur Rahaman: meejan</title>
	<guid>http://meejan.wordpress.com/?p=97</guid>
	<link>http://meejan.wordpress.com/2010/06/02/fad-pune/</link>
	<description>&lt;div id=&quot;_mcePaste&quot;&gt;This weekend I had had a great experience. I went to Pune and attended FAD at Red Hat Ofice, Pune. This continued for two days, 29th and 30th May. I mainly worked on adding more features and killing some more bugs on &lt;a href=&quot;http://gitorious.org/gfotostat&quot;&gt;gFotoStat&lt;/a&gt;.&lt;/div&gt;
&lt;div id=&quot;_mcePaste&quot;&gt;It&amp;#8217;s been a few months, me and Kishan working for gFotoStat and within these two days, we both worked together and  succeeded to do the followings:&lt;/div&gt;
&lt;blockquote&gt;
&lt;div id=&quot;_mcePaste&quot;&gt;i)Added Year-wise bar-chart and pie-chart.&lt;/div&gt;
&lt;div id=&quot;_mcePaste&quot;&gt;
&lt;div id=&quot;_mcePaste&quot;&gt;ii)Percentage of images has been changed to number of images in the bar-chart.&lt;/div&gt;
&lt;div id=&quot;_mcePaste&quot;&gt;iii)Help -&amp;gt; About is working now.&lt;/div&gt;
&lt;/div&gt;
&lt;div id=&quot;_mcePaste&quot;&gt;iv)Clicking the Save button and while browsing the home directory is coming by default.&lt;/div&gt;
&lt;/blockquote&gt;
&lt;div&gt;We were trying to add some more features but we got stuck at some point. Hoping to solve them and release the next version(v 0.3) in a very short time. It&amp;#8217;s really a very great experience to attend such a FAD and worked together with so many people and hope to attend such in near future again:)&lt;/div&gt;
&lt;br /&gt;  &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/meejan.wordpress.com/97/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/meejan.wordpress.com/97/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/meejan.wordpress.com/97/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/meejan.wordpress.com/97/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/meejan.wordpress.com/97/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/meejan.wordpress.com/97/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/meejan.wordpress.com/97/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/meejan.wordpress.com/97/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/meejan.wordpress.com/97/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/meejan.wordpress.com/97/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=meejan.wordpress.com&amp;blog=6293697&amp;post=97&amp;subd=meejan&amp;ref=&amp;feed=1&quot; /&gt;</description>
	<pubDate>Wed, 02 Jun 2010 19:23:38 +0000</pubDate>
</item>
<item>
	<title>Sayamindu Dasgupta: Fedora Activity Day, Pune</title>
	<guid>http://sayamindu.randomink.org/ramblings/?p=474</guid>
	<link>http://sayamindu.randomink.org/ramblings/2010/06/02/fedora-activity-day-pune/</link>
	<description>&lt;p&gt;I spent the weekend at Pune, attending the &lt;a href=&quot;https://fedoraproject.org/wiki/FAD_Pune_2010&quot;&gt;Fedora Activity Day&lt;/a&gt;. Apart from the usual hallway conversations and discussions, I gave a short talk on life as a Fedora downstream project, where I described some of the issues we face while building the OLPC OS (which is a Fedora derivative). Rahul has &lt;a href=&quot;http://mether.wordpress.com/2010/06/01/report-on-fedora-activity-day-may-2010-pune-india/&quot;&gt;posted&lt;/a&gt; a nice summary of my talk, along with possible ways to address some of the issues I outlined during the talk.&lt;br /&gt;
Apart from the talk, I worked with &lt;a href=&quot;http://kushaldas.in/&quot;&gt;Kushal&lt;/a&gt; to package &lt;a href=&quot;http://cita.disability.uiuc.edu/software/accessx/&quot;&gt;accessx&lt;/a&gt; &amp;#8211; I came up with the patches which made it build-able on F-13. Kushal and I also worked on adding support for cover images to the &lt;a href=&quot;http://github.com/sayamindu/pathagar&quot;&gt;Pathagar Book Server&lt;/a&gt; we have been working on, and I think it looks good for a release at the moment.&lt;/p&gt;</description>
	<pubDate>Wed, 02 Jun 2010 13:10:33 +0000</pubDate>
</item>
<item>
	<title>Harsh verma: yevlempy</title>
	<guid>http://yevlempy.wordpress.com/?p=159</guid>
	<link>http://yevlempy.wordpress.com/2010/06/02/fadpune-redhat/</link>
	<description>&lt;p&gt;&lt;strong&gt;DAY-0 28 MAY 2010&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;It all started from our journying from durgapur to kolkata to catch our flight, which was destined to go at 5:30PM. We(me, kishan, meejan) started from durgapur at around 10:00AM. Everything was going fine and we were having loads of fun, with few disscussions on packaging. We reached kolkata on time, after which kishan had to go to his uncle&amp;#8217;s place to take his identity proof for boarding the flight. Me and meejan grabed some lunch at KFC and then collectively we all went to airport. Our flight was delayed for about an hour or so &lt;img src=&quot;http://s.wordpress.com/wp-includes/images/smilies/icon_sad.gif&quot; alt=&quot;:(&quot; class=&quot;wp-smiley&quot; /&gt; . Kishan and meejan were having damn excitment as it was their first flight with butterflies in stomach too &lt;img src=&quot;http://s.wordpress.com/wp-includes/images/smilies/icon_razz.gif&quot; alt=&quot;:P&quot; class=&quot;wp-smiley&quot; /&gt; , Kishan&amp;#8217;s face was a treat to watch when plane took off from kolkata airport. We boarded the spicejet flight and travelled almost half of india on our way to pune as it was a damn long flight i.e from kolkata to Delhi and then to pune. We reached pune at around 12:00PM and were picked up by sankarshan(Thanks &lt;img src=&quot;http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif&quot; alt=&quot;:)&quot; class=&quot;wp-smiley&quot; /&gt; ). We went to the guest house which was arranged by REDHAT people for our stay. At the guest house we found kushaldas(Thanks &lt;img src=&quot;http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif&quot; alt=&quot;:)&quot; class=&quot;wp-smiley&quot; /&gt; ) too who along with sankarshan helped us in reaching our rooms. The place was cozy and cool and we were told to reach REDHAT office at 9:00AM tomorrow morning i.e on 29th. We found rtnpro there too, who reached before us as he had an early flight. As we were damn tired, we all went to sleep.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;DAY-1 29 MAY 2010&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;It started with meeting shrink, mether and variour other Redhat and Fedora people. The only sessions of the day was on autotools by Siddhesh. The session was pretty much informative and interactive, Siddhesh went into explaining how Makefile and Configure files are automatically generated from Makefile.am and configure.ac with his linkc program. The first day i spent taking few bugs fixing and packaging tips from rakesh, who was fixing security bugs. I spent my time looking into details of packaging, following the packaging documentation in fedora wiki.&lt;/p&gt;
&lt;p&gt;At the lunch time, people from Bhasha Technologies who came to meet the Fedora ARM contributes had small conversation with us on their various projects. I along with Salim, kishan decided to work on suggested projects. The day finished off and we(me, kishan, meejan, Ankur) went to have dinner with kushal and mether. After having lunch we headed to kushal&amp;#8217;s and mether&amp;#8217;s place were we had loads of fun playing Wii.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;DAY-2 30 may 2010&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;I started the day with packaging openEMR for fedora-medical, as listed by susmit on mailing list. The talk of the day, i was looking for was of sayamindu, who gave a talk on OLPC as a downstream of Fedora project. Meanwhile i packaged openEMR. At the end of the day we had disscussions on more upcoming FAD&amp;#8217;s and FUDCON in india(disscussion will continue).&lt;/p&gt;
&lt;p&gt;At night we(I, kishan, meejan, rtnpro, ankur) along with kushal, mether and salim went to Hakka for a nice chinese dinner. Again at the end we went to kushal&amp;#8217;s place to play on Wii(i played boxing and my hand is still paining &lt;img src=&quot;http://s.wordpress.com/wp-includes/images/smilies/icon_sad.gif&quot; alt=&quot;:(&quot; class=&quot;wp-smiley&quot; /&gt;  )&lt;/p&gt;
&lt;br /&gt;  &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/yevlempy.wordpress.com/159/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/yevlempy.wordpress.com/159/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/yevlempy.wordpress.com/159/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/yevlempy.wordpress.com/159/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/yevlempy.wordpress.com/159/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/yevlempy.wordpress.com/159/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/yevlempy.wordpress.com/159/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/yevlempy.wordpress.com/159/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/yevlempy.wordpress.com/159/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/yevlempy.wordpress.com/159/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=yevlempy.wordpress.com&amp;blog=6449518&amp;post=159&amp;subd=yevlempy&amp;ref=&amp;feed=1&quot; /&gt;</description>
	<pubDate>Wed, 02 Jun 2010 04:51:30 +0000</pubDate>
</item>
<item>
	<title>Ratnadeep Debnath: rtnpro</title>
	<guid>http://ratnadeepdebnath.wordpress.com/?p=167</guid>
	<link>http://ratnadeepdebnath.wordpress.com/2010/06/01/fad-pune-2010/</link>
	<description>&lt;p&gt;It was a great experience at the FAD in Red Hat, Pune. The FAD was conducted for two days, 29th and 30th May, 2010.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Day 01&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Siddhesh took a session on autotools. The session was informative and interactive. I came to know how the big Makefile and Configure files are automatically generated from makefile.am and configure.ac (Makefile.in is first generated though, then the Makefile). Siddhesh used the linkc program for the purpose.&lt;/p&gt;
&lt;p&gt;That was the only workshop. Then it was doing our own work. Everyone discussed what they will be working on. As for me, I decided to work on packaging python-keyring and kupfer and writing code for my application named &lt;strong&gt;wordGroupz&lt;/strong&gt; (it is an app for building one&amp;#8217;s vocabulary based on groups). My target was to get the code ready for 0.1 release of &lt;strong&gt;wordGroupz&lt;/strong&gt;. For the first day, I made some changes in the python-keyring.spec as suggested by Ankur(FranciscoD) and Rahul (mether). Then I spent the rest of the time coding for kupfer, designed the GUI using Glade3. For programming, I used python, GTK, sqlite. By the end of the day, I managed to get  a input from the user and store it in the database. Updating in the combobox was not achieved that day.&lt;/p&gt;
&lt;p&gt;In between, people from Bhasha Technologies came to the FAD to meet the ARM Fedora contributors who didn&amp;#8217;t turn up. They shared some of their ideas with us over the lunch. I along with some of my friends (Rangeen) alongwith Salim decided to work on the suggested projects.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Day 02&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;I wrote a spec file for kupfer which wasn&amp;#8217;t working for some unknown reasons. I submitted a review request for that and Ankur started reviewing it. Soon Rahul joined followed by Kushal. Kupfer uses a waf build system and the wscript was broken for kupfer. It didn&amp;#8217;t produce any kupfer package, but was a good exercise. After that, Sayamindu gave a speech on OLPC and Sugar, which is a Fedora downstream project for the OLPC. Then, I resumed coding for &lt;strong&gt;wordGroupz&lt;/strong&gt;. I managed getting the combobox updated on new entry. I made some changes in the glade file. I did some reading on the treeview model and got it to display the words from the database categorized into groups. I added a search facility in the app to search for words. As the day was ending, I thought to drop the displaying of word info for the 0.1 version.&lt;/p&gt;
&lt;p&gt;At the end of the session, we reported what we achieved in the 2 days of the FAD. Then plans for future FADs were discussed. After the session, we (rtnpro, meejan, kishan, yevlempy) along with Rahul, Kushal and Salim went to Haka for dinner. Going to Haka was another story &lt;img src=&quot;http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif&quot; alt=&quot;:)&quot; class=&quot;wp-smiley&quot; /&gt;  .&lt;/p&gt;
&lt;p&gt;It turned out to be a great day, working together throughout the day along with some fun also.&lt;/p&gt;
&lt;p&gt;Arrangements made for our accommodation were great. Kushal took pics and recorded videos during the FAD. I hope kushal will upload them soon.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://fedoraproject.org/wiki/FAD_Pune_2010&quot;&gt;https://fedoraproject.org/wiki/FAD_Pune_2010&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Currently, I am fixing some glitches in the code for wordGroupz. I have set a repository for it at&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://gitorious.org/wordgroupz&quot;&gt;http://gitorious.org/wordgroupz&lt;/a&gt;&lt;/p&gt;
&lt;br /&gt;  &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/ratnadeepdebnath.wordpress.com/167/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/ratnadeepdebnath.wordpress.com/167/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/ratnadeepdebnath.wordpress.com/167/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/ratnadeepdebnath.wordpress.com/167/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gofacebook/ratnadeepdebnath.wordpress.com/167/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/facebook/ratnadeepdebnath.wordpress.com/167/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gotwitter/ratnadeepdebnath.wordpress.com/167/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/twitter/ratnadeepdebnath.wordpress.com/167/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/ratnadeepdebnath.wordpress.com/167/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/ratnadeepdebnath.wordpress.com/167/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/ratnadeepdebnath.wordpress.com/167/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/ratnadeepdebnath.wordpress.com/167/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/ratnadeepdebnath.wordpress.com/167/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/ratnadeepdebnath.wordpress.com/167/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=ratnadeepdebnath.wordpress.com&amp;blog=5702928&amp;post=167&amp;subd=ratnadeepdebnath&amp;ref=&amp;feed=1&quot; width=&quot;1&quot; height=&quot;1&quot; /&gt;</description>
	<pubDate>Tue, 01 Jun 2010 08:46:08 +0000</pubDate>
</item>
<item>
	<title>Debayan Banerjee: debayan</title>
	<guid>http://debayan.wordpress.com/?p=502</guid>
	<link>http://debayan.wordpress.com/2010/05/31/operant-conditioning-reinforcement-vs-punishment/</link>
	<description>&lt;p&gt;In the psychology of learning, operant conditioning is one technique through which we mould our responses based on the feedback we receive from our environment. For example, politicians change the subject and manner of their speech based on how they have been perceived in the past in similar public appearances.The term operant derives form the fact that subjects &amp;#8220;operate&amp;#8221; on the environment to get feedback. The feedback decides what they learn in the long term from that particular experience.&lt;/p&gt;
&lt;p&gt;The kind of feedback received can be divided into 2 categories: Reinforcement and Punishment. These 2 can again be further subdivided into positive and negative.&lt;/p&gt;
&lt;p&gt;Reinforcement is a form of stimuli or consequence which strengthens our responses either to avoid or abet the occurrence of the event or stimuli.&lt;/p&gt;
&lt;p&gt;Punishment is a form of stimuli or consequence that weakens our responses either to avoid or abet the occurrence of the event or stimuli.&lt;/p&gt;
&lt;p&gt;Positive Reinforcement or Positive Punishment both deal with desirable consequences.&lt;/p&gt;
&lt;p&gt;Negative Reinforcements or Negative Punishments deal with avoiding undesirable consequences.&lt;/p&gt;
&lt;p&gt;Note that both the definitions do not follow the literal meaning of positive and negative in the commonly used sense.&lt;/p&gt;
&lt;p&gt;Here are a few examples:&lt;/p&gt;
&lt;p&gt;1) Positive Reinforcement: Whenever I buy my girlfriend a gift, she kisses me. Here the kiss is a desirable event or consequence. My buying the gift is a behavioural activity. Now I am often inclined to buy her gifts because I always get a kiss in return. Hence the kiss is a positive reinforcement for the activity of buying her gifts, so it keeps strengthening the gift buying activity.&lt;/p&gt;
&lt;p&gt;2) Negative Reinforcement: Whenever I am broke, my girlfriend screams at me. Screaming here is an unwanted stimulus. To avoid her shrill voice, I work harder and earn more money. Hence her screaming is a negative reinforcer which strengthens my activity of working hard.&lt;/p&gt;
&lt;p&gt;3) Positive Punishment: Whenever my girlfriend discovers that I smoke, she decides not to talk to me for a week. I love talking to her so I weaken my smoking habits. Here her snubbing me is the Positive Punishment. It weakens a particular behaviour in me so I can receive a desirable consequence.&lt;/p&gt;
&lt;p&gt;4) Negative Punishment: Whenever I talk to another girl, my girlfriend starts crying. I decide to stop talking to other girls. Here her crying is an unwanted consequence that I want to avoid and hence I decide to weaken my activity of talking to other girls.&lt;/p&gt;
&lt;p&gt;Practical Application: A sequence of procedures that follow Negative Punishment with Positive Reinforcements have been found to be consistently successful in taming unruly horses. These horses are first punished slightly for their deviant behaviour. After a while the horses weaken their violent behaviour to a certain extent. Then the horses are given an opportunity to behave nicely. When the horse does decide to listen to the master, it is patted on the forehead. The horse hence gets positive reinforcement for its obedience. In no time the horse turns gentle.&lt;/p&gt;
&lt;p&gt;In essence, what this means is that we tell the horse to improve its behaviour in lieu of better treatment. The point is somewhat grasped by it but not totally. Then we tell it that since it has decided to behave well to a certain extent we appreciate it. This, as it turns out, has a profound effect on the horse&amp;#8217;s behaviour for the rest of its life.&lt;/p&gt;
&lt;p&gt;This is a brief description of Operant Conditioning theory of learning.&lt;/p&gt;
&lt;br /&gt;  &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/debayan.wordpress.com/502/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/debayan.wordpress.com/502/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/debayan.wordpress.com/502/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/debayan.wordpress.com/502/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/debayan.wordpress.com/502/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/debayan.wordpress.com/502/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/debayan.wordpress.com/502/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/debayan.wordpress.com/502/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/debayan.wordpress.com/502/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/debayan.wordpress.com/502/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=debayan.wordpress.com&amp;amp;blog=3039493&amp;amp;post=502&amp;amp;subd=debayan&amp;amp;ref=&amp;amp;feed=1&quot; /&gt;</description>
	<pubDate>Mon, 31 May 2010 20:05:39 +0000</pubDate>
</item>

</channel>
</rss>
