Tutorial by Topics

typedef struct { typeA propertyA; typeB propertyB; ... } StructName In Objective C, you should almost always use an object instead of a struct. However, there are still cases where using a struct is better, such as: When you're going to be creating and destroying a lot of values of the (...
public static GameObject Find(string name); public static GameObject FindGameObjectWithTag(string tag); public static GameObject[] FindGameObjectsWithTag(string tag); public static Object FindObjectOfType(Type type); public static Object[] FindObjectsOfType(Type type); Which method to...
New versions of Ubuntu are released by Canonical every 6 months. Every two years, the release is a Long Term Support version. Support lifespan Normal release - supported for 9 months Long Term Support (LTS) release    • LTS releases for Ubuntu Desktop, Ubuntu Server, Ubuntu Core, and Ubuntu ...
$ shopt -u option # Deactivate Bash's built-in 'option' $ shopt -s option # Activate Bash's built-in 'option' Character Classes Valid character classes for the [] glob are defined by the POSIX standard: alnum alpha ascii blank cntrl digit graph lower print punct space upper word xdig...
Entity Framework (EF) Core is a lightweight and extensible version of the popular Entity Framework data access technology. EF Core is an object-relational mapper (O/RM) that enables .NET developers to work with a database using .NET objects. It eliminates the need for most of the data-access code...
There are many excellent reference and example sources on the Web. Some examples and explanations are created here as a collection point for quick answers. More detailed illustrations may be linked to external content (instead of copying existing original material).
Functor is the class of types f :: * -> * which can be covariantly mapped over. Mapping a function over a data structure applies the function to all the elements of the structure without changing the structure itself. A Functor can be thought of as a container for some value, or a computation c...
git worktree add [-f] [--detach] [--checkout] [-b <new-branch>] <path> [<branch>] git worktree prune [-n] [-v] [--expire <expire>] git worktree list [--porcelain] ParameterDetails-f --forceBy default, add refuses to create a new working tree when <branch> is a...
Azure Service Fabric is one of the PaaS services offered by Azure. It is based on the notion of containers and services: unlike Compute services (Web Roles and Worker roles), your code does not run inside one (or more) Virtual Machines, but instead they are run inside a container, sharing it with...
VHDL is a compound acronym for VHSIC (Very High Speed Integrated Circuit) HDL (Hardware Description Language). As a Hardware Description Language, it is primarily used to describe or model circuits. VHDL is an ideal language for describing circuits since it offers language constructs that easily d...
std::atomic<T> std::atomic_flag std::atomic allows atomic access to a TriviallyCopyable type, it is implementation-dependent if this is done via atomic operations or by using locks. The only guaranteed lock-free atomic type is std::atomic_flag.
if expression ... end if expression ... else ... end if expression ... elseif expression ... end if expression ... elseif expression ... else ... end ParameterDescriptionexpressionan expression that has logical meaning
A stack is a container of objects that are inserted and removed according to the last-in first-out (LIFO) principle. In the pushdown stacks only two operations are allowed: push the item into the stack, and pop the item out of the stack. A stack is a limited access data structure - elements can be a...
Macros are a form of compile time metaprogramming. Certain elements of Scala code, such as annotations and methods, can be made to transform other code when they are compiled. Macros are ordinary Scala code that operate on data types that represent other code. The [Macro Paradise][] plugin extends t...
The INSERT INTO statement is used to insert new records in a table.

Page 149 of 428