Tutorial by Topics

On Mac and Linux, the meteor command line tool assumes that the ssh command line tool, used to make secure connections to other computers, is always present. On Windows, this tool needs to be installed. Below are listed two options for setting it up and using it.
$( ".selector" ).dialog( "option", "disabled" ); // Option Getter, specific $( ".selector" ).dialog( "option" ); // Option Getter all $( ".selector" ).dialog( "option", "disabled", true ); // Option Setter, specific...
Retrieves information about the current site. get_bloginfo( $show , $filter ) ParameterDetails$show(string) The site setting information to retrieve.$filter(string) The specification on whether to return a filtered value or not. $show ValuesDescriptionExample'name' (Default)Site title...
While most HTML tags are used to create elements, HTML also provides in-text formatting tags to apply specific text-related styles to portions of text. This topic includes examples of HTML text formatting such as highlighting, bolding, underlining, subscript, and stricken text. <abbr>Ab...
As more secure web services avoid storing passwords in plain text format, languages such as PHP provide various (undecryptable) hash functions to support the more secure industry standard. This topic provides documentation for proper hashing with PHP. string password_hash ( string $password , ...
This spoiler syntax is specific to Stack Exchange, and is not part of a standard markdown syntax.
Tables are supported only in certain flavors of Markdown, including Markdown Extra and Github Flavored Markdown, but not in the original Markdown syntax or in CommonMark. Markdown tables are also not supported on Stack Exchange sites (with the exception of the Documentation beta).
This is a simple hello world function in Common Lisp. Examples will print the text Hello, World! (without quotation marks; followed by a newline) to the standard output. Common Lisp is a programming language that is largely used interactively using an interface known as a REPL. The REPL (Read Eva...
Properties: Associated with a type Variables: Not associated with a type See the Swift Programming Language iBook for more information.
// Declare as a local variable: returnType (^blockName)(parameterType1, parameterType2, ...) = ^returnType(argument1, argument2, ...) {...}; // Declare as a property: @property (nonatomic, copy, nullability) returnType (^blockName)(parameterTypes); // Declare as a method parameter: ...
FunctionDetailsob_start()Starts the output buffer, any output placed after this will be captured and not displayedob_get_contents()Returns all content captured by ob_start()ob_end_clean()Empties the output buffer and turns it off for the current nesting levelob_get_clean()Triggers both ob_get_cont...
Due to the GIL (Global interpreter lock) only one instance of the python interpreter executes in a single process. So in general, using multi-threading only improves IO bound computations, not CPU-bound ones. The multiprocessing module is recommended if you wish to parallelise CPU-bound tasks. G...
Threads allow Python programs to handle multiple functions at once as opposed to running a sequence of commands individually. This topic explains the principles behind threading and demonstrates its usage.

Page 21 of 428