Skip to content

Instantly share code, notes, and snippets.

View kepstein's full-sized avatar

Kevin Epstein kepstein

View GitHub Profile
@kepstein
kepstein / Curated AWS Training.md
Last active August 1, 2016 04:01 — 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.


Index:

@kepstein
kepstein / PowerShell Commands.ps1
Last active March 10, 2021 09:15
Sample Windows Packer
<#
NOTE: DO NOT RUN THIS SCRIPT
This is simply a record of commands
demonstrated in the AWS PowerShell Webinar
#>
#Credentials
Get-EC2Instance -AccessKey $AccessKey -SecretKey $SecretKey -Region us-west-1
@kepstein
kepstein / gist:c97b0a2a5255a7fe79d1
Created October 6, 2014 20:41
MySQL query database size
SELECT table_schema "Data Base Name",
sum( data_length + index_length ) / 1024 /
1024 "Data Base Size in MB",
sum( data_free )/ 1024 / 1024 "Free Space in MB"
FROM information_schema.TABLES
GROUP BY table_schema ;