$ apt-get install vim
$ apt-get install ack-grep
$ git clone [email protected]:jeccb/Dotfiles.git
Follow the instructions in readme of Dotfiles repo.
#!/bin/sh -e | |
# | |
# NOTE: Since Docker 1.10 (February 4, 2016), it has been possible to configure the | |
# Docker daemon using a JSON config file. On Linux, this file is normally located at | |
# /etc/docker/daemon.json. You should use this JSON config method if you are running | |
# a version of Docker that is at least 1.10! | |
# Here is an example configuration that sets the docker0 bridge IP to 192.168.254.1/24: | |
# { | |
# "bip": "192.168.254.1/24" | |
# } |
$ apt-get install vim
$ apt-get install ack-grep
$ git clone [email protected]:jeccb/Dotfiles.git
Follow the instructions in readme of Dotfiles repo.
"""RDS-Unused AWS Lambda Function | |
It will go through the REGION's RDS instances and check on CloudWatch for the unused | |
instances and will stop them. | |
""" | |
import json | |
from datetime import datetime, timedelta | |
from multiprocessing import Process, Pipe | |
import boto3 |