Spring XSS처리 방법 정리

맥 윈도우 한글 자소 분리

맥과 윈도우 사용시 한글 자소 분리 현상을 대처하기 위한 방법을 확인하고 적어봄
검색을 통해보면 이런 저런 내용이 있고 정리 함.

한줄로 말하면
맥에서 압축 시 WinArchiver를 써야 하고 윈도우에서 압축 해제 시 반디집을 쓰자

OSX는 NFD(정규화 방식 D)형식 사용
    정준 분해
윈도우는 NFC(정규화 방식 C)형식 사용
    정준 분해한 뒤에 다시 정준 결합

유니코드 정규화 wikipedia
유니코드를 이용한 한글 자모 분리와 결합 devpia

이미 깨져 있는 파일명을 수정할 때

윈도우
    HangulJasoFixer2
        https://namocom.tistory.com/630
        https://github.com/namhokim/HangulJasoFixer2
        .net freamwork 4.0 이후 버전이 설치 되어 있어야 함
        폴더를 선택해서 교정 가능
        HangulJasoFixer2.exe
    nfd2nfc
        https://cholchori.tistory.com/1563
        UI는 없고 간단하게! 실행하면 변환
    Mac to Win
        http://nicejinux.net/bbs/zboard.php?id=lecture&&no=129
        HangulJasoFixer분이 만드셨 던 라이브러리를 가지고 일부 수정
        베이스는 아미도 1.0? 인것 같음

윈도우 외
    convmv
    https://markboy95.blogspot.com/2012/03/nfc-nfd_21.html

OSX
    설치 brew install convmv
    NFC -> OSX(NFD)
        convmv -f utf-8 -t utf-8 --nfd --notest 파일
        convmv -f utf-8 -t utf-8 --nfd -r --notest 폴더
Linux
    Ubuntu
        설치 apt-get insall convmv
    CentOs
        설치 yum install convmv
    OSX(NFD) -> NFC
        convmv -f utf-8 -t utf-8 --nfc --notest 파일
        convmv -f utf-8 -t utf-8 --nfc -r --notest 폴더

압축 할 때  / 압축 풀때
https://groovechance.tistory.com/35
OSX
    WinArchiver Lite
    https://itunes.apple.com/kr/app/winarchiver-lite/id414855915?mt=12
    WinArchiver 실행 후
        Windows Language를 Korean Windows를 확인
            Korean Windows가 아니라면 Settings를 통해서 변경
        드래그 앤 드랍으로 파일을 옮긴 후 Create Zip file
윈도우
    반디집(BandiZip)
    https://kr.bandisoft.com/bandizip/
    압축 파일을 반디집으로 연 후 코드페이지에서 맥OS(UTF-8) 선택 후 압축 해제

SRT to WebVTT

https://atelier.u-sub.net/srt2vtt/

 

SubRip to WebVTT converter

 

atelier.u-sub.net

자막넷 자막 변환기

SRT SMI SUB ASS VTT TTML DFXP STL SBV XML(youtube) SUBTITLE

https://convert.jamack.net/ko/

 

자막변환기 SRT SMI SUB VTT STL SBV ASS | 자막 - 자막변환기 싱크

SRT SMI 변환, 자막, SRT자막, SMI자막, SUB자막, VTT자막, STL자막, SBV자막, ASS자막, XML자막 변환. 인코딩 포맷 유튜브 파일 형식 싱크 자막변환기 프로그램

convert.jamack.net

Subtitle Edit, Windows

https://github.com/SubtitleEdit/subtitleedit

https://github.com/SubtitleEdit/subtitleedit/releases

 

SubtitleEdit/subtitleedit

the subtitle editor :). Contribute to SubtitleEdit/subtitleedit development by creating an account on GitHub.

github.com

 

'IT' 카테고리의 다른 글

[XSS] Spring XSS 처리  (0) 2019.06.08
[Mac/Windows] 맥 윈도우 한글 자소 분리 현상  (2) 2019.05.06
[Bash] set -e, set -x  (0) 2019.04.13
[DOS] 도스 command 결과 클립보드로  (0) 2019.04.13
[vscode] visual studio code 한글  (0) 2019.04.01

shell관련 set -e, set -x

set -e : 구문 검사 후 실패할 경우 스크립트 종료

set -x : 모든 명령을 화면에 출력(Dos로 보면 @echo on)

 

http://julio.meroh.net/2010/01/set-e-and-set-x.html

 

set -e and set -x - Julio Merino

set -x: If you are writing simple scripts that are meant to, well, script the execution of a few tasks (as opposed of being full-flown programs written in shell), set this flag to trace the execution of all commands. This will make the interpreter print ea

julio.meroh.net

http://julio.meroh.net/2018/03/shell-readability-strict-mode.html

 

Shell readability: strict mode - Julio Merino

Use the Unofficial Bash Strict Mode (Unless You Looove Debugging): While writing this article, I came across this one. At first sight I thought: “hey, this covers exactly what I wanted to describe so no need for me to post!”. But I changed my mind. First,

julio.meroh.net

 

Dos에서 command로 나온 결과를 저장 하려면 명령어 쳐 놓고

편집 메뉴 열어서 복사 하는 경우가 많았는데, 혹시나 있을까 싶이서 찾아보니 있...다 ;;

 

https://www.labnol.org/software/copy-command-output-to-clipboard/2506/

 

How to Copy the Command Output to Windows Clipboard

Learn how to copy output from the command-line prompt directly to your Windows clipboard using the clip command.

www.labnol.org

그 명령어는  | clip !!!

 

예로 dir | clip, dir | clip 하면 잘 복사된다 :-)

 

+ Recent posts