william

Keep Calm and Markdown.

Linux 时区、系统时间与 tmux 状态栏时间不一致的排查

我把 Linux 的时区设成 Asia/Tokyo,又手动设置了系统时间,但 tmux 右侧状态栏仍慢一个小时。例如,系统显示 14:37 JST,tmux 却显示 13:37 CST。问题不在 timedatectl set-time:一个早已启动的 tmux server 仍按旧时区格式化状态栏。

1
2
3
4
sudo timedatectl set-timezone Asia/Tokyo
sudo timedatectl set-ntp false
# aligned to real Asia/Shanghai time
timedatectl set-time "2026-09-26 15:33:00"

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
0%