Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am th0m on github.
  • I am th0m (https://keybase.io/th0m) on keybase.
  • I have a public key ASBwvYn0UZS7Z1dxfktj67X1KMO7JJiAhfrKnyquEiusuwo

To claim this, I am signing this object:

~ strings lattice-build/lattice-cell/bin/garden-linux | grep docker
docker
docker.com
docker.io
dockerImage
dockerLayer
dockerplnk
/etc/docker/certs.d
docker image graph
dockerRootFSProvider
import socket
HOST = ''
PORT = 5000
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.bind((HOST, PORT))
s.listen(1)
conn, addr = s.accept()
while 1:
data = conn.recv(1024)
@th0m
th0m / whilenot.py
Last active August 29, 2015 14:14
While not challenge
#!/usr/bin/env python
from multiprocessing import Pool
import sys
p = [1, 2]
def a(n):
if n is 1:
sys.exit(1)
t = Pool(2)