Skip to content

Instantly share code, notes, and snippets.

View gigatexal's full-sized avatar

Alex N gigatexal

View GitHub Profile
@gigatexal
gigatexal / gist:b8a39db91a3fa27c9e905192c8b338d4
Created December 6, 2018 10:19
sql scheme before vitess'ing
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()

Keybase proof

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:

def hello_world():
print('hello world')
hello_world()