Amazfit Bip Font Creator 5 - 실행 파일 생성
Amazfit Bip Font Creator 5 - 실행 파일 생성 실행 파일은 pyinstaller 로 생성합니다. 먼저 pyinstaller 를 설치합니다. 1pipinstallpyinstaller이후pyinstaller파일명을입력하여exe파일을생성할수있습니다.여기서몇가지옵션을사용합니다.1 pyinstaller
Amazfit Bip Font Creator 5 - 실행 파일 생성 실행 파일은 pyinstaller 로 생성합니다. 먼저 pyinstaller 를 설치합니다. 1pipinstallpyinstaller이후pyinstaller파일명을입력하여exe파일을생성할수있습니다.여기서몇가지옵션을사용합니다.1 pyinstaller
Amazfit Bip Font Creator 4 - 폰트 생성 쓰레드 초기화가 끝났으면, font_creator_thread.start()로 run을 실행합니다. 123456789101112class FontCreator(QThread): # 생략 def run(self): self.set_progress_text.emit(&qu
Amazfit Bip Font Creator 3 - 쓰레드 실행 쓰레드 생성 12345678910111213141516171819202122232425262728293031# bip_font_creator.pyimport osimport binasciiimport globimport shutilfrom PyQt5.QtCore import QThread
Amazfit Bip Font Creator 2 - 이벤트 구현 Select TTF file 버튼 이벤트 Font File Create 버튼 이벤트 Select TTF file 123456class AmazfitBipFontCreator(QMainWindow): # .. 생략 .. def get_create_box(self):
Amazfit Bip Font Creator 1 - UI 구성 Amazfit Bip 에서 사용할 폰트를 생성합니다. Qt5를 사용하여 UI를 생성합니다. Qt5 사용 QT에서 UI를 생성할 경우 QMainWindow를 사용시에는 Widget을 생성하고 setCentrlWidget을 호출해야 합니다. 123456class AmazfitBipFontCrea
다크 테마로 만들어본다. lib/style/dark-green.css 파일을 생성 12345678910111213141516171819202122@tailwind base;@tailwind components;@tailwind utilities;@layer base &
top 명령어로 CPU 사용률 확인하기 1top -bn1 | grep "Cpu(s)" | awk '{printf("CPU 사용률 : %.1f%%\n", 100 - $8)}' 실행 결과 CPU usa
lightsail 인스턴스 추가 https://lightsail.aws.amazon.com/ls/webapp/home/instances 에서 인스턴스 생성 버튼 누르기 Linux/Unix 에서 Ubuntu 선택 [[듀얼 스택]] 선택 ➡️ 월별 $12 선택 리소스 이름
https://level.goorm.io/exam/195696/작은-노드/quiz/1 예시 데이터 1234567n, m, k = 6, 6, 1nodes = [[1, 2], [1, 3], [2, 3], [3, 4], [3, 5], [4, 6]] 그래프 생성 12345gr
Solve Me First https://www.hackerrank.com/challenges/solve-me-first/problem 123(defn solveMeFirst [x y] (+ x y)) Simple Array Sum https://www.hackerra