Tutorial by Topics

VBA can read and write strings in any language or script using Unicode. However, there are stricter rules in place for Identifier Tokens.
This section provides an overview of what office-js is, and why a developer might want to use it. It should also mention any large subjects within office-js, and link out to the related topics. Since the Documentation for office-js is new, you may need to create initial versions of those relate...
The image package provides basic functionalities for working with 2-D image. This topic describes several basic operations when working with image such as reading and writing a particular image format, cropping, accessing and modifying pixel, color conversion, resizing and basic image filtering. ...
Visual Studio is a open Source IDE which provides intellisense and editing facility for code .This IDE supports many languages like(Ionic ,C, C# ,AngularJs, TypeScript ,Android and so on) . These languages are able to execute there code by adding its Extensions in VSCode. By using VSCode we able to ...
Immutable objects are instances whose state doesn’t change after it has been initialized. For example, String is an immutable class and once instantiated its value never changes. Some immutable classes in Java: java.lang.String The wrapper classes for the primitive types: java.lang.Integer...
The java.util.StringTokenizer class allows you to break a string into tokens. It is simple way to break string. The set of delimiters (the characters that separate tokens) may be specified either at creation time or on a per-token basis.
Inter-process communication (IPC) mechanisms allow different independent processes to communicate with each other. Standard C does not provide any IPC mechanisms. Therefore, all such mechanisms are defined by the host operating system. POSIX defines an extensive set of IPC mechanisms; Windows def...
Timezones are often a hassle for developers. Django offers some great utilities at your disposal to make timezones easy to work with. Even if your project is operating in a single time zone, it is still good practice to store data as UTC in your database to handle cases of daylight savings. If you ...
The GNU C compiler comes with some cool features that are not specified by the C standards. These extensions are heavily used in system software and are a great tool for performance optimization.
The GNU compiler offers various levels of optimizations for the compilation process. These optimizations are used to improve the code performance and/or code size. Compiling a code with optimizations on, typically takes longer to complete. This command tells you what optimizations are available on ...
API stands for Application Programming Interface API's for VBA imply a set of methods that allow direct interaction with the operating system System calls can be made by executing procedures defined in DLL files Common operating environment library files (DLL's): Dynamic Link LibraryDescrip...
Pros and Cons of different loggers which can be used to create a log4j-formatted log to be viewed using the Log4View viewer. I will review 3 loggers in this article, Log4cxx, Log4cplus and Log4cpp.
Kotlin can delegate the implementation of a property to a handler object. Some standard handlers are included, such as lazy initialization or observable properties. Custom handlers can also be created.
Dojo provides different functions that allows you to manipulate DOM elements such as creation, placement and destruction. ArgumentTypenodeDomNode or String
HTTP Headers are an important part of HTTP communication. Each HTTP request and HTTP response usually contain multiple headers. Intermediaries such as proxies often interpret some of the headers and pass on or filter out others.
A Kotlin class may implement an interface by delegating its methods and properties to another object that implements that interface. This provides a way to compose behavior using association rather than inheritance.
Coalesce returns the first none null argument from a set of arguments. Only the first non null argument is return, all subsequent arguments are ignored. The function will evaluate to null if all arguments are null.
Flask-SQLAlchemy is a Flask extension that adds support for the popular Python object relational mapper(ORM) SQLAlchemy to Flask applications. It aims to simplify SQLAlchemy with Flask by providing some default implementations to common tasks.
JScript is actually the superset of Javascript (it's 1.8.1 version - so some newer features are not available ), and they can be embedded into a batch script for extending batch script's functions. Usually, techniques of embedding are using the JScript directives (not part of the official Javascrip...

Page 407 of 428