git branch 삭제하는 법

로컬과 원격에서 브랜치 삭제하는 법

2023년 8월 21일
·
0개의 댓글
·

Elasticsearch 8.8.1 외부 접속 오류 문제

해결 방법: elasticsearch.yml 수정

2023년 8월 9일
·
0개의 댓글
·

Docker 안 꺼질 때

kill -9 \`ps -ef | grep \[프로세스 이름] | awk '{print $2}'

2023년 8월 1일
·
1개의 댓글
·

[SQL] 중복 데이터를 제외하고 입력하기

WHERE NOT EXISTS

2023년 7월 26일
·
0개의 댓글
·

[NLP] Multilingual Embedding 모델 간단 비교

Sentence Transformers의 multiligual embedding model 성능 간단 비교

2023년 7월 22일
·
1개의 댓글
·

ubuntu에 Minconda 설치

터미널에 다음 실행 `wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh \ && sh Miniconda3-latest-Linux-x86_64.sh`

2023년 7월 10일
·
0개의 댓글
·

[Python] pandas install 했는데 no module named 에러

python -m pip install pandas

2023년 7월 10일
·
0개의 댓글
·

Kubernetes Lens에서 Pod 재실행

재실행 하고 싶은 Pod 오른쪽 땡땡이 클릭해서 'Delete'하면 자동으로 새로 복구되며 재실행할 수 있다.

2023년 6월 20일
·
0개의 댓글
·

CI - playwright install error

Debian new release로 인한 CI 도커 이미지 빌드 오류

2023년 6월 19일
·
0개의 댓글
·

M1 postgresql, psycopg2 설치

pip install psycopg2 오류 해결

2023년 5월 18일
·
0개의 댓글
·

[git 오류] git pull/push 무한로딩

git config pull.rebase false

2023년 5월 11일
·
0개의 댓글
·

[Docker] GPU 사용

Docker에서 GPU 사용하기

2023년 5월 8일
·
0개의 댓글
·

python site-package 위치 찾기

python3 -c "import site; print(site.getsitepackages())"

2023년 4월 27일
·
0개의 댓글
·

GPT-3 vs ChatGPT vs GPT-4

간단 비교

2023년 3월 30일
·
0개의 댓글
·

[LeetCode] Queue Reconstruction by Height

heapq 풀이. 최대 힙

2023년 3월 21일
·
0개의 댓글
·

[Docker] Dockerize FE/BE

0.0.0.0

2023년 3월 20일
·
0개의 댓글
·

[LeetCode] House Robber

DP - 집도둑

2023년 3월 16일
·
0개의 댓글
·

[Elasticsearch] BadRequestError: BadRequestError(400, 'search_phase_execution_exception', 'runtime error')

field data type이 잘못 지정된 경우 발생하는 오류

2023년 3월 15일
·
0개의 댓글
·