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
- CS231nAssignment1
- 선대
- 맥북원스토어
- RegionProposalNetworks
- pycharmerror
- 선형대수학
- Algorithm
- monoculardepthestimation
- CS231nSVM
- Gilbert Strang
- 백준알고리즘
- CS231ntwolayerneuralnet
- 맥실리콘
- arm칩에안드로이드
- CS231nAssignments
- ios원스토어
- CS231n
- ㅐㅕ세ㅕㅅ
- BOJ
- adversarialattackonmonoculardepthestimation
- MacOS
- 아이폰원스토어
- CNNarchitecture
- CNN구조정리
- professor strang
- MIT
- Linear algebra
- BAEKJOON
- gpumemory
- 백준
Archives
- Today
- Total
개발로 하는 개발
Xcode에서 깨지는 코드 UTF-8로 수정하기 - 터미널에서 강제 수정 본문
//터미널에서
brew install libiconv
after install,
iconv -f EUC-KR -t UTF-8 input.cpp > output.cpp
You cannot save if you copy & paste the modified code in output.cpp to input.cpp
-> best will be to just delete the input file and modify the filename of output.cpp
OR, BETTER, just write the comments in English...
if you wish to do the same to all the codes, you can do this
for file in *.cpp; do
iconv -f EUC-KR -t utf-8 "$file" > "converted_$file"
done
'Tips' 카테고리의 다른 글
Manually Installing OpenCV on venv (0) | 2024.01.08 |
---|---|
MAC OS X에서 OneDrive 데스크탑 앱 사용하기 (0) | 2023.12.30 |
OPEN GL 3.3 설치하고 cmake로 build하기 (0) | 2023.12.15 |
git, vim 사용 (0) | 2023.09.19 |
OpenCV 2.x Apple Silicon에 설치하기 (0) | 2023.08.02 |