Skip to content

Instantly share code, notes, and snippets.

View Jahangir-Sh's full-sized avatar

Jahangir Shabiyev Jahangir-Sh

  • Baku, Azerbaijan
View GitHub Profile
@Jahangir-Sh
Jahangir-Sh / main.rs
Last active June 17, 2016 22:21
enum matching
#[allow(dead_code)]
enum Eden {
Coordinator,
Doctor,
Engineer,
Cybernetic {
name: &'static str
}
}
@Jahangir-Sh
Jahangir-Sh / scriptchik.py
Last active May 17, 2016 18:33
Log files to Amazon S3
import os
import logging
from functools import partial
from itertools import chain, starmap
from boto3 import Session
from botocore.exceptions import ClientError
ACCESS_KEY = os.environ.get("ACCESS_KEY", "")
SECRET_KEY = os.environ.get("SECRET_KEY", "")