일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- ssh
- Eclipse
- port
- netsh
- find
- IntelliJ
- 단축키
- grep
- maVen
- context
- tomcat
- import
- Quartz
- plugin
- GIT
- Source
- 줄바꿈 문자
- VirtualBox
- Windows 10
- profile
- lsof
- vscode
- 네트워크
- bash
- JavaScript
- Windows
- web.xml
- Mac
- resource
- xargs
- Today
- Total
목록분류 전체보기 (1779)
develog
일반 사용시 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) { ..