How to bypass cross-domain java and javascript security restrictions

In a recent project I was developing a java applet that communicates with JavaScript. The applet also loads some dynamic images from a server. Soon I ran into this problem. While running it from the local filesystem it couldn’t load the required images from the server; throws up some security error. Googling a bit, found [...]

Bengali phonetic text editor in TCL/TK

Recently I developed a bengali phonetic text editor TCL/TK. It is still very early stage. You can download and test it. comments are welcome.

Type hinting in PHP

Type hinting is a php5 feature that can be really helpful in OO-driven development. It is a very common feature seen in any strongly-typed language.
It forces to pass the parameters of functions and methods to be of certain types. But it still lacks something important. Type hinting is only possible for classes and array.
There is [...]

A php implementation of Dancing Link ( Algorithm X) Sudoku problem

As an assignment of Artificial Intelligence course I have recently implemented Knuth’s Algorithm X for solving sudoku problem. You can see it in action here.