Tutorial by Topics: in

While many scripts, icons, and stylesheets can be written straight into HTML markup, it is best practice and more efficient to include these resources in their own file and link them to your document. This topic covers linking external resources such as stylesheets and scripts into an HTML document....
ParameterDetails--pullEnsures that the base image (FROM) is up-to-date before building the rest of the Dockerfile.
Scollector can be used to monitor processes and services in Windows and Linux. Some processes like IIS application pools are monitored automatically, but usually you need to specify which processes and services you want to monitor.
NSLog(@"text to log"); // Basic text log NSLog(@"data: %f - %.2f", myFloat, anotherFloat); // Logging text including float numbers. NSLog(@"data: %i", myInteger); // Logging text including integer number. NSLog(@"data: %@", myStringOrObject); // Logging...
\C (any one character except newline) 'all literal except single quotes'; 'this: '\'' is a single quote' $'only \\ and \' are special; \n = newline etc.' "$variable and other text; \"\\\$\` are special"
SomeClass sc = new SomeClass { Property1 = value1, Property2 = value2, ... }; SomeClass sc = new SomeClass(param1, param2, ...) { Property1 = value1, Property2 = value2, ... } The constructor parentheses can only be omitted if the type being instantiated has a default (parameterless) const...
shift shifts the positional parameters to the left so that $2 becomes $1, $3 becomes $2 and so forth. "$@" is an array of all the positional parameters passed to the script/function. "$*" is an string composed of all the positional parameters passed to the script/function. ...
Introduction to Algorithms Algorithms are ubiquitous in Computer Science and Software Engineering. Selection of appropriate algorithms and data structures improves our program efficiency in cost and time. What is an algorithm? Informally, an algorithm is a procedure to accomplish a specific ta...
This topic is meant to show a general way to call the Twitch API without OAuth. You can call any APIs found in the Twitch REST API documentation using this pattern. You would simply change the URL to the correct endpoint. A Client-ID is required for all calls to the Twitch API. In these examples,...
TypeScript aims to be a superset of JavaScript that transpiles to JavaScript. By generating ECMAScript compliant code, TypeScript can introduce new language features while retaining compatibility with existing JavaScript engines. ES3, ES5 and ES6 are currently supported targets. Optional types ar...
The Model-View-Controller (MVC) architectural pattern separates an application into three main components: the model, the view, and the controller. The ASP.NET MVC framework provides an alternative to the ASP.NET Web Forms pattern for creating Web applications. The ASP.NET MVC framework is a light...
There currently aren't any installation packages provided for Bosun or Scollector, only binaries on the Bosun release page. It is up to the end user to find the best way to deploy the files and run them as a service.
Microsoft Excel includes a comprehensive macro programming language called VBA. This programming language provides you with at least three additional resources: Automatically drive Excel from code using Macros. For the most part, anything that the user can do by manipulating Excel from the user...
Dependency Injection (DI) is a fancy term for "passing things in". All it really means is passing the dependencies of an object via the constructor and / or setters instead of creating them upon object creation inside the object. Dependency Injection might also refer to Dependency Injecti...
In Go, unexpected situations are handled using errors, not exceptions. This approach is more similar to that of C, using errno, than to that of Java or other object-oriented languages, with their try/catch blocks. However, an error is not an integer but an interface. A function that may fail typica...
The Spring Framework is an open source application framework and inversion of control container for the Java platform. VersionRelease Date4.3.x2016-06-104.2.x2015-07-314.1.x2014-09-144.0.x2013-12-123.2.x2012-12-133.1.x2011-12-133.0.x2009-12-172.5.x2007-12-252.0.x2006-10-041.2.x2005-05-131.1.x2...
TODO: Short description of Chrome Extensions Official documentation What are extensions? (documentation hub) Getting Started tutorial (basic tutorial) Overview JavaScript APIs (comprehensive list of chrome.* APIs) Further reading TODO: Populate with links to important overview t...

Page 13 of 207