Tutorial by Topics: es

An .htaccess file controls how Apache interacts with your site. When an .htaccess file is placed in your domain’s directory (usually root directory), the file is detected and executed by Apache. An .htaccess file is commonly used for the following: Denying specific IPs to your site Password p...
PrimeFaces is an open source JSF framework. Its main features: 100+ components. Built-in Ajax based on standard JSF Ajax APIs. Push support via Atmosphere Framework. Mobile UI kit to create mobile web applications. 35+ built-in themes. Premium themes and layouts. VersionRelease Date0...
table-layout: auto | fixed; border-collapse: separate | collapse; border-spacing: <length> | <length> <length>; empty-cells: show | hide; caption-side: top | bottom; These properties apply to both <table> elements (*) and HTML elements displayed as display: table...
private class Project let car = Car("Ford", model: "Escape") //default internal public enum Genre private func calculateMarketCap() override internal func setupView() private(set) var area = 0 Basic Remark: Below are the three access levels from highest access ...
Terms and concepts Screen size Actual physical size, measured as the screen's diagonal. For simplicity, Android groups all actual screen sizes into four generalized sizes: small, normal, large, and extra-large. Screen density The quantity of pixels within a physical area of the screen; usu...
XPages is a web Framework for IBM Notes platform. It was introduced in Lotus Domino 8.5 (has to be verified). It is based on JSF (JavaServer Faces) with a lot of useful extensions to represent and manipulate IBM Notes data. IBM offers a tutorial for XPages: https://www-10.lotus.com/ldd/ddwiki.ns...
The C preprocessor is a simple text parser/replacer that is run before the actual compilation of the code. Used to extend and ease the use of the C (and later C++) language, it can be used for: a. Including other files using #include b. Define a text-replacement macro using #define c. Conditional...
Functions and subroutines, in conjunction with modules, are the tools to break down a program into units. This makes the program more readable and manageable. Each one of these units can be thought of as part of the code that, ideally, could be compiled and tested in isolation. The main program(s...
We all know them, but these practices are far less obvious to someone starting to program in VBA.
HTTP for Humans Requests is the only Non-GMO HTTP library for Python, safe for human consumption. Requests allows you to send organic, grass-fed HTTP/1.1 requests, without the need for manual labor. There's no need to manually add query strings to your URLs, or to form-encode your POST data. K...
$response = wp_remote_get( $url, $args ); $response = wp_remote_post( $url, $args ); $response = wp_safe_remote_post( $url, $args ); ParameterDetails$url(string) (Required) Site URL to retrieve.$args(array) (Optional) Request arguments. Returns (WP_Error | array) The response as an ar...
This section provides an overview of what Azure Service Bus is, and why a developer might want to use it. It should also mention any large subjects within Azure Service Bus, and link out to the related topics. Since the documentation for Azure Service Bus is new, you may need to create initial ve...
Every data type in erlang is called Term. It is a generic name that means any data type.
PrefixBrowser(s)-webkit-Google Chrome, Safari, newer versions of Opera 12 and up, Android, Blackberry and UC browsers-moz-Mozilla Firefox-ms-Internet Explorer, Edge-o-, -xv-Opera until version 12-khtml-Konquerer Vendor prefixes are used to allow preview support for new CSS functionality where the...
$PSCmdlet.ShouldProcess("Target") $PSCmdlet.ShouldProcess("Target", "Action") ParameterDetailsTargetThe resource being changed.ActionThe operation being performed. Defaults to the name of the cmdlet. $PSCmdlet.ShouldProcess() will also automatically write a m...
A class is an extensible program-code-template for creating objects, providing initial values for state (member variables) and implementations of behavior (member functions or methods).A class is a blueprint for an object. It is used as a model to define the structure of objects. An object contains ...

Page 9 of 96