Posts

Showing posts from 2016

SonarQube Introduction

Image
W hat is SonarQube SonarQube is an automated code review tool which plays a major role in static code analysis in the industry. However SonarQube is not only an automated code review tool but it is also an open source quality management platform which used for continuous analysis and measurement of technical quality of source code. This takes the programming code as the input to the system, analyses it using pre-defined coding standards/rules and provides the outcome in a web format. This web based outcome will summarize the status of the code in an informative manner to the management as well as to the developers to help their quick decisions of the affected code. Configure SonarQube v5.6.1 As the first step in configuring the SonarQube community version, Download the SonarQube v5.6.1 from official SonarQube website.( https://www.sonarqube.org/downloads/ ) After downloading the SonarQube v5.6.1, unzip it to a specific location as mentioned below accor

Ajax Request Response

AJAX (Asynchronous Javascript and XML) This is a client side script that use to get and pass data from and to the server or database without completely refreshing or without any post back. Mainly use to update a web page partially. simple ajax request/response $. ajax ({ type :'GET' , //this specifies the type of the request. ex:- GET , POST url :'getDataFromThisURL.php' , //this specifies the url which should be redirect when the ajax                                                                 //response executes data :{key:value} , //this is optional. if we have to pass any data(ex:-form data) then we should pass                                  //that data like this. in here KEY is the variable which will pass with the request                                    //and the VALUE is                               //the value we want to assign to that KEY variable and pass with the request success :function(responseData){ //success - this is the blo