After scraping the 2016/2017 recreation guides for all availablesession codes, the following assumptions were made;
- sessions average 10 spaces
- 35% of all sessions are booked in the initial rush period on registration nights (4x per year)
- 3 spaces are taken for each person waiting to register
- average wait time is 35 minutes
- average hourly wage is $26.57 (based on median household income of $102,020 and 2 wage earners in the household)
Therefore we get...
Here is a list of the top links to AWS re:Invent 2017 material. This list is by no means comprehensive, there was just too much announced around the event to cover it all!
The links below roughly line up with the order of the "AWS re:Invent re:View webinar" I gave for Trend Micro on 7-Dec-2017.
Those slides are also available on SlideShare.
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 deepsecurity # from https://github.com/deep-security/deep-security-py | |
| import logging | |
| # if testing a tenant login | |
| mgr = deepsecurity.dsm.Manager(username=YOUR_USERNAME, password=YOUR_PASSWORD, tenant=YOUR_TENANT_NAME) # will call the API authenticateTenant | |
| # or | |
| # if testing the primary tenant | |
| mgr = deepsecurity.dsm.Manager(username=YOUR_USERNAME, password=YOUR_PASSWORD) # if "tenant" argument ISN'T sent, it calls a different API call "authenticate" | |
| mgr.log_at_level = logging.DEBUG | |
| mgr.sign_in() |
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
| aws acm list-certificates | jq '.CertificateSummaryList' | jq -r '.[].CertificateArn' | while read -r l; do echo "CERT: $l" && aws acm describe-certificate --certificate-arn $l | jq '.Certificate | .NotAfter' | xargs -I {} date -r {} && echo ""; done; |
Future home of the show: https://letstalkcloud.fyi/
Check out the first season at https://www.youtube.com/watch?v=Zh5hIvQ5tE0&list=PLZm70v-MT4Jrg461-1QgrAuWg4px1RYyP
Links from this stream:
- AWS's new course, Architecting Serverless Solutions - https://www.aws.training/Details/eLearning?id=42594
- AWS Well-Architected Framework - https://aws.amazon.com/architecture/well-architected/
- FreeCodeCamp's list of Ivy League courses - https://www.freecodecamp.org/news/ivy-league-free-online-courses-a0d7ae675869/
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
| pip3 install --upgrade google-cloud-bigquery | |
| pip3 install --upgrade google-cloud-bigtable | |
| pip3 install --upgrade google-cloud-datastore | |
| pip3 install --upgrade google-cloud-dns | |
| pip3 install --upgrade google-cloud-error-reporting | |
| pip3 install --upgrade google-cloud-firestore | |
| pip3 install --upgrade google-cloud-language | |
| pip3 install --upgrade google-cloud-logging | |
| pip3 install --upgrade google-cloud-monitoring | |
| pip3 install --upgrade google-cloud-pubsub |
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 bash | |
| sudo yum -y install git | |
| sudo yum -y install python3 | |
| sudo pip3 install boto3 | |
| sudo pip3 install dateparser | |
| sudo pip3 install feedparser | |
| cat > /home/ec2-user/get_secret.py <<- PY_FILE | |
| # Standard libraries | |
| import base64 |