Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- JavaScript
- netsh
- tomcat
- VirtualBox
- Eclipse
- 단축키
- xargs
- find
- web.xml
- Source
- 줄바꿈 문자
- resource
- Quartz
- maVen
- 네트워크
- Windows 10
- Mac
- bash
- import
- context
- profile
- GIT
- lsof
- grep
- ssh
- plugin
- Windows
- IntelliJ
- vscode
- port
Archives
- Today
- Total
목록2025/01 (2)
develog
[mac] brew 로 libreoffice, imagemagick 설치하기
# libreoffice 설치brew install libreoffice# libreoffice 버전 확인soffice --version# imagemagick 설치brew install imagemagick# imagemagick 버전 확인convert --version
카테고리 없음
2025. 1. 21. 15:10
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/cfqgz1/btsLKauNkR9/wqjkVbvc5KD2nKkfD3KGoK/img.png)
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) { ..
카테고리 없음
2025. 1. 10. 10:20