Tutorial by Topics

Hypertext Transfer Protocol (HTTP) uses a client-request/server-response model. HTTP is a stateless protocol, which means it does not require the server to retain information or status about each user for the duration of multiple requests. However, for performance reasons and to avoid TCP' connect...
This section provides an overview of what symfony3 is, and why a developer might want to use it. It should also mention any large subjects within symfony3, and link out to the related topics. Since the Documentation for symfony3 is new, you may need to create initial versions of those related to...
Emacs is a text editor whose most prominent feature is the ability of users to programmatically customize nearly all aspects of it. This is facilitated though a special dialect of the Lisp programming language, called Emacs Lisp, created specifically for use in the Emacs editor. There are a mult...
Tkinter ("Tk Interface")is python's standard cross-platform package for creating graphical user interfaces (GUIs). It provides access to an underlying Tcl interpreter with the Tk toolkit, which itself is a cross-platform, multilanguage graphical user interface library. Tkinter isn't the...
This section provides an overview of what wcf is, and why a developer might want to use it. It should also mention any large subjects within wcf, and link out to the related topics. Since the Documentation for wcf is new, you may need to create initial versions of those related topics.
func Marshal(v interface{}) ([]byte, error) func Unmarshal(data []byte, v interface{}) error The package "encoding/json" Package json implements encoding and decoding of JSON objects in Go. Types in JSON along with their corresponding concrete types in Go are: JSON TypeGo Con...
Functions in Ruby provide organized, reusable code to preform a set of actions. Functions simplify the coding process, prevent redundant logic, and make code easier to follow. This topic describes the declaration and utilization of functions, arguments, parameters, yield statements and scope in Ruby...
Unlike many other languages, Rust has two main string types: String (a heap-allocated string type) and &str (a borrowed string, which does not use extra memory). Knowing the difference and when to use each is vital to understand how Rust works.
Arrays are constructs provided by most programming languages to access a group of same objects via an index. In some languages, the types must be the same (Java), while in others (JavaScript, Python) multiple types can be in an array.
Function([DISTINCT] expression) -DISTINCT is an optional parameter AVG ( [ ALL | DISTINCT ] expression ) COUNT( { [ALL | DISTINCT ] expression ] | * } ) GROUPING(<column_expression>) MAX ( [ ALL | DISTINCT ] expression ) MIN ( [ ALL | DISTINCT ] expression ) SUM ( [ ALL | DISTINCT ] e...
This section provides an overview of what kendo-ui is, and why a developer might want to use it. It should also mention any large subjects within kendo-ui, and link out to the related topics. Since the Documentation for kendo-ui is new, you may need to create initial versions of those related to...
boxplot(x, ...) # generic function boxplot(formula, data = NULL, ..., subset, na.action = NULL) ## S3 method for class 'formula' boxplot(x, ..., range = 1.5, width = NULL, varwidth = FALSE, notch = FALSE, outline = TRUE, names, plot = TRUE, border = par("fg"), col = NULL, log...
In C, it is common to use return values to denote errors that occur; and to return data through the use of passed in pointers. This can be done for multiple reasons; including not having to allocate memory on the heap or using static allocation at the point where the function is called.
This section provides an overview of what sitecore is, and why a developer might want to use it. It should also mention any large subjects within sitecore, and link out to the related topics. Since the Documentation for sitecore is new, you may need to create initial versions of those related to...
In Structured Query Language (SQL), a JOIN is a method of linking two data tables in a single query, allowing the database to return a set that contains data from both tables at once, or using data from one table to be used as a Filter on the second table. There are several types of JOINs defined wi...

Page 40 of 428