Skip to content
View sznchanda's full-sized avatar

Block or report sznchanda

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
sznchanda/README.md

Hello, I'm Steeve 👋🏾

#!/usr/bin/env python3

class AboutMe:
    def __init__(self):
        self.name = "Steeve Nchanda"

        self.occupation = {
            "Cyber Security Apprentice @ Alstom"
            "Former mathematics teacher @ MACSB"
        }

        self.education = {
            "B.A.Sc.(Hons) Digital Technologies @ YorkU" : Current
            "B.Sc. Mathematics & Statistics @ UY1" : Graduated in 2020
        }

        self.certification = "CompTIA Security+"

        self.interets = {
            "Quantitative Finance": [
                "Risk Technology",
                "Commodities Technology",
                "Equity Technology",
                "Fixed Income Technology",

            ]
            "Cloud Engineering": [
                "AWS",
                "Azure",
                "GCP",
            ]
            
            "Programming": [
                "Python",
                "Java",
            ]
            "Podcasts":[
                "Fancy Quant",
            ]
        }

        self.skills = {
            "Soft": [
                "Lifelong Learner",
                "Strong self-starter",
                "Excellent communicator",
            ]
            "Technical": [
                "Python Data Visualization",
                "Java Object Oriented Programming",
                "IT Security Policies & Procedures",
            ]
    
    def say_hello(self, name: str):
        print(f"Hello, {name}!")

if __name__ == "__main__":
    steeve_nchanda = AboutMe()
    steeve_nchanda.say_hello("world")

Pinned Loading

  1. sznchanda sznchanda Public

  2. Roller_Coaster Roller_Coaster Public

    Roller Coaster project designed for the introduction to computational problem solving course.

    Python