Skip to content

Instantly share code, notes, and snippets.

@justinlazaro-ubidy
justinlazaro-ubidy / multiple_ssh_setting.md
Created April 3, 2018 00:49 — forked from jexchan/multiple_ssh_setting.md
Multiple SSH keys for different github accounts

Multiple SSH Keys settings for different github account

create different public key

create different ssh key according the article Mac Set-Up Git

$ ssh-keygen -t rsa -C "[email protected]"
@justinlazaro-ubidy
justinlazaro-ubidy / review-checklist.md
Created October 9, 2018 03:18 — forked from bigsergey/review-checklist.md
Front-end Code Review Checklist

Review checklist

General

  1. Does the code work?
  2. Description of the project status is included.
  3. Code is easily understand.
  4. Code is written following the coding standarts/guidelines (React in our case).
  5. Code is in sync with existing code patterns/technologies.
  6. DRY. Is the same code duplicated more than twice?