Skip to content

Instantly share code, notes, and snippets.

View YieldNull's full-sized avatar
😃

YieldNull

😃
View GitHub Profile
@YieldNull
YieldNull / create.sh
Created February 25, 2016 12:10
Build A Website With Python-Flask and Nginx
#!/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"
@YieldNull
YieldNull / WHU.java
Last active April 14, 2017 07:14
登陆武汉大学教务系统
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;
@YieldNull
YieldNull / Sorting.py
Created September 5, 2016 11:44
Sorting algorithms
#!/usr/bin/env python3
"""
Sorting algorithms
Created By YieldNull at 4/14/16
"""
def insertion_sort(lst):
@YieldNull
YieldNull / multi_downloader.py
Created November 8, 2018 04:02
A Multithread Downloader
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)
@YieldNull
YieldNull / ScalaInMemoryCompiler.scala
Created December 31, 2018 05:52
Scala In Memory Compiler
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 {
@YieldNull
YieldNull / multithread_logging.py
Last active January 4, 2019 10:55
multithread_logging.py
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)
@YieldNull
YieldNull / sock_fork.py
Last active April 15, 2020 11:09
Fork processes to handle TCP requests.
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()