Skip to content

Instantly share code, notes, and snippets.

View hirejohnsalcedo's full-sized avatar
👋
Working from home

John hirejohnsalcedo

👋
Working from home
View GitHub Profile
alias sauce="source ~/.zshrc"
alias gc="git checkout"
alias gcb="git checkout -b"
alias gp='git push -u origin $(git branch | grep \* | cut -d " " -f2)'
alias glog="git log --pretty=oneline"
alias gbd="git branch -d"
alias gbD="git branch -D"
alias gb="git branch"
alias l="ls -la"
import { NativeModules } from 'react-native';
if (__DEV__) {
NativeModules.DevSettings.setIsDebuggingRemotely(true)
}
@hirejohnsalcedo
hirejohnsalcedo / readme.md
Last active July 18, 2020 02:08
Getting Started

Getting Started

Install Brew

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"

Install nvm (nodejs version manager)

brew install nvm