Tutorial by Topics: code

In order to be able to use the unsafe keyword in a .Net project, you must check "Allow unsafe code" in Project Properties => Build Using unsafe code can improve performance, however, it is at the expense of code safety (hence the term unsafe). For instance, when you use a for lo...
Documentation for java code is often generated using javadoc. Javadoc was created by Sun Microsystems for the purpose of generating API documentation in HTML format from java source code. Using the HTML format gives the convenience of being able to hyperlink related documents together. /** -- ...
Xcode is an integrated development environment for macOS which supports the development of native apps for macOS, iOS, watchOS, and tvOS. Xcode is the successor to NeXT's Project Builder and PBX. (In fact, Xcode's project manifest files are still named with the .pbxproj extension.) Xcode releas...
inline: `Code between backticks` or <code>Code between these HTML tags</code> multiline: ____Code that is indented on each line or <pre><code>Multiple lines of code between these HTML tags</code></pre>
CodeIgniter is a MVC framework written in, and for, PHP. It is lightweight compared to other MVC frameworks out there, at the cost of having less functionality, e.g. there is no built in authentication system which might be a part of other frameworks. CodeIgniter is a good choice of frameworks f...
This section provides an overview of what codenameone is, and why a developer might want to use it. It should also mention any large subjects within codenameone, and link out to the related topics. Since the Documentation for codenameone is new, you may need to create initial versions of those r...
str.encode(encoding, errors='strict') bytes.decode(encoding, errors='strict') open(filename, mode, encoding=None) ParameterDetailsencodingThe encoding to use, e.g. 'ascii', 'utf8', etc...errorsThe errors mode, e.g. 'replace' to replace bad characters with question marks, 'ignore' to ignore...
<pre>Formatted text</pre> <code>Inline Code</code> The code element should be used for any kind of "string that a computer would recognize" (HTML5), for example: source code terms from markup/programming languages (element names, function names, etc.) ...
Code contracts allow for compile or runtime analysis of pre/post conditions of methods and invariant conditions for objects. These conditions may be used to ensure callers and return value match valid states for application processing. Other uses for Code Contracts include documentation generati...
eval(expression[, globals=None[, locals=None]]) exec(object) exec(object, globals) exec(object, globals, locals) ArgumentDetailsexpressionThe expression code as a string, or a code objectobjectThe statement code as a string, or a code objectglobalsThe dictionary to use for global variable...
pyinstaller [options] script [script ...] | specfile PyInstaller is a module used to bundle python apps in a single package along with all the dependencies. The user can then run the package app without a python interpreter or any modules. It correctly bundles many major packages like numpy...
Convention is a set of default rules to automatically configure a conceptual model based on domain class definitions when working with Code-First. Code-First conventions are defined in System.Data.Entity.ModelConfiguration.Conventions namespace (EF 5 & EF 6).
In HTTP, status codes are a machine-readable mechanism indicating the result of a previously issued request. From RFC 7231, sec. 6: "The status-code element is a three-digit integer code giving the result of the attempt to understand and satisfy the request." The formal grammar allows cod...
Oracle official style guide for the Java Programming Language is a standard followed by developers at Oracle and recommended to be followed by any other Java developer. It covers filenames, file organization, indentation, comments, declarations, statements, white space, naming conventions, programmi...
Json.Decode exposes two functions to decode a payload, first one is decodeValue which tries to decode a Json.Encode.Value, the second one is decodeString which tries to decode a JSON string. Both function take 2 parameters, a decoder and a Json.Encode.Value or Json string.
The Unicode Standard is an international standardized character set. It attempts to assign characters and symbols from every writing system a unique number. With every major new version, additional characters are added to the Standard to achieve this goal. In providing a unified character set for ...

Page 1 of 7