‘S’ will represent the starting line.
‘F’ will represent the finishing line.
‘#’ will represent an obstacle/wall.
‘ ‘ will represent free space.
The maze will be stored into a two dimensional array maze[MAZE_HEIGHT][MAZE_WIDTH].
Read More‘S’ will represent the starting line.
‘F’ will represent the finishing line.
‘#’ will represent an obstacle/wall.
‘ ‘ will represent free space.
The maze will be stored into a two dimensional array maze[MAZE_HEIGHT][MAZE_WIDTH].
Read MoreThe point of this function is to input two binary vectors E2 and F2 that are respectively the integral and fractional parts of a positive binary number b, converts them to octals and outputs the results as 2 vectors E8 and F8 that are respectively the integral and fractional parts of a positive octal number o.
Read More
@RamziKomati
Ramzi Komati
October 20, 2011

@RamziKomati
Ramzi Komati
October 20, 2011

@RamziKomati
Ramzi Komati
October 20, 2011

@RamziKomati
Ramzi Komati
October 20, 2011

See what really happened at the 3G launching.
Read More

F8 Lite theme
F8 Lite is a popular photoblog theme provided by WordPress originaly created by Thad Allender. You can do some awesome WordPress blogs using F8 Lite, check out my latest creation artissus.com.
One of the major problems in F8 Lite was the image squashing/stretching in the post thumbnails.
To fix this issue you can do one of the following:
Log in to your WordPress account, go to Settings > Media.
Edit Thumbnail size to: 310 x 150
Edit Medium size to: 590 x 0
Edit Large size to: 950 x 0
In this tutorial you will learn how to detect the total number of online users in your website and store the data in a database.
This script is very important to study the performance of your web server. Having more than 2,000 online users on a shared hosting server is sign that it’s time to upgrade your server to a full dedicated (supporting around 25,000 online users or more).
Start by creating a Global.asax file in your root directory of your ASP.Net application. This file is also known as ASP.Net application file, it will contain code for responding to application top-level events raised by ASP.Net or HttpModules.
Read MoreFade smoothly any HTML object without using jQuery.
function fadeInOut(obj, startValue, endValue) { var t = (startValue < endValue) ? 0 : 1; var fps = window.setInterval(function() { if (startValue < endValue) { if (t < endValue) { obj.style.opacity = t; obj.style.filter = "alpha(opacity = " + (t * 100) + ")"; t += 0.05; } else { window.clearInterval(fps); } } else { if (t >= endValue) { obj.style.opacity = t; obj.style.filter = "alpha(opacity = " + (t * 100) + ")"; t -= 0.05; } else { t = 1; window.clearInterval(fps); } } }, 8); }Read More