I hereby claim:
- I am snakeye on github.
- I am snakeye (https://keybase.io/snakeye) on keybase.
- I have a public key ASBPPOEK6Mns6SdgJHaz0Ky1m__tpFZE0EWBtok4glTuzQo
To claim this, I am signing this object:
import argparse | |
import logging | |
import os | |
import string | |
from typing import List | |
import frontmatter | |
import nltk | |
import numpy as np | |
from nltk.corpus import stopwords |
--- | |
AWSTemplateFormatVersion: '2010-09-09' | |
Description: CloudFormation template for Minecraft server | |
Parameters: | |
KeyName: | |
Description: Name of an existing EC2 KeyPair to enable SSH access to the instances | |
Type: AWS::EC2::KeyPair::KeyName | |
ConstraintDescription: must be the name of an existing EC2 KeyPair. | |
InstanceType: |
I hereby claim:
To claim this, I am signing this object:
import moment from 'moment'; | |
const getCalendarGrid = (year, month) => { | |
let ret = []; | |
const firstDayOfMonth = moment([year, month - 1, 1]); | |
const firstDayOfMonthIndex = firstDayOfMonth.day(); | |
// grid row |
import exifread | |
# based on https://gist.github.com/erans/983821 | |
def _get_if_exist(data, key): | |
if key in data: | |
return data[key] | |
return None |