Software Development

From Pakistan

Archive for January 2009

Testing Tools

without comments

For our testing automation and testing environment, some time ago I did some research on the available tools and also evaluated some of them.

I thought, that the tools of list I found during the research (though I didn’t try all of them) would be worth sharing with readers:

I will try to add a small description for each of the testing tool in the above list.

Written by mrkkhattak

January 28, 2009 at 12:35 pm

Posted in Testing

PHP’s empty and isset function

without comments

The best way to check if a variable consists any value or is empty is to use empty function from PHP itself.

$myVar = 0;
if (empty($myVar)) {
    echo '$myVar is either 0, empty, or not set at all';
}

Though, while coding in PHP it shouldn’t be confused with isset which checks if a variable is set or not set, whether that variable is empty.

$myVar = 0;
if (isset($myVar)) {
    echo '$myVar is set even though it is empty';
}

Written by mrkkhattak

January 16, 2009 at 11:11 am

Posted in Development

Prayers and Hope

without comments

I was thinking to write something here but always couldn’t write. I am thinking of many things at the moment and I don’t know if I would be able to implement even one from them.

Let’s pray and hope that I could write a bit reqular here and continue on the projects I have started working on.

I have changed the theme so that it feels a bit fresh on my blog :)

Written by mrkkhattak

January 15, 2009 at 3:36 pm

Posted in Personal