낙서장3 HTTP (HyperText Transfer Protocol) & HTTPS (HyperText Transfer Protocol Secure) HTTP와 HTTPS는 웹에서 데이터를 주고받을 때 사용하는 프로토콜입니다. 주요 차이점은 보안(암호화)의 유무입니다.HTTP (HyperText Transfer Protocol)HTTP는 웹에서 데이터를 주고받기 위한 기본 프로토콜입니다. 웹 브라우저가 웹 서버에 요청(Request)을 보내고, 서버가 응답(Response)을 보내는 방식으로 동작합니다.특징비보안 프로토콜: 데이터를 암호화하지 않고 전송 → 중간에서 도청(스니핑), 변조(중간자 공격, MITM) 가능빠른 데이터 전송: 암호화 과정이 없기 때문에 처리 속도가 빠름기본 포트 번호: 80HTTP 요청 및 응답 과정사용자가 웹 브라우저에 http://example.com 입력브라우저가 웹 서버(example.com)로 요청 전송 (Reques.. 2025. 2. 19. git 파일 삭제 // 원격 저장소 및 로컬 저장소의 파일을 삭제$ git rm -r [File Name]// 원격 저장소에 있는 파일만 삭제// 로컬 저장소의 파일은 삭제되지 않음$ git rm --cached -r [File Name] 2025. 2. 17. 놉 지웟다가 넣었다가 def add_parameter(): """ This function is run upon pressing the Add Parameter button. Due to nuke limitations, we are forced to remove all the knobs, add the new parameters knobs, then recreate the removed knobs. Yes it is tedious, and it creates UI bugs, but there is no real other way... """ removed_knobs, available = delete_below_knobs() create_parameter_knobs(availabl.. 2025. 2. 14. 이전 1 다음