After more than 34 months of active development, and with the contributions of thousands, Mozilla announces the release date for Firefox 3; it is June 17th. With more than 15,000 improvements, Firefox 3 is faster, safer and smarter than before. Download Firefox during Download Day(17/08/2008 Tuesday) and enjoy increased security, blinding speed and cool new features that will change the way you use the Web. And participating in a Guinness World Record is a bonus!
Type hinting in PHP
By mamnun - May 1st, 2008
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 no support for scaler data types(like int, string,...). I hope this will be supported in any recent release.
A php implementation of Dancing Link ( Algorithm X) Sudoku problem
By mamnun - April 15th, 2008
Tagged:
As an assignment of Artificial Intelligence course I have recently implemented Knuth's Algorithm X for solving sudoku problem.
