Skip to content

Instantly share code, notes, and snippets.

View lemon-mint's full-sized avatar
🎯
Focusing

lemon-mint

🎯
Focusing
View GitHub Profile
@lemon-mint
lemon-mint / keybase.md
Created August 9, 2021 04:51
keybase.md

Keybase proof

I hereby claim:

  • I am lemon-mint on github.
  • I am lemonmint (https://keybase.io/lemonmint) on keybase.
  • I have a public key whose fingerprint is 8441 7A53 D94F 6654 4280 77D4 39A0 CD2E 8DA7 3896

To claim this, I am signing this object:

@lemon-mint
lemon-mint / redirect.html
Created January 18, 2021 06:20
redirect Page
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<script src="https://cdn.jsdelivr.net/npm/vue@3.0.5/dist/vue.global.prod.js"></script>
<title>Redirect</title>
</head>
@lemon-mint
lemon-mint / Dockerfile
Created June 28, 2020 06:49
nginx build test with docker
FROM ubuntu:20.04
RUN apt-get update && apt-get upgrade -y && apt-get install apt-utils -y && apt-get install curl wget -y
RUN wget https://ftp.pcre.org/pub/pcre/pcre-8.44.tar.gz && tar -xvf pcre-8.44.tar.gz
RUN wget https://nginx.org/download/nginx-1.19.0.tar.gz && tar -xvf nginx-1.19.0.tar.gz
RUN wget https://www.openssl.org/source/openssl-1.1.1g.tar.gz && tar -xvf openssl-1.1.1g.tar.gz
RUN wget https://zlib.net/zlib-1.2.11.tar.gz && tar -xvf zlib-1.2.11.tar.gz
RUN useradd --shell /usr/sbin/nologin www-data2
RUN apt-get install gcc g++ -y