Tutorial by Topics: o

This section provides an overview of what android-layout is, and why a developer might want to use it. It should also mention any large subjects within android-layout, and link out to the related topics. Since the Documentation for android-layout is new, you may need to create initial versions o...
You can find a good explanation on why other methods are discouraged/inaccurate here : http://stackoverflow.com/a/11169920/4628637
async and await build on top of promises and generators to express asynchronous actions inline. This makes asynchronous or callback code much easier to maintain. Functions with the async keyword return a Promise, and can be called with that syntax. Inside an async function the await keyword can be...
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...
While Python's context managers are widely used, few understand the purpose behind their use. These statements, commonly used with reading and writing files, assist the application in conserving system memory and improve resource management by ensuring specific resources are only in use for certain ...
CodeIgniter is a MVC framework written in, and for, PHP. It is lightweight compared to other MVC frameworks out there, at the cost of having less functionality, e.g. there is no built in authentication system which might be a part of other frameworks. CodeIgniter is a good choice of frameworks f...
val extractor(extractedValue1, _ /* ignored second extracted value */) = valueToBeExtracted valueToBeExtracted match { case extractor(extractedValue1, _) => ???} val (tuple1, tuple2, tuple3) = tupleWith3Elements object Foo { def unapply(foo: Foo): Option[String] = Some(foo.x); }
Protractor is an end-to-end test framework for AngularJS applications. Protractor is a wrapper (built on the top) around Selenium WebDriver, so it contains every feature that is available in the Selenium WebDriver. Additionally, Protractor provides some new locator strategies and functions which ...
position: static|absolute|fixed|relative|sticky|initial|inherit|unset; z-index: auto|number|initial|inherit; ParameterDetailsstaticDefault value. Elements render in order, as they appear in the document flow. The top, right, bottom, left and z-index properties do not apply.relativeThe ele...
Rotate Transform transform: rotate(<angle>) Translate Transform transform: translate(<length-or-percentage> [, <length-or-percentage>]?) transform: translateX(<length-or-percentage>) transform: translateY(<length-or-percentage>) Skew Transform transform: skew(&...
An exception is an object that represents the occurrence of an exceptional condition. In other words, it indicates that something went wrong. In Ruby, exceptions are often referred to as errors. That's because the base Exception class exists as a top-level exception object element, but user-defin...
This section provides an overview of what neo4j is, and why a developer might want to use it. It should also mention any large subjects within neo4j, and link out to the related topics. Since the Documentation for neo4j is new, you may need to create initial versions of those related topics. ...
Official documentation Manifest File Format Format Manifest file is written in JSON (JavaScript Object Notation) format. This format differs from more loose rules of writing object literals in JavaScript code. Among important differences: Every key name and string literal must be in d...
The Polymer project consists of: Polymer library: Polymer is a lightweight library that helps you take full advantage of Web Components. With Web Components, you can create reusable custom elements that interoperate seamlessly with the browser’s built-in elements, or break your app up into righ...
SharePoint can refer to one or more products from the Microsoft SharePoint family. SharePoint Foundation: This was the underlying technology for all SharePoint sites and is no longer available for SharePoint 2016 SharePoint Server: This is the on-premises version of SharePoint. You can deploy ...
This section provides an overview of what ironpython is, and why a developer might want to use it. It should also mention any large subjects within ironpython, and link out to the related topics. Since the Documentation for ironpython is new, you may need to create initial versions of those rela...
loop { block } // infinite loop while condition { block } while let pattern = expr { block } for pattern in expr { block } // expr must implement IntoIterator continue // jump to the end of the loop body, starting a new iteration if necessary break // stop the loop ...

Page 22 of 283