
자동줄맞춤 확장 프로그램 - beautify 1. 왼쪽 사이드바쪽 확장프로그램에서 beautify 검색 후 설치한다. 2. 기능 기여도 > 이름(HookyQR.beautify)를 복사 한다. 3. ctrl + shift + p 를 불러 '바로 가기'를 검색하여 '기본 설정: 바로 가기 키 열기' 연다 4. Beautify selection의 키 바인딩을 더블클릭하여 원하는 키를 넣는다(나는 ctrl + shift + f로 함) 5. test - 원하는 영역 블럭지정 후 바인딩한 키를 누른다. 끝.

나 하나도 몰랐었네? 공부해야 할 것 엄청 많이 생겼다... 최근 aws보면서 대단하다고 생각했었는데.. 네이버에도 대단한게 있었네.. 한눈에 보고 싶어서 캡쳐했는데 서비스들이 상당히 많은 것 같다.. aws보다 한글이라 정이가는건지는 모르겠는데 시간날때 하나씩 파악해봐야겠다. Compute / Containers / Storage Networking / Database / Security AI Services / Application Services / Big Data & Analytics Blockchain / Business Applications / Content Delivery Developer Tools / Gaming / Global Infrastructure Hybrid & Private ..

react의 생명주기란 component의 생성, 변경, 소멸 과정을 뜻한다. 생성 render(), constructor(), getDerivedStateFormProps(), componentDidMount() 변경 shouldComponentUpdate() import React,{Component} from "react"; class ComponentTest extends Component{ /* 1. 첫번째로 실행됨. 최초 1회. */ constructor(props){ super(props); this.state={}; console.log("1. constructor log"); } /* 2. 두번째로 실행 됨. */ static getDerivedStateFromProps(props,sta..

Download Git Client https://git-scm.com/downloads Git - Downloads Downloads macOS Windows Linux/Unix Older releases are available and the Git source repository is on GitHub. GUI Clients Git comes with built-in GUI tools (git-gui, gitk), but there are several third-party tools for users looking for a platform-specific exp git-scm.com GitHub 가입 https://github.com/ GitHub: Where the world builds so..

VSCode를 몇일 안써봤지만, 대단한 것 같다. 기대된다. 생산성을 엄청 향상 시키는 확장프로그램이 많아보인다. 책이나 블러그에 나오는 주요한 확장프로그램을 아래와 같이 설치해보았다. ( 화면단 공부 시작....) 아래는 프로그램과 제작자명이다. Auto Rename Tag / Jun Han Code Runner / Jun Han HTML CSS Support / ecmel HTML to CSS autocompletion / solnurkarim Live Server / Ritwick Dey 설치방법은 ctrl + shift + x 눌러서 확장프로그램 검색페이지로 들어가거나 사각형 4개짜리를 누르고 검색 후 설치만 하면 된다. 아주 간단하다. 2022.03.18 - [개발/툴] - [VSCode] 단축..