What is Git (software) ?

In software development, Git is a distributed revision control and source code management (SCM) system with an emphasis on speedGit was initially designed and developed by Linus Torvalds for Linux kernel development in 2005.

Every Git working directory is a full-fledged repository with complete history and full version tracking capabilities, … Read more

What is Cross-site scripting ?

Cross-site scripting (XSS) is a type of computer security vulnerability typically found in Web applications or Websites. Cross-site scripting enables attackers to inject client-side script into Web pages viewed by other users. A cross-site scripting vulnerability may be used by attackers to bypass access controls such as the same origin … Read more

What is AngularJS ?

It is an open-source web application framework, maintained by Google and community, that assists with creating single-page applications, one-page web applications that only require HTML, CSS, and JavaScript on the client side. Its goal is to augment web applications with model–view–controller (MVC) capability, in an effort to make both development … Read more

What is Node.js ?

It is a software platform for scalable server-side and networking applications. Node.js applications are written in JavaScript, and can be run within the Node.js runtime on Mac OS X, Windows and Linux with no changes.

The Node.js applications are designed to maximize throughput and efficiency, using non-blocking I/O and asynchronous … Read more

What is JSON ?

JSON stand for JavaScript Object Notation. It is a lightweight data-interchange format. It is easy for humans to read and write. It is easy for machines to parse and generate. It is based on a subset of the JavaScript Programming Language, Standard ECMA-262 3rd Edition – December 1999. JSON is … Read more

What is CSS ?

CSS stands for Cascading Style Sheets. It is a style sheet language used for describing the look and formatting of a document written in a markup language. While most often used to style web pages and interfaces written in HTML and XHTML, the language can be applied to any kind … Read more

What is HTML ?

HTML stands for HyperText Markup Language. It is the standard markup language used to create web pages.

HyperText Markup Language is written in the form of HTML elements consisting of tags enclosed in angle brackets (like ). HTML tags most commonly come in pairs like

and

, although some tags … Read more