
Search In
Salient features of Quality module:
1-Do a Quality check of the Module with the help of different different Criteria's like
Pylint, Speed Efficiency, Coding Standard, Guidelines and common practices used in OpenERP
2- Evaluate score in percentage (%)
App is in running state or not:
We can know the status (Running or not) of our application by using ActivityManager class and attribute ACTIVITY_SERVICE.
We just check our process name to compare with package name of the project.
ActivityManager a
QA Server and its advantages:- QA stands for Quality Assurance. QA server is used for testing software where all types of tests are performed/done to measuring the quality of the software/product. Software is installed from development server to QA s
Hi Friends,
As you know GROUP BY is used to group the result-set by one or more columns. The SQL query to fetch the total views of blogs created at same day will be:
SELECT date(created_at) as creation_date, sum(view) as total_views
FROM blogs
GROUP
The md5 function in PHP is used to hash or encrypt a string by calculating the md5 .
The syntax is:
md5 ('string', raw)
The string here is passed to encrypt the string and the raw is an optional field,which is the format of output.It uses the RS
PHP $_GET can also be used to collect form data after submitting an HTML form with method="get".
$_GET can also collect data sent in the URL.
You can see below example of $_Get in php.
<!DOCTYPE html>
<html>
<body>
Here you can
It is a common requirement where we need to create a controller that simply returns an image.
Following is one of the possible solutions for implementing the above functionality.
We need to add the following code on controller page
public ActionRe
The following post captures the implementation details for uploading file in ASP.NET MVC.
First we need to create HTML form which would receive the file as input:
@using (Html.BeginForm("Index", "Home", FormMethod.Post, new { enctype = "multipar
As we all know that when we are working on the big project then there is a need of join 2-3 table to get the result.
We can easily understand that by using example of joining 3 table.
Example:
$shares = DB::table('shares')
->join('users', '
1> Go to your wordpress dashboard.
2> Go to plugins --> Add New
3> Type 'reset' in the search bar & click on "Search Plugins"
4> From the search results select "WordPress Reset" & click on "Install Now"
5> Once the plugi
