일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- Eclipse
- VirtualBox
- xargs
- Mac
- grep
- import
- vscode
- web.xml
- maVen
- context
- Quartz
- 줄바꿈 문자
- Windows
- bash
- port
- 네트워크
- JavaScript
- resource
- Source
- 단축키
- IntelliJ
- tomcat
- plugin
- lsof
- find
- ssh
- GIT
- profile
- netsh
- Windows 10
- Today
- Total
목록전체 글 (1786)
develog
맥에서 tar 압축하고 Ubuntu 에서 압축해제시에 오류가 발생tar: Ignoring unknown extended header keyword 'LIBARCHIVE.xattr.com.apple.provenance' 맥에서 tar 압축시 --no-xattrs 옵션을 사용한다tar cvfz my-proj.tar.gz \ --no-xattrs \ my-proj
일반 사용시 ssl 인증서를 확인한다$ curl https://www.mysite.com/curl: (60) SSL certificate problem: unable to get local issuer certificateMore details here: https://curl.haxx.se/docs/sslcerts.htmlcurl failed to verify the legitimacy of the server and therefore could notestablish a secure connection to it. To learn more about this situation andhow to fix it, please visit the web page mentioned above. -k 옵션은 ss..
# next 앱 실행yarn dev# pm2 로 next 앱 실행pm2 start yarn --name 'myapp' -- devpm2 start yarn --name "myapp" -- dev -- --port 4000# 다른 방법pm2 start "yarn dev" --name "myapp"
# libreoffice 설치brew install libreoffice# libreoffice 버전 확인soffice --version# imagemagick 설치brew install imagemagick# imagemagick 버전 확인convert --version

Request > Script > Pre-request 에 함수를 등록하고 사용하기 const btoa = require('btoa');// query stringfunction query_string_base64 (paramName) { let oldValue = pm.request.url.query.get(paramName); let newValue = btoa(oldValue); pm.request.url.query.remove(paramName); pm.request.url.query.add({key: paramName, value: newValue});};// path variablefunction path_variable_base64 (...paramNames) { ..