Paprika doesn't have their API documented, so this is me reverse-engineering it from an Android device
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Description: >- | |
Scheduled Lambda function to delete Default VPC from all accounts in the organization. Deploys an IAM role via | |
CloudFormation stackset to the organization root and schedules a Lambda function to assume the IAM roles in each | |
account and attempt to delete the Default VPCs in every Region. If any operation fails, or if a Default VPC is not | |
empty, or if a Default VPC has a peering connection, the function invocation fails. | |
Parameters: | |
OrgRootId: | |
Type: String | |
AllowedPattern: '^r-[a-zA-Z0-9]+$' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
# | |
# Updated to use Python 3 by Malcolm Greaves. | |
# | |
# Python script to find the largest files in a git repository. | |
# The general method is based on the script in this blog post: | |
# http://stubbisms.wordpress.com/2009/07/10/git-script-to-show-largest-pack-objects-and-trim-your-waist-line/ | |
# | |
# The above script worked for me, but was very slow on my 11GB repository. This version has a bunch |