Skip to content

Instantly share code, notes, and snippets.

@ProteinPig
ProteinPig / docker-compose.yml
Last active October 10, 2022 10:50
基于Docker的家庭服务器
#Reference: https://www.smarthomebeginner.com/docker-home-media-server-2018-basic
#Requirement: Set environmental variables: USERDIR, PUID, PGID, MYSQL_ROOT_PASSWORD, and TZ as explained in the reference.
version: "2.4"
services:
######### FRONTENDS ##########
# Portainer - WebUI for Containers
portainer:
@zxp
zxp / SCITV_UDPXY.M3U
Last active May 6, 2024 07:21
[四川电信ITV 190个频道的组播表] 四川电信IPTV 190个频道的组播表,截取于2017年8月 #scitv #iptv #sichuan
#EXTM3U name="四川电信IPTV"
#EXTINF:-1,CCTV-1高清
http://192.168.2.2/rtp/239.93.0.184:5140
#EXTINF:-1,CCTV-2高清
http://192.168.2.2/rtp/239.93.1.23:6000
#EXTINF:-1,CCTV-3高清
http://192.168.2.2/rtp/239.93.1.11:2223
#EXTINF:-1,CCTV-5高清
http://192.168.2.2/rtp/239.93.1.12:2224
#EXTINF:-1,CCTV-6高清
@jannson
jannson / nvpproxy.go
Created June 9, 2016 01:55
proxy for open.v.p.n
package main
import (
"bufio"
"flag"
"io"
"log"
"net"
"net/http"
"os"
@ravageralpha
ravageralpha / fetchsub.sh
Created October 27, 2012 16:53
shell script get subtitle from shooter.cn
#!/bin/sh
# Author: RA <ravageralpha@gmail.com>
USAGE(){
echo "Usage:$(basename $0) [eng] files..."
}
[ $# -eq 0 ] && USAGE && exit 0
ERROR(){
@sorrycc
sorrycc / upload_directory_to_xunlei_lixian.sh
Created February 24, 2012 09:24
上传目录下的所有 torrent 文件到迅雷离线
#
# @fileoverview 上传目录下的所有 torrent 文件到迅雷离线.
# @author ChenCheng <sorrycc@gmail.com>
# @ref https://github.com/iambus/xunlei-lixian
#
tmpdir="path/to/tmp/directory";
script="path/to/xunlei-lixian/lixian_cli.py"
if [ ! -d "$tmpdir" ]; then