목록전체 글 (234)
honey_pot
https://honeypot.tistory.com/270저번 게시글에서 한영키를 바꾼다 어쩐다 했는데 그게 문제가 아니었음코딩하는데 복붙 단축키가 안 먹음알고보니 win이랑 alt 키가 각각 option, command에 대응되어야 하는데 반대로 되어있음복붙이 생명이거늘 극대노 하고 카라비너 켜서 바꿔줌....
Hi8 장만하자마자 키매핑 바꿔주고 키캡도 바꿔놨는데 맥에서 문제 발생..python 코드 대충 짜서 키보드 자판 pressed key 확인해본 결과 기존 fn 자리(스페이스 오른쪽 키)가 mac에서는 아예 인식이 되지 않음윈도우에서는 키보드 매핑 프로그램인 leobog one 으로 변경하면 되지만 맥은 지원을 안 하는듯...블루투스 unit 2로 연결하고 fn+e로 맥 os로 자판 변경해서 수정하고 저장해도 안 됨 ㅠ leobog one은 그냥 윈도우 전용인가봄 처음에는 caps lock으로 한영 변환하고 산 적도 있어서 사실 딱히 불편하진 않은데 아무리 봐도 카라비너로 어떻게 비벼보면 될 것 같은거임하지만 기존 fn 자리 자체를 키보드 내부 시스템에서 맥os에서는 disabled 상태로 만드는 것 같..
document.getElementById('save-btn').addEventListener('click', () => { const dataURL = canvas.toDataURL('imgage/png'); const link = document.createElement('a'); link.download = 'clock.png'; link.href = dataURL; link.click(); });
helm https://helm.sh/docs/topics/version_skew/ Helm Version Support Policy Describes Helm's patch release policy as well as the maximum version skew supported between Helm and Kubernetes. helm.sh minikube start 로 설치된 kubernates가 1.21.2 버전이므로 3.9.x로 받음 kustomize 3.2.0
mlflow.exceptions.MlflowException: The configured tracking uri scheme: 'file' is invalid for use with the proxy mlflow-artifact scheme. The allowed tracking schemes are: {'http', 'https'} 해결방법 참고 https://github.com/mlflow/mlflow/issues/7819 [BUG] log_artifact fails when tracking uri scheme is 'file' · Issue #7819 · mlflow/mlflow Issues Policy acknowledgement I have read and agree to submit bug r..
$ sudo yum install python3.11 $ sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.11 2 anaconda $ vi ~/.bashrc export PATH="경로/anaconda3/bin:$PATH" $ source ~/.bashrc $ conda conda activate 안 될때 $ source /home/t/anaconda3/etc/profile.d/conda.sh
워닝 문구 : retracing 하면서 컴퓨팅 낭비중이니 tf.function을 사용해서 reduce_tracing True 옵션 줘라 WARNING:tensorflow:5 out of the last 5 calls to triggered tf.function retracing. Tracing is expensive and the excessive number of tracings is likely due to passing python objects instead of tensors. Also, tf.function has reduce_retracing=True option that relaxes argument shapes that can avoid unnecessary retracing. Pleas..
PEP 703 : Making the Global Interpreter Lock Optional in CPython "A fast, free threading Python" PEP 703이 억셉트 되면, Meta가 3년간 자신들의 CPython 내부 경험이 있는 엔지니어를 지원(PEP 703 억셉트부터 2025년 말까지의 기간) Python Multithreading without GIL https://docs.google.com/document/d/18CXhDb1ygxg-YXNBJNzfzZsDFosB5e6BfnXLlejd9l0/edit+ https://discuss.python.org/t/a-fast-free-threading-python/27903/99 해커 뉴스 반응 https://news.ycom..