Tutorial by Topics: de

ParameterDetailscard_dataJSON object containing payment information for transactioncredit_card_detailsJSON object containing credit card data that is sent to PayPal to be vaultedclient_idYour PayPal application client ID (OAuth 2 credentials)paypalPayPal Node SDK referencesecretYour PayPal applicat...
RecyclerView addItemDecoration(RecyclerView.ItemDecoration decoration) RecyclerView addItemDecoration(RecyclerView.ItemDecoration decoration, int index) ParameterDetailsdecorationthe item decoration to add to the RecyclerViewindexthe index in the list of decorations for this RecyclerView. T...
This spoiler syntax is specific to Stack Exchange, and is not part of a standard markdown syntax.
inline: `Code between backticks` or <code>Code between these HTML tags</code> multiline: ____Code that is indented on each line or <pre><code>Multiple lines of code between these HTML tags</code></pre>
One approach that can be taken to writing software is to create dependencies as they are needed. This is quite an intuitive way to write a program and is the way that most people will tend to be taught, partly because it is easy to follow. One of the issues with this approach is that it can be h...
Delphi is a general-purpose language based on an Object Pascal dialect with its roots coming from Borland Turbo Pascal. It comes with its own IDE designed to support rapid application development (RAD). It allows cross-platform native (compiled) application development from a single code base. Cu...
Destructuring is a pattern matching technique that is added to Javascript recently in EcmaScript 6. It allows you to bind a group of variables to a corresponding set of values when their pattern matches to the right hand-side and the left hand-side of the expression. let [x, y] = [1, 2] let ...
box-sizing: parameter; ParameterDetailcontent-boxWidth and height of the element only includes content area.padding-boxWidth and height of the element includes content and padding.border-boxWidth and height of the element includes content, padding and border.initialSets the box model to its ...
ASDF - Another System Definition Facility ASDF is a tool for specifying how systems of Common Lisp software are made up of components (sub-systems and files), and how to operate on these components in the right order so that they can be compiled, loaded, tested, etc.
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]...
Dependency Injection (DI) is a fancy term for "passing things in". All it really means is passing the dependencies of an object via the constructor and / or setters instead of creating them upon object creation inside the object. Dependency Injection might also refer to Dependency Injecti...
lm(formula, data, subset, weights, na.action, method = "qr", model = TRUE, x = FALSE, y = FALSE, qr = TRUE, singular.ok = TRUE, contrasts = NULL, offset, ...) ParameterMeaningformulaa formula in Wilkinson-Rogers notation; response ~ ... where ... contains terms corresponding to v...
Debug.Print(string) Stop() / Stop
uname - to print information about your operating system. uname [OPTION]

Page 2 of 47