らんだむな記憶

blogというものを体験してみようか!的なー

2021-04-13から1日間の記事一覧

源ノ角ゴシック VF

source-han-sans/Variable at release · adobe-fonts/source-han-sans · GitHub 遂に来たか!DTL OTMaster で昔は配布されていた「OTM_Light 3.7.0」で開くと CFF2 テーブルが見える。ただ、それ以上がさっぱり解析できないので、細かいところは fontTools …

Visual Studio Code で Python インタープリタ指定

たまにうまくいかない気がするけど workspace.code-workspace と同じディレクトリに .vscode/settings.json を作って、 { "python.pythonPath": ".../bin/python" } で適当に Python インタープリタのパスを記載しておけば良さそう。python -m venv で作った…

Python の前方参照

PEP 484 -- Type Hints | Python.org class Tree: def __init__(self, left: 'Tree', right: 'Tree'): self.left = left self.right = right うーん・・・。PEP 563 -- Postponed Evaluation of Annotations | Python.org from __future__ import annotations…