
Search In
Ad hoc Testing
Ad hoc Testing is a software testing process where a Software tester dose testing without any proper planning. In Ad hoc testing is performed without any test case execution. Here testing is done without having any proper understandin
Exploratory Testing:-
Exploratory testing is about exploring, finding out about the software, what it does, what it doesn’t do, what works and what doesn’t work.
The plainest definition of exploratory testing is test design and test execu
I came across a project where I have to develop "Web Services Using Drupal 7". Though Drupal 7 core standard contains no RESTful API, but this is easy to set up using modules such as: Services, RestWS or Restful. While working on Web API's I found th
When coding with some framework we seldom come to a stage where we need to upgrade our framework as latest version of it is released. Upgrading your framework to latest version is not often so easy especially if there is a major version update.
With
When on Linux you may see that file system may behave strangely sometimes which is generally due to corrupt inodes or in all the complete file system.
To overcome this you may want to run a file system check using fsck command.
But in some cond
To archive a snapshot first you need to create a mongoDB snapshot, The same is discussed on post Creating a mongDB snapshot with LVM. Now mount the created snapshot and copy this to separated storage volume. Or you can create a block level copy of sn
jQuery-noConflict():
In order to resolve the conflict between Jquery & any other
JavaScript framework that also use the '$' sign as a shortcut the jQuery team implemented a
method called the noConflict() method.
&nbs
Hello all,
While working with HTML Editor I faced an issues that, Application was getting stuck when changing elements with contenteditable="false" to numbered or bulleted list.
To change a multiline into numbered or bulleted list, we generally us
These are few methods which have slight difference.
Lets discuss it one by one :
Shift() :
This method is similar to pop() method, the only difference is that it works at the beginning of the array. It delete the first element from the given array
There are three type of visibility scope:
Public
Private
Protected
PUBLIC:
Variable or function of public scope can be accessed throughout the program.
PRIVATE :
Variable or function of private scope can be accessed only with in the class they
