I hereby claim:
- I am ColtonProvias on github.
- I am coltonprovias (https://keybase.io/coltonprovias) on keybase.
- I have a public key whose fingerprint is E05F EB23 F824 1DA1 B55F C45E 97ED DF01 7E81 D849
To claim this, I am signing this object:
| import { zipWith } from 'lodash-es' | |
| import { AES } from './aes' | |
| /** | |
| * AES-CBC Implementation | |
| */ | |
| export class AESCBC { | |
| /** Block cipher */ | |
| private cipher: AES |
| declare module 'bn.js' { | |
| class Red {} | |
| class Mont extends Red {} | |
| export default class BN { | |
| red: Red | |
| constructor (num?: any, base?: number, endian?: string) | |
| static isBN (num: any): num is BN | |
| static max (left: BN, right: BN): BN | |
| static min (left: BN, right: BN): BN | |
| static red (num: BN | string): Red |
| //go:generate msgp | |
| //msgp:tuple Sample | |
| //msgp:shim uuid.UUID as:[]byte using:uuidToBytes/bytesToUUID | |
| package serialization | |
| import ( | |
| "github.com/satori/go.uuid" | |
| ) | |
| type Sample struct { |
I hereby claim:
To claim this, I am signing this object:
| """ | |
| fountain.py | |
| Ported to Python 3 by Colton J. Provias - [email protected] | |
| Based on Fountain by Nima Yousefi & John August | |
| Original code for Objective-C at https://github.com/nyousefi/Fountain | |
| """ | |
| COMMON_TRANSITIONS = {'FADE OUT.', 'CUT TO BLACK.', 'FADE TO BLACK.'} |
| """ | |
| S3 Uploader for Python 3 | |
| Colton J. Provias | |
| Usage: | |
| f = open('sample.png', 'rb') | |
| contents = f.read() | |
| response, url = upload_to_s3('AWSKEY', 'AWSSECRET', 'mybucket', 'image.png', contents, 'image/png') | |
| """ |