Tutorial by Topics

public ReturnType this[IndexType index] { get { ... } set { ... }} Indexer allows array-like syntax to access a property of an object with an index. Can be used on a class, struct or interface. Can be overloaded. Can use multiple parameters. Can be used to access and set values. Ca...
Management commands are powerful and flexible scripts that can perform actions on your Django project or the underlying database. In addition to various default commands, it's possible to write your own! Compared to regular Python scripts, using the management command framework means that some tedi...
pinMode(pin, pinMode) // Sets the pin to the mode defined. digitalRead(pin); // Reads the value from a specified digital pin, ParamterDetailspinmodeShould be set to INPUT or INPUT_PULLUP If the input pin is not pulled LOW or HIGH, the value will float. That is, it won't be cle...
This section provides an overview of what nhibernate is, and why a developer might want to use it. It should also mention any large subjects within nhibernate, and link out to the related topics. Since the Documentation for nhibernate is new, you may need to create initial versions of those rela...
This section provides an overview of what rest is, and why a developer might want to use it. It should also mention any large subjects within rest, and link out to the related topics. Since the Documentation for rest is new, you may need to create initial versions of those related topics.
The BigDecimal class provides operations for arithmetic (add, subtract, multiply, divide), scale manipulation, rounding, comparison, hashing, and format conversion. The BigDecimal represents immutable, arbitrary-precision signed decimal numbers. This class shall be used in a necessity of high-precis...
Design patterns are a good way to keep your code readable and DRY. DRY stands for don't repeat yourself. Below you could find more examples about the most important design patterns. In software engineering, a software design pattern is a general reusable solution to a commonly occurring proble...
To install package simply run: install.packages("stringi") to load it: require("stringi")
This section provides an overview of what stripe-payments is, and why a developer might want to use it. It should also mention any large subjects within stripe-payments, and link out to the related topics. Since the Documentation for stripe-payments is new, you may need to create initial version...
A function is basically a named block of code. When you call the function name, the script block within that function runs. It is a list of PowerShell statements that has a name that you assign. When you run a function, you type the function name.It is a method of saving time when tackling repetitiv...
Serial.begin(speed) // Opens the serial port on the given baud rate Serial.begin(speed, config) Serial[1-3].begin(speed) // Arduino Mega only! When writing 1-3 it means you can choose between the numbers 1 to 3 when choosing the serial port. Serial[1-3].begin(speed, config) // Arduino Mega onl...
The std::sort function family is found in the algorithm library.
Android has a dedicated XML namespace intended for tools to be able to record information in XML file. The namespace URI is : http://schemas.android.com/tools and is usually bound to the tools: prefix.
Parallelization on remote machines require libraries to be downloaded on each machine. Prefer package::function() calls. Several packages have parallelization natively built-in, including caret, pls and plyr. Microsoft R Open (Revolution R) also uses multi-threaded BLAS/LAPACK libraries which int...
This extension filters data by either validating or sanitizing it. This is especially useful when the data source contains unknown (or foreign) data, like user supplied input. For example, this data may come from an HTML form. mixed filter_var ( mixed $variable [, int $filter = FILTER_DEFAULT ...
Regular Expressions (sometimes called regexs or regexps) are a textual syntax which represents the patterns which can be matched in the strings operated upon. Regular Expressions, introduced in c++11, may optionally support a return array of matched strings or another textual syntax defining how to...
The Apache Cassandra database is the right choice when you need scalability and high availability without compromising performance. Linear scalability and proven fault-tolerance on commodity hardware or cloud infrastructure make it the perfect platform for mission-critical data. Cassandra's suppor...
insert(document or array of documents) insertOne( 'document', { writeConcern: 'document' } ) insertMany( { [ document 1 , document 2, ... ] }, { writeConcern: document, ordered: boolean } ) find(query, projection) findOne(query, projection) update(query, update) updateOne( query,...

Page 66 of 428