개발자 맥북 세팅
트랙패드 스크롤 방향
처음에 맥북을 사용하면 트랙패드의 스크롤 방향과 실제 화면에서의 스크롤 방향이 반대여서 헷갈리게 된다.
아래 옵션을 해제하면 스크롤 방향과 실제 화면에서의 스크롤 방향이 일치된다.
시스템 설정 - 트랙패드 - 스크롤 및 확대/축소 - 자연스러운 스크롤 해제
인텔리제이 설치
https://www.jetbrains.com/ko-kr/idea/
IntelliJ IDEA – Java 및 Kotlin을 위한 최고의 IDE
www.jetbrains.com
안드로이드 스튜디오 설치
https://developer.android.com/studio?hl=ko
Android 스튜디오 및 앱 도구 다운로드 - Android 개발자 | Android Studio | Android Developers
Android Studio provides app builders with an integrated development environment (IDE) optimized for Android apps. Download Android Studio today.
developer.android.com
dbeaver 설치
Download | DBeaver Community
Download DBeaver Community 24.1 Released on June 3rd 2024 (Milestones). It is free and open source (license). Also you can get it from the GitHub mirror. DBeaver PRO 24.0 Released on March 11th, 2024 PRO version website: dbeaver.com Trial version is availa
dbeaver.io
postman 설치
https://www.postman.com/downloads/
Download Postman | Get Started for Free
Try Postman for free! Join 30 million developers who rely on Postman, the collaboration platform for API development. Create better APIs—faster.
www.postman.com
노션 설치
https://www.notion.so/ko-kr/desktop
Mac 및 Windows용 Notion 데스크톱 앱 | Notion
Enjoy an infinitely flexible and adaptable workplace that optimizes around your personal and team needs. Download the Notion desktop app for Mac and Windows
www.notion.so
깃설치
brew install git
깃이 잘설치되었는지 확인
git --version
homwbrew 설치
명령어
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
위 명령어를 입력하고 패스워드를 입력한다
명령어들이 쭉쭉나오고 homebrew 설치가 잘되었는지 확인해본다.
brew --version
brew --version
위와 같이 나오게 되면
만약 위와 같은 오류가 발생한다면 Homebrew 경로를 추가한다.
zshrc에 homebrew path 추가
echo 'export PATH=/opt/homebrew/bin:$PATH' >> ~/.zshrc
# zshrc 반영
source ~/.zshrc
iterm2 설치
brew install iterm2
명령어를 실행하면
seulgi@seului-MacBookPro ~ % brew install iterm2
==> Downloading https://formulae.brew.sh/api/formula.jws.json
#################################################################################################################################################################################### 100.0%
==> Downloading https://formulae.brew.sh/api/cask.jws.json
#################################################################################################################################################################################### 100.0%
==> Downloading https://iterm2.com/downloads/stable/iTerm2-3_5_0.zip
#################################################################################################################################################################################### 100.0%
==> Installing Cask iterm2
==> Moving App 'iTerm.app' to '/Applications/iTerm.app'
🍺 iterm2 was successfully installed!
seulgi@seului-MacBookPro ~ %
iterm2 가 설치가 된다.
oh-my-zsh 설치
sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"