Skip to content

Instantly share code, notes, and snippets.

View farrajota's full-sized avatar

M. Farrajota farrajota

View GitHub Profile
@farrajota
farrajota / s3_util.py
Created January 16, 2020 09:40 — forked from PGryllos/s3_util.py
Using dask's multithreaded scheduler to speedup download of multiple files from s3
"""
Using dask's multithreaded scheduler to speedup download of multiple files from
an s3 bucket
"""
import os
from functools import partial
import botocore
import boto3

I've been working with Apache Kafka for over 7 years. I inevitably find myself doing the same set of activities while I'm developing or working with someone else's system. Here's a set of Kafka productivity hacks for doing a few things way faster than you're probably doing them now. 🔥

Get the tools

@farrajota
farrajota / bobp-python.md
Created May 31, 2017 14:10 — forked from sloria/bobp-python.md
A "Best of the Best Practices" (BOBP) guide to developing in Python.

The Best of the Best Practices (BOBP) Guide for Python

A "Best of the Best Practices" (BOBP) guide to developing in Python.

In General

Values

  • "Build tools for others that you want to be built for you." - Kenneth Reitz
  • "Simplicity is alway better than functionality." - Pieter Hintjens