- auto-update-packages
- autocomplete-plus
- merge-conflicts
- less-than-slash
- linter
- linter-less
- less-autocompile
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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
####In your favorite web browser (all users)
- Go to your profile on github.com
- Click on "Repositories"
- Click "New" towards the top-right of the screen
- Give your repository a name. Avoid spaces and silly characters
- Give your repository a description. Be as descriptive as you can, explain the purpose of the repository
- Set your repository to "public" or "private," I suggest public unless required to keep with the spirit of GitHub
- Open Terminal
- Move into your user (home) directory (folder),
cd ~
- Make an ".ssh" directory for us to store our ssh keys,
mkdir .ssh
- Move into your .ssh directory,
cd .ssh
- Create a new ssh key so we can connect our local machines to our github account,
ssh-keygen
- Hit enter three times. The first to store the ssh key in the current directory (.ssh), the second to enter a non-password, and the thrid to confirm the non-password.
- Copy our new public ssh key to our clipboard,
cat id_rsa.pub | pbcopy
. This is the same as hitting ⌘C on your keyboard, or Edit > Copy from the top manu.