##Create a new repository on the command line
touch README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin [email protected]:alexpchin/.git
| { | |
| "name": "packages", | |
| "version": "1.0.0", | |
| "main": "index.js", | |
| "license": "MIT", | |
| "private": true, | |
| "scripts": { | |
| "start": "concurrently \"wsrun --parallel start\"" | |
| }, | |
| "workspaces": [ |
##Create a new repository on the command line
touch README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin [email protected]:alexpchin/.git
| /* HELPERS */ | |
| .centered { | |
| display: flex; | |
| justify-content: center; | |
| align-items: center; | |
| } | |
| /* margin */ |
| if(!!window.React || | |
| !!document.querySelector('[data-reactroot], [data-reactid]')) | |
| console.log('React.js'); | |
| if(!!window.angular || | |
| !!document.querySelector('.ng-binding, [ng-app], [data-ng-app], [ng-controller], [data-ng-controller], [ng-repeat], [data-ng-repeat]') || | |
| !!document.querySelector('script[src*="angular.js"], script[src*="angular.min.js"]')) | |
| console.log('Angular.js'); | |
| if(!!window.Backbone) console.log('Backbone.js'); |
Open Terminal. Paste the text below, substituting in your GitHub email address.
ssh-keygen -t rsa -b 4096 -C "[email protected]"
Generating public/private rsa key pair.