Skip to content

Instantly share code, notes, and snippets.

View AnshulKathet's full-sized avatar
🏠
Working from home

Anshul Kathet AnshulKathet

🏠
Working from home
View GitHub Profile
@AnshulKathet
AnshulKathet / README.md
Created May 25, 2020 13:14 — forked from leonardofed/README.md
A curated list of AWS resources to prepare for the AWS Certifications


A curated list of AWS resources to prepare for the AWS Certifications

A curated list of awesome AWS resources you need to prepare for the all 5 AWS Certifications. This gist will include: open source repos, blogs & blogposts, ebooks, PDF, whitepapers, video courses, free lecture, slides, sample test and many other resources.


@AnshulKathet
AnshulKathet / delete_snapshots.py
Created April 8, 2020 20:02 — forked from kjoconnor/delete_snapshots.py
boto script to delete snapshots matching a filter and older than X days
import sys
from boto.ec2 import connect_to_region
from datetime import datetime, timedelta
try:
days = int(sys.argv[1])
except IndexError:
days = 7