I hereby claim:
- I am ndom91 on github.
- I am ndom91 (https://keybase.io/ndom91) on keybase.
- I have a public key whose fingerprint is CDF7 5C5B 5D5C 91A7 D2D3 DA89 15A8 0237 4035 F7CF
To claim this, I am signing this object:
| #!/usr/bin/env python | |
| import requests | |
| import time | |
| import sys | |
| from datetime import datetime, timedelta | |
| from twilio.rest import Client | |
| # Idea and details located here. I just added SMS capability |
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| # vim: noai:et:tw=80:ts=4:ss=4:sts=4:sw=4:ft=python | |
| ''' | |
| Title: netbox_import.py | |
| Description: Insert records from devicetype-library into NetBox | |
| Author: Ricky Laney | |
| Version: 0.1.4 | |
| ============================================================================== |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| ########## | |
| # contents | |
| ########## | |
| # contents | |
| # notes | |
| # script setup | |
| # git config files |
I hereby claim:
To claim this, I am signing this object:
Once in a while, you may need to cleanup resources (containers, volumes, images, networks) ...
// see: https://github.com/chadoe/docker-cleanup-volumes
$ docker volume rm $(docker volume ls -qf dangling=true)
$ docker volume ls -qf dangling=true | xargs -r docker volume rm
| #!/bin/bash | |
| echo ".DS_Store" >> ~/.gitignore_global | |
| echo "._.DS_Store" >> ~/.gitignore_global | |
| echo "**/.DS_Store" >> ~/.gitignore_global | |
| echo "**/._.DS_Store" >> ~/.gitignore_global | |
| git config --global core.excludesfile ~/.gitignore_global |
$ uname -r