- 开发 数据库Web管理系统
- 开发 移动端应用 通讯录
- 学习 Golang 语言
- 学习 Spring Boot / Spring Cloud / Netfilx 开发项目
- 学习 Spring 原理
- 学习 Gradle 配置
- 学习 ElasticSearch
- 学习 Lisp 语言
- 学习 Docker / Kubernetes
- 学习 Rust 语言
This file contains hidden or 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
import lombok.Data; | |
import org.springframework.data.annotation.CreatedBy; | |
import org.springframework.data.annotation.CreatedDate; | |
import org.springframework.data.annotation.LastModifiedBy; | |
import org.springframework.data.annotation.LastModifiedDate; | |
import javax.persistence.Column; | |
import javax.persistence.MappedSuperclass; | |
import javax.persistence.Version; | |
import java.time.LocalDateTime; |
This file contains hidden or 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
# encoding: utf-8 | |
""" | |
author: yangyi@youzan.com | |
time: 2018/3/9 下午8:35 | |
func: | |
""" | |
import redis | |
import random | |
import string | |
import time |
This file contains hidden or 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 | |
cd /opt | |
yum install -y gcc gcc-c++ | |
wget http://nginx.org/download/nginx-1.12.2.tar.gz | |
wget https://ftp.pcre.org/pub/pcre/pcre-8.41.tar.gz | |
wget http://zlib.net/zlib-1.2.11.tar.gz | |
wget https://www.openssl.org/source/openssl-1.0.2l.tar.gz |
This file contains hidden or 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/env python | |
"""Simple HTTP Server With Upload. | |
This module builds on BaseHTTPServer by implementing the standard GET | |
and HEAD requests in a fairly straightforward manner. | |
""" |