Tutorial by Topics: v

ParameterDetailsGoogleMapthe GoogleMap is an object that is received on a onMapReady() eventMarkerOptionsMarkerOptions is the builder class of a Marker, and is used to add one marker to a map. Requirements Google Play Services SDK installed. A Google Console Account. A Google Maps API Key o...
RMI requires 3 components: client, server and a shared remote interface. The shared remote interface defines the client-server contract by specifying the methods a server must implement. The interface must be visible to the server so that it can implement the methods; the interface must be visible...
JavaScript (not to be confused with Java) is a dynamic, weakly-typed language used for client-side as well as server-side scripting. JavaScript is a case-sensitive language. This means the language considers capital letters to be different from their lowercase counterparts. Keywords in JavaScri...
$variable = 'value'; // Assign general variable $object->property = 'value'; // Assign an object property ClassName::$property = 'value'; // Assign a static class property $array[0] = 'value'; // Assign a value to an index of an array $array[] = 'value'; // Push an item at the end of an ar...
VersionRelease Date1.01983-01-012.02007-10-27Modern2014-03-10
This is a set of examples highlighting basic usage of SQL Server. VersionRelease DateSQL Server 20162016-06-01SQL Server 20142014-03-18SQL Server 20122011-10-11SQL Server 2008 R22010-04-01SQL Server 20082008-08-06SQL Server 20052005-11-01SQL Server 20002000-11-01
global a, b, c nonlocal a, b x = something # binds x (x, y) = something # binds x and y x += something # binds x. Similarly for all other "op=" del x # binds x for x in something: # binds x with something as x: # binds x except Exception as ex: # binds ex inside block ...
timeoutID = setTimeout(function() {}, milliseconds) intervalID = setInterval(function() {}, milliseconds) timeoutID = setTimeout(function() {}, milliseconds, parameter, parameter, ...) intervalID = setInterval(function() {}, milliseconds, parameter, parameter, ...) clearTimeout(timeoutID) cle...
Visual Basic .NET is the official successor to Microsoft's original Visual Basic programming language. Visual Basic [.NET] appears to have similarities to Python with the lack of semicolons and brackets, but shares with C++ the basic structure of functions. Curly braces are absent in VB .NET, but ...
ParameterDetailsPARTITION BYThe field(s) that follows PARTITION BY is the one that the 'grouping' will be based on The OVER clause determines a windows or a subset of row within a query result set. A window function can be applied to set and compute a value for each row in the set. The OVER claus...
trap action sigspec... # Run "action" on a list of signals trap sigspec... # Omitting action resets traps for signals ParameterMeaning-pList currently installed traps-lList signal names and corresponding numbers The trap utility is a special shell built-in. It's defined in POSI...
In C, some expressions yield undefined behavior. The standard explicitly chooses to not define how a compiler should behave if it encounters such an expression. As a result, a compiler is free to do whatever it sees fit and may produce useful results, unexpected results, or even crash. Code that i...
Integer Literals is a numeral without a decimal point for example 0, 1, 42, ... is implicitly applied to fromInteger which is part of the Num type class so it indeed has type Num a => a - that is it can have any type that is an instance of Num Fractional Literals is a numeral with a ...
For further information, see Apple's documentation on Using Swift with Cocoa and Objective-C.
git rev-list [options] <commit> ... ParameterDetails--onelineDisplay commits as a single line with their title.
Variable arguments are used by functions in the printf family (printf, fprintf, etc) and others to allow a function to be called with a different number of arguments each time, hence the name varargs. To implement functions using the variable arguments feature, use #include <stdarg.h>. To ca...

Page 2 of 77