I hereby claim:
- I am gigatexal on github.
- I am gigatexal (https://keybase.io/gigatexal) on keybase.
- I have a public key ASCVBfdZdM4iY60j5dlQSrzxbNChSjurO4xN7Jtdt_KMewo
To claim this, I am signing this object:
drop database if exists sandbox2; | |
create database sandbox2; | |
use sandbox2; | |
create table `User`( | |
id bigint unsigned not null auto_increment primary key, | |
user_id bigint unsigned not null unique | |
) row_format=compressed; | |
create table `Account`( |
''' | |
the container environment was running docker engine was on docker-ce stable, python:3.7-alpine | |
the non contianer environment: mac os mojave beta python 3.6.5 | |
''' | |
import hashlib | |
import os | |
from concurrent.futures import ThreadPoolExecutor, ProcessPoolExecutor | |
import pprint | |
pool = ThreadPoolExecutor() |
I hereby claim:
To claim this, I am signing this object:
def hello_world(): | |
print('hello world') | |
hello_world() |