Java
I am learning Java now a days and this applet i wrote recently.
Image Slideshow :
This applet takes in images and shows them as a slideshow by dissolving the images one after the other. You can see the applet working on the side.
I searched a lot for the sourcecode online but nowhere it was available for free. So I decided to write my own code and make it freely available online for others. You can freely download the code and use it on your webpage. Don't worry you won't see my name or any status bar when the applet is running. You can change the speed of slide show by increasing the sleep time in the code.
Add the following lines to your html file and set the appropriate width and height. Copy the DissolveImage.class file to the same directory. Give the path to all the images. You can add more images.
<object codetype="application/x-java-applet" classid="java:DissolveImage.class" code="DissolveImage" width="129" height="99">
<param name="image1" value="./path to image 1" />
<param name="image2" value="./path to image 2" />
<param name="image3" value="./path to image 3" />
</object>
Source Code : DissolveImage.java
Compiled class : DissolveImage.class
Python
I like programing in Python.
Sudoku :
Apart from the Java Applet, I have also written a python script to solve su do ku. You can download the source code. Just download these two files to a directory and type in the SU-DO-KU that you want to solve in the sudoku_input file.
Source Code :sudoku.py
Input File :sudoku_input
Football :
Recently I wrote a program in python to simulate a football match for the simulation championship Shaastra along with Kumar. We used Gnuplot to its best to plot the Football Ground, Players and the ball. It looks really nice. Our code was selected for the finals. You can download the source code and try it out on your computer. You need to have Gnuplot and python-gnuplot modules for this.
Source Code : football.py

