일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
- VPN
- Kafka
- codebuild
- COALESCE
- bootstrap
- docker
- codedeploy error
- Flux
- node
- 도커
- JavaScript
- aws
- SQL
- chart.js
- Airflow
- or some instances in your deployment group are experiencing problems.
- Spring Error
- AWS CI/CD 구축하기
- Spring
- kubeflow
- java bigdecimal
- codedeploy
- Python
- aws cicd
- IntelliJ
- PostgreSQL
- codepipeline
- redis
- chartjs
- Jenkins
- Today
- Total
목록도구 (61)
Small Asteroid Blog

Amphetamine 앱은 Mac 이 자동으로 잠자기(Sleep) 상태로 진입하는 것을 방지해 주는 앱이다. 대용량 파일 다운로드나 오랜 시간 코드가 실행되는 등 시간이 오래 걸리는 작업을 할 때,화면 공유, 녹화 중에 디스플레이 꺼짐 방지, 회사 노트북이 빨리 잠자기 상태로 들어갈 때 사용하면 좋다. App store 에서 Amphetamine 설치 https://apps.apple.com/kr/app/amphetamine/id937984704?mt=12 기능메뉴에 있는 다양한 기능을 보고 원하는 상황에 맞춰서 사용하면 된다. 설정에서 아이콘 이미지도 변경이 가능하다.
develop 브랜치에서 다른 feature 브랜치로 checkout 하는데 다음과 같은 에러가 발생했다. error: The following untracked working tree files would be overwritten by checkout: 해결방법 추적하지 않는 파일을 제거하면 된다. # == 적용하지 않고 무엇을 해야할 지만 보고 싶을 때 == git clean -fd --dry-run # 또는 git clean -fdn # == 적용하고 싶을 때 == git clean -fd

로컬에서 프로젝트를 생성 후 깃 연결을 위해 git init 설정을 하면 master 브랜치로 생성되는데 Git Repository에서 프로젝트를 생성하면 main 으로 디폴트 브랜치가 생성된다. 기본 브랜치는 main 이기 때문에 push 나 pull이 제대로 되지 않는 경우들이 있다. 그래서 master 브랜치와 main 브랜치를 하나로 만들기 위해서 master 브랜치의 내용을 main으로 옮기고자 했다. 해당 방법은 main의 내용이 다 삭제됨으로 master와 동기화 하고 진행하는 걸 추천한다. git checkout master git branch main master -f git checkout main git push origin main -f

문제 새로운 프로젝트를 받기 위해 git clone을 했는데 다음과 같은 에러가 나면서 프로젝트를 가져오지 못했다. https-urls for information on currently recommended modes of authentication. fatal: Authentication failed for 'https://github.com/' 해결방법 비밀번호를 입력할때 사용자 비밀번호가 아닌 토큰값으로 입력한다. 토큰 발급하기 프로필 > Settings > Developer settings > Personal access tokens > tokens (classic) > Generate new token (classic) Note, Expiration, Select scopes 에 대해서 작성하..
iterm2 설치는 여기를 참고한다. 새창 - Command + n 새 탭 - Command + t 탭 이동 Command + 번호, Command + 방향키 탭 좌우 분할 Command + d 탭 상하 분할 Command + shift + d 탭 투명하게 설정 : Command + i 탭 투명하게 on/off : command + u 탭 닫기 : Command + w 탭 분할 시 포커스 찾기 Command + / 탭 분할 포커스 이동 : Command + [ , ] 전체 검색 : Command + option + e 검색 : command + F 클립보드 : Command + Shift + H 자동완성 : Command + ; 작업시간 보여주기 : Command + shift + e 현재 탭 모든 분할..