Skip to content

Instantly share code, notes, and snippets.

View lucker6666's full-sized avatar
🎯
Focusing

lucker6666

🎯
Focusing
View GitHub Profile
version: '2'
services:
nginx:
images: lucker/nginx:build_number
command: nginx -g "daemon off;"
links:
- tomcat
container_name: app_nginx
ports:
- "80:80"
description "Tomcat Server"
start on runlevel [2345]
stop on runlevel [!2345]
respawn
respawn limit 10 5
env JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64/jre
env CATALINA_HOME=/opt/tomcat
@lucker6666
lucker6666 / README.md
Last active July 30, 2018 02:47 — forked from leonardofed/README.md
A curated list of AWS resources to prepare for the AWS Certifications


A curated list of AWS resources to prepare for the AWS Certifications

A curated list of awesome AWS resources you need to prepare for the all 5 AWS Certifications. This gist will include: open source repos, blogs & blogposts, ebooks, PDF, whitepapers, video courses, free lecture, slides, sample test and many other resources.

OP: @leonardofed founder @ plainflow.


# -*- coding: cp936 -*-
import hashlib
import os
import shutil
from time import clock as now
def getmd5(filename):
n = hashlib.sha1()
m = open(filename,'rb').read()
n.update(m)
return n.hexdigest()
#!/bin/bash
hardseed --proxy '' --topics-range 100 --like 中文 > 1.txt &