Skip to content

Instantly share code, notes, and snippets.

Mac Setup

A. Dev Setup

  1. Terminal Setup
  2. Install Xcode Command Line Tools:
    xcode-select --install
    
  3. Install Homebrew:
@swoodipto
swoodipto / gist-local-workflow.md
Last active November 22, 2020 16:39
TIL: You can work locally with Gists

UPDATE Nov 2020:

  • git clone <gist_url> for cloning using https instead of git works fine.

ARCHIVE:

  • Grab your Gist URL, example: https://gist.github.com/yourhandle/__5bac61ee3fe0083__
  • Alter slightly and clone:
@swoodipto
swoodipto / git-lfs-design-workflow.md
Last active July 6, 2020 10:18
A boilerplate guide to use git-lfs for design.

git-lfs, A Design Workflow

  1. Ensure git lfs install by git lfs status
  2. In the repo, add the file types you want to track, this adds them to .gitattributes:
    git lfs track “*.psd”
    git lfs track “*.ai”
    git lfs track “*.aep”
    git lfs track “*.prproj”
    
@swoodipto
swoodipto / react-without-create-react-app.md
Created November 22, 2020 16:16
React without create-react-app

Hello world!