본문 바로가기

전체 글61

중간 대비 1. parallel projection은 projection을 했을때 평행선이 보존되고 perspective projection은 평행선이 유지되지않느다 single buffering은 1개의 buffer를 사용하여 그리는 과정이 눈에 보이며 flickering(깜박임)이 발생할 수 있음 double buffering은 동일한 2개의 buffer (front back buffer)를 사용하여 back buffer에 그림을 그리고 swapping 하여 front buffer만 보여주어 flickering이 없게 함. Emissive display은 화면에 빛을 직접 방출하여 이미지를 표시하는 방식 non-Emissive display는 빛을 스스로 방출하지않고 주변 빛을 이용하여 이미지를 표시함 pixe.. 2023. 11. 16.
Intro to Amazon EC2 ~ 04-1 infrastructure as a service : IAS Intro to computing CPU : runs and process the instructions that it is given RAM : main memory , stores data that the computer need to carry out processing tasks. temporary storage DRAM as a main memory Hard Drive : SSD를 보통 사용하긴 함 long term storage , stores the boot files and files that you create Network of Performance : bw : the amount of data that can be sent .. 2023. 9. 27.
컴네 강의 정리 1주차 internet = network edge + network core 1. network edge : 네트워크구성에서 가장 종단 부분, end systems = hosts = end nodes = stations = terminals =네트워크 트래픽을 생성/소비하는 장비 2. access networks : 홈네트워크망 residential network, institutional network, home network, mobile network = 네트워크가입자인 인터넷 사용자가 처음 접속하는 망으로 집 학교 회사 이동중에 따른 다른 기술이 사용됨 3. network core : packet switching, circuit switching, internet structure router(123).. 2023. 9. 7.
스프링 MVC 1편 - 백엔드 웹 개발 핵심 기술 - 서블릿 HTTP 요청 데이터 개요 HTTP 메시지를 통해 클라이언트에서 서버로 데이터를 전달하는 방법 1. get ->쿼리 파라미터 /url?username=kim&age=20 메시지 바디없이 url에 쿼리파라미터를 포함 검색 필터 페이징등에서 많이 사용하는 방식 2. post -> html form content type : application/x-www-form-urlencoded 메시지 바디에 username=kim&age=20 회원 가입, 상품주문, html form 사용 3. http message body에 데이터를 직접 담아서 요청 http api에서 주로 사용 json, xml, text 데이터 형식은 주로 json에서 사용 post put patch HTTP 응답 데이터 1. 단순 텍스트 응답.. 2023. 8. 5.