Tutorial by Examples: st

Installing Progress Download your distribution from Progress. If you want a demo license you need to contact them. Make sure you download a 64-bit and not a 32-bit tar file (unless you happen to run a 32-bit machine). Windows The download will be a zip archive. Unpack it and simply run setup.exe....
@Component({ ... animations: [ trigger('appear', [ transition(':enter', [ style({ //style applied at the start of animation }), animate('300ms ease-in', style({ ...
Suppose the following matrix is the transition probability matrix associated with a Markov chain. 0.5 0.2 0.3 P= 0.0 0.1 0.9 0.0 0.0 1.0 In order to study the nature of the states of a Markov chain, a state transition diagram of the Markov chain is drawn. \documentclass[12pt...
In order to access the Google drive API or Google drive SDK you must first register your application on Google Developer console and enable the google drive API. After that its a good idea to use one of the official google client libraries to access the API. DocumentationSamplesGoogle API Client L...
CodeClimate: Cloud Service CodeScan: Cloud Service Clayton.io: Cloud Service VSCode Apex PMD: VS Code extension for realtime static analysis as you code Apex PMD: command line core that runs most the above tools
Some of the Class properties Ext.Data.Connection PropertiesDetailsurlAddress of the requesttimeoutWaiting time in millisecondssuccessReturn on successfailureReturn on failure Ext.Ajax.on("beforerequest", function(conn , options , eOpts) { console.log("beforerequest"); });...
TEST CASE – A test case is a set of conditions and steps that when followed/applied, a tester can determine whether a feature, an application or a software system is working as originally designed. A test case usually contains References to the original task, Pre-conditions ( if the pre-conditions...
When moving to "Running" state there is special handler connected with this event: Open "App.xaml.cx" class and see "OnLaunched" method - this is activated when applicaiton is opened by user from "Terminaded" state: protected override void OnLaunched(LaunchA...
When moving to "Suspened" state there is special handler connected with this event: Open "App.xaml.cx" class and see "App" constructor - there is event handler: public App() { this.InitializeComponent(); //Handle suspending operation with event h...
Your application can be opened by user from "Suspended" state. When doing it "OnResuming" event handler is used. In "App.xaml.cs" class: public App() { this.InitializeComponent(); this.Suspending += OnSuspending; //Handle resuming operat...
You have already created a plist. This plist will remain same in app. If you want to edit the data in this plist, add new data in plist or remove data from plist, you can't make changes in this file. For this purpose you will have to store your plist in Document Directory. You can edit your plist s...
This tutorial is inspired from classic vimtutor. You will get to learn some handy shortcuts to work with Sublime Text 3. By the end of this tutorial, you would be familiar with ST's most important and frequently used shortcuts and features. Installation Via Package Control: Install Package Cont...
In this example we will ask the bitcoin network for the merkle block number 442603. In order to do this we need to send a filterload message and then we have to send a getdata message using the inventory type MSG_MERKLEBLOCK. The peers should reply with a merkleblock message for the requested bloc...
This is a bit of a primer. It's mostly put it in because documentation is forced to have an example, even if it's intended as a stub article. If you already know unit-testing basics, feel free to skip forward to the remarks, where specific frameworks are mentioned. Unit testing is ensuring that a...
By default, accessing an individual item in a template dom-repeat loop is by calling {{item}}. Passing in an as= attribute to template will allow you to switch out the default {{item}} syntax for something that is more customized to the module you are working with. In this case, we want to grab the ...
Click on New Files --> Transformation once a new transformation is open, Click on views tab ,under views create two connections (source ) and (destination). source: table where data is available destination: table where you want to push your data. Once done. on the top bar you have tools -...
A constant expression is an expression that yields a primitive type or a String, and whose value can be evaluated at compile time to a literal. The expression must evaluate without throwing an exception, and it must be composed of only the following: Primitive and String literals. Type ca...
SampleViewModel.vb 'Import classes related to WPF for simplicity Imports System.Collections.ObjectModel Imports System.ComponentModel Public Class SampleViewModel Inherits DependencyObject 'A class acting as a ViewModel must inherit from DependencyObject 'A simple string p...
1- Define Your own custom Block typedef void(^myCustomCompletion)(BOOL); 2- Create custom method which takes your custom completion block as a parameter. -(void) customMethodName:(myCustomCompletion) compblock{ //do stuff // check if completion block exist; if we do not check it will ...
React components that are pure functions of their props and do not require any internal state can be written as JavaScript functions instead of using the standard class syntax, as: import React from 'react' const HelloWorld = (props) => ( <h1>Hello, {props.name}!</h1> ); ...

Page 288 of 369