I hereby claim:
- I am igorlg on github.
- I am igorlg (https://keybase.io/igorlg) on keybase.
- I have a public key ASDKo31X3pr6syAi9zz3oFyns-h0nk9evecYBjpm_dtaWwo
To claim this, I am signing this object:
| from datetime import datetime, timedelta | |
| from tabulate import tabulate | |
| from calendar import day_name | |
| import sys | |
| def wd(d): | |
| return list(day_name)[d] | |
| def sorted_week(): | |
| return sorted([(j+1)%7 for j in range(7)], key=lambda n: (n+1)%7) |
I hereby claim:
To claim this, I am signing this object:
| import csv, sys | |
| from datetime import date,datetime | |
| def parse_budget(csvarr): | |
| if '$' not in csvarr[4]: | |
| return False | |
| dt = datetime.strptime(csvarr[0], '%b %Y') | |
| month = dt.month | |
| year = dt.year |
| { | |
| "AWSTemplateFormatVersion": "2010-09-09", | |
| "Description": "Template for a VPC with High Availability NAT for ECS", | |
| "Parameters": { | |
| "ClusterName": { | |
| "Description": "The ECS Cluster Name", | |
| "Type": "String" | |
| }, | |
| "InstanceType": { | |
| "Description": "NAT instance type", |
| { | |
| "AWSTemplateFormatVersion": "2010-09-09", | |
| "Description": "Template for a VPC with High Availability NAT for ECS", | |
| "Parameters": { | |
| "NATInstanceType": { | |
| "Description": "NAT instance type", | |
| "Type": "String", | |
| "Default": "t2.micro", | |
| "AllowedValues": [ | |
| "t2.micro", |