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

<channel>
	<title>Roshan Singh</title>
	<atom:link href="http://roshansingh.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://roshansingh.wordpress.com</link>
	<description>Codes from my life</description>
	<lastBuildDate>Mon, 16 Nov 2009 19:26:17 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='roshansingh.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/0af7ccb3befd324b396c11d2c69587e2?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Roshan Singh</title>
		<link>http://roshansingh.wordpress.com</link>
	</image>
			<item>
		<title>Automated testing with JUnit</title>
		<link>http://roshansingh.wordpress.com/2009/11/14/automated-testing-with-junit/</link>
		<comments>http://roshansingh.wordpress.com/2009/11/14/automated-testing-with-junit/#comments</comments>
		<pubDate>Sat, 14 Nov 2009 03:22:01 +0000</pubDate>
		<dc:creator>Roshan Singh</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[JUnit]]></category>

		<guid isPermaLink="false">http://roshansingh.wordpress.com/?p=251</guid>
		<description><![CDATA[I have learnt some automated testing with JUnit. Junit is a java package which lets you write test suites so that you can simply run them when you program is done. It is good for software development as you can re-run the same tests again and again, and you can save some time and even [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=roshansingh.wordpress.com&blog=3190560&post=251&subd=roshansingh&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I have learnt some automated testing with JUnit. Junit is a java package which lets you write test suites so that you can simply run them when you program is done. It is good for software development as you can re-run the same tests again and again, and you can save some time and even avoid human generated error as missing out a particular test that happens with me over and over as I tend to forget cases.<br />
Learning JUnit is extremely easy if you have some Java knowledge. However I noted that the official website has very less tutorials available and you wont find much information on the internet also (please direct me if you happen to know any good tutorial).<br />
I grabbed &#8220;<b>Pragmatic Unit Testing</b>&#8221; by Andrew Hunt and Davis Thomas. This book is really helpful as it starts with the basics and goes through every details of JUnit. You can find a copy of the ebook if you search a little.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/roshansingh.wordpress.com/251/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/roshansingh.wordpress.com/251/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/roshansingh.wordpress.com/251/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/roshansingh.wordpress.com/251/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/roshansingh.wordpress.com/251/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/roshansingh.wordpress.com/251/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/roshansingh.wordpress.com/251/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/roshansingh.wordpress.com/251/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/roshansingh.wordpress.com/251/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/roshansingh.wordpress.com/251/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=roshansingh.wordpress.com&blog=3190560&post=251&subd=roshansingh&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://roshansingh.wordpress.com/2009/11/14/automated-testing-with-junit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/799c90edcf457fbf0dda6ef5910cf466?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Roshan Singh</media:title>
		</media:content>
	</item>
		<item>
		<title>Setting CLASSPATH for Java in Linux</title>
		<link>http://roshansingh.wordpress.com/2009/11/13/setting-classpath-for-java-in-linux/</link>
		<comments>http://roshansingh.wordpress.com/2009/11/13/setting-classpath-for-java-in-linux/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 09:41:18 +0000</pubDate>
		<dc:creator>Roshan Singh</dc:creator>
				<category><![CDATA[Help]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[CLASSPATH in Java]]></category>

		<guid isPermaLink="false">http://roshansingh.wordpress.com/?p=248</guid>
		<description><![CDATA[This was really tough for me since I had never used command line for compiling java programs, I always used Netbeans for coding in Java. Recently I started learning JUnit for which I decided to use command Line. 
Whenever I googled for its solution I got
$ export CLASSPATH=$CLASSPATH:
But this did not fix my problem. Eventually [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=roshansingh.wordpress.com&blog=3190560&post=248&subd=roshansingh&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>This was really tough for me since I had never used command line for compiling java programs, I always used Netbeans for coding in Java. Recently I started learning JUnit for which I decided to use command Line. </p>
<p>Whenever I googled for its solution I got<br />
$ export CLASSPATH=$CLASSPATH:</p>
<p>But this did not fix my problem. Eventually I landed up on some websites and finally <a href="http://mindprod.com/jgloss/classpath.html">here</a>. Though it is mainly written for Windows but can be used likewise for linux also.</p>
<p>So the thing to be done is either add all the jar files explicitly to the classpath or put all the jars in a directory (/home/roshan/jars for me).</p>
<p>Now run this command:<br />
$ export CLASSPATH=$CLASSPATH:/home/roshan/jars/*</p>
<p>The wildcard &#8216;*&#8217; fixed the problem. Now you can make this change permanent by adding this command to your .bash_profile in home directory or /etc/profile to make system wide changes.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/roshansingh.wordpress.com/248/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/roshansingh.wordpress.com/248/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/roshansingh.wordpress.com/248/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/roshansingh.wordpress.com/248/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/roshansingh.wordpress.com/248/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/roshansingh.wordpress.com/248/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/roshansingh.wordpress.com/248/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/roshansingh.wordpress.com/248/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/roshansingh.wordpress.com/248/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/roshansingh.wordpress.com/248/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=roshansingh.wordpress.com&blog=3190560&post=248&subd=roshansingh&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://roshansingh.wordpress.com/2009/11/13/setting-classpath-for-java-in-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/799c90edcf457fbf0dda6ef5910cf466?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Roshan Singh</media:title>
		</media:content>
	</item>
		<item>
		<title>Running topcoder applet behind proxy</title>
		<link>http://roshansingh.wordpress.com/2009/11/11/running-topcoder-applet-behind-proxy/</link>
		<comments>http://roshansingh.wordpress.com/2009/11/11/running-topcoder-applet-behind-proxy/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 03:47:06 +0000</pubDate>
		<dc:creator>Roshan Singh</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Topcoder]]></category>

		<guid isPermaLink="false">http://roshansingh.wordpress.com/?p=246</guid>
		<description><![CDATA[Somehow the default Iced Tea Webstart throws NullPointerException which I dont know how to debug. I downloaded SUN JDK and installed on my machine, you can use your package manager also. It usually gets installed in /usr/java/jdk-&#60;version&#62; and /usr/java/latest links to the latest version installed, so it is better to use the later. Then download [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=roshansingh.wordpress.com&blog=3190560&post=246&subd=roshansingh&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Somehow the default Iced Tea Webstart throws NullPointerException which I dont know how to debug. I downloaded SUN JDK and installed on my machine, you can use your package manager also. It usually gets installed in /usr/java/jdk-&lt;version&gt; and /usr/java/latest links to the latest version installed, so it is better to use the later. Then download the ContestApplet.jnlp and simply sun the following command to get it working.</p>
<p>$ /usr/java/latest/bin/javaws ContestApplet.jnlp</p>
<p>It uses default system proxy to download the content from Topcoder needed to execute the arena. When the arena is open set the proxy and use HTTP Tunnel A or B. For us Tunnel B works.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/roshansingh.wordpress.com/246/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/roshansingh.wordpress.com/246/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/roshansingh.wordpress.com/246/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/roshansingh.wordpress.com/246/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/roshansingh.wordpress.com/246/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/roshansingh.wordpress.com/246/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/roshansingh.wordpress.com/246/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/roshansingh.wordpress.com/246/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/roshansingh.wordpress.com/246/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/roshansingh.wordpress.com/246/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=roshansingh.wordpress.com&blog=3190560&post=246&subd=roshansingh&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://roshansingh.wordpress.com/2009/11/11/running-topcoder-applet-behind-proxy/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/799c90edcf457fbf0dda6ef5910cf466?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Roshan Singh</media:title>
		</media:content>
	</item>
		<item>
		<title>proxy in xmlrpclib</title>
		<link>http://roshansingh.wordpress.com/2009/10/25/proxy-in-xmlrpclib/</link>
		<comments>http://roshansingh.wordpress.com/2009/10/25/proxy-in-xmlrpclib/#comments</comments>
		<pubDate>Sun, 25 Oct 2009 15:26:13 +0000</pubDate>
		<dc:creator>Roshan Singh</dc:creator>
				<category><![CDATA[GScribble]]></category>
		<category><![CDATA[proxy]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[xmlrpclib]]></category>

		<guid isPermaLink="false">http://roshansingh.wordpress.com/?p=237</guid>
		<description><![CDATA[This is just an extension of the example shown here http://docs.python.org/library/xmlrpclib.html#example-of-client-usage .
import xmlrpclib, httplib
class ProxiedTransport(xmlrpclib.Transport):
    def set_proxy(self, proxy):
        self.proxy = proxy
	self.puser_pass = puser_pass
    def make_connection(self, host):
        self.realhost = host
       [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=roshansingh.wordpress.com&blog=3190560&post=237&subd=roshansingh&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>This is just an extension of the example shown here <a title="http://docs.python.org/library/xmlrpclib.html#example-of-client-usage" href="http://docs.python.org/library/xmlrpclib.html#example-of-client-usage" target="_blank">http://docs.python.org/library/xmlrpclib.html#example-of-client-usage</a> .</p>
<pre>import xmlrpclib, httplib
class ProxiedTransport(xmlrpclib.Transport):
    def set_proxy(self, proxy):
        self.proxy = proxy
	self.puser_pass = puser_pass
    def make_connection(self, host):
        self.realhost = host
        h = httplib.HTTP(self.proxy)
        return h
    def send_request(self, connection, handler, request_body):
        connection.putrequest("POST", 'http://%s%s' % (self.realhost, handler))
    def send_host(self, connection, host):
        connection.putheader('Host', self.realhost)
	connection.putheader('User-agent', self.user_agent)
	# Check is proxy username and password is set
	if len(self.puser_pass.strip()) != 0:
		connection.putheader('Proxy-authorization','Basic '+self.puser_pass)

p = ProxiedTransport()
proxyUsername = 'proxyuser'
proxyPassword = 'proxypass'
puser_pass = base64.encodestring('%s:%s' % (proxyUsername, proxyPassword)).strip()

p.set_proxy('proxy-server:8080', puser_pass)
server = xmlrpclib.Server('http://time.xmlrpc.com/RPC2', transport=p)
print server.currentTime.getCurrentTime()</pre>
<p>A similar code has been used in my blog client <a title="GScribble" href="http://sourceforge.net/projects/gscribble" target="_blank">GScribble</a>.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/roshansingh.wordpress.com/237/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/roshansingh.wordpress.com/237/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/roshansingh.wordpress.com/237/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/roshansingh.wordpress.com/237/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/roshansingh.wordpress.com/237/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/roshansingh.wordpress.com/237/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/roshansingh.wordpress.com/237/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/roshansingh.wordpress.com/237/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/roshansingh.wordpress.com/237/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/roshansingh.wordpress.com/237/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=roshansingh.wordpress.com&blog=3190560&post=237&subd=roshansingh&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://roshansingh.wordpress.com/2009/10/25/proxy-in-xmlrpclib/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/799c90edcf457fbf0dda6ef5910cf466?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Roshan Singh</media:title>
		</media:content>
	</item>
		<item>
		<title>Pidgin 2.6.1, troubleshooting</title>
		<link>http://roshansingh.wordpress.com/2009/08/30/pidgin-2-6-1-troubleshooting/</link>
		<comments>http://roshansingh.wordpress.com/2009/08/30/pidgin-2-6-1-troubleshooting/#comments</comments>
		<pubDate>Sun, 30 Aug 2009 02:38:27 +0000</pubDate>
		<dc:creator>Roshan Singh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://roshansingh.wordpress.com/?p=229</guid>
		<description><![CDATA[I installed pidgin 2.6.1 today to check if it was working for me. But as soon as I started a voice conversation, it either crashed or game me the following error:
&#8220;Could not start rtp muxer session&#8221;.
The solution is to move your current ~/.gstreamer-0.10 to somewhere. Let pidgin create a new one. Then I made a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=roshansingh.wordpress.com&blog=3190560&post=229&subd=roshansingh&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I installed pidgin 2.6.1 today to check if it was working for me. But as soon as I started a voice conversation, it either crashed or game me the following error:</p>
<p><em>&#8220;Could not start rtp muxer session&#8221;</em>.</p>
<p>The solution is to move your current ~/.gstreamer-0.10 to somewhere. Let pidgin create a new one. Then I made a call to one of my friends. He was able to listen whatever I said but I was not able to listen what he said. I still dont know why ?</p>
<p>This is where I found the solution <a href="http://www.amsn-project.net/forums/viewtopic.php?t=6622">http://www.amsn-project.net/forums/viewtopic.php?t=6622</a>.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/roshansingh.wordpress.com/229/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/roshansingh.wordpress.com/229/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/roshansingh.wordpress.com/229/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/roshansingh.wordpress.com/229/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/roshansingh.wordpress.com/229/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/roshansingh.wordpress.com/229/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/roshansingh.wordpress.com/229/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/roshansingh.wordpress.com/229/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/roshansingh.wordpress.com/229/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/roshansingh.wordpress.com/229/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=roshansingh.wordpress.com&blog=3190560&post=229&subd=roshansingh&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://roshansingh.wordpress.com/2009/08/30/pidgin-2-6-1-troubleshooting/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/799c90edcf457fbf0dda6ef5910cf466?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Roshan Singh</media:title>
		</media:content>
	</item>
		<item>
		<title>TO-DO List</title>
		<link>http://roshansingh.wordpress.com/2009/08/13/to-do-list/</link>
		<comments>http://roshansingh.wordpress.com/2009/08/13/to-do-list/#comments</comments>
		<pubDate>Thu, 13 Aug 2009 12:24:56 +0000</pubDate>
		<dc:creator>Roshan Singh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://roshansingh.wordpress.com/?p=224</guid>
		<description><![CDATA[GScribble
1.Better editor for posts (Bold/Italic etc)
2. Proxy support Added HTTP Proxy support
3. Blogger Support
4. Release new rpms
openDChub
1. Release new version and rpms
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=roshansingh.wordpress.com&blog=3190560&post=224&subd=roshansingh&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>GScribble</p>
<p>1.Better editor for posts (Bold/Italic etc)</p>
<p><span style="text-decoration:line-through;">2. Proxy support</span> Added HTTP Proxy support</p>
<p>3. Blogger Support</p>
<p>4. Release new rpms</p>
<p>openDChub</p>
<p>1. Release new version and rpms</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/roshansingh.wordpress.com/224/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/roshansingh.wordpress.com/224/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/roshansingh.wordpress.com/224/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/roshansingh.wordpress.com/224/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/roshansingh.wordpress.com/224/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/roshansingh.wordpress.com/224/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/roshansingh.wordpress.com/224/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/roshansingh.wordpress.com/224/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/roshansingh.wordpress.com/224/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/roshansingh.wordpress.com/224/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=roshansingh.wordpress.com&blog=3190560&post=224&subd=roshansingh&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://roshansingh.wordpress.com/2009/08/13/to-do-list/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/799c90edcf457fbf0dda6ef5910cf466?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Roshan Singh</media:title>
		</media:content>
	</item>
		<item>
		<title>RPMs for GScribble released</title>
		<link>http://roshansingh.wordpress.com/2009/07/07/rpms-for-gscribble-released/</link>
		<comments>http://roshansingh.wordpress.com/2009/07/07/rpms-for-gscribble-released/#comments</comments>
		<pubDate>Tue, 07 Jul 2009 12:08:51 +0000</pubDate>
		<dc:creator>Roshan Singh</dc:creator>
				<category><![CDATA[GScribble]]></category>

		<guid isPermaLink="false">http://roshansingh.wordpress.com/?p=220</guid>
		<description><![CDATA[Today is another big day for me, I have made a new release for GScribble along with RPMs for Fedora. I take this opportunity to thank my seniors Debayan Bannerjee for all round support that he gave me during the college, Shreyank Gupta who did the artwork for GScribble and Rangeen Basu who helped me [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=roshansingh.wordpress.com&blog=3190560&post=220&subd=roshansingh&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Today is another big day for me, I have made a new release for GScribble along with RPMs for Fedora. I take this opportunity to thank my seniors <a href="http://debayan.wordpress.com">Debayan Bannerjee</a> for all round support that he gave me during the college, <a href="http://allsortsofshrink.blogspot.com">Shreyank Gupta</a> who did the artwork for GScribble and <a href="http://sherry151.blogspot.com">Rangeen Basu</a> who helped me with packaging.</p>
<p>Being the first release the app is missing a lot of basic functionalities which I will provide later on. I will try to release as soon as I make some changes so that I keep myself involved in it.</p>
<p>I remember when I first started using Twitter I lost my patience to blog, then I realised that it was TwitterFox which was the main reason, I then tried to search for blog clients. Eventually I could not find any nice app. Since then I had decided that I would write an app for me.</p>
<p>I would also like to thank <a href="http://www.srijan.in">Srijan technologies</a> who provided me sufficient free time during my internship that helped me a lot to work on it.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/roshansingh.wordpress.com/220/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/roshansingh.wordpress.com/220/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/roshansingh.wordpress.com/220/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/roshansingh.wordpress.com/220/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/roshansingh.wordpress.com/220/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/roshansingh.wordpress.com/220/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/roshansingh.wordpress.com/220/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/roshansingh.wordpress.com/220/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/roshansingh.wordpress.com/220/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/roshansingh.wordpress.com/220/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=roshansingh.wordpress.com&blog=3190560&post=220&subd=roshansingh&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://roshansingh.wordpress.com/2009/07/07/rpms-for-gscribble-released/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/799c90edcf457fbf0dda6ef5910cf466?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Roshan Singh</media:title>
		</media:content>
	</item>
		<item>
		<title>My first big contribution to FOSS</title>
		<link>http://roshansingh.wordpress.com/2009/06/29/my-first-big-contribution-to-foss/</link>
		<comments>http://roshansingh.wordpress.com/2009/06/29/my-first-big-contribution-to-foss/#comments</comments>
		<pubDate>Mon, 29 Jun 2009 06:28:40 +0000</pubDate>
		<dc:creator>Roshan Singh</dc:creator>
				<category><![CDATA[GScribble]]></category>

		<guid isPermaLink="false">http://roshansingh.wordpress.com/?p=214</guid>
		<description><![CDATA[I really feel proud to announce that I have written a client of my own today for posting contents on my blog.
I am really looking forward to fix problems with the interface very soon. As I am new to GUI development, it will take some time till then I ask you to be patient.
The project [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=roshansingh.wordpress.com&blog=3190560&post=214&subd=roshansingh&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I really feel proud to announce that I have written a client of my own today for posting contents on my blog.<br />
I am really looking forward to fix problems with the interface very soon. As I am new to GUI development, it will take some time till then I ask you to be patient.</p>
<p>The project page is <a href="http://sourceforge.net/projects/gscribble">here</a>.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/roshansingh.wordpress.com/214/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/roshansingh.wordpress.com/214/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/roshansingh.wordpress.com/214/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/roshansingh.wordpress.com/214/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/roshansingh.wordpress.com/214/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/roshansingh.wordpress.com/214/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/roshansingh.wordpress.com/214/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/roshansingh.wordpress.com/214/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/roshansingh.wordpress.com/214/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/roshansingh.wordpress.com/214/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=roshansingh.wordpress.com&blog=3190560&post=214&subd=roshansingh&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://roshansingh.wordpress.com/2009/06/29/my-first-big-contribution-to-foss/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/799c90edcf457fbf0dda6ef5910cf466?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Roshan Singh</media:title>
		</media:content>
	</item>
		<item>
		<title>A wonderful experience at Srijan</title>
		<link>http://roshansingh.wordpress.com/2009/06/08/a-wonderful-experience-at-srijan/</link>
		<comments>http://roshansingh.wordpress.com/2009/06/08/a-wonderful-experience-at-srijan/#comments</comments>
		<pubDate>Mon, 08 Jun 2009 10:51:51 +0000</pubDate>
		<dc:creator>Roshan Singh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://roshansingh.wordpress.com/?p=209</guid>
		<description><![CDATA[On Friday, the M.D. Mr. Rahul Devan took the entire Srijan Team to a outing so that people may get to know each other and decide what the company&#8217;s strategies should be. Though I am an intern over here but I also asked to be a part of the trip, which initially I had thought [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=roshansingh.wordpress.com&blog=3190560&post=209&subd=roshansingh&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>On Friday, the M.D. Mr. Rahul Devan took the entire Srijan Team to a outing so that people may get to know each other and decide what the company&#8217;s strategies should be. Though I am an intern over here but I also asked to be a part of the trip, which initially I had thought that I would bunk, but later I decided to go ahead and see it. </p>
<p>Mr Vivek Puri, who had just left IBM and joined Srijan, picked me up from Khanpur bus stop in his car and drove us to &#8216;Teri Resort&#8217; on Faridabad-Gurgaon Express way. On the way I saw Qutub Minar (which I had been planning to visit since I came here) and Chattarpur Temple (which has a statue of Hanuman which is over 40 feet tall). We reached there at 9:40 AM. As he parked his car, we were taken to the conference room in a battery-driven auto-ricksaw. There was greenery everywhere. I must say they had well maintained the resort. </p>
<p>Then the proceedings for the day began. It started with the introduction of the 22 members of Srijan team. Everyone had to speak about his past, his experience with Srijan and his ambitions for future. I was overwhelmed with thoughts when everybody spoke how they wanted to help society some by teaching kids, opening schools at their respective villages. I would like to mention here are Mr Hari from Andhra Pradesh who was deeply touched by farmers of his village and some other nearby villages who were moving out of villages to cities in search of job, where they had to live on footpaths. He said that at some point of his life he would return to his village and teach them how to use new technology to get better harvest and earn money. </p>
<p>Apart from that I saw some people here are not very well educated but with the help of others they are also progressing. It was also great to see even the peons sat with and told their story. </p>
<p>I must say that in the past month that I have stayed here, I never felt this place like an office, its always full of humour. </p>
<p>Then we had lunch after that we again sat down and decided bout the strategies and points of success and failures of the company. Here they were trying to decide the company&#8217;s policy. The M.D. has always tried to make it a democratic place to work and thus he was seeking everyone&#8217;s say in how the company should be run. Almost everything from administration to finance everything was discussed.  Later in the evening we played Cricket and guess what I dropped two catches <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>It was really an experience to be remembered.<br />
It was really interesting to see a company shape up. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/roshansingh.wordpress.com/209/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/roshansingh.wordpress.com/209/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/roshansingh.wordpress.com/209/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/roshansingh.wordpress.com/209/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/roshansingh.wordpress.com/209/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/roshansingh.wordpress.com/209/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/roshansingh.wordpress.com/209/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/roshansingh.wordpress.com/209/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/roshansingh.wordpress.com/209/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/roshansingh.wordpress.com/209/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=roshansingh.wordpress.com&blog=3190560&post=209&subd=roshansingh&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://roshansingh.wordpress.com/2009/06/08/a-wonderful-experience-at-srijan/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/799c90edcf457fbf0dda6ef5910cf466?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Roshan Singh</media:title>
		</media:content>
	</item>
		<item>
		<title>Quick update</title>
		<link>http://roshansingh.wordpress.com/2009/05/28/quick-update/</link>
		<comments>http://roshansingh.wordpress.com/2009/05/28/quick-update/#comments</comments>
		<pubDate>Thu, 28 May 2009 12:26:38 +0000</pubDate>
		<dc:creator>Roshan Singh</dc:creator>
				<category><![CDATA[FOSS]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[opendchub]]></category>

		<guid isPermaLink="false">http://roshansingh.wordpress.com/?p=205</guid>
		<description><![CDATA[These days I am quite busy with Drupal and have learnt that Drupal is not merely a blogging software, you can make a full fledged website out of it.  You can make modules, themes, customise it, and much more than I used to think initially. Apart from that I have learned to use CSS [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=roshansingh.wordpress.com&blog=3190560&post=205&subd=roshansingh&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>These days I am quite busy with Drupal and have learnt that Drupal is not merely a blogging software, you can make a full fledged website out of it.  You can make modules, themes, customise it, and much more than I used to think initially. Apart from that I have learned to use CSS which is also very important for web development. If you are trying to develop websites use Firebug extension from mozilla firefox, it is very useful and you can make your website look better. I am trying to integrate Drupal blogs module and planet module to make something which would let the client make a site which would give blogs from the site and blogs from wordpress, blogger etc stay together and would enable commenting. Apart from that I learned to use various other modules. In short this time Mukti website would be on Drupal not wordpress.</p>
<p>Apart from that I am learned something about XML-RPC module of Python. I have been longing for a desktop blogging software for Gnome. I tried some but they were not good. Now I think of making something.<br />
In the mean time I have spent sometime with <a href="https://sourceforge.net/projects/opendchub">opendchub</a> and have found a major flaw in the software, I think I will be able to fix it by this weekend (the only time I am free these days).</p>
<p>I have also made my first rpm for opendchub. I will very soon release rpms and debs for opendchub. </p>
<p>Lastly, I declare that I want to go to Agra, I need a companion, if somebody is willing please leave a comment <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . Everyone is invited.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/roshansingh.wordpress.com/205/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/roshansingh.wordpress.com/205/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/roshansingh.wordpress.com/205/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/roshansingh.wordpress.com/205/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/roshansingh.wordpress.com/205/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/roshansingh.wordpress.com/205/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/roshansingh.wordpress.com/205/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/roshansingh.wordpress.com/205/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/roshansingh.wordpress.com/205/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/roshansingh.wordpress.com/205/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=roshansingh.wordpress.com&blog=3190560&post=205&subd=roshansingh&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://roshansingh.wordpress.com/2009/05/28/quick-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/799c90edcf457fbf0dda6ef5910cf466?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Roshan Singh</media:title>
		</media:content>
	</item>
	</channel>
</rss>