Tutorial by Topics

This section discusses the data types that SQL Server can use, including their data range, length, and limitations (if any.)
This section provides an overview of what jquery-selectors is, and why a developer might want to use it. It should also mention any large subjects within jquery-selectors, and link out to the related topics. Since the Documentation for jquery-selectors is new, you may need to create initial vers...
A list comprehension is a syntactical tool for creating lists in a natural and concise way, as illustrated in the following code to make a list of squares of the numbers 1 to 10: [i ** 2 for i in range(1,11)] The dummy i from an existing list range is used to make a new element pattern. It is used...
What is Razor? Razor is a markup syntax that lets you embed server-based code (Visual Basic and C#) into web pages. Server-based code can create dynamic web content on the fly, while a web page is written to the browser. When a web page is called, the server executes the server-based code inside t...
This section provides an overview of what kettle is, and why a developer might want to use it. It should also mention any large subjects within kettle, and link out to the related topics. Since the Documentation for kettle is new, you may need to create initial versions of those related topics. ...
Tornado is a Python web framework and asynchronous networking library, that uses non-blocking network I/O which allows it to scale to tens of thousands of open connections, making it ideal for long polling, WebSockets, and other applications that require a long-lived connection to each user. R...
The C++ language does not dictate any character-set, some compilers may support the use of UTF-8, or even UTF-16. However there is no certainty that anything beyond simple ANSI/ASCII characters will be provided. Thus all international language support is implementation defined, reliant on what pl...
AppleScript is a language that predates the Mac as we know it today, originating in 1993. While other scripting languages have more fully featured libraries and more robust syntax, the power of AppleScript is for automating Mac applications. Any Mac application can include a scripting dictionary,...
windowObject.postMessage(message, targetOrigin, [transfer]); window.addEventListener("message", receiveMessage); Parameters message targetOrigin transferoptional
Amazon DynamoDB is a fast NoSQL database service offered by Amazon Web Services (AWS). DynamoDB can be invoked from .NET applications by using the AWS SDK for .NET. The SDK provides three different models for communicating with DynamoDB. This topic is introduces the various APIs in each model. ...
Source Module: [Public] Event [identifier]([argument_list]) Handler Module: Dim|Private|Public WithEvents [identifier] As [type] An event can only be Public. The modifier is optional because class module members (including events) are implicitly Public by default. A WithEv...
AssetPostprocessor.OnPreprocessTexture() Use String.Contains() to process only assets that have a given string in their asset paths. if (assetPath.Contains("ProcessThisFolder")) { // Process asset }
User defined table types (UDT for short) are data types that allows the user to define a table structure. User defined table types supports primary keys, unique constraints and default values. UDTs have following restrictions - can not be used as a column in a table or a field in a structure...
This section provides an overview of what sonarqube is, and why a developer might want to use it. It should also mention any large subjects within sonarqube, and link out to the related topics. Since the Documentation for sonarqube is new, you may need to create initial versions of those related...

Page 206 of 428