Git is a distributed version control and source code management system.
It does this through a series of snapshots of your project, and it works with those snapshots to provide you with functionality to version and manage your source code.
| # Title | |
| --- | |
| * Description: | |
| > /* Description here */ | |
| for f in *.txt; do printf '%s\n' 0a 'TEXT YOU WISH TO APPEND TO BEGINNING OF EVERY FILE' . x | ex "$f"; done |
| /////////////////////////////////// | |
| // 1. Selectors | |
| // Selectors in jQuery are used to select an element | |
| var page = $(window); // Selects the whole viewport | |
| // Selectors can also be CSS selector | |
| var paragraph = $('p'); // Selects all paragraph elements | |
| var table1 = $('#table1'); // Selects element with id 'table1' |
| // JSON is an extremely simple data-interchange format. As [json.org](http://json.org) says, it is easy for humans to read and write and for machines to parse and generate. | |
| // A piece of JSON must represent either: | |
| // * A collection of name/value pairs (`{ }`). In various languages, this is realized as an object, record, struct, dictionary, hash table, keyed list, or associative array. | |
| // * An ordered list of values (`[ ]`). In various languages, this is realized as an array, vector, list, or sequence. | |
| // JSON in its purest form has no actual comments, but most parsers will accept C-style (`//`, `/* */`) comments. Some parsers also tolerate a trailing comma (i.e. a comma after the last element of an array or the after the last property of an object), but they should be avoided for better compatibility. | |
| // For the purposes of this tutorial, everything is going to be 100% valid JSON. Luckily, it kind of speaks for itself. |
| <!-- | |
| HTML stands for HyperText Markup Language. | |
| It is a language which allows us to write pages for the world wide web. | |
| It is a markup language, it enables us to write webpages using code to indicate | |
| how text and data should be displayed. In fact, html files are simple text | |
| files. |
| # Single line comments start with a number symbol. | |
| """ Multiline strings can be written | |
| using three "s, and are often used | |
| as documentation. | |
| """ | |
| #################################################### | |
| ## 1. Primitive Datatypes and Operators | |
| #################################################### |
| <iframe height="800px" width="100%" src="./path/to/file/fileName.html" scrolling="yes" frameborder="yes" | |
| allowtransparency="true" allowfullscreen="true" | |
| sandbox="allow-forms allow-pointer-lock allow-popups allow-same-origin allow-scripts allow-modals"></iframe> |
| <!-- Latest compiled and minified CSS --> | |
| <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css"> | |
| <!-- jQuery library --> | |
| <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> | |
| <!-- Latest compiled JavaScript --> | |
| <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script> | |
| //OR | |
| <!-- Latest compiled and minified CSS --> | |
| <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"> |
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
| <html xmlns="http://www.w3.org/1999/xhtml"> | |
| <head> | |
| <meta name="generator" content="HTML Tidy for Linux (vers 25 March 2009), see www.w3.org" /> | |
| <meta http-equiv="Content-Type" content="text/html; charset=us-ascii" /> | |
| <title>Stable</title> | |
| <!-- Optional theme --> |