Tutorial by Topics

trait ATrait { ... } class AClass (...) extends ATrait { ... } class AClass extends BClass with ATrait class AClass extends ATrait with BTrait class AClass extends ATrait with BTrait with CTrait class ATrait extends BTrait
Vue.js is a rapidly growing front-end framework for JavaScript, inspired by Angular.js, Reactive.js, and Rivets.js that offers simplistic user-interface design, manipulation, and deep reactivity. It is described as a MVVM patterned framework, Model-View View-Model, which is based on the concept o...
This section provides an overview of what asp.net-web-api is, and why a developer might want to use it. It should also mention any large subjects within asp.net-web-api, and link out to the related topics. Since the Documentation for asp.net-web-api is new, you may need to create initial version...
Azure is the brand name under which Microsoft is offering its cloud computing services. Some of the main services offered within the Microsoft Azure platform are: Infrastructure as a Service (IaaS): Linux and Windows Azure Virtual Machines Platform as a Service (PaaS): App Service provides a ...
Aurelia is a modular modern front-end Javascript framework for building browser, mobile and desktop applications built on open web standards. Rather than being an all inclusive framework, Aurelia adopts a feature-per-module approach to its architecture. Any piece of Aurelia is replaceable with a t...
Doctrine 2 is the colloquial term used for the Object Relational Mapper(ORM) component of the Doctrine Project. The ORM sits on top of the Doctrine Project's Database Abstraction Layer (DBAL) providing ways to query and manipulate information in the underlying database using Doctrine's DSL called...
ActionScript 3 is the programming language for the Adobe Flash Player and Adobe AIR runtime environments. It is object-oriented ECMAScript based language used primary for native application development on desktop (Windows/Mac) and mobile (iOS/Android) devices. Adobe learning resources: http://ww...
A loop is a sequence of instruction(s) that is continually repeated until a certain condition is reached. Being able to have your program repeatedly execute a block of code is one of the most basic but useful tasks in programming. A loop lets you write a very simple statement to produce a significan...
This section provides an overview of what shell is, and why a developer might want to use it. It should also mention any large subjects within shell, and link out to the related topics. Since the Documentation for shell is new, you may need to create initial versions of those related topics. ...
This section provides an overview of what uwp is, and why a developer might want to use it. It should also mention any large subjects within uwp, and link out to the related topics. Since the Documentation for uwp is new, you may need to create initial versions of those related topics.
Function functionName(argumentVariable As dataType, argumentVariable2 As dataType, Optional argumentVariable3 As dataType) As functionReturnDataType Basic declaration of a function. Every function needs a name, but it does not have to take any arguments. It may take 0 arguments, or it may take ...
An operator is a character that represents an action. It tells the compiler/interpreter to perform specific mathematical, relational or logical operation and produce final result. PowerShell interprets in a specific way and categorizes accordingly like arithmetic operators perform operations primari...
Butterknife is a view binding tool that uses annotations to generate boilerplate code for us. This tool is developed by Jake Wharton at Square and is essentially used to save typing repetitive lines of code like findViewById(R.id.view) when dealing with views thus making our code look a lot cleaner....
table-layout: auto | fixed; border-collapse: separate | collapse; border-spacing: <length> | <length> <length>; empty-cells: show | hide; caption-side: top | bottom; These properties apply to both <table> elements (*) and HTML elements displayed as display: table...
private class Project let car = Car("Ford", model: "Escape") //default internal public enum Genre private func calculateMarketCap() override internal func setupView() private(set) var area = 0 Basic Remark: Below are the three access levels from highest access ...
ParameterDetailsmethodThe name of the method that has been called (in the above example this is :say_moo, note that this is a symbol.*argsThe arguments passed in to this method. Can be any number, or none&blockThe block of the method called, this can either be a do block, or a { } enclosed bloc...

Page 43 of 428