Skip to content

Instantly share code, notes, and snippets.

View jessemillman's full-sized avatar

Jesse Millman jessemillman

View GitHub Profile

Keybase proof

I hereby claim:

  • I am jessemillman on github.
  • I am jessemillman (https://keybase.io/jessemillman) on keybase.
  • I have a public key whose fingerprint is CFAE 8197 CF82 9320 0005 C487 EA10 ECB0 15BA FB63

To claim this, I am signing this object:

Role Name Code
Active Directory Certificate Services AD-Certificate CER
Active Directory Domain Services AD-Domain-Services DC
Active Directory Federation Services ADFS-Federation ADFS
Active Directory Lightweight Directory Services ADLDS ADLDS
Active Directory Rights Management Services ADRMS RMS
Device Health Attestation DeviceHealthAttestationService
DHCP Server DHCP DHCP
DNS Server DNS DNS

Delete the last commit

If you ever stuff up master again, here's how to revert ;)

```
git reset HEAD^ --hard

git push origin -f
```

@jessemillman
jessemillman / boxstarter.ps1
Last active August 7, 2018 03:18 — forked from jessfraz/boxstarter.ps1
Boxstarter Commands for a new Windows box.
# Description: Boxstarter Script
# Author: Jesse Millman <jesse.millman@pointsbet.com> via https://gist.github.com/jessemillman/6c9b4a3eb2764c4d3aea45429801d7ea
# Last Updated: 2018-08-7
#
# Install boxstarter:
# . { iwr -useb http://boxstarter.org/bootstrapper.ps1 } | iex; get-boxstarter -Force
#
# You might need to set: Set-ExecutionPolicy RemoteSigned
#
# Run this boxstarter by calling the following from an **elevated** command-prompt:
# Description: Boxstarter Script - non development machine
# Last Updated: 2018-09-10
#
# Install boxstarter:
# . { iwr -useb http://boxstarter.org/bootstrapper.ps1 } | iex; get-boxstarter -Force
#
# You might need to set: Set-ExecutionPolicy RemoteSigned
#
# Run this boxstarter by calling the following from an **elevated** command-prompt:
# start http://boxstarter.org/package/nr/url?<URL-TO-RAW-GIST>
# Description: Boxstarter Script - USA team
# Author: Jesse Millman <jesse.millman@pointsbet.com>
# Last Updated: 2018-10-19
#
# step 1 - Install boxstarter via **elevated** powershell:
# . { iwr -useb http://boxstarter.org/bootstrapper.ps1 } | iex; get-boxstarter -Force
#
# You might need to set: Set-ExecutionPolicy RemoteSigned
#
# Run this boxstarter by calling the following from an **elevated** powershell:
# Description: Boxstarter Script
# Author: Jesse Millman <jesse.millman@pointsbet.com> via https://gist.github.com/jessemillman/6c9b4a3eb2764c4d3aea45429801d7ea
# Last Updated: 2018-08-13
#
# Install boxstarter:
# . { iwr -useb http://boxstarter.org/bootstrapper.ps1 } | iex; get-boxstarter -Force
#
# You might need to set: Set-ExecutionPolicy RemoteSigned
#
# Run this boxstarter by calling the following from an **elevated** command-prompt:
body { background: #222; color: #e6e6e6; }
a { color: #949494; }
a:link, a:visited { color: #949494; }
a:hover, a:active, a:focus { color: #c7c7c7; }
hr { border-bottom: 1px solid #424242; border-top: 1px solid #222; }
title date chapter pre weight
Configure Cost and Usage reports
2020-10-26 11:16:09 -0400
false
<b>3. </b>
3

Cost and Usage Reports provide the most detailed information on your usage and bills. They can be configured to deliver 1 line per resource, for every hour of the day. They must be configured to enable you to access and analyze your usage and billing information.

@jessemillman
jessemillman / delete-default-vpc.sh
Last active July 20, 2021 05:09
Deletes default VPC's in all accounts (provided right context, will need tailoring otherwise)
#
# aws-cli-multi-account-sessions/functions.sh
#
# bash functions to help run aws-cli commands across roles in multiple
# accounts with MFA
#
# See also: https://github.com/alestic/aws-cli-multi-account-sessions
# See also: https://alestic.com/2019/12/aws-cli-across-organization-accounts/
#