목록Computer (222)
선릉역 1번 출구

1. 우분투 파일 다운로드 Get Ubuntu | Download | Ubuntu *ubuntu 의미: 당신 덕분에 내가 있다 2. VMware 다운로드(VMware Workstation Player 다운로드 | VMware | KR) Join the VMware Customer Experience Improvement Program -> 체크 해제 클릭하면 나의 VMware 정보가 개선을 위해 넘어감 3. 리눅스 계열 레드햇 계열 red hat enterprise linux(RHEL) -> 거의 유일한 유료 fedora(실험적) centOS(red의 배포용) 자동 설치 명령: yum, def 데비안 계열 debian ubuntu 자동 설치 명령: apt-get, apt - 리눅스 사용 사례: Cloud..

1. 내가 원하는 데이터가 어떤 페이지에 URL로 구성되어있는지 파악하기 ex) page_url = f"https://finance.naver.com/sise/sise_index_day.naver?code=KPI200&page={page_no}" 2. esc + b: 새로운 cell 만들기(jupyter notebook) 3. import requests(requests 라이브러리 가져오기) Tip) shift + tab을 누르면 함수가 어떤 함수인지 알려줌 4. 응답 코드 확인 status code 200: 정상적으로 결과를 가져옴 import requests source = requests.get(page_url).text #가져온 값을 text로 바꿔서 source에 저장함 5. beautifuls..

1. shift + enter로 실행하기 - 한 줄 실행할 수 있음 2. esc + m: mark down cell로 바꾸기 3. D + D: 현재 cell 삭제(esc누른 상태_파란 불이 들어온 상태에서 적용됨) 4. 종료하기 *꼭 close and halt를 눌러서 주피터를 종료해주어야 함!
1. Dark Web이란? The "dark web" refers to a collection of websites that can only be accessed using special software, such as the Tor browser. These websites are often used for illegal activities such as buying and selling drugs, hacking tools, and stolen credit card information. However, the dark web also includes legitimate sites such as whistleblower platforms and forums for discussing controver..

1. 크롬 설정 창 클릭 후 [도구 더보기] -> [확장 프로그램] 2. 웹 스토어에 chatgpt 검색 후 최상단으로 나오는 프로그램 설치 3. 크롬 창에서 검색 결과창 응답 내용과 오른쪽 사이드에 ChatGPT의 응답 내용도 같이 출력됨

SQL Tutorial (w3schools.com) Select 1. select * from 테이블명 2. select (컬럼명) from 테이블명 3. select distinct (컬럼명) from 테이블명 컬럼에서 고유한 값만 출력 - distinct 사용하기 where 1. where 조건절 select * from Customer where City = "Berlin"; 2. 포함하지 않는 행 출력하기(NOT keyword) NOT (조건) 3. 숫자는 그냥 작성! 4. where 조건1 and 조건2 5. 같은 조건이어도 다시 한번 작성해주어야함 City = 'Berlin' or City = 'London'으로! Order by 정렬 순서 보장 order by 컬럼명 (default 값은 오..