Skip to content

Instantly share code, notes, and snippets.

View kririae's full-sized avatar
🐱
R&D

Zike Xu kririae

🐱
R&D
  • Shanghai, China
  • 16:11 (UTC +08:00)
View GitHub Profile
@zenofile
zenofile / build.sh
Last active March 13, 2024 07:30
Building a static tmux binary with musl
#!/usr/bin/env bash
# vi: set ft=sh ts=4 sw=0 sts=-1 sr noet nosi tw=0 fdm=manual:
set -o errexit
declare -A version
version[musl]=1.2.4
version[libevent]=2.1.12
version[ncurses]=6.4
@lilydjwg
lilydjwg / btrfs-autosnapshot
Last active May 19, 2024 04:07
btrfs-autosnapshot
#!/usr/bin/python3
import os
import datetime
import subprocess
import logging
import tempfile
import contextlib
from pathlib import Path