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
[ | |
"Zeus", | |
"Hera", | |
"Poseidon", | |
"Demeter", | |
"Ares", | |
"Athena", | |
"Apollo", | |
"Artemis", | |
"Hephaestus", |
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
# Last updated Mar 3, 2020 | |
* Update to latest Chef versions | |
* Redesign to look similar to New EC2 Experience | |
* Layer support for both ALB and NLB | |
* Toggle default InstallUpdatesOnBoot setting at layer-level | |
* Layer-based subnet group to limit which subnets an instance can be assigned to | |
* Layer-based machine image setting | |
* Layer-based instance type setting | |
* Layer-based EBS volume type/size setting |
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
<?php | |
/* | |
This script will take into account your current positions and calculate your dividend reinvestment over time. | |
@todo Pull positions from somewhere, a local json file maybe? | |
@todo Pull live-ish position data so stockPrice isn't stale. | |
@todo Use of CLI arguments | |
@todo There is a bug with addMonthly that really inflates the number of shares | |
@todo Fractional shares on addMonthly? |
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
import boto3 | |
client = boto3.client('logs') | |
logGroupPrefix = '/aws/lambda' | |
response = client.describe_log_groups( | |
logGroupNamePrefix=logGroupPrefix, | |
limit=50 | |
) |
OlderNewer