- Install Git
- Create a GitHub account
- Open Terminal
/Applications/Utilities/Terminal.app
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* ------------------------------------------------------- | |
Old-school way to create child objects from parent objects | |
--------------------------------------------------------*/ | |
var Person = function (name, age, sex) { | |
this.name = name; | |
this.age = age; | |
this.sex = sex; | |
} | |
Person.prototype.sayGreeting = function () { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title></title> | |
</head> | |
<body> | |
<h1>Hello, world!</h1> | |
</body> |
Cheatsheet of common typographical characters (not an exhaustive reference). HTML character references listed are decimal numeric character references, which are the base-10 equivalent of their corresponding base-16 (hexadecimal) Unicode code point. Also see named character references.
Glyph | HTML reference | Name |
---|---|---|
‘ | ‘ |
Left single quotation mark |
’ | ’ |
Right single quotation mark/apostrophe |
“ | “ |
Left double quotation mark |
” | ” |
Right double quotation mark |
NewerOlder