I hereby claim:
- I am pierreprinetti on github.
- I am pierreprinetti (https://keybase.io/pierreprinetti) on keybase.
- I have a public key ASB5vPIgfj591Egm480sYnMyvJwEbG3ruDUXb_eOfSemVAo
To claim this, I am signing this object:
package main | |
import ( | |
"fmt" | |
"os" | |
"github.com/gophercloud/gophercloud" | |
"github.com/gophercloud/gophercloud/openstack/compute/v2/servers" | |
"github.com/gophercloud/utils/openstack/clientconfig" | |
) |
.PHONY: help | |
help: ## Display this help screen | |
@grep -h -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-15s\033[0m %s\n", $$1, $$2}' |
I hereby claim:
To claim this, I am signing this object:
target=src | |
test: venv lint | |
venv/bin/python -m unittest | |
# http://blog.bottlepy.org/2012/07/16/virtualenv-and-makefiles.html | |
venv: venv/bin/activate | |
venv/bin/activate: requirements.txt | |
test -d venv || python3 -m venv venv |
docker commit $STOPPED_CONTAINER user/test_image | |
docker run -ti --entrypoint=sh user/test_image |
server { | |
listen 443; | |
listen [::]:443; | |
server_name example.com; | |
ssl on; | |
add_header Strict-Transport-Security "max-age=31536000" always; | |
ssl_certificate /etc/nginx/ssl/live/example.com/fullchain.pem; # <-- | |
ssl_certificate_key /etc/nginx/ssl/live/example.com/privkey.pem; # <-- |
Verifying that +pierreprinetti is my blockchain ID. https://onename.com/pierreprinetti |
package main | |
import ( | |
"database/sql" | |
"log" | |
_ "github.com/mattn/go-sqlite3" | |
"github.com/qrawl/gorp" | |
) |
open () { if [ -z "$1" ]; then P="."; else P="$1"; fi; P=`cygpath -aw "$P"`; explorer "$P"; } |