Software Development

From Pakistan

Testing Tools

leave a comment »

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 Meraj

January 28, 2009 at 12:35 pm

Posted in Testing

PHP’s empty and isset function

leave a comment »

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 Meraj

January 16, 2009 at 11:11 am

Posted in Development

Prayers and Hope

leave a comment »

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 Meraj

January 15, 2009 at 3:36 pm

Posted in Personal

Domain Specific Language QA

leave a comment »

An interesting question and answers about DSL (Domain Specific Language) with Martin Fowler.

What is a Domain Specific Language?
A Domain Specific Language (DSL) is a computer programming language of limited expressiveness focused on a particular domain. Most languages you hear of are General Purpose Languages, which can handle most things you run into during a software project. Each DSL can only handle one specific aspect of a system.

Read complete question and answers here.

Written by Meraj

September 10, 2008 at 9:38 am

Posted in Development

AgilePakistan First Meeting

with 2 comments

AgilePakistan is going to have its first meeting on Saturday, 23rd August 2008 at 4PM.

For further information about this meeting please check this.

Everyone is encouraged to join us in this meeting.

Written by Meraj

August 19, 2008 at 12:10 pm

Posted in General

What Is A Blog?

with 2 comments

I have been following a few blogs from their beginning. Daily Blog Tips is one such excellent blog, I find it very useful as it gives me the knowledge I need to have about today’s phenomenon “Blogs”.

Yesterday Daniel Scocco of Daily Blog Tips posted an article on “What is A Blog”, which is a group writing project. I found this question of “What is A Blog” very interesting as I recently started blogging, I also wanted to share with you that what do I think of “What is A Blog”?

I think it is a platform for me:

  • To express myself
  • To share the experience I have
  • To share the knowledge I have
  • To learn from other people

As it is a group writing project, I am looking forward to read very interesting “What is A Blog” from other participants.

Written by Meraj

August 12, 2008 at 11:34 am

Posted in General

Final Project For CS201

leave a comment »

Our final term for this semester is going to start in the last week of August. I am also working on the final project for my course CS201. The project I am working on is a reservation system for a bus company. It is required to have:

  • New Reservation
  • Update Reservation
  • Delete Reservation
  • Search Reservation

The deadline for this project is 9th August. So I will be busy in this and will try to post the source code, once I get the marking on this project.

I am writing this project in C/C++ and using notepad++ for writing C/C++ code.

Written by Meraj

August 7, 2008 at 12:24 pm

Posted in Development, Personal

Follow

Get every new post delivered to your Inbox.