Tutorial by Topics: m

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...
The dynamic keyword declares a variable whose type is not known at compile time. A dynamic variable can contain any value, and the type of the value can change during runtime. As noted in the book "Metaprogramming in .NET", C# does not have a backing type for the dynamic keyword: The...
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...
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...
This section provides an overview of what amazon-web-services is, and why a developer might want to use it. It should also mention any large subjects within amazon-web-services, and link out to the related topics. Since the Documentation for amazon-web-services is new, you may need to create ini...
lm(formula, data, subset, weights, na.action, method = "qr", model = TRUE, x = FALSE, y = FALSE, qr = TRUE, singular.ok = TRUE, contrasts = NULL, offset, ...) ParameterMeaningformulaa formula in Wilkinson-Rogers notation; response ~ ... where ... contains terms corresponding to v...
Unlike most languages, Python supports two major versions. Since 2008 when Python 3 was released, many have made the transition, while many have not. In order to understand both, this section covers the important differences between Python 2 and Python 3. There are currently two supported vers...
Magento is an open-source e-commerce platform written in PHP; a highly customizable e-commerce platform and content management system that can be used to build online stores for selling merchandise. It provides common e-commerce features, such as shopping carts and inventory management, and encou...
Entity Framework (EF) is an object-relational mapper (ORM) that enables .NET developers to work with relational data using domain-specific objects. It eliminates the need for most of the data-access code that developers usually need to write. Entity Framework allows you to create a model by writi...
NumPy (pronounced “numb pie” or sometimes “numb pea”) is an extension to the Python programming language that adds support for large, multi-dimensional arrays, along with an extensive library of high-level mathematical functions to operate on these arrays. VersionRelease Date1.3.02009-03-201.4...
This section provides an overview of what spring-mvc is, and why a developer might want to use it. It should also mention any large subjects within spring-mvc, and link out to the related topics. Since the Documentation for spring-mvc is new, you may need to create initial versions of those rela...
This section provides an overview of what scheme is, and why a developer might want to use it. It should also mention any large subjects within scheme, and link out to the related topics. Since the Documentation for scheme is new, you may need to create initial versions of those related topics. ...
CMake is a tool for defining and managing code builds, primarily for C++. CMake is a cross-platform tool; the idea is to have a single definition of how the project is built - which translates into specific build definitions for any supported platform. It accomplishes this by pairing with differ...
A Virtual Environment is a tool to keep the dependencies required by different projects in separate places, by creating virtual Python environments for them. It solves the “Project X depends on version 1.x but, Project Y needs 4.x” dilemma, and keeps your global site-packages directory clean and man...

Page 10 of 161