Tutorial by Topics: ng

QML is an acronym that stands for Qt Meta-object Language. It is a declarative programming language that is part of the Qt framework. QML's main purpose is fast and easy creation of user interfaces for desktop, mobile and embedded systems. QML allows seamless integration of JavaScript, either dire...
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...
Lua is minimalistic, lightweight and embeddable scripting language. It's being designed, implemented, and maintained by a team at PUC-Rio, the Pontifical Catholic University of Rio de Janeiro in Brazil. The mailing list is open to get involved. Common use-cases for Lua includes scripting video...
selector match partialFunction selector match {list of case alternatives) // This is most common form of the above ParameterDetailsselectorThe expression whose value is being pattern-matched.alternativesa list of case-delimited alternatives.
svn copy [BRANCH-FROM-URL] [BRANCH-TO-URL] -m <COMMIT-LOG-MESSAGE> svn copy [^/PATH-TO-BRANCH-FROM] [^/PATH-TO-BRANCH-TO] -m <COMMIT-LOG-MESSAGE> As you might have noticed, we use svn copy command to create branches, tags and shelves (we'll skip mentioning tags and shel...
A cherry-pick takes the patch that was introduced in a commit and tries to reapply it on the branch you’re currently on. Source: Git SCM Book git cherry-pick [--edit] [-n] [-m parent-number] [-s] [-x] [--ff] [-S[key-id]] commit... git cherry-pick --continue git cherry-pick --quit git cher...
docker run [OPTIONS] IMAGE [COMMAND] [ARG...]
docker rm [OPTIONS] CONTAINER [CONTAINER...] docker attach [OPTIONS] CONTAINER docker exec [OPTIONS] CONTAINER COMMAND [ARG...] docker ps [OPTIONS] docker logs [OPTIONS] CONTAINER docker inspect [OPTIONS] CONTAINER|IMAGE [CONTAINER|IMAGE...] In the examples above, whenever container ...
docker images [OPTIONS] [REPOSITORY[:TAG]] docker inspect [OPTIONS] CONTAINER|IMAGE [CONTAINER|IMAGE...] docker pull [OPTIONS] NAME[:TAG|@DIGEST] docker rmi [OPTIONS] IMAGE [IMAGE...] docker tag [OPTIONS] IMAGE[:TAG] [REGISTRYHOST/][USERNAME/]NAME[:TAG]
Data in the world started to grow tremendously after mobile application came in the market. This huge amount of data became almost impossible to handle with traditional relational database - SQL. NoSQL databases are introduced to handle those data where much more flexibility came like variable n...
In MongoDB 3.0, MMAP (default) and WiredTiger are the stable storage engines. Usually, if your app is read-heavy, use MMAP. If its write-heavy, use WiredTiger. Your solution may also have a mixed replica set members where you can have one node configured with MMAP and another with WiredTiger. Yo...
thread() thread(thread&& other) explicit thread(Function&& func, Args&&... args) ParameterDetailsotherTakes ownership of other, other doesn't own the thread anymorefuncFunction to call in a seperate threadargsArguments for func Some notes: Two std::thread obje...
resource curl_init ([ string $url = NULL ] ) bool curl_setopt ( resource $ch , int $option , mixed $value ) bool curl_setopt_array ( resource $ch, array $options ) mixed curl_exec ( resource $ch ) void curl_close ( resource $ch ) ParameterDetailscurl_init-- Initialize a cURL sessionurl...
The source code for Reachability.h and Reachability.m can be found on Apple's developer documentation site. Caveats Unlike other platforms, Apple is yet to provide a standard set of APIs to determine an iOS device's network status and offer only these code examples linked above. The source fil...
While many scripts, icons, and stylesheets can be written straight into HTML markup, it is best practice and more efficient to include these resources in their own file and link them to your document. This topic covers linking external resources such as stylesheets and scripts into an HTML document....
ParameterDetails--pullEnsures that the base image (FROM) is up-to-date before building the rest of the Dockerfile.
Scollector can be used to monitor processes and services in Windows and Linux. Some processes like IIS application pools are monitored automatically, but usually you need to specify which processes and services you want to monitor.
NSLog(@"text to log"); // Basic text log NSLog(@"data: %f - %.2f", myFloat, anotherFloat); // Logging text including float numbers. NSLog(@"data: %i", myInteger); // Logging text including integer number. NSLog(@"data: %@", myStringOrObject); // Logging...

Page 10 of 164