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…
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…
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-<version> and /usr/java/latest links to the latest version installed, so it is better to use the later. Then download…
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 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)…
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: “Could not start rtp muxer session”. The solution is to move your current ~/.gstreamer-0.10 to somewhere. Let pidgin create a new one. Then I…
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 Posted from GScribble.
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…
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.…
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’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…
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…