I hereby claim:
- I am renatolfc on github.
- I am renatoc (https://keybase.io/renatoc) on keybase.
- I have a public key whose fingerprint is DB2F B3B5 0463 7AEA 7103 CFBB 21B7 3512 82B0 614F
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| import matplotlib | |
| matplotlib.use('Agg') | |
| from matplotlib import pylab as plt | |
| import matplotlib.gridspec as gridspec | |
| import matplotlib.backends.backend_agg as agg | |
| from matplotlib.ticker import FuncFormatter, MaxNLocator | |
| # You need pygame and matplotlib: !pip install pygame matplotlib | |
| # You need to create a pygame screen as well | |
| # Something like this: |
| #!/usr/bin/env python | |
| # This assumes the ALE python libraries are in the path | |
| # and that the dataset is in the current working directory | |
| from __future__ import print_function | |
| import sys | |
| sys.path.insert(0, 'Arcade-Learning-Environment-0.5.0') | |
| import csv |
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| client | |
| dev tun | |
| remote example.com | |
| resolv-retry infinite | |
| nobind | |
| persist-key | |
| persist-tun | |
| ca [inline] | |
| cert [inline] | |
| key [inline] |
| #!/bin/sh | |
| ## | |
| ## Usage: ./ovpn-writer.sh SERVER CA_CERT CLIENT_CERT CLIENT_KEY SHARED_SECRET > client.ovpn | |
| ## | |
| server=${1?"The server address is required"} | |
| cacert=${2?"The path to the ca certificate file is required"} | |
| client_cert=${3?"The path to the client certificate file is required"} | |
| client_key=${4?"The path to the client private key file is required"} |