20240809
from 2024年の日記
20240809
20240808
20240810
OCIでブロックボリューム代がまたかかってた!
20240807にブロックボリュームを50GB→200GBに拡張した
Your account comes with 200 GB of Always Free block volume storage which you use to create the boot volumes for your compute instances.
https://docs.oracle.com/en-us/iaas/Content/FreeTier/freetier_topic-Always_Free_Resources.htm
現在作成しているブートボリュームは無料で使えるブロックボリュームのうちの48GBなので約50GB分大きくしすぎた&その際の設定で、Block Volume Performance Unitsが10VPUに増加しているのに気づかなかった
https://www.oracle.com/cloud/storage/pricing/
sanctunes.comをsanctunes.yokkin.comあたりに移行しようと考える
abc
Abstruct Base Class
https://docs.python.org/3/glossary.html#term-abstract-base-class
Pythonのダックタイピングでこういうイディオムがあるのを知った
code:py
try:
foo.do_something()
except AttributeError:
logging.exception("なんかモジュールの互換性がないみたいっすよご主人")
sys.exit(1)
hasattr()やisinstance()で石橋を叩いて渡るよりEasier to Ask for Forgiveness than Permissionの精神
VSCodeのPylanceが無限に苦情を言うので、長期的に使うプログラムでは正直こういう書き方はしたくないなあ
Pythonで抽象基底クラスを使う
Mix-In