Skip to content

Instantly share code, notes, and snippets.

View anthonyburdi's full-sized avatar

Anthony Burdi anthonyburdi

View GitHub Profile
# In discussion for https://github.com/great-expectations/great_expectations/pull/6164
from collections import OrderedDict
import pandas as pd
from great_expectations.self_check.util import build_spark_validator_with_data
from great_expectations.validator.validator import Validator
from great_expectations.execution_engine import PandasExecutionEngine
http://www.meetup.com/Docker-NewYorkCity/events/221586351/
Presentations / video not yet available online
## Project Calico:
Small startup group inside larger co: Metaswitch
Pure Layer 3 cloud networking solution - Containers, VM’s, bare metal
Docker networking solutions:
- Port Forwarding / NAT (out of the box) :
- Simple, out of the box, easily understood, but not real IP networking. Wont work with IPsec. Can’t have multiple apps working on same port
- Overlay networks
- Give each container its own private ip address (or subnet)
# Before your interview, write a program that lets two humans play a game of Tic Tac Toe in a terminal.
# The program should let the players take turns to input their moves.
# The program should report the outcome of the game.
# Anthony Burdi 2/5/2015
import tictactoe_helper as th
class ticTacToeGame:
"""Store current game for display"""
gameState = [None,None,None,None,None,None,None,None,None]