Skip to content
View sntakirutimana72's full-sized avatar
Block or Report

Block or report sntakirutimana72

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
sntakirutimana72/README.md

gmail linkedin twitter facebook

Hi there! I'm Steven 🤗

Banner

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, called bluech.
  • 🌱 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

Technical Skills

Tools

Tools & Methodologies

Tools


Steve's GitHub stats GitHub Streak
Most Used Languages

Pinned Loading

  1. weatfy weatfy Public

    Weatfy is a weather app that allows users to check current weather stats of any city in the world. Users can view different cities and choose which one at a time to check for weather stats.

    JavaScript 2

  2. ToDoList ToDoList Public

    A Todo app that allows user to create, update, and remove their daily tasks in and from the browser local storage. Built with HTLM5, CSS3, JavaScript, and React.

    JavaScript 5

  3. rps-game rps-game Public

    Rock-paper-scissors is a fun and easy hand game that anyone can learn and enjoy.

    JavaScript 2

  4. Bookstore Bookstore Public

    An app that allows users to manage their book records by adding a new record, updating, and removing records. Changes are persisted using APIs. Built with HTML5, CSS3, Redux, and React.

    JavaScript

  5. calculator calculator Public

    It is a mini version of a mathematical calculator. It implements a handful of operations such as modulo, 1/x fraction, addition, subtraction, division & multiplication. It can recall the previous c…

    JavaScript 2

  6. budget-app budget-app Public

    Budgesten is a personal financial ledger that allows users to keep track of their financial expenditures. It offers confidentiality through user authentication and resource access control protocols.

    Ruby