Added some new stuff.

This commit is contained in:
Charlie 2018-05-31 18:16:19 +01:00
parent 55840635af
commit a8987e91ef
13 changed files with 98 additions and 5 deletions

View file

@ -1,4 +1,4 @@
title: Lexicon
title: Glossary.sh
github: https://github.com/
collections:
topic:

View file

@ -7,7 +7,7 @@ layout: default
<div class='container'>
<div class='row'>
<div class='col-sm-2'>
<div class='col-sm-2 d-none d-sm-none d-md-block'>
{% include side-nav.html %}
</div>
<div class='col-sm-10 col-xs-12'>

13
_topic/aspnet.markdown Normal file
View file

@ -0,0 +1,13 @@
---
layout: topic
title: "ASP.NET"
snippet: "ASP.NET is a software framework for building websites using Microsofts .NET platform."
website: "https://www.asp.net/"
---
ASP.NET is a set of tools for building websites using Microsofts .NET platform. It is the most commonly used framework used for building websites by [C#](csharp) Developers. There are multiple versions of ASP.NET:
- ASP.NET Webforms is an older version of ASP.NET and is designed to run on Windows.
- ASP.NET MVC is a version of ASP.NET that follows the [Model-View-Controller](model-view-controller) paradigm.
- ASP.NET Core is a newer version of ASP.NET and is designed to run on multiple operating systems and is released as [open-source-software](open-source-software).

View file

@ -0,0 +1,8 @@
---
layout: topic
title: "Backbone.JS"
snippet: "Backbone.JS is a tool that makes it easier to build complex applications that run in a web browser."
website: "http://backbonejs.org/"
---
Backbone.JS is a tool that makes it easier to build complex applications that run in a web browser. It offers a set of tools and methodologies to manage retrieving data from a [server](client-server), organising and showing that data to the user.

13
_topic/cloud.markdown Normal file
View file

@ -0,0 +1,13 @@
---
layout: topic
title: "Cloud"
snippet: "The Cloud is a colloquialism used to describe buying internet technology services from specialist providers as an alternative to building those services yourself."
website: ""
---
The Cloud is a colloquialism used to describe buying technology services from specialist providers as an alternative to building those services yourself. Companies often do this as an alternative to buying and managing computer hardware themselves.
## Examples
- [Amazon Web Services](https://aws.amazon.com/) is a set of managed technology services for running applications using [Amazons](https://amazon.com) infrastructure.
- [Firebase](firebase) is a complete set of tools and services for building [internet](internet) applications.

View file

@ -1,9 +1,9 @@
---
layout: topic
title: "C# Programming Language"
title: "C#"
snippet: "C# is a programming language that runs on Microsofts .NET Framework."
website: "https://docs.microsoft.com/en-us/dotnet/csharp/getting-started/introduction-to-the-csharp-language-and-the-net-framework"
---
C# is a programming language that runs on Microsofts .NET Framework.
C# is a programming language designed by Microsoft that runs on the [.NET Framework](dotnet-framework).

11
_topic/emberjs.markdown Normal file
View file

@ -0,0 +1,11 @@
---
layout: topic
title: "Ember.JS"
snippet: "Ember.JS is a framework that makes it easier for developers to build complex applications that run in a web browser."
website: "https://emberjs.com/"
---
Ember.JS is a framework that makes it easier for developers to build complex applications that run in a web browser.
## Similar to
- [Angular.JS](angularjs).

9
_topic/git.markdown Normal file
View file

@ -0,0 +1,9 @@
---
layout: topic
title: "Git"
snippet: "Git is a computer program for storing and managing the files used to by programmers to make software."
website: "https://git-scm.com/"
---
Git is a computer program for storing and managing the files used by programmers to make software. It allows the user the ability to view the history of how a file has been changed as well as to bring together the changes that multiple users want to make to a file. It is the most popular tool of its kind and is released as [free, open-source software](open-source-software).

View file

@ -5,5 +5,8 @@ snippet: "Model-View-Controller is a common design convention for building web a
website: ""
---
Model-View-Controller is a common design convention for building web applications.
Model-View-Controller is a common design convention for building web applications. It semantically seperates out the core components of the application into three, seperate parts. The Model is responsible for representing the application data, the View is reponsible for displaying that data to the user and the Controller is responsible for orchestrating how the View and Model communicate as well as how the user can change the application data.
## Examples
- [Angular.JS](angularjs).
- [ASP.NET](aspnet)

View file

@ -0,0 +1,9 @@
---
layout: topic
title: "React Native"
snippet: "React Native is a set of tools for building user interfaces in mobile applications"
website: "https://facebook.github.io/react-native/"
---
React Native is a set of tools for building user interfaces in mobile applications. It is based on the same methodologies and ideas as the [React.JS](reactjs) library for building user interfaces for web applications. It allows the programmer to use the same languages used to build [Web Applications](web-applications) whilst still being as performant as mobile applications written using the official languages used for a specific platform.

View file

@ -0,0 +1,9 @@
---
layout: topic
title: "SEO"
snippet: "Search Engine Optimisation, or SEO, is the process of ensuring that a website is built in a way that makes it likely to be discovered and ranked highly by search engines."
website: ""
---
Search Engine Optimisation, or SEO, is the process of ensuring that a website is built in a way that makes it likely to be discovered and ranked highly by search engines.

9
_topic/svn.markdown Normal file
View file

@ -0,0 +1,9 @@
---
layout: topic
title: "SVN"
snippet: "Subversion, or SVN, is a computer program for storing and managing the files used by programmers to make software. It allows the user the ability to view the history of how a file has been changed as well as to bring together the changes that multiple users want to make to a file."
website: "https://subversion.apache.org/"
---
Subversion, or SVN, is a computer program for storing and managing the files used by programmers to make software. It allows the user the ability to view the history of how a file has been changed as well as to bring together the changes that multiple users want to make to a file.

View file

@ -0,0 +1,9 @@
---
layout: topic
title: "UX"
snippet: "User-Experience or UX is the process of optimising a technology system to better benefit the user."
website: ""
---
User-Experience or UX is the process of optimising a technology system to better benefit the user.