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
| BEGIN:VCALENDAR | |
| VERSION:2.0 | |
| PRODID:-//godislove.or.kr//연수 일정//KO | |
| CALSCALE:GREGORIAN | |
| METHOD:PUBLISH | |
| X-WR-CALNAME:하느님은 사랑이십니다 연수 일정 | |
| X-WR-TIMEZONE:Asia/Seoul | |
| BEGIN:VEVENT | |
| UID:711-yohan-20270114@godislove.or.kr |
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
| BEGIN:VCALENDAR | |
| VERSION:2.0 | |
| PRODID:-//Catholic Youth Bible//2026 Schedule//KO | |
| X-WR-CALNAME:청년성서2026 | |
| X-WR-TIMEZONE:Asia/Seoul | |
| BEGIN:VEVENT | |
| SUMMARY:695차 창세기 연수 | |
| DTSTART;VALUE=DATE:20260115 | |
| DTEND;VALUE=DATE:20260119 | |
| LOCATION:한마음청소년수련원 |
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
| BEGIN:VCALENDAR | |
| VERSION:2.0 | |
| PRODID:-//2026 Catholic Liturgical Calendar//ko// | |
| X-WR-CALNAME:2026 가톨릭 전례 및 주요 일정 | |
| X-WR-TIMEZONE:Asia/Seoul | |
| BEGIN:VEVENT | |
| SUMMARY:천주의 성모 마리아 대축일 (세계 평화의 날) | |
| DTSTART;VALUE=DATE:20260101 | |
| DTEND;VALUE=DATE:20260101 | |
| TRANSP:TRANSPARENT |
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 plistlib | |
| import argparse | |
| # 1. argparse로 파일 경로 인자 설정 | |
| parser = argparse.ArgumentParser() | |
| parser.add_argument("filename", help="수정할 plist 파일 경로") | |
| args = parser.parse_args() | |
| # 2. 입력받은 filename으로 파일 로드 | |
| hotkey_plist = plistlib.load(open(args.filename, 'rb')) |
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
| # python --version 명령 실행 | |
| $pythonVersionOutput = python --version | |
| # 버전 문자열에서 숫자 부분 추출 | |
| $pythonVersion = $pythonVersionOutput -replace 'Python ', '' | |
| # 첫 번째와 두 번째 숫자 추출 | |
| $majorMinorVersion = $pythonVersion -replace '^(\d+)\.(\d+).*', '$1$2' | |
| # 숫자로 변환 |
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
| pipenv install pyinstaller | |
| pipenv run pyinstaller --onfile --hidden-import win32timezone service.py |
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 argparse | |
| def main(): | |
| parser = argparse.ArgumentParser( | |
| prog=__file__, | |
| description='What the program does', | |
| epilog='Text at the bottom of help') | |
| parser.add_argument('filename', nargs='?', choices=['install', 'update', 'remove']) | |
| args = parser.parse_args() | |
| print(args) |
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 socket | |
| import win32serviceutil | |
| import servicemanager | |
| import win32event | |
| import win32service | |
| import sys | |
| import os |
NewerOlder