2026-02-04
2026-02-03←前 次→2026-02-05
コネクションプーリング
コネクション・プーリングはどこにあるか
生成AIを使う
LM Studioの0.4.1に上げた
Changelog • LM Studio 0.4.1
ワード
GGUF
MLX
llama.cpp
gpt-oss
Tutorial: How to Fine-tune gpt-oss | Unsloth Documentation
Claude Codeベストプラクティスまとめ - Speaker Deck
メモ
https://x.com/voluntas/status/1997913492616294733?s=20
皆とにかく JetKVM 買った方がいい。tailscale + jetkvm は凄い。ちゃんと jetkvm 自身に ssh で入れるし、そこに tailscale をインストールできるので、マシン側に tailscale をインストールしなくていい ... 。
あらゆるPCをリモートコントロールできる次世代オープンソースKVM「JetKVM」 - GIGAZINE
KVMスイッチ
https://x.com/voluntas/status/2018701497232433435?s=20
Windows 端末動かすのに死ぬほど重宝してます。ちょっとだけ書き換えて H.265 化して使ってる。
甘利俊一「人工知能と数理脳科学」-2024年ノーベル物理学賞に関する特別講演 - YouTube
ディスクの容量計算
table:disk
総容量 (TotalSize) 1 TB (= 1024 GB)
使用中領域 (UsedSpace) 350 GB
pagefile.sys 8 GB
hiberfil.sys(ハイバネーション) 5 GB
System Volume Information(復元ポイント等) 20 GB
安全マージン (SafetyMargin) 総容量の 5 % → 約 51 GB
code:memo
SystemReserved = pagefile + hiberfil + restore = 8 + 5 + 20 = 33 GB
SafetyMargin = 1024 * 0.05 ≈ 51.2 GB ()
MaxShrink = TotalSize - (UsedSpace + SystemReserved) - SafetyMargin
= 1024 - (350 + 33) - 51
= 1024 - 434
= 590 GB
#日誌