Tutorial by Topics: o

All algorithms are a list of steps to solve a problem. Each step has dependencies on some set of previous steps, or the start of the algorithm. A small problem might look like the following: This structure is called a directed acyclic graph, or DAG for short. The links between each node in ...
Many programming languages use sockets to communicate across processes or between devices. This topic explains proper usage the the sockets module in Python to facilitate sending and receiving data over common networking protocols. ParameterDescriptionsocket.AF_UNIXUNIX Socketsocket.AF_INETIPv4...
Routing is how ASP.NET MVC matches a URI to an action. Routing module is responsible for mapping incoming browser requests to particular MVC controller actions. MVC 5 supports a new type of routing, called attribute routing. As the name implies, attribute routing uses attributes to define routes. A...
POSIX style, end of word: [[:>:]] POSIX style, start of word: [[:<:]] POSIX style, word boundary: [[:<:][:>:]] SVR4/GNU, end of word: \> SVR4/GNU, start of word: \< Perl/GNU, word boundary: \b Tcl, end of word: \M Tcl, start of word: \m Tcl, word boundary: \y Portable ER...
Random number generation in C++ is provided by the <random> header. This header defines random devices, pseudo-random generators and distributions. Random devices return random numbers provided by operating system. They should either be used for initialization of pseudo-random generators or...
import {component} from 'libName'; // Will import the class "component" import {component as c} from 'libName'; // Will import the class "component" into a "c" object import component from 'libname'; // Will import the default export from libName import * as lib fr...
ParameterDescriptiontitleThe UIBarButtonItem titlestyleThe style of the UIBarButtonItemtargetThe object to receive the UIBarButtonItem actionactionThe selector (method) to be performed when the UIBarButtonItem is pressed Referencing self.navigationItem assumes that the UIViewController is embedde...
This code will turn off the capability for a user to hold down the Shift key when opening a database to skip the default form opening and allow the user access to the Navigation Pane and VB Editor. In DB’s that you do not want users to have access to either of these (along with disabling the use ...
Log.v(String tag, String msg, Throwable tr) Log.v(String tag, String msg) Log.d(String tag, String msg, Throwable tr) Log.d(String tag, String msg) Log.i(String tag, String msg, Throwable tr) Log.i(String tag, String msg) Log.w(String tag, String msg, Throwable tr) Log.w(String tag, String...
A set is a collection of items which can be anything. Whatever operator we need to work on these sets are in short the set operators and the operation is also known as set operation. Basic set operation includes Union, Intersection as well as addition, subtraction, etc. Group-Object Gr...
ParameterDescriptionpath_or_bufstring or file handle, default None File path or object, if None is provided the result is returned as a string.sepcharacter, default ‘,’ Field delimiter for the output file.na_repstring, default ‘’ Missing data representationfloat_formatstring, default None Format st...
filter: none (default value) filter: initial (defaults to none); filter: inherit (defaults to parent value); filter: blur(px) filter: brightness(number | %) filter: contrast(number | %) filter: drop-shadow(horizontal-shadow-px vertical-shadow-px shadow-blur-px shadow- - spread color) filte...
For more information, visit the official documentation at http://getbootstrap.com/javascript/#carousel, where the basic HTML and Javascript usage examples and information are derived from. It should be noted that carousels do not function correctly in IE 9 and earlier due to the use of CSS3 trans...
The global.json file is extremely powerful and unique to .NET Core and ASP.NET Core applications.
CREATE ROLE name [ [ WITH ] option [ ... ] ] CREATE USER name [ [ WITH ] option [ ... ] ] where option can be: SUPERUSER | NOSUPERUSER | CREATEDB | NOCREATEDB | CREATEROLE | NOCREATEROLE | CREATEUSER | NOCREATEUSER | INHERIT | NOINHERIT | LOGIN | NOLOGIN | CONNECTION LIMIT connlimit | ...

Page 36 of 283