#功能 备份QQ空间说说(先用浏览器登陆获取Cookie)
#用法
先将Cookie及用户写入config.json
中,格式如下
{
"shuoshuo":"<shuoshuo_cookie>",
"friends":"<friends_cookie>",
import os | |
import socket | |
def main(): | |
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) | |
sock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1) | |
sock.bind(('127.0.0.1', 9999)) | |
sock.listen() |
import sys | |
import logging | |
from multiprocessing.pool import Pool | |
logging.basicConfig(stream=sys.stdout, level=logging.INFO, | |
format='%(asctime)s - %(processName)s %(threadName)s - %(name)s - %(levelname)s - %(message)s') | |
if __name__ == "__main__": | |
def job(name): | |
logger = logging.getLogger(name) |
import scala.tools.nsc.{Global, Settings} | |
import scala.reflect.internal.util.BatchSourceFile | |
import tools.nsc.io.{VirtualDirectory, AbstractFile} | |
import scala.reflect.internal.util.AbstractFileClassLoader | |
import java.security.MessageDigest | |
import java.math.BigInteger | |
import collection.mutable | |
import java.io.File | |
object CompileTest { |
import os | |
import logging | |
import requests | |
from multiprocessing.pool import ThreadPool | |
from multiprocessing import Queue | |
def download(task_file, repository, pool_size=8): | |
logger = logging.getLogger('downloader') | |
logging.basicConfig(stream=sys.stdout, level=logging.INFO) |
#!/usr/bin/env python3 | |
""" | |
Sorting algorithms | |
Created By YieldNull at 4/14/16 | |
""" | |
def insertion_sort(lst): |
package whu; | |
import java.awt.*; | |
import java.io.*; | |
import java.net.HttpURLConnection; | |
import java.net.URL; | |
import java.net.URLConnection; | |
import java.nio.file.Files; | |
import java.nio.file.StandardCopyOption; | |
import java.util.HashMap; |
#!/bin/bash | |
# Build A Website With Python-Flask and Nginx | |
# Doc: http://yieldnull.com/blog/0b2e0169df807bec78b3ad3eea87105a2e5299c6/ | |
# http://yieldnull.com/blog/cd7be487eb5148eb4aa905543c1fd1396b618a6b/ | |
# Author: YieldNull | |
# Updated On: 2016/02/25 | |
if [ ! $# = 3 ] ; then | |
echo "Args: project_name port domain_name" |
#include <stdio.h> | |
/** | |
* Display memory block via Hexadecimal. | |
* From lower to higher address. | |
**/ | |
void hexOut(unsigned char c) { | |
printf("%x", c & 0xF); | |
printf("%x", (c >> 4) & 0xF); |
#功能 备份QQ空间说说(先用浏览器登陆获取Cookie)
#用法
先将Cookie及用户写入config.json
中,格式如下
{
"shuoshuo":"<shuoshuo_cookie>",
"friends":"<friends_cookie>",
#!/usr/bin/env python | |
#coding:utf-8 | |
""" | |
download files from pan.baidu.com using https://github.com/PeterDing/iScript/blob/master/pan.baidu.com.py#pan.baidu.com.py | |
use crontab to run it in a specific time interval to check if it has failed | |
if failed, restart it | |
Created on 2015.10.31 | |
""" |