Tutorial by Topics: n

A media service account is a Azure based account which gives you access to cloud based media services in Azure. Stores metadata of the media files you create, instead saving the actual media content. To work with media service account, you must have an associated storage account. While creating...
Tensorflow distinguishes between saving/restoring the current values of all the variables in a graph and saving/restoring the actual graph structure. To restore the graph, you are free to use either Tensorflow's functions or just call your piece of code again, that built the graph in the first place...
The built-in VCL contains procedures that are included and run last by Varnish. They can complement user defined VCL by providing logic that is appropriate for the majority of the sites. For example, skips cache for POST requests, and/or in presence of cookie or authorization headers. If some of t...
db.collection.insertOne(document, options(w, wtimeout, j, serializeFuntions, forceServerObjectId, bypassDocumentValidation), callback) db.collection.insertMany([documents], options(w, wtimeout, j, serializeFuntions, forceServerObjectId, bypassDocumentValidation), callback) db.collection.find(que...
Arrow functions are a concise way of writing anonymous, lexically scoped functions in ECMAScript 2015 (ES6). x => y // Implicit return x => { return y } // Explicit return (x, y, z) => { ... } // Multiple arguments async () => { ... } // Async...
Official Documentation Google Docs editors Help QUERY Google Charts on Google Developers Query Language Reference (Version 0.7)
Task - main function to execute a step of your build script Depends - property that specify what the current step depends upon default - there must always be a default task that will get executed if no initial task is specified FormatTaskName - specifies how each step is displayed in the result...
A progress bar can be used to show something is in a process.It is a time-saving and slick feature one should have. Progress bars are incredibly useful while debugging to figure out which part of the script is executing, and they’re satisfying for the people running scripts to track what’s happening...
Scripting SVG using the native DOM interfaces is currently (2016) in a state of slight change. The current SVG standard (1.1) is implemented well by most major web browsers. However, as the SVG 2.0 standard is under development, some browsers have begun to remove SVG 1.1 features that will be obso...
A few notes that are already mentioned in the official docs here and here: If an object has a parent, it has to be in the same thread as the parent, i.e. it cannot be moved to a new thread, nor can you set a parent to an object if the parent and the object live in different threads When an ob...
Metaprogramming can be described in two ways: “Computer programs that write or manipulate other programs (or themselves) as their data, or that do part of the work at compile time that would otherwise be done at runtime”. More simply put: Metaprogramming is writing code that writes code during run...
xcodebuild [-project name.xcodeproj] -scheme schemename [[-destination destinationspecifier] ...] [-destination-timeout value] [-configuration configurationname] [-sdk [sdkfullpath | sdkname]] [action ...] [buildsetting=value ...] [-userdefault=value ...] OptionDescription-projectBuild the p...

Page 146 of 329