Tutorial by Topics: do

Docker is an open-source project that automates the deployment of applications inside software containers. These application containers are similar to lightweight virtual machines, as they can be run in isolation to each other and the running host. Docker requires features present in recent linux...
Some times you need to create extended text documentation from you xml comments. Unfortunatly there is no standard way for it. But there are some separate projects that you can use for this case: Sandcastle Docu NDoc DocFX
A swarm is a number of Docker Engines (or nodes) that deploy services collectively. Swarm is used to distribute processing across many physical, virtual or cloud machines. Initialize a swarm: docker swarm init [OPTIONS] Join a swarm as a node and/or manager: docker swarm join [OPTIONS]...
Cat *cat = [[Cat alloc] init]; // Create cat object of type Cat Dog *dog = [[Dog alloc] init]; // Create dog object of type Dog NSObject *someObject = [NSObject alloc]; [someObject init]; // don’t do this XYZObject *object = [XYZObject new]; // Use new to create objects if NO arguments...
Doctypes - short for 'document type' - help browsers to understand the version of HTML the document is written in for better interpretability. Doctype declarations are not HTML tags and belong at the very top of a document. This topic explains the structure and declaration of various doctypes in HTM...
Apache Cordova is used to create Mobile apps with HTML, CSS & JS. Apache Cordova targets multiple platforms with one code base. Apache Cordova is Free and open source. Cordova wraps your HTML/JavaScript app into a native container which can access the device functions of several platforms. ...
Nothing is really random and thus the javadoc calls those numbers pseudorandom. Those numbers are created with a pseudorandom number generator.
Pseudo-elements, just like pseudo-classes, are added to a CSS selectors but instead of describing a special state, they allow you to scope and style certain parts of an html element. For example, the ::first-letter pseudo-element targets only the first letter of a block element specified by the sel...
What is Apache Hadoop? The Apache Hadoop software library is a framework that allows for the distributed processing of large data sets across clusters of computers using simple programming models. It is designed to scale up from single servers to thousands of machines, each offering local computa...
Vendoring is a method of ensuring that all of your 3rd party packages that you use in your Go project are consistent for everyone who develops for your application. When your Go package imports another package, the compiler normally checks $GOPATH/src/ for the path of the imported project. Howeve...
This section provides an overview of what kendo-ui is, and why a developer might want to use it. It should also mention any large subjects within kendo-ui, and link out to the related topics. Since the Documentation for kendo-ui is new, you may need to create initial versions of those related to...
Doctrine 2 is the colloquial term used for the Object Relational Mapper(ORM) component of the Doctrine Project. The ORM sits on top of the Doctrine Project's Database Abstraction Layer (DBAL) providing ways to query and manipulate information in the underlying database using Doctrine's DSL called...
Help text can be located before or after the function line, as long as there is not code between the function line and the start of the help text. Capitalization of the function name only bolds the name, and is not required. If a line is prepended with See also, any names on the line that mat...
Compose is a tool for defining and running multi-container Docker applications. With Compose, you use a Compose file to configure your application’s services. Then, using a single command, you create and start all the services from your configuration. To learn more about all the features of Compos...
Docker data volumes provide a way to persist data independent of a container's life cycle. Volumes present a number of helpful features such as: Mounting a host directory within the container, sharing data in-between containers using the filesystem and preserving data if a container gets deleted ...
Remote management of multiple docker engine hosts. docker-machine manages remote hosts running Docker. The docker-machine command line tool manages the full machine's life cycle using provider specific drivers. It can be used to select an "active" machine. Once selected, an active m...

Page 2 of 17