Skip to content

Instantly share code, notes, and snippets.

View antgus's full-sized avatar

António Gusmão antgus

View GitHub Profile
@staltz
staltz / introrx.md
Last active June 18, 2024 06:15
The introduction to Reactive Programming you've been missing
@feelinc
feelinc / UploadDirS3.py
Last active June 5, 2024 08:14
Upload folder contents to AWS S3
#!/usr/bin/python
import os
import sys
import boto3
# get an access token, local (from) directory, and S3 (to) directory
# from the command-line
local_directory, bucket, destination = sys.argv[1:4]