Skip to content

Instantly share code, notes, and snippets.

import logging
import math
import mimetypes
from multiprocessing import Pool
import os
from boto.s3.connection import S3Connection
def _upload_part(bucketname, aws_key, aws_secret, multipart_id, part_num,

Keybase proof

I hereby claim:

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

To claim this, I am signing this object:

@momirza
momirza / tictactoe.hs
Last active March 1, 2019 20:30
Tic tac toe from chapter 11 of Programming in Haskell – Hutton 2nd edition
import Data.Char
import Data.List
import System.IO
import System.Random (randomRIO)
-- Basic declarations
size :: Int
size = 4