Follow the standard iCloud setup on system startup or System Prefences.
> xcode-select —-install| # specify a directory to install | |
| cask_args appdir: '/Applications' | |
| # install packages | |
| tap 'homebrew/cask' | |
| tap 'homebrew/cask-fonts' | |
| brew 'git' | |
| brew 'nvm' | |
| brew 'yarn' | |
| brew 'awscli' | |
| brew 'awsume' |
Code is clean if it can be understood easily – by everyone on the team. Clean code can be read and enhanced by a developer other than its original author. With understandability comes readability, changeability, extensibility and maintainability.
| """ | |
| Single Responsibility Principle | |
| “…You had one job” — Loki to Skurge in Thor: Ragnarok | |
| A class should have only one job. | |
| If a class has more than one responsibility, it becomes coupled. | |
| A change to one responsibility results to modification of the other responsibility. | |
| """ | |
| class Animal: | |
| def __init__(self, name: str): |
| /* Terminal Wrapper Styles */ | |
| .nv-snippet-window-wrapper.terminal-cqc4oo { | |
| position: absolute; | |
| font-size: .875rem; | |
| font-family: var(--nv-monospace-font) | |
| } | |
| .nv-snippet-window-wrapper.is-noninteractable.terminal-cqc4oo { | |
| opacity: 1; |
| import transliterate from './transliterate'; | |
| const builtinOverridableReplacements = [ | |
| ['&', ' and '], | |
| ['🦄', ' unicorn '], | |
| ['♥', ' love '] | |
| ]; | |
| const matchOperatorsRe = /[|\\{}()[\]^$+*?.]/g; | |
| function escapeStringRegexp (str:string) { | |
| if (typeof str !== 'string') { |