Tutorial by Topics: m

Bluemix is a platform as a service (PaaS) developed by IBM, to build, run, deploy, and manage applications on the cloud. Bluemix offers a large catalog of services to integrate with your applications. Supported programming languages and runtimes include Java, Node.js, Swift, Go, PHP, Python, and R...
Microsoft Dynamics CRM SDK allows developers to extend the Microsoft Dynamics CRM product, add new functionalities and meet requirements. The SDK allows you to operate and communicate with the platform programmatically through web service messages, as well as to add custom code components like pl...
$response = wp_remote_get( $url, $args ); $response = wp_remote_post( $url, $args ); $response = wp_safe_remote_post( $url, $args ); ParameterDetails$url(string) (Required) Site URL to retrieve.$args(array) (Optional) Request arguments. Returns (WP_Error | array) The response as an ar...
This topic covers matching string patterns, as well as extracting or replacing them. For details on defining complicated patterns see Regular Expressions. grep("query", "subject", optional_args) grepl("query", "subject", optional_args) gsub(&...
Profiling code is a way to avoid the dreaded practice of "premature optimization", by focusing the developer on those parts of the code that actually justify optimization efforts. MATLAB documentation article titled "Measure Performance of Your Program".
cmath.rect(AbsoluteValue, Phase)
The basic pattern for writing a module is to fill a table with keys that are function names and values that are the functions themselves. The module then returns this function for calling code to require and use. (Functions are first-class values in Lua, so storing a function in a table is easy an...
This section provides an overview of what msbuild is, and why a developer might want to use it. It should also mention any large subjects within msbuild, and link out to the related topics. Since the Documentation for msbuild is new, you may need to create initial versions of those related topic...
Machine Learning is the science (and art) of programming computers so they can learn from data. A more formal definition: It is the field of study that gives computers the ability to learn without being explicitly programmed. Arthur Samuel, 1959 A more engineering-oriented definition: A compu...
R comes with classes for dates, date-times and time differences; see ?Dates, ?DateTimeClasses, ?difftime and follow the "See Also" section of those docs for further documentation. Related Docs: Dates and Date-Time Classes. Classes POSIXct A date-time class, POSIXct stores ti...
In order to group input elements and submit data, HTML uses a form element to encapsulate input and submission elements. These forms handle sending the data in the specified method to a page handled by a server or handler. This topic explains and demonstrates the usage of HTML forms in collecting an...
This section provides an overview of what x86 is, and why a developer might want to use it. It should also mention any large subjects within x86, and link out to the related topics. Since the Documentation for x86 is new, you may need to create initial versions of those related topics.
Mongoose is a MongoDB object modeling tool designed to work in an asynchronous environment. Everything in Mongoose starts with a Schema. Each schema maps to a MongoDB collection and defines the shape of the documents within that collection. Mongoose makes it painlessly easy to work with ...
A switch statement allows a variable to be tested for equality against a list of values. Each value is called a case, and the variable being switched on is checked for each switch case. It enables you to write a script that can choose from a series of options, but without requiring you to write a lo...

Page 14 of 161