Tutorial by Topics: h

$PSCmdlet.ShouldProcess("Target") $PSCmdlet.ShouldProcess("Target", "Action") ParameterDetailsTargetThe resource being changed.ActionThe operation being performed. Defaults to the name of the cmdlet. $PSCmdlet.ShouldProcess() will also automatically write a m...
A class is an extensible program-code-template for creating objects, providing initial values for state (member variables) and implementations of behavior (member functions or methods).A class is a blueprint for an object. It is used as a model to define the structure of objects. An object contains ...
WinAPI (also known as Win32; officially called the Microsoft Windows API) is an application programming interface written in C by Microsoft to allow access to Windows features. The main components of the WinAPI are: WinBase: The kernel functions, CreateFile, CreateProcess, etc WinUser: The GUI...
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...
The official overview for Google Apps Script is published at http://www.google.com/script/start, from there Google Apps Script is a JavaScript cloud scripting language that provides easy ways to automate tasks across Google products and third party services and build web applications. From h...
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.
What is Boost? Boost is a large collection of free, high quality C++ libraries that cover a broad range of topics. It is often considered a "second standard library" for C++, since many common problems in C++ are solved by using Boost. From boost.org: Boost provides free peer-revi...
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...
_ // wildcard pattern, matches anything¹ ident // binding pattern, matches anything and binds it to ident¹ ident @ pat // same as above, but allow to further match what is binded ref ident // binding pattern, matches anything and binds it to a reference ident¹ ref mut ident // binding pattern,...
ABAP is a programming language developed by SAP for programming business applications in the SAP environment. Previously only procedural, ABAP is now also an object-oriented language thanks to the ABAP Objects enhancement. VersionRelease DateABAP 7.502015-10-20ABAP 7.402012-11-29ABAP 7.02006-...
ClojureScript is a version of Clojure that compiles to javascript code and runs in the browser. While it is mostly the same as Clojure, there are a few differences (mainly, it lacks some api calls that invoke java functions that are not available in javascript)
sails.js is an MVC (Model View Controller) web framework for node.js that emulates familiar MVC frameworks like Ruby on Rails. sails.js is based on Express and provides websocket support via socket.io. sails.js provides a set of conventions and default configurations to quickly get a new website ...
This section provides an overview of what github is, and why a developer might want to use it. It should also mention any large subjects within github, and link out to the related topics. Since the Documentation for github is new, you may need to create initial versions of those related topics. ...
The __name__ special variable is used to check whether a file has been imported as a module or not, and to identify a function, class, module object by their __name__ attribute. The Python special variable __name__ is set to the name of the containing module. At the top level (such as in the i...

Page 18 of 159