Skip to content

Instantly share code, notes, and snippets.

@dstandish
dstandish / happy_git_on_mac_os.md
Last active July 24, 2018 18:14 — forked from trey/happy_git_on_osx.md
Creating a Happy Git Environment on macOS

Creating a Happy Git Environment on macOS

Install git and bash-completion on your machine

Install Git

brew install git bash-completion

Basic config:

@dstandish
dstandish / WrappedStreamingBody
Created April 17, 2018 06:47 — forked from debedb/WrappedStreamingBody
Wrap boto3's StreamingBody object to provide enough Python fileobj functionality fileobj functionality so that GzipFile is satisfied.
class WrappedStreamingBody:
"""
Wrap boto3's StreamingBody object to provide enough
fileobj functionality so that GzipFile is
satisfied. Sometimes duck typing is awesome.