Tutorial by Topics: on

Java provides a mechanism, called object serialization where an object can be represented as a sequence of bytes that includes the object's data as well as information about the object's type and the types of data stored in the object. After a serialized object has been written into a file, it can ...
There currently aren't any installation packages provided for Bosun or Scollector, only binaries on the Bosun release page. It is up to the end user to find the best way to deploy the files and run them as a service.
Dependency Injection (DI) is a fancy term for "passing things in". All it really means is passing the dependencies of an object via the constructor and / or setters instead of creating them upon object creation inside the object. Dependency Injection might also refer to Dependency Injecti...
abstract void disconnect() abstract boolean usingProxy() static boolean getFollowRedirects() static void setFollowRedirects(boolean set) String getHeaderField(int n) String getHeaderFieldKey(int n) String getRequestMethod() String getResponseMessage() int getResponseCode() long getHeader...
TODO: Short description of Chrome Extensions Official documentation What are extensions? (documentation hub) Getting Started tutorial (basic tutorial) Overview JavaScript APIs (comprehensive list of chrome.* APIs) Further reading TODO: Populate with links to important overview t...
CREATE TABLE table_name ( column_name1 data_type(size), column_name2 data_type(size), column_name3 data_type(size), .... ); // Basic table creation CREATE TABLE table_name [IF NOT EXISTS] ( column_name1 data_type(size), column_name2 data_type(size), column_name3 data_type(size), ...
This section provides an overview of what amazon-web-services is, and why a developer might want to use it. It should also mention any large subjects within amazon-web-services, and link out to the related topics. Since the Documentation for amazon-web-services is new, you may need to create ini...
lm(formula, data, subset, weights, na.action, method = "qr", model = TRUE, x = FALSE, y = FALSE, qr = TRUE, singular.ok = TRUE, contrasts = NULL, offset, ...) ParameterMeaningformulaa formula in Wilkinson-Rogers notation; response ~ ... where ... contains terms corresponding to v...
Unlike most languages, Python supports two major versions. Since 2008 when Python 3 was released, many have made the transition, while many have not. In order to understand both, this section covers the important differences between Python 2 and Python 3. There are currently two supported vers...
JSON (JavaScript Object Notation) is a lightweight, text-based, language-independent data exchange format that is easy for humans and machines to read and write. JSON can represent two structured types: objects and arrays. JSON is often used in Ajax applications, configurations, databases, and RESTf...
preg_replace($pattern, $replacement, $subject, $limit = -1, $count = 0); preg_replace_callback($pattern, $callback, $subject, $limit = -1, $count = 0); preg_match($pattern, $subject, &$matches, $flags = 0, $offset = 0); preg_match_all($pattern, $subject, &$matches, $flags = PREG_PATTERN...
A Virtual Environment is a tool to keep the dependencies required by different projects in separate places, by creating virtual Python environments for them. It solves the “Project X depends on version 1.x but, Project Y needs 4.x” dilemma, and keeps your global site-packages directory clean and man...
uname - to print information about your operating system. uname [OPTION]
A UIAlertController object displays an alert message to the user. This class replaces the UIActionSheet and UIAlertView classes for displaying alerts. After configuring the alert controller with the actions and style you want, present it using the presentViewController:animated:completion: ...

Page 8 of 120