Tutorial by Topics: ng

\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"
<element lang="language_code">   <!-- Language code has to be in the format [ISO 639-1](https://en.wikipedia.org/wiki/ISO_639-1 ) --> The value of the lang attribute must be a valid BCP 47 language tag or the empty string (if the language is unknown). The BCP 47 ...
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...
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...
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...
Yii is a generic Web programming framework, meaning that it can be used for developing all kinds of Web applications using PHP. Because of its component-based architecture and sophisticated caching support, it is especially suitable for developing large-scale applications such as portals, forums, ...
This section provides an overview of how to install and configure Angular2+ for use in various environments and IDE's using tools like the community developed angular-cli. The previous version of Angular is AngularJS or also named Angular 1. See here the documentation. VersionRelease Date4.3....
Flask is a Python web application micro-framework built on top of the Werkzeug WSGI library. Flask may be "micro", but it’s ready for production use on a variety of needs. The "micro" in micro-framework means Flask aims to keep the core simple but extensible. Flask won’t mak...
Laravel StackOverflow Slack Community Coming soon Featured Tutorial Getting Started With Laravel Contribution Guidelines Coming soon Contribution Style Guide Coming soon About Laravel Created by Taylor Otwell as a free open-source PHP web framework, Laravel is meant to ease and ...
Pandas is a Python package providing fast, flexible, and expressive data structures designed to make working with “relational” or “labeled” data both easy and intuitive. It aims to be the fundamental high-level building block for doing practical, real world data analysis in Python. The official P...
React is a declarative, component-based JavaScript library used for creating user interfaces. To achieve MVC framework like functionalities in React, developers use it in conjunction with a Flux flavour of choice, e.g. Redux. VersionRelease Date0.3.02013-05-290.4.02013-07-170.5.02013-10-160.8...

Page 11 of 164