This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#EXTM3U name="四川电信IPTV" | |
#EXTINF:-1,CCTV-1高清 | |
rtp://@239.93.0.184:5140 | |
#EXTINF:-1,CCTV-2高清 | |
rtp://@239.93.1.23:6000 | |
#EXTINF:-1,CCTV-3高清 | |
rtp://@239.93.1.11:2223 | |
#EXTINF:-1,CCTV-5高清 | |
rtp://@239.93.1.12:2224 | |
#EXTINF:-1,CCTV-6高清 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Need to install googlevoice | |
# pip install googlevoice | |
from googlevoice import Voice | |
def run(): | |
username = "[email protected]" | |
pwd = "123456" | |
voice = Voice() | |
voice.login(email=username, passwd=pwd) | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
# -*- coding : utf-8 -*- | |
from bs4 import BeautifulSoup | |
import requests | |
username = '' # your v2ex username | |
password = '' # your v2ex password | |
login_url = 'https://v2ex.com/signin' | |
home_page = 'https://www.v2ex.com' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# nginx Startup script for the Nginx HTTP Server | |
# it is v.0.0.2 version. | |
# chkconfig: - 85 15 | |
# description: Nginx is a high-performance web and proxy server. | |
# It has a lot of features, but it's not for everyone. | |
# processname: nginx | |
# pidfile: /var/run/nginx.pid | |
# config: /usr/local/nginx/conf/nginx.conf | |
nginxd=/usr/local/nginx/sbin/nginx |
NewerOlder