In collaboration, we find success and efficiency. I spend most of my time honing my software development skills and exploring different ways I can improve both my technical and soft skills.
- 🔭 I’m currently working on a cross-platform (
react
,kivy
,rails
) chat application, calledbluech
. - 🌱 I’m currently learning
Docker
&K8S
. - 👯 I’m current looking for open-source projects to collaborate on, mainly,
GitHub
&Canonical
. - 🤔 I’m looking for help with a
social/community
project am planning to start soon. - 💬 Ask me about
Football
&Basketball
mainly. - 😄 Pronouns: Call me
Steve
- ⚡ Fun fact: Oh Gosh! How I love lemon cake!! 🍰🤗
- 💡Tips:
from os import environ from argparse import ArgumentParser base = {'theme': 'auto'} parser = ArgumentParser() parser.add_argument('-t', '--token') parser.add_argument('-db', '--database-url') ns = parser.parse_args() cli_args = {k: v for k, v in vars(ns).items() if v is not None} working_scope = ChainMap(cli_args, base, environ) # or # working_scope = environ | base | cli_args # # over # # working_space = environ.copy() # working_scope |= base # working_space |= cli_args