Skip to content

Instantly share code, notes, and snippets.

@i12n
i12n / quickstart.sh
Last active May 19, 2019 20:48
A simple 'hello world' python application with uwsgi and nginx
# A simple 'hello world' application with python uwsgi and nginx
# Make directory and files
# The directory structure:
# ./
# |-- app/
# | |-- hello.py
# | |-- hello_nginx.conf
if [ -d app ]; then
rm -rf app
@i12n
i12n / dialog.html
Last active December 22, 2015 12:16
HTML5 dialog
<!DOCTYPE>
<html>
<head>
<style>
dialog::backdrop {
background:rgba(0,0,0,0.5);
}
</style>
</head>
<body>