Skip to content

Instantly share code, notes, and snippets.

View vimagick's full-sized avatar
🐰
🐰🐰🐰🐰🐰🐰🐰🐰🐰

K̶e̶v̶i̶n̶ vimagick

🐰
🐰🐰🐰🐰🐰🐰🐰🐰🐰
View GitHub Profile
文件名 下载链接 提取码
一凡评书《孙庞演义》MP3免费打包下载 123回全 https://pan.baidu.com/s/1TKRhydXv0QLRiRcHSpBfWg?pwd=2233 2233
一凡评书《辽西风雨路》MP3打包下载 220回全 https://pan.baidu.com/s/1gqssQppHCpjWjeK9iqC31g?pwd=5566 5566
于枢海评书《大刀王五》MP3免费打包下载 79回全集 https://pan.baidu.com/s/12fIxuA4oI_zTVndaFpxqbA xdqt
于海龙评书《张义传奇》MP3免费打包下载 14回 https://pan.baidu.com/s/1viC2m6xWt7kVuww0rMdQ5g?pwd=6677 6677
仲维维评书《一个女人的风景》MP3免费打包下载 7回全集 https://pan.baidu.com/s/1c227Iuc wpja
仲维维评书《一滴血》MP3免费打包下载 24回全集 https://pan.baidu.com/s/1miG45L2 xm2j
仲维维评书《七星龙王》MP3免费打包下载 30回全集 https://pan.baidu.com/s/1mhEmtmw a3wx
仲维维评书《三少爷的剑》MP3打包下载 ed2k://|file|%5B%E4%BB%B2%E7%BB%B4%E7%BB%B4%5D%E4%B8%89%E5%B0%91%E7%88%B7%E7%9A%84%E5%89%91.rar|265302041|c210a0ac46be8f474738351d8d586bc8|h=MDB2DETOEWWKIT3NKIXDCZYKYKF4DJOH|/
仲维维评书《中国瓷商》MP3打包下载 75回全集 https://pan.baidu.com/s/1wX_Hx303j5jVP9xVMS6h5Q abah
@vimagick
vimagick / README.md
Created July 21, 2026 03:39
Static build lame for mp3 encoding

Build on Raspberry Pi OS

# Download source code from https://lame.sourceforge.io/download.php
tar xzf lame-4.0.tar.gz && cd lame-4.0
./configure --prefix=/usr/local --enable-static --disable-shared --disable-decoder
make -j$(nproc)
ldd frontend/lame
@vimagick
vimagick / README.md
Last active July 18, 2026 23:38
Cleanup PuTTY Inactive Sessions
image
@vimagick
vimagick / README.md
Last active July 18, 2026 10:03
Install Shadowsocks on OpenWrt
@vimagick
vimagick / README.md
Created July 15, 2026 08:39
Make Raspberry Pi OS on macOS without Imager
$ diskutil list
/dev/disk2 (external, physical):
   #:                       TYPE NAME                    SIZE       IDENTIFIER
   0:     FDisk_partition_scheme                        *30.8 GB    disk2
   1:             Windows_FAT_32 bootfs                  536.9 MB   disk2s1
   2:                      Linux                         30.2 GB    disk2s2

$ diskutil umountDisk disk2
Unmount of all volumes on disk2 was successful
@vimagick
vimagick / README.md
Last active July 11, 2026 04:12
Run multiple sslocal http proxy instances on openwrt

Extract binary from ipk

URL=$(curl -s https://api.github.com/repos/Openwrt-Passwall/openwrt-passwall2/releases/latest | jq -r '.assets[]|select(.name=="passwall_packages_ipk_arm_cortex-a9_vfpv3-d16.zip").browser_download_url')
wget -O bundle.zip $URL
unzip -j bundle.zip '*-sslocal_*.ipk'
tar xzf *-sslocal_*.ipk ./data.tar.gz
tar xzf data.tar.gz ./usr/bin/sslocal --strip-components=3
@vimagick
vimagick / README.md
Last active June 22, 2026 23:28
Windows Daemon
$ cd "C:\Program Files\SnowLuma"

# method A
$ mklink /d current v1.10.2

# method B
$ powershell -c "New-Item -ItemType SymbolicLink -Path current -Target v1.10.2"

$ dir
@vimagick
vimagick / build.sh
Last active June 18, 2026 07:20
Build pre-configured ss-tunnel.pkg for macOS
#!/bin/bash
NAME=ss-tunnel
VERSION=1.24.0
PKG_ID=org.duckdns.easypi.$NAME
PKG_NAME=${NAME}_${VERSION}.pkg
DOWNLOAD_URL=https://github.com/shadowsocks/shadowsocks-rust/releases/download/v${VERSION}/shadowsocks-v${VERSION}.aarch64-apple-darwin.tar.xz
DOWNLOAD_DIR=./payload/usr/local/bin
mkdir -p $DOWNLOAD_DIR
@vimagick
vimagick / 00-custom
Created June 15, 2026 00:25
Openwrt Button Debounce
#!/bin/sh
#
# File: /etc/hotplug.d/button/00-custom
#
logger -t "Button-Event" "Button: $BUTTON | Action: $ACTION | Duration: $SEEN"
if [ "$BUTTON" = "BTN_0" ] && [ "$ACTION" = "released" ] && [ "$SEEN" -gt 1 ]; then
logger -t "Button-Debounce" "Valid button release processed."
fi