Skip to content

Instantly share code, notes, and snippets.

@ezeeetm
ezeeetm / AWS Instance Scheduler
Created July 15, 2015 20:10
AWS Instance Scheduler
#########################################################################################################################
# Script name: instanceScheduler.ps1
# Version: v0.1
# Date: 08Nov2014
# Author: Eric Miller
# Purpose: start/stop ec2 instances on a schedule, with retries and SNS notifications on WARNING/FATAL events
# Usage: ./instanceScheduler.ps1
# Dependencies: aws.ps1, logging.ps1
# Notes:
# In order to give the retries sufficient time to process,
@ezeeetm
ezeeetm / backupToS3.ps1
Last active January 22, 2019 07:33
backupToS3.ps1
# config
clear
$accessKey = "your AK" # these keys are for an IAM user with read/write access only to the -dr S3 account
$secretKey = "your SK"
$bucketName = "your bucketname"
$dataVol = "D:" # omit \
$dataDirs = $null
function initializeAwsSession
@ezeeetm
ezeeetm / slackDailyDigest.ps1
Last active November 5, 2015 19:52
slackDailyDigest.ps1
<#
.SYNOPSIS
Dumps the last 24h of message history from all [NM]Slack channels
to [NM]Google Group in a daily digest email.
Run it nightly as a scheduled task.
.NOTES
AUTHOR: ezee
VERSION: 1.0.1
DATE: 19FEB2015
@ezeeetm
ezeeetm / fsGrowthMon.ps1
Last active August 29, 2015 14:13
fsGrowthMon.ps1: monitor filesystem growth at the subfolder level, and log to .csv
# IMPORTANT: start this script in a fresh session to prevent previous exceptions from carrying over in $Error
function folderClass
{
param
(
[Parameter(Mandatory=$true)]
[String]$path,
[Parameter(Mandatory=$true)]
[double]$origSize
// Gray text are just helpful comments, you don’t need to type them. :)
/******* -----=====!! EASY STUFF TO MESS WITH !!=====------ ******/
// What analog pin should we use to read the value from the potentiometer?
int analogPin = 2; // Yep, you heard right: The coolest of the Analog pins...
// What pin is the LED connected to?
int ledPin = 13; // Contains a built in resistor!
@ezeeetm
ezeeetm / aws.ps1
Created November 11, 2014 21:36
ec2 instance scheduler
# Initialize AWS session w/ specific IAM role for this script.
# Redact access/secret keys in commits, or do not include this file.
log INFO "initializing AWS session"
$accessKey = "AK for user with IAM role below"
$secretKey = "SK for user with IAM role below"
Initialize-AWSDefaults -AccessKey $accessKey -SecretKey $secretKey -Region us-east-1
log INFO "initializing AWS complete"
<#