Tutorial by Topics

This meta post is similar to the python version http://stackoverflow.com/documentation/python/394/meta-documentation-guidelines#t=201607240058406359521. Please make edit suggestions, and comment on those (in lieu of proper comments), so we can flesh out/iterate on these suggestions :)
https://technet.microsoft.com/en-us/library/hh849921.aspx
Testing of native device features like Camera, Vibration and others, many of which are found in the documentation of Ionic Native, cannot be done in the browser. This is an inherent limitation of the fact that Cordova, the platform on which Ionic depends to be able to access native Android, iOS, a...
Operators are used to assign or compare values. They consist of a single symbol or keyword and are usually sandwiched between a left and a right value. For example: right = left. Operators are intrinsic to the language (such as =), and not functions such as those provided by System.Math.
Related question: Idiomatic way of logging in Kotlin
This section provides an overview of what artifactory is, and why a developer might want to use it. It should also mention any large subjects within artifactory, and link out to the related topics. Since the Documentation for artifactory is new, you may need to create initial versions of those r...
SMIL animation via the <animate> element is currently (July 2016) supported in major browsers with the exception of Microsoft browsers. There is a library (fakeSMIL) which can be used as a polyfill for Microsoft compatibility. Chrome 45 deprecated SMIL in favor of CSS animations and forthco...
Resources Overviews/comparisons: Agner Fog's nice calling convention guide. Also, x86 ABIs (wikipedia): calling conventions for functions, including x86-64 Windows and System V (Linux). SystemV x86-64 ABI (official standard). Used by all OSes but Windows. (This github wiki page, kep...
Filter declaration: <filter id="filter-id"> ...list of child primitives ... </filter> Apply filter via SVG attribute: <elementname filter="url(#filter-id)" ... /> Apply filter via CSS property: (-prefix-)filter: url("#filter-id"); Element ...
Note that the Battery Status API is no longer available due to privacy reasons where it could be used by remote trackers for user fingerprinting. The Battery Status API is an Application Programming Interface for the client's battery status. It provides information on: battery chargin...
NameAndroid versionRelease dateAPI-levelBuild.VERSION_CODESAngel Cake (Alpha)1.023 September 20081BASEBattenberg (Beta)1.19 February 20092BASE_1_1Cupcake1.530 April 20093CUPCAKEDonut1.615 September 20094DONUTEclair2.026 October 20095ECLAIR2.0.13 December 20096ECLAIR_0_12.112 January 20107ECLAIR_MR...
This section provides an overview of what composer-php is, and why a developer might want to use it. It should also mention any large subjects within composer-php, and link out to the related topics. Since the Documentation for composer-php is new, you may need to create initial versions of thos...
This section provides an overview of what phpunit is, and why a developer might want to use it. It should also mention any large subjects within phpunit, and link out to the related topics. Since the Documentation for phpunit is new, you may need to create initial versions of those related topic...
Database seeding allows you to insert data, general test data into your database. By default there is a DatabaseSeeder class under database/seeds. Running seeders can be done with php artisan db:seed Or if you only want to process a single class php artisan db:seed --class=TestSeederClass ...
Converting strings to integers is one of common tasks. Here we'll show how to convert decimal strings to integers. Psuedo code to do this is: function string_to_integer(str): result = 0 for (each characters in str, left to right): result = result * 10 add ((code of t...

Page 127 of 428