I hereby claim:
- I am abelsonlive on github.
- I am brianabelson (https://keybase.io/brianabelson) on keybase.
- I have a public key ASB8plf3RA_IBu07tMbiBLNUcqZ1lS-uzC8TtsNL49eFfwo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
A simple two player game of Tic Tac Toe written in Python 3.6+
To play, download the file below, open a terminal, and run the following command:
$ python3 tic-tac-toe.py| #!/usr/bin/env python | |
| import json | |
| import copy | |
| import sys | |
| import argparse | |
| from datetime import datetime, timedelta | |
| from subprocess import Popen, PIPE | |
| # dictionary of partiton names to variable generating functions |
| import sys | |
| import json | |
| import nltk | |
| from nltk.tokenize import RegexpTokenizer | |
| # For a list of all POS tags and their definitions, see: | |
| # https://www.ling.upenn.edu/courses/Fall_2003/ling001/penn_treebank_pos.html | |
| SUPERLATIVE_TAGS = {"JJS", "RBS"} |
| import os | |
| import sys | |
| import time | |
| import random | |
| VOICES = [ | |
| "Agnes", | |
| "Alex", | |
| "Alice", | |
| "Alva", |
| aws_access_key_id: | |
| aws_secret_access_key: | |
| rs_user: | |
| rs_server: | |
| rs_db: | |
| rs_port: | |
| rs_password: |
| profile_dir: '~/.dbt' # the location of dbt configurations | |
| target: prod # the dbt profile to use for connection | |
| source_schema: fivetran_app # the tables' source schema (where fivetran imports your data to) | |
| materialized: view # how to materialize these views | |
| target_schema: app # the schema to materialize the base models under (where users will access the data from) | |
| table_prefix: app # a prefix to prepend to each base model/view | |
| directory: models/base/ # the directory under which to save the base models | |
| empty_as_null: true # whether or not to apply EMPTYASNULL logic to all text fields | |
| incl_fivetran_deleted: false # whether or not to include records marked as "deleted" by fivetran | |
| excl_fivetran_synced: true # whether or not to include the time fivetran synced each record |
| thai spicy เผ็ดร้อนไทย, pik nam pla (พริกน้ำปลา) on the side |
| #!/bin/sh | |
| ############################################################################## | |
| # This code known is distributed under the following terms: | |
| # | |
| # Copyright (c) 2013 Isaac (.ike) Levy <[email protected]>. | |
| # All rights reserved. | |
| # | |
| # Redistribution and use in source and binary forms, with or without | |
| # modification, are permitted provided that the following conditions |
| import requests | |
| import urllib | |
| import json | |
| ZIP_CODES = [ | |
| '11211' | |
| ] | |
| def get_rect_from_zip(session, zip_code): | |
| """ |