I hereby claim:
- I am jcrsilva on github.
- I am jcrsilva (https://keybase.io/jcrsilva) on keybase.
- I have a public key ASCHSkD-cetVCHHWJnTb3YELwNAuBpsTz8ewWH1Aq4JcxQo
To claim this, I am signing this object:
#!/usr/bin/env python3 | |
class Pump(object): | |
def __init__(self, fuel_capacity): | |
self.fuel_capacity = fuel_capacity | |
self.car = None | |
class GasStation(object): |
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
import argparse | |
import logging | |
import sys | |
import os | |
import random | |
import string | |
from kafka import KafkaConsumer, KafkaProducer |
### File managed with puppet ### | |
# If not running interactively, don't do anything | |
[ -z "$PS1" ] && return | |
# don't put duplicate lines in the history. See bash(1) for more options | |
# ... or force ignoredups and ignorespace | |
HISTCONTROL=ignoredups:ignorespace | |
# append to the history file, don't overwrite it |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env python | |
import datetime | |
import logging | |
from logging.handlers import RotatingFileHandler | |
import os | |
import subprocess | |
import sys | |
import threading |