- Windows 환경에서
- Visual Studio Code로
- 리눅스에 SSH 원격으로 접속하여 개발하다
- GPG 서명을 하고 싶지만
- 원격 머신에 개인키를 두고 싶진 않고
- 로컬에 보관중인 개인키로 서명하고 싶을 때
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import pymupdf | |
| import json | |
| import argparse | |
| def add_hidden_text_layer(ocr_json_path, pdf_input, pdf_output): | |
| # Load OCR JSON data | |
| with open(ocr_json_path, 'r', encoding='utf-8') as f: | |
| ocr_data = json.load(f) | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name 개표진행 대선 2017 | |
| // @namespace https://hided.net/ | |
| // @version 0.916 | |
| // @description 개표 진행 상황을 보여줍니다. (현재 개발중) | |
| // @author HideD | |
| // @require https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js | |
| // @match http://info.nec.go.kr/electioninfo/electionInfo_report.xhtml | |
| // @updateURL https://gist.github.com/hided62/b1c2b32670b228b041b9061e13c7d8c3/raw/election2017.user.js | |
| // @grant none |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name 개표진행 총선 2016 | |
| // @namespace https://hided.net/ | |
| // @version 0.90 | |
| // @description 개표 진행 상황을 보여줍니다. 각 투표구별 개별 개표율을 합산한 득표율을 보여줍니다. | |
| // @author HideD | |
| // @require https://ajax.googleapis.com/ajax/libs/jquery/2.2.2/jquery.min.js | |
| // @match http://info.nec.go.kr/electioninfo/electionInfo_report.xhtml | |
| // @updateURL https://hided.net/gs_script/election2016.user.js | |
| // @grant none |