Tutorial by Examples

This uses the Dropbox Objective-C SDK to upload a local file to Dropbox as "/test.txt". [[client.filesRoutes uploadUrl:@"/test.txt" inputUrl:[NSURL fileURLWithPath:@"/local/path/to/test.txt"]] response:^(DBFILESFileMetadata *metadata, DBFILESUploadError *uploadError, D...
This uses the Dropbox Objective-C SDK to get the user's account information from the Dropbox API. [[client.usersRoutes getCurrentAccount] response:^(DBUSERSFullAccount *account, DBNilObject *_, DBRequestError *error) { if (account) { NSLog(@"%@", account); } else if (er...
This uses the Dropbox Objective-C SDK to download a file from Dropbox at "/test.txt". [[[client.filesRoutes downloadData:@"/test.txt"] response:^(DBFILESFileMetadata *metadata, DBFILESDownloadError *downloadError, DBRequestError *error, NSData *fileData) { if (metadata) { ...
The SharePoint Unified Logging Service (ULS) provides support and debugging capabilities for both ops and developers. Understanding how to read the logs is an important first step to resolving issues. Tooling Microsoft provides the ULS Viewer to help read old logs and logs that are currently being...
This module implements a common interface to many different secure hash and message digest algorithms. Included are the FIPS secure hash algorithms SHA1, SHA224, SHA256, SHA384, and SHA512 (defined in FIPS 180-2) as well as RSA’s MD5 algorithm (defined in Internet RFC 1321). There is one constructo...
Returns the expression as an array. @(Get-ChildItem $env:windir\System32\ntdll.dll) Will return an array with one item @(Get-ChildItem $env:windir\System32) Will return an array with all the items in the folder (which is not a change of behavior from the inner expression.
$command = 'Get-ChildItem' & $Command Will execute Get-ChildItem
. .\myScript.ps1 runs .\myScript.ps1 in the current scope making any functions, and variable available in the current scope.
Format: cd/ cd/ is set to change the current directory back to the root of the current drive
You can add a button or another javafx component to Tableview using column setCellFactory(Callback value) method. Sample Application In this application we are going to add a button to TableView. When clicked to this column button, data on the same row as button is selected and its information pri...
Hello friends before start code we have need to declare dependency for access firebase ui component, so here is the dependency which you can put it in your gradel other wise you can add dependency as jar also. compile 'com.firebaseui:firebase-ui-database:0.4.0' Then after we are querying in fire...
An XSD that describe a contact information about a company is given below. <?xml version="1.0" encoding="UTF-8"?> <xs:schema targetNamespace="http://NamespaceTest.com/CommonTypes" xmlns:xs="http://www.w3.org/2001/XMLSchema" ...
StackOverflow forces me to have one example. If this topic is approved, we should move this example here.
First, let's create a template to be rendered! p Hello World, #{name}! Save this in a file ending with the .pug extension (you can call it anything you like, but we will use view.pug in the following code to compile it). All that's left to do, now, is compile that template! Create a JS script f...
Running the installer will set up the application along with any and all available add-ons to enable additional functionality (for example, the Web add-on is required in order to allow QTP to control browser objects, the Terminal add-on allows it to control terminal emulator applications, the Java a...
First Add Storage permission to read/fetch device directory. <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> Create model class //create one directory model ...
It internally creates a ReplaySubject and makes it multicast compatible. The minimal replay value of ReplaySubject is 1 emission. This results in the following: First subscription will trigger the publishReplay(1) to internally subscribe to the source stream and pipe all emissions through the Rep...
Detailed instructions on getting spark-dataframe set up or installed.
//check if there is actually a file being uploaded if (FileUpload1.HasFile) { //load the uploaded file into the memorystream using (MemoryStream stream = new MemoryStream(FileUpload1.FileBytes)) using (ExcelPackage excelPackage = new ExcelPackage(stream)) { //loop all ...
public static DataTable ExcelPackageToDataTable(ExcelPackage excelPackage) { DataTable dt = new DataTable(); ExcelWorksheet worksheet = excelPackage.Workbook.Worksheets[1]; //check if the worksheet is completely empty if (worksheet.Dimension == null) { return dt;...

Page 1129 of 1336