분류 전체보기 58

[React][Api] createStore 번역

redux.js.org/api/createstore createStore | Redux createStore(reducer, [preloadedState], [enhancer]) redux.js.org Creates a Redux store that holds the complete state tree of your app. There should only be a single store in your app. 앱의 전체 state tree를 보유하는 Redux store를 만듭니다. 앱에서는 하나의 store만 있어야 합니다. Arguments# reducer (Function): A reducing function that returns the next state tree, given the curr..

Web/api 번역 2020.10.22

[React][Api] Provider 번역

react-redux.js.org/api/provider Provider | React Redux Provider react-redux.js.org version: 7.2 Provider The makes the Redux store available to any nested components that have been wrapped in the connect() function. 는 connect() 함수 안의 감싸진 모든 중첩된 컴포넌트의 Redux store를 사용할 수 있도록 합니다. Since any React component in a React Redux app can be connected, most applications will render a at the top level, with..

Web/api 번역 2020.10.21

[블록체인][DID] 클레임, 크리덴셜 ,VC ,VP

VC 표준의 각 용어에 대한 설명은 W3C 번역 링크를 참고하시기 바랍니다. https://ssimeetupkorea.github.io/vc-data-model/#generatedID-0 3. 핵심 데이터 모델 앞으로 설명할 DID 체계를 이해하기 위해서는 아래의 주요 개념들을 이해해야 한다. 3.1. 클레임 (Claim) 디지털 환경에서 신원정보는 모두 데이터로 표현할 수 있다. 이러한 각 단위 데이터를 클레임(Claim)이라고 하는데 아래 그림과 같이 주체-속성-값의 구조를 가진다. 클레임의 기본 구조 예를 들어, ‘A라는 주체(subject)의 이름라는 속성(property)은 홍길동이라는 값(value)를 가진다.’라는 문장이 하나의 클레임이 되는 것이다. 하지만 매 순간 구조적으로 이해하려면 헷..

용어 2020.10.21

[Linux][터미널] 파일 ,디렉토리 권한 설정.

파일, 디렉토리 권한 설정. 하위 모든 파일 권한 설정. find /path/to/location -type f -print0|xargs -0 chmod 644 하위 모든 디렉토리 권한 설정. find /path/to/location -type d -print0 |xargs -0 chmod 755 하위 모든 파일&디렉토리 권한설정. chmod -R 644 /path/to/location winaero.com/run-chmod-separately-for-files-and-directories/ Run Chmod separately for files and directories If you are a Linux user, you have probably heard about the console app ch..

Linux 2020.10.05

[macOS][터미널] iterm2 + zsh + vim 설정하여 터미널을 강력하게

아래 과정을 다 진행하면 아래와 같은 터미널 설정이 가능 합니다. git a 만 입력하고 tab할 경우 a로 시작하는 연관된 명령어 나열되며 선택 가능 합니다. 이전의 입력한 명령어가 기억되어 그림자로 표시됩니다. 존재하는 명령어의 경우 초록색으로 하이라이트 됩니다. item2 설치 www.iterm2.com/ iterm2 theme 설치 iTerm2-Color-Schma git clone https://github.com/mbadolato/iTerm2-Color-Schemes.git iterm2 > preferences > Profile > Color > Color Presets... > import... 다운로드 받은 iTerm2-Color-Schemes/schemes 폴더에서 원하는 테마를 impo..

개발환경 2020.09.20