Skip to content

Instantly share code, notes, and snippets.

View aadps's full-sized avatar
🎯
Focusing

Xin Chen aadps

🎯
Focusing
  • AADPS
  • Beijing
View GitHub Profile
@sdhzdmzzl
sdhzdmzzl / bj-unicom-iptv.m3u
Last active January 25, 2026 05:05
北京联通iptv列表
#EXTINF:-1,北京卫视4K
rtp://239.3.1.22:8001
#EXTINF:-1,云南卫视
rtp://239.3.1.26:8108
#EXTINF:-1,四川卫视
rtp://239.3.1.29:8288
#EXTINF:-1,广西卫视
@florianbeer
florianbeer / set-tmux-title
Created April 21, 2015 10:47
Set tmux pane title to short hostname on ssh connections
ssh() {
if [ "$(ps -p $(ps -p $$ -o ppid=) -o comm=)" = "tmux" ]; then
tmux rename-window "$(echo $* | cut -d . -f 1)"
command ssh "$@"
tmux set-window-option automatic-rename "on" 1>/dev/null
else
command ssh "$@"
fi
}