Tutorial by Topics: a

The objective of this topic is to create simple examples of several ways data can be shared between components via data binding and shared service. There are always many of ways of accomplishing one task in programming. Please feel free to edit current examples or add some of your own.
A frequent desire is to convert monthly data into quarterly data format. One simple method is to 1) sum the appropriate months into quarterly sums, then 2) identify those months as quarters, and finally 3) filter the quarterly data out of your monthly data. Here's a relatively quick and easy method ...
In Firebase Database everything is a node, that follows the pattern key: value. Firebase Database provides us with a simple way to generate unique keys. Unique keys create new items while uploading data to a previously stored key will update.
Toast messages are the most simple way of providing feedback to the user. By default, Android provide gray color message toast where we can set the message and the duration of the message. If we need to create more customizable and reusable toast message, we can implement it by ourselves with the us...
In Xamarin.Android the BluetoothSocket.InputStream and BluetoothSocket.OutputStream properties are by design automatically converted to System.IO.Stream. In case of so called interactive communication protocol, when server responds only when client talks to it, System.IO.Stream is not good because ...
As you code PHP you will most likely get your self in a position where you need to break down an URL into several pieces. There's obviously more than one way of doing it depending on your needs. This article will explain those ways for you so you can find what works best for you.
C++ containers store a collection of elements. Containers include vectors, lists, maps, etc. Using Templates, C++ containers contain collections of primitives (e.g. ints) or custom classes (e.g. MyClass).
Java and C++ are similar languages. This topic serves as a quick reference guide for Java and C++ Engineers. Classes Defined within Other Constructs# Defined within Another Class C++ Nested Class[ref] (needs a reference to enclosing class) class Outer { class Inner { publ...
This topic includes coding examples related to Angular Material 2 Autocomplete (md-autocomplete) These examples don't cover all features of md-autocomplete. Please read the documentation learn more about md-autocomplete.
strace -c[df] [-In] [-bexecve] [-eexpr]... [-Ooverhead] [-Ssortby] -ppid... / [-D] [-Evar[=val]]... [-uusername] command [args]
Redux has come to be the status quo for managing application-level state on the front-end these days, and those who work on "large-scale applications" often swear by it. This topic covers why and how you should use the state management library, Redux, in your React applications. Whil...
This section provides an overview of what cognos is, and why a developer might want to use it. It should also mention any large subjects within cognos, and link out to the related topics. Since the Documentation for cognos is new, you may need to create initial versions of those related topics....
This section provides an overview of what gridview is, and why a developer might want to use it. It should also mention any large subjects within gridview, and link out to the related topics. Since the Documentation for gridview is new, you may need to create initial versions of those related t...
DATA DIVISION is one of the four parts that make up a COBOL program. It contains statements describing the data used by the program. It consists of four sections: FILE SECTION, WORKING-STORAGE SECTION, LOCAL-STORAGE SECTION and LINKAGE SECTION.

Page 314 of 320