OpenXR 정리 이전에 설명했듯이, OpenXR은 API Spec이다. 그래서 실제 구현체는 각 벤더들이 해야 한다. 그래서 실제로 어떻게 구현 되어 있는지 알 수 있는 방법은 없다. 벤더들이 자신들이 구현한 Runtime은 소스 공개를 안하니까. 그런데 OpenXR Spec을 정의 하면서 Khronos와 collabora는 같이 Runti... Read more 20 Dec 2021 - 1 minute read
python으로 email 보내기 via gmail
여기에 아주 잘 정리 되어 있다. 굳이 또 정리할 필요가 없지만, 그래도 짧게 코드 정리 해 본다.
link : https://s-engineer.tistory.com/234
python tutorial link : https://docs.python... Read more
19 Dec 2021 -
1 minute read
python profiler
python profiler : https://docs.python.org/ko/3/library/profile.html
profiling code
import cProfile, pstats, io
from pstats import SortKey
pr = cProfile.Profile()
pr.... Read more
19 Dec 2021 -
3 minute read
아웃룩 eml 백업
어쩌다가 옛날 이메일을 다 eml 파일로 백업을 해 놓았는데, 이걸 다시
아웃룩으로 복구할 방법을 찾다가, 아래 링크의 사이트를 발견하게 되었다.
https://www.howto-outlook.com/howto/import-eml-files.htm?utm_source=pocket_mylist... Read more
18 Dec 2021 -
1 minute read
flask toy project를 시작하는데 처음에는 django로 개발하려고 했는데, 생각보다 배워야 할게 많아서 flask로 개발하게 되었습니다. 그래서 flask로 개발하면서 중간 중간 기록을 남기려고 합니다. flask 시작하기 flask link https://flask.palletsprojects.com/e... Read more 28 Nov 2021 - less than 1 minute read