Tutorial by Examples

Different types of variables may be declared with special options. DATA: lv_string TYPE string, " standard declaration lv_char TYPE c, " declares a character variable of length 1 lv_char5(5) TYPE c, " declares a character variable of length 5 l_pa...
#lang scribble/manual @section{Introduction} First paragraph. Some text, some text, some text, some text, some text, some text. @section{More stuff} @subsection{This is a subsection} Second paragraph. More text, more text, more text, more text, more text, more text.
#lang scribble/manual @; Make sure that code highlighting recognises identifiers from my-package: ꩜require[@for-label[my-package]] @; Indicate which module is exporting the identifiers documented here. @defmodule[my-package] @defproc[(my-procedure [arg1 number?] [arg2 string?]) symbol?]{ ...
What is the bias A perceptron can be seen as a function that maps an input (real-valued) vector x to an output value f(x) (binary value): where w is a vector of real-valued weights and b is a our bias value. The bias is a value that shifts the decision boundary away from the origin (0,0) and ...
Add any JSR 303 implementation to your classpath. Popular one used is Hibernate validator from Hibernate. <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-validator</artifactId> <version>4.2.0.Final</version> </dependen...
<gpx xmlns="http://www.topografix.com/GPX/1/1" xmlns:gpxx = "http://www.garmin.com/xmlschemas/GpxExtensions/v3" xmlns:xsi = "http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.topografix.com/GPX/1/1 http://www.topografix.com/GPX...
Go to Edit Scheme. Select Run -> Options. Check "Allow Location Simulation". Select the *.GPX File Name from the "Default Location" drop down list.
In the following naive parallel merge sort example, std::async is used to launch multiple parallel merge_sort tasks. std::future is used to wait for the results and synchronize them: #include <iostream> using namespace std; void merge(int low,int mid,int high, vector<int>&num)...
Sometimes your description can get rather long. For instance irb -h lists on argument that reads: --context-mode n Set n[0-3] to method to create Binding Object, when new workspace was created It's not immediately clear how to support this. Most solutions require adjustin...
We will start with creating a simple node application with a basic structure and then connecting with local sql server database and performing some queries on that database. Step 1: Create a directory/folder by the name of project which you intent to create. Initialize a node application using npm ...
Referring to non-static members in initializer lists before the constructor has started executing can result in undefined behavior. This results since not all members are constructed at this time. From the standard draft: §12.7.1: For an object with a non-trivial constructor, referring to any no...
webpack-dev-server can proxy some requests to others servers. This might be useful for developing API client when you want to send requests to same domain. Proxy is configured via proxy parameter. Example configuration of dev server passing requests to /api to other service listening on port 8080 ...
There are different approaches to the installation of SFML on Linux: Install it directly from your distribution's package repository Get the source code, build it and install it Download the precompiled SDK and manually copy the files Option 1 is the preferred one; if the version of SFML tha...
The most common way to install SFML on windows is to download the official SDK You can then unpack the archive and use it in your environment of choice. vcpkg Although it's still heavily in development, if you use Visual studio 2017 or newer, you can also install SFML via vcpkg which integrates w...
First of all you need to download the SFML SDK. Then, in order to start developing SFML applications, you have to install the following items: Header files and libraries SFML is available either as dylibs or as frameworks. Only one type of binary is required although both can be installed simultan...
Simple Codec Here to illustrate the working principle we can use simple encryption and decryption as follows. public static String encrypt(String input) { // Simple encryption, not very strong! return Base64.encodeToString(input.getBytes(), Base64.DEFAULT); } public static String dec...
For example, say below is the sample data in an Excel 'Test', Purchase_Date Customer_Name Price 05-05-2017 Adam 1075 06-05-2017 Noah 1093 07-05-2017 Peter 1072 08-05-2017 Louis 1101 09-05-2017 Zoe 1248 10-05-2017 Kevin 1045 11-05-2017 Messiah 1...
SSIS tasks required. Data Flow Task: As the script component is only available in the data flow. Script Component: Inside this we will use variables and play with there values. Steps There are two methods to access variables inside of script component First Method - Using this.Variables ...
Simple Codec Here to illustrate the working principle we can use simple encryption and decryption as follows. public static String encrypt(String input) { // Simple encryption, not very strong! return Base64.encodeToString(input.getBytes(), Base64.DEFAULT); } public static String dec...
This is project directory. A service endpoint interface First we will create a service endpoint interface. The javax.jws.WebService @WebService annotation defines the class as a web service endpoint. import javax.jws.WebMethod; import javax.jws.WebService; import javax.jws.soap.SOAPBi...

Page 1240 of 1336