[React - 기초] JSX, Babel
·
React/패스트캠퍼스
1. JSX 문자도 HTML도 아닌 JavaScript의 확장 문법 const text = "Hello, world!"; const textClass = "title" const element = {text} React 개발을할 때 JSX는 필수가 아니다. 하지만 시각적으로 더 도움이 된다. 2. Babel JavaScript Complier로 React 언어를 JavaScript가 이해할 수 있게 해석해주는 프로그램이다. const text = "Hello, world!"; const textClass = "title" const element = {text} = // 바벨처리 => const text = "Hello, world!"; const textClass = "title"; const elem..
[React - 기초] DOM, Element
·
React/패스트캠퍼스
1. DOM? Document Object Model의 약자이며, XML이나, HTML 문서에 접근하기 위한 인터페이스라고 보면 된다. 위와 같은 계층 구조로 나타나 있으며, 자바스크립트를 사용해서 문서의 요소를 변경, 수정, 삭제할 수 있다. 2. Element html 태그를 사용하지 않고, 자바스크립트로 직접 만들 수 있다. 이것을 React에서 어떤 방식으로 사용할까? 3. React에서의 Element 다루기 보는 바와 같이 React에서도 Element를 생성, 수정을 할 수 있다.
[개발환경] React 개발환경 구성 - Window
·
개발환경
0. 시작하면서 컴퓨터를 포맷하고 기존에 사용하던 프로그램들을 새롭게 설치하는 작업을 하면서, 이번에 React 개발환경을 구성하는 디테일한 방법을 정리하고자 한다! 설치하는 파일은 VS Code, Node.js, yarn, Git 을 설치할 것이다. Mac과 Window가 조금씩은 다를 수 있는데, 이번엔 Window 컴퓨터를 포맷했으니 Window용 세팅이다! 다음에 사용하는 Mac을 포맷할 경우가 있다면, 그때 또 Mac용을 작성하겠다! 1. VS Code 설치 구글에 VS Code를 검색하면 위와 같이 나올것이며, Download를 클릭하자! 우린 Window 컴퓨터를 사용하니깐 Window 용을 다운받자! 설치가 완료되고 실행하면 위와같은 화면이 나온다. 당연히 동의하고 다음을 쭉 누른다! 위 ..
[CCNAS] 덤프 7장 문제
·
CCNA/문제
An online retailer needs a service to support the nonrepudiation of the transaction. Which component is used for this service? ◦the private key of the retailer ◦the unique shared secret known only by the retailer and the customer ◦the public key of the retailer ◦the digital signatures ​ 온라인 소매업자는 그 거래의 반성을 지원하기 위한 서비스가 필요하다. 이 서비스에 사용되는 구성 요소는? ◦판매점 개인키 ◦판매점과 고객만 알고 있는 고유공유비밀 ◦판매점 공개키 ◦디지털서명* ​ ..
[CCNAS] 덤프 6장 문제
·
CCNA/문제
In what situation would a network administrator most likely implement root guard? ◦on all switch ports (used or unused) ◦on all switch ports that connect to a Layer 3 device ◦on all switch ports that connect to host devices ◦on all switch ports that connect to another switch ◦on all switch ports that connect to another switch that is not the root bridge ​ 어떤 상황에서 네트워크 관리자가 루트 가드를 구현할 가능성이 가장 높은가..
[CCNA] 덤프 3-10 문제
·
CCNA/문제
Which two parameters must match between neighboring OSPF routers in order to form an adjacency? (Choose two.) ◾router ID ◾IP address ◾process ID ◾cost ◾hello / dead timers ◾network types ​ 인접 OSPF 라우터를 구성하기 위해 일치해야 하는 두 파라미터는? (2개 선택) ◾router ID ◾IP address ◾process ID ◾cost ◾hello / dead timers* ◾network types* ​ Which command can be used to view the OSPF hello and dead time intervals? ◾show ip..
[CCNA] 덤프 3-9 문제
·
CCNA/문제
What are two reasons for creating an OSPF networkWhat information is contained within an OSPF type 4 LSA with multiple areas? (Choose two.) ◾to simplify configuration ◾to reduce SPF calculations ◾to reduce use of memory and processor resources ◾to provide areas in the network for routers that are not running OSPF ◾to ensure that an area is used to connect the network to the Internet ​ OSPF 네트워크를..
[CCNA] 덤프 3-8 문제
·
CCNA/문제
By default, what is the OSPF cost for any link with a bandwidth of 100 Mb/s or greater? ◾100 ◾100000000 ◾1 ◾10000 ​ 기본적으로 대역폭이 100Mb/s 이상인 링크의 OSPF 비용은 얼마인가? ◾100 ◾100000000 ◾1* ◾10000 ​ Which command will verify that a router that is running OSPFv3 has formed an adjacency with other routers in its OSPF area? ◾show ipv6 interface brief ◾show ipv6 ospf neighbor ◾show ipv6 route ospf ◾show running..