jmeter

Record 목차 개념 개념 ### brew install jmeter open /usr/local/bin/jmeter

webpack 5 module federation

Record 목차 개념 개념 ### https://donggov.tistory.com/196 $ vue create app -- 메인 모듈 $ vue create menu -- 메뉴 모듈 $ vue create basket -- 장바구니 모듈 Module Federation 및 remote/host 설정 publicPath: "http://localhost:8000", chainWebpack: (config) => { config.optimization.delete("splitChunks"); config.plugin("module-federation-plugin").use(require("webpack").container.ModuleFederationPlugin,...

NODE GC option

Record 목차 개념 개념 node ls Node V8 GC-related options https://gist.github.com/listochkin/10973974#file-node-command-line-options-txt-L6 --log_gc (Log heap samples on garbage collection for the hp2ps tool.) type: bool default: false --expose_gc (expose gc extension) type: bool default: false --max_new_space_size (max size of the new...

SSL TLS

Record 목차 개념 개념 SSL 보안 소켓 계층(Secure Sockets Layer, SSL) 인증서는 종종 디지털 인증서로 불리며, 브라우저(사용자의 컴퓨터)와 서버(웹사이트) 사이의 암호화된 연결을 수립하는 데 사용됩니다. SSL: 보안 소켓 계층(SECURE SOCKETS LAYER) SSL은 웹사이트와 브라우저 사이(또는 두 서버 사이)에 전송되는 데이터를...

javascirpt function

Record 목차 개념 개념 function 키워드를 사용하지 말자 함수를 쓰고자 할때는 arraw함수 생성자함수로 쓰고자 할때는 Class 메소드로 쓰고자 할때 method 축약형 cost obj = { name:'name', methos() { console.log(this.name); } } generator 를 쓸 경우는 function* 제너레이터 함수는 사용자의 요구에...

vsc extensions

Record 목차 개념 확장프로그램 제거 방법 rm -fr ~/Library/Preferences/com.microsoft.VSCode.helper.plist rm -fr ~/Library/Preferences/com.microsoft.VSCode.plist rm -fr ~/Library/Caches/com.microsoft.VSCode rm -fr ~/Library/Caches/com.microsoft.VSCode.ShipIt/ rm -fr ~/Library/Application\ Support/Code/ rm -fr ~/Library/Saved\ Application\ State/com.microsoft.VSCode.savedState/ rm -fr ~/.vscode/ rm -fr ~/.vscode/extensions laravel vscode setting Introduction Community Material Theme...

vi vim

Record 목차 개념 insert mode 수정, 삭제 블록 개념 https://blockdmask.tistory.com/25 https://gmlwjd9405.github.io/2019/05/14/vim-shortkey.html https://coldmater.tistory.com/217 이동 h, j, k, l $, ^, 0 (라인번호 입력) + gg 라인 점프 shift + g, gg 문서 시작, 끝 이동 ( 이전 문장, ) 다음 문장...

lodash

Record 목차 개념 https://lodash.com/docs/4.17.15 https://www.measurethat.net/Benchmarks ### users.find(function (o) { return o.age < 40; }) <- _.find(users, function (o) { return o.age < 40; }) numbers.filter(num => num % 3 === 0) <- _.filter(numbers, num => num % 3 === 0)...

dockerhub

Record 목차 개념 https://hub.docker.com docker push 에러 (denied: requested access to the resource is denied) Docker Hub 로그인을 하지 않음 Docker Hub 아이디와 태그된 이미지의 이름이 일치하지 않음 Docker Tag 를 Docker Hub ID 와 동일하게 생성합니다. $ docker tag...

맥단축키

Record 목차 개념 https://support.apple.com/ko-kr/HT201236 같은 프로그램 화면 전환 단축키 정방향 : [Command + `] 역방향 : [Command + Shift + `]