기타 썸네일형 리스트형 [기타] Git 사용법: 초보자를 위한 기본 가이드 Git 사용법: 초보자를 위한 기본 가이드 Git은 분산 버전 관리 시스템으로, 소스 코드를 효과적으로 관리할 수 있도록 도와줍니다. 하지만 처음 사용하려면 어려움을 겪을 수도 있습니다. 이번 글에서는 Git을 처음 사용하는 초보자를 위한 기본 가이드를 제공합니다. Git 저장소 생성하기 Git을 사용하기 위해서는 먼저 Git 저장소를 생성해야 합니다. Git 저장소는 Git으로 관리되는 디렉토리입니다. 다음은 Git 저장소를 생성하는 방법입니다. git init 위 명령어를 실행하면 현재 디렉토리에 Git 저장소가 생성됩니다. Git 저장소가 생성되면 Git으로 파일을 관리할 수 있습니다. 파일 추가하기 Git 저장소에 파일을 추가하기 위해서는 git add 명령어를 사용합니다. 다음은 파일을 추가하는.. 더보기 [기타] 미국 50개 주 코드 미국 50개 주 코드 주 주도 최대도시 앨라배마 Alabama AL 몽고메리 Montgomery 버밍햄 Birmingham 알래스카 Alaska AK 주노 Juneau 앵커리지 Anchorage 애리조나 Arizona AZ 피닉스 Phoenix 아칸소 Arkansas AR 리틀 락 Little Rock 캘리포니아 California CA 새크라멘토 Sacramento 로스앤젤레스 Los Angeles 콜로라도 Colorado CO 덴버 Denver 코네티컷 Connecticut CT 하트퍼드 Hartford 브리지포트 Bridgeport 델라웨어 Delaware DE 도버 Dover 윌밍턴 Wilmington 플로리다 Florida FL 탤러해시 Tallahassee 잭슨빌[16] Jacksonville.. 더보기 [url] ChatGPT 사이트 ChatGPT 사이트 ChatGPT는 Generative Pre-trained Transformer(GPT)와 Chat의 합성어이다 ChatGPT : https://chat.openai.com/chat ChatGPT Release Notes 참고URL - ChatGPT : Release Notes - ChatGPT : https://ko.wikipedia.org/wiki/ChatGPT 더보기 [기타] ChatGPT 사용법 ChatGPT 사용법 GPT-3 = Generative Pre-trained Transformer 3 ChatGPT 사이트 : https://chat.openai.com 가입(Sign up)하기 예시) - what is are name? - 파이션으로 구구단 코드 생성해줘 ChatGPT - Release Notes OpenAI ChatGPT API Welcome to OpenAI : https://platform.openai.com API 키 생성 OPENAI_API_KEY 환경 변수 등록 export OPENAI_API_KEY="sk-cFsdfsdbsdkflserjofwekfjowefkwerHfeefwq25uGuuoXV" echo $OPENAI_API_KEY $ echo $OPENAI_API_KEY s.. 더보기 [url] 우분투 맨페이지(Ubuntu Manpage) 우분투 맨페이지(Ubuntu Manpage) https://manpages.ubuntu.com/ Provided by: sed_4.8-1ubuntu2_amd64 : https://manpages.ubuntu.com/manpages/kinetic/en/man1/sed.1.html 더보기 [mac] vscode 파이썬 가상환경 설정하기(python virtualenv) vscode 파이썬 가상환경 설정하기(python virtualenv) iterm 터미널에서 프로젝트 디렉토리 생성 mkdir selenium cd selenium 파이썬 가상환경 생성(python 3 - venv) python -m venv pyenv vscode 실행(visual studio code) code . 관리 > 설정 > 설정 검색 : "python" > Python > settings.json에서 편집 (또는) command + shift + p > 검색 : "settings" settings.json 편집(python.pythonPath 추가) "python.pythonPath": "~/workspace/vscodeProjects/selenium/pyenv/bin/python", (또는.. 더보기 [mac] zsh에서 compinit 모드를 설정하는 방법 zsh에서 compinit 모드를 설정하는 방법 zsh compinit: insecure directories, run compaudit for list. (zsh compinit: 안전하지 않은 디렉토리, 목록에 대한 compaudit 실행) source ~/.zshrc $ source ~/.zshrc zsh compinit: insecure directories, run compaudit for list. Ignore insecure directories and continue [y] or abort compinit [n]? 안전하지 않은 디렉토리 목록 compaudit $ compaudit There are insecure directories: /opt/homebrew/share 권한 변경(소유권.. 더보기 [프로그래밍] python selenium 1 python selenium 1 pip3 install selenium from selenium import webdriver browser = webdriver.Firefox() browser.get("http://sangchul.kr") 더보기 이전 1 2 3 4 5 6 ··· 16 다음