노션에서 무한로딩이 일어날때 1. 응용 프로그램 강제종료 왼쪽 상단에 애플 > 강제종료 > '응용 프로그램 강제 종료' 팝업에서 Notion 선택 후 '강제 종료' 선택 2. 설치 삭제도 해보았으나 해결되지 않았을 때 → 아래 그림과 같이 Notion을 선택한 후 '앱 초기화 및 로컬 데이터 삭제' 선택 → Notion 데스크탑 앱 재실행 후 로그인 (필자는 이 방법으로 해결함)
1. 아래 주소로 가서 Font를 설치합니다 https://github.com/powerline/fonts 리눅스 환경에서 설치방법 sudo apt-get install fonts-powerline 페도라 sudo dnf install powerline-fonts 기타 환경(Mac..) # clone git clone https://github.com/powerline/fonts.git --depth=1 # install cd fonts ./install.sh # clean-up a bit cd .. rm -rf fonts 2. 설치를 마치고, 설치한 폰트로 변경해줍니다. iTerm2 설정 > Profiles > Text Tab > Font에서 설치한 폰트로 변경해줍니다. 저는 Meslo LG L for..
airbnb 룰이 설치되지 않아서 따로 해줘야 함.. peerdeps 설치 npm install -g install-peerdeps airbnb 설치 install-peerdeps --dev eslint-config-airbnb react-app 도 없다그래서 설치 install-peerdeps --dev eslint-config-react-app 참고 https://velog.io/@lumpenop/error-ESLint-Failed-to-load-config-airbnb-to-extend-from
그동안은 그냥 당연하듯이 써왔던 부분인데도 기본적인 Rest api도 정확하게 대답하지 못한것에 대하여.. 부끄러운 마음으로 포스팅을 남겨봅니다. 여러 부분들을 참고하여 REST API를 정리해봅시다!! REST(REpresentational State Transfer) REST의 정의 "REpresentational State Transfer" 의 약자로, 자원을 이름(자원의 표현)으로 구분해 해당 자원의 상태(정보)를 주고 받는 모든 것을 의미합니다. 즉, 자원(resource)의 표현(representation)에 의한 상태 전달을 뜻합니다. 자원 : 해당 소프트웨어가 관리하는 모든 것 ( 문서, 그림, 데이터, 해당 소프트웨어 자체 등 ) - URL 표현 : 그 자원을 표현하기 위한 이름 ( DB..
React코드 주석 javascript와 동일하게 한 줄주석은 //로, 여러 줄은 /* */로 처리합니다. // singleline comments componentDidMount() { //console.log("test"); this._getProducts(); }; // multiline comments componentDidMount() { /*console.log("test"); this._getProducts();*/ }; React JSX코드 주석 javascript의 여러줄 주석을 {}로 감싸준 형태로 사용합니다. {/* 주석연습 */} 출처 : https://fe-flower.tistory.com/38