Tutorial by Topics: as

The goal here is to not lose content, so the regex must not consume (match) any input. Rather it must match between the last character of the previous target input and the first character of the next target input. eg for 8-character substrings, we need to break the input up (ie match) at the place...
Any object-oriented programming language has some form of class inheritance. Let me revise: Imagine you had to program a bunch of fruit: Apples, Oranges and Pears. They all differ in size, shape and color, that's why we have different classes. But let's say their differences don't matter for a sec...
async-await allows asynchronous (means non-blocking, parallel) execution of code. It helps to keep your UI responsive at all times, while running potentially long operations in the background. It is especially useful for I/O operations (like downloading from a server, or reading a file from the H...
This section provides an overview of what raspberry-pi is {it may also be described on Stack Exchange with the shortened term of "RPi"}, and why a developer might want to use it. It has its own dedicated Stack Exchange site here at: http://raspberrypi.stackexchange.com/. This section p...
Aspect ratios are often expressed as a width:height ratio which is often - but not always - simplified and sometimes also as a simple floating point integer. All of the following aspect ratios are the same value expressed in different ways: 1280:720 16:9 1.7777777777777777777777777777778 ...
An async function is one that returns a promise. await yields to the caller until the promise resolves and then continues with the result. An iterator allows the collection to be looped through with a for-of loop. An async iterator is a collection where each iteration is a promise which can be awa...
A caffe user sends instructions to perform specific operations to caffe objects. These objects interact with each other based on their design specifications and carry out the operation(s). This is a basic principle OOP paradigm. While there are many caffe object types (or C++ classes), for a beg...
BACKUP DATABASE database TO backup_device [ ,...n ] WITH with_options [ ,...o ] RESTORE DATABASE database FROM backup_device [ ,...n ] WITH with_options [ ,...o ] ParameterDetailsdatabaseThe name of the database to backup or restorebackup_deviceThe device to backup or restore the database f...
Castle Windsor is a mature Inversion of Control container available for .NET and Silverlight. The current release version is 3.3.0, released in May 2014. Refer to the links on the right to download it from GitHub or NuGet. Castle Core version 4.0.0 beta was released in July 2016. To Castle'...
Curses is a basic terminal ( or character display ) handling module from Python. This can be used to create Terminal based User interfaces or TUIs. This is a python port of a more popular C library 'ncurses'
VariableExplanationJUSERIDRandom user idJUSERNAMESpecified login for admin userJUSEREMAILSpecified email for admin userJUSERPASSSpecified password (will be hashed)DBSpecified Database nameDBUSERSpecified Database user for joomlaDBPASSSpecified Database user password for joomlaDBPREFIXSpecified Data...
Explicit parameters: { parameterName: ParameterType, otherParameterName: OtherParameterType -> anExpression() } Inferred parameters: val addition: (Int, Int) -> Int = { a, b -> a + b } Single parameter it shorthand val square: (Int) -> Int = { it*it } Si...

Page 18 of 40