You can install ImageMagick from source or Binary.
In case of Windows Binary
Download executable binary file. And simply click on the appropriate version and it will launch itself and follow the wizard.
You can type the following command to find out whether ImageMagick is successfully installed o...
Calculating the power of a given number can be done recursively as well.
Given a base number n and exponent e, we need to make sure to split the problem in chunks by decreasing the exponent e.
Theoretical Example:
2² = 2x2
2³ = 2x2x2
or, 2³ = 2² x 2In there lies the secret of our recursive al...
For the sake of readability, which will be useful for beginners when reading VB code as well for full time developers to maintain the code, we can use "Region" to set a region of the same set of events, functions, or variables:
#Region "Events"
Protected Sub txtPrice_TextCh...
$model = Mage::getModel('catalog/product')->getCollection()
Filter based on store:
$mode->addStoreFilter($storeId)
Filter based on product type:
$mode->addAttributeToFilter('type_id', 'configurable')
$mode->addAttributeToFilter('type_id', 'simple')
Filter based on status:
$m...
A static data member of the class may be fully defined within the class definition if it is declared inline. For example, the following class may be defined in a header. Prior to C++17, it would have been necessary to provide a .cpp file to contain the definition of Foo::num_instances so that it wou...
An explicit instantiation definition creates and declares a concrete class, function, or variable from a template, without using it just yet. An explicit instantiation can be referenced from other translation units. This can be used to avoid defining a template in a header file, if it will only be i...
Note: Angular CLI versions are under rapid development. This documentation targets for the latest version.
Prerequisites
To execute and work with the latest version, Angular CLI and the project have dependencies that require node v6.9.0 or higher.
Setup
Make sure that a node version is insta...
Let's take an scenario to understand advance function in better way,
struct User {
var name: String
var age: Int
var country: String?
}
//User's information
let user1 = User(name: "John", age: 24, country: "USA")
let user2 = User(name: "Chan", age...
public async int call_async () {
return 1;
}
call_async.begin ((obj, res) => {
var ret = call_async.end (res);
});
To call an asynchronous functions from a synchronous context, use the begin method and pass a callback to receive the result. The two arguments are:
obj is a GLi...
NPM
If external library like jQuery is installed using NPM
npm install --save jquery
Add script path into your angular-cli.json
"scripts": [
"../node_modules/jquery/dist/jquery.js"
]
Assets Folder
You can also save the library file in your assets/js directory and in...
bindings: {
mandatory: '='
optional: '=?',
foo: '=?bar'
}
Optional attributes should be marked with question mark: =? or =?bar. It is protection for ($compile:nonassign) exception.
We injecting the module in the application
var Registration=angular.module("myApp",["ngRoute"]);
now we use $routeProvider from "ngRoute"
Registration.config(function($routeProvider) {
});
finally we integrating the route, we define "/ad...
In some cases you may want to rerun the same scenario over and over, substituting out the arguments. In this case, Gherkin provides several new keywords to accommodate this situation, Scenario Outline: and Example:. The Scenario Outline keyword tells Cucumber that the scenario is going to run multip...
type Fruit is (Banana, Orange, Pear);
Choice : Fruit := Banana;
A character type is an enumeration that includes a character literal:
type Roman_Numeral is
('I', 'V', 'X', 'L', 'C', 'D', 'M', Unknown);`