william

Keep Calm and Markdown.

Installing ChatGPT Desktop on Mint 20 / Ubuntu 20.04 — when the blocker isn't glibc

OpenAI shipped an official ChatGPT Desktop for Linux in August 2026 (preview), supporting Ubuntu 24.04/26.04, Debian 13, Fedora 43/44 and Arch. Mint 20.3 (focal, glibc 2.31) is nowhere on that list, so I expected a rerun of the Claude Desktop surgery.

It wasn’t. The glibc floor was fine all along — the package is blocked by three library renames and one optional TPM module. The fix is smaller, and the audit is worth showing because the conclusion is the opposite of last time.

youtube dl viewer

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 # 遇到报错,需要登录 youtube 获取 cookies yt-dlp ERROR: [youtube] uqNEthI6Df8: Sign in to confirm you’re not a bot. Use --cookies-from-browser or --cookies for

neovim v0.12.5

git clone –depth 1 –branch stable https://github.com/neovim/neovim.git cd neovim make CMAKE_BUILD_TYPE=Release CMAKE_INSTALL_PREFIX="$HOME/.local" Then you preserved that installed binary and made it the default: mv ~/.local/bin/nvim ~/.local/bin/nvim.v0.12.5 ln -sfn ~/.local/bin/nvim.v0.12.5 ~/.local/bin/nvim export PATH="$HOME/.local/bin:$PATH" nvim –version Your historical install reported as v0.12.5.

openai 坎坷路

购买 just my socks5(tokyo100) 安装 xray + xrayA 1 2 3 4 sudo sh -c "$(proxychains4 wget -qO- https://github.com/v2rayA/v2rayA-installer/raw/main/installer.sh)" @ --with-xray sudo systemctl daemon-reload sudo systemctl restart v2raya ## web gui: http://127.0.0.1:2017 使用 Proxy Omega 区分不同的代理模式(openai需要全程走独立 ip) 使用代理打开 codex, 1

源代码安装 deepseek harness

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 #FIXME: 需要使用 node-24 # https://nodejs.org/en/download node --version v24.20.0 npm install -g pnpm git clone https://github.com/deepseek-ai/deepseek-harness.git cd deepseek-harness pnpm install pnpm run build # FIXME: 默认使用环境变量里的参数配置 export DEEPSEEK_API_KEY="" echo $DEEPSEEK_API_KEY pnpm
0%