動かざることバグの如し

近づきたいよ 君の理想に

2023-10-01から1ヶ月間の記事一覧

TSでCannot redeclare block-scoped variableエラー

環境 TypeScript 問題 TSで同一ディレクトリに同じ変数を宣言できない 例えば ├── hoge.ts ├── piyo.ts で両方で const hoge = 1; とすると Cannot redeclare block-scoped variable 'hoge'.ts(2451) 'hoge' was also declared here. const hoge: any[] とエ…

Github Actionsで容量不足問題

Github Actionsで容量不足問題 thr3a/faster-whisper-webuiでいつものように buildx failed with: ERROR: failed to solve: failed to create temp dir: mkdir /tmp/containerd-mount3151666229: no space left on device 原因 ディスク容量が足りない 解決…