I hereby claim:
- I am ngoue on github.
- I am mcjoejoe (https://keybase.io/mcjoejoe) on keybase.
- I have a public key whose fingerprint is 1B23 2632 5812 8926 63C9 57BF B56A 9742 3E74 821C
To claim this, I am signing this object:
| #! /usr/bin/env python3 | |
| """ | |
| Dynamic DNS - Route53 | |
| Check the current IP address for this device and compare it with the DNS record | |
| in Route53. If it's different, update the DNS record! | |
| """ | |
| import logging |
| from time import sleep | |
| import psycopg2 | |
| CONN_INFO = { | |
| 'host': '', | |
| 'port': 5432, | |
| 'dbname': '', | |
| 'user': '', | |
| 'password': '', |
I hereby claim:
To claim this, I am signing this object:
| #! /usr/bin/env python3 | |
| __doc__ = ''' | |
| Update all local repositories with new urls after | |
| changing your GitHub username. | |
| ''' | |
| import os, sys, subprocess, re | |
| SEARCH_PATH = "/path/to/search" |
| #! /bin/bash | |
| ## | |
| # Log rotation script | |
| # | |
| # Author: Jordan Gardner ([email protected]) | |
| # Version: 1.0 | |
| # Last Revision: 12/11/2015 | |
| # | |
| # Copyright (c) 2015 Jordan Gardner |